-
Notifications
You must be signed in to change notification settings - Fork 211
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tweak(botany): removes gene shuffling & merges xenobotany with botany
- Loading branch information
1 parent
17ec8da
commit a502b94
Showing
36 changed files
with
852 additions
and
614 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 0 additions & 12 deletions
12
code/game/objects/items/circuitboards/machinery/biogenerator.dm
This file was deleted.
Oops, something went wrong.
24 changes: 24 additions & 0 deletions
24
code/game/objects/items/circuitboards/machinery/hydroponics.dm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#ifndef T_BOARD | ||
#error T_BOARD macro is not defined but we need it! | ||
#endif | ||
|
||
/obj/item/circuitboard/genemod | ||
name = T_BOARD("Genetic Forge") | ||
board_type = "machine" | ||
req_components = list( | ||
/obj/item/stock_parts/console_screen = 1, | ||
/obj/item/stock_parts/micro_laser = 1, | ||
/obj/item/stock_parts/manipulator = 1, | ||
) | ||
build_path = /obj/machinery/genemod | ||
origin_tech = list(TECH_ENGINEERING = 2, TECH_BIO = 1) | ||
|
||
/obj/item/circuitboard/biogenerator | ||
name = T_BOARD("biogenerator") | ||
build_path = /obj/machinery/biogenerator | ||
board_type = "machine" | ||
req_components = list( | ||
/obj/item/stock_parts/matter_bin = 1, | ||
/obj/item/stock_parts/manipulator = 1, | ||
) | ||
origin_tech = list(TECH_DATA = 2) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.