forked from tgstation/tgstation
-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Hydroponic: Biogenerator designs (#962)
## Что этот PR делает Портирует рецепты для биогенератора с парадайза SS220 ## Почему это хорошо для игры Разнообразит игру в ботанике ## Тестирование Тестировал локально ![image](https://github.com/user-attachments/assets/cc6c1a27-9508-4013-8e6c-0b1779e28328) ## Changelog :cl: add: Рецепт биогенератора: Странные семена add: Рецепт биогенератора: Подсумок для материалов /:cl: ## Summary by Sourcery New Features: - Add Strange Seed Pack and Material Pouch biogenerator designs to diversify botany gameplay.
- Loading branch information
Showing
5 changed files
with
39 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
/datum/modpack/hydroponics | ||
name = "Ботаника" | ||
desc = "Растения, приборы и прочие улучшения для ботаники." | ||
author = "Nlaysi" |
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,3 @@ | ||
#include "_hydroponics.dm" | ||
|
||
#include "code/biogenerator_designs.dm" |
15 changes: 15 additions & 0 deletions
15
modular_bandastation/hydroponics/code/biogenerator_designs.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,15 @@ | ||
/datum/design/strange_seeds | ||
name = "Strange seed pack" | ||
id = "strange_seeds" | ||
build_type = BIOGENERATOR | ||
materials = list(/datum/material/biomass = 2000) | ||
build_path = /obj/item/seeds/random | ||
category = list(RND_CATEGORY_INITIAL, RND_CATEGORY_BIO_MATERIALS) | ||
|
||
/datum/design/material_pouch | ||
name = "Material pouch" | ||
id = "material_pouch" | ||
build_type = BIOGENERATOR | ||
materials = list(/datum/material/biomass = 200) | ||
build_path = /obj/item/storage/bag/material_pouch | ||
category = list(RND_CATEGORY_INITIAL, RND_CATEGORY_BIO_MATERIALS) |
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