Skip to content

Commit

Permalink
Adds fancy boxes to cardboard crafting & flour sacks + UE designs to …
Browse files Browse the repository at this point in the history
…biogenerator. (tgstation#40394)

* Adds fancy box types to cardboard recipies

So now with co-operation the chef can mass stock eggs & donuts, while the chaplain can hold reserve candles.

* Tidies up syntax

Missing comma threatens derail, oversight fixed.

* Adds UE & flour sacks to biogen designs

Adds universal enzyme (reagent transferred into biogenerator container) & flour sacks to the biogenerator designs.
  • Loading branch information
FantasticFwoosh authored and vuonojenmustaturska committed Sep 28, 2018
1 parent bc95dd1 commit f70698b
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
3 changes: 3 additions & 0 deletions code/game/objects/items/stacks/sheets/sheet_types.dm
Original file line number Diff line number Diff line change
Expand Up @@ -277,6 +277,9 @@ GLOBAL_LIST_INIT(cardboard_recipes, list ( \
new/datum/stack_recipe("cardborg suit", /obj/item/clothing/suit/cardborg, 3), \
new/datum/stack_recipe("cardborg helmet", /obj/item/clothing/head/cardborg), \
new/datum/stack_recipe("pizza box", /obj/item/pizzabox), \
new/datum/stack_recipe("donut box", /obj/item/storage/fancy/donut_box), \
new/datum/stack_recipe("egg box", /obj/item/storage/fancy/egg_box), \
new/datum/stack_recipe("candle box", /obj/item/storage/fancy/candle_box), \
new/datum/stack_recipe("folder", /obj/item/folder), \
new/datum/stack_recipe("large box", /obj/structure/closet/cardboard, 4), \
new/datum/stack_recipe("cardboard cutout", /obj/item/cardboard_cutout, 5), \
Expand Down
16 changes: 16 additions & 0 deletions code/modules/research/designs/biogenerator_designs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,22 @@
make_reagents = list()
category = list("initial","Food")

/datum/design/enzyme
name = "10u Universal Enzyme"
id = "enzyme"
build_type = BIOGENERATOR
materials = list(MAT_BIOMASS = 30)
make_reagents = list("enzyme" = 10)
category = list("initial","Food")

/datum/design/flour_sack
name = "Flour Sack"
id = "flour_sack"
build_type = BIOGENERATOR
materials = list(MAT_BIOMASS = 150)
build_path = /obj/item/reagent_containers/food/condiment/flour
category = list("initial","Food")

/datum/design/monkey_cube
name = "Monkey Cube"
id = "mcube"
Expand Down

0 comments on commit f70698b

Please sign in to comment.