Skip to content

Commit

Permalink
Merge pull request #2541 from CacheAtWork/Biogenerator
Browse files Browse the repository at this point in the history
Update biogenerator_designs.dm
  • Loading branch information
Tk420634 committed Jun 23, 2023
2 parents b6f6cbe + 4ca12fe commit 56e400e
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions code/modules/research/designs/biogenerator_designs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,22 @@
make_reagents = list(/datum/reagent/consumable/cream = 10)
category = list("initial","Food")

/datum/design/soymilk
name = "10u Soymilk"
id = "soymilk"
build_type = BIOGENERATOR
materials = list(/datum/material/biomass = 30)
make_reagents = list(/datum/reagent/consumable/soymilk = 10)
category = list("initial","Food")

/datum/design/flour
name = "10u Flour"
id = "flour"
build_type = BIOGENERATOR
materials = list(/datum/material/biomass = 25)
make_reagents = list(/datum/reagent/consumable/flour = 10)
category = list("initial","Food")

/datum/design/black_pepper
name = "10u Black Pepper"
id = "black_pepper"
Expand All @@ -29,6 +45,22 @@
make_reagents = list(/datum/reagent/consumable/blackpepper = 10)
category = list("initial","Food")

/datum/design/table_salt
name = "10u Table Salt"
id = "table_salt"
build_type = BIOGENERATOR
materials = list(/datum/material/biomass = 25)
make_reagents = list(/datum/reagent/consumable/sodiumchloride = 10)
category = list("initial","Food")

/datum/design/sugar
name = "10u Sugar"
id = "sugar"
build_type = BIOGENERATOR
materials = list(/datum/material/biomass = 25)
make_reagents = list(/datum/reagent/consumable/sugar = 10)
category = list("initial","Food")

/datum/design/enzyme
name = "10u Universal Enzyme"
id = "enzyme"
Expand Down

0 comments on commit 56e400e

Please sign in to comment.