From c6f710c29e7517ff0dd7dd3699be430e4ee731d2 Mon Sep 17 00:00:00 2001 From: Bakaface <42347687+bakaf@users.noreply.github.com> Date: Sun, 29 Oct 2023 18:15:16 +0530 Subject: [PATCH] adds the other types of meat cubes into the biogenerator --- .../research/designs/biogenerator_designs.dm | 33 ++++++++++++++++++- 1 file changed, 32 insertions(+), 1 deletion(-) diff --git a/code/modules/research/designs/biogenerator_designs.dm b/code/modules/research/designs/biogenerator_designs.dm index 036d404635b..e54e8259e15 100644 --- a/code/modules/research/designs/biogenerator_designs.dm +++ b/code/modules/research/designs/biogenerator_designs.dm @@ -59,11 +59,42 @@ build_path = /obj/item/reagent_containers/food/snacks/monkeycube category = list("initial", "Food") +/datum/design/farwa_cube + name = "Farwa cube" + id = "fcube" + build_type = BIOGENERATOR + materials = list(MAT_BIOMASS = 250) + build_path = /obj/item/reagent_containers/food/snacks/monkeycube/farwacube + category = list("initial", "Food") + +/datum/design/wolpin_cube + name = "Wolpin cube" + id = "wcube" + build_type = BIOGENERATOR + materials = list(MAT_BIOMASS = 250) + build_path = /obj/item/reagent_containers/food/snacks/monkeycube/wolpincube + category = list("initial", "Food") + +/datum/design/stok_cube + name = "Stok cube" + id = "scube" + build_type = BIOGENERATOR + materials = list(MAT_BIOMASS = 250) + build_path = /obj/item/reagent_containers/food/snacks/monkeycube/stokcube + category = list("initial", "Food") + +/datum/design/neaera_cube + name = "Neaera cube" + id = "ncube" + build_type = BIOGENERATOR + materials = list(MAT_BIOMASS = 250) + build_path = /obj/item/reagent_containers/food/snacks/monkeycube/neaeracube + category = list("initial", "Food") + /datum/design/ez_nut name = "E-Z-Nutrient" id = "ez_nut" build_type = BIOGENERATOR - materials = list(MAT_BIOMASS = 10) build_path = /obj/item/reagent_containers/glass/bottle/nutrient/ez category = list("initial","Botany Chemicals")