Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hydroponic: Biogenerator designs #962

Merged
merged 1 commit into from
Jan 10, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions modular_bandastation/hydroponics/_hydroponics.dm
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/datum/modpack/hydroponics
name = "Ботаника"
desc = "Растения, приборы и прочие улучшения для ботаники."
author = "Nlaysi"
3 changes: 3 additions & 0 deletions modular_bandastation/hydroponics/_hydroponics.dme
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 modular_bandastation/hydroponics/code/biogenerator_designs.dm
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)
1 change: 1 addition & 0 deletions modular_bandastation/modular_bandastation.dme
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
#include "automatic_crew_transfer/_automatic_crew_transfer.dme"
#include "outfits/_outfits.dme"
#include "overrides/_overrides.dme"
#include "hydroponics/_hydroponics.dme"


// --- PRIME --- //
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12108,3 +12108,19 @@ dative = "своим"
accusative = "свои"
instrumental = "своими"
prepositional = "своих"

["strange seed pack"]
nominative = "странные семена"
genitive = "странных семян"
dative = "странным семянам"
accusative = "странные семена"
instrumental = "странными семенами"
prepositional = "странных семянах"

["material pouch"]
nominative = "подсумок для материалов"
genitive = "подсумоков для материалов"
dative = "подсумку для материалов"
accusative = "подсумок для материалов"
instrumental = "подсумком для материалов"
prepositional = "подсумке для материалов"
Loading