diff --git a/modular_zubbers/master_files/code/modules/research/designs/biogenerator_designs.dm b/modular_zubbers/master_files/code/modules/research/designs/biogenerator_designs.dm new file mode 100644 index 00000000000..a6b3255017e --- /dev/null +++ b/modular_zubbers/master_files/code/modules/research/designs/biogenerator_designs.dm @@ -0,0 +1,72 @@ + +/datum/design/diethylamine + name = "Diethylamine" + id = "diethylamine" + build_type = BIOGENERATOR + materials = list(/datum/material/biomass = 0.5) + make_reagent = /datum/reagent/diethylamine + category = list(RND_CATEGORY_INITIAL, RND_CATEGORY_BIO_CHEMICALS) + +/datum/design/saltpetre + name = "Saltpetre" + id = "saltpetre" + build_type = BIOGENERATOR + materials = list(/datum/material/biomass = 0.5) + make_reagent = /datum/reagent/saltpetre + category = list(RND_CATEGORY_INITIAL, RND_CATEGORY_BIO_CHEMICALS) + +/datum/design/orangejuice + name = "Orange Juice" + id = "orangejuice" + build_type = BIOGENERATOR + materials = list(/datum/material/biomass = 0.1) + make_reagent = /datum/reagent/consumable/orangejuice + category = list(RND_CATEGORY_INITIAL, RND_CATEGORY_BIO_FOOD) + +/datum/design/lemonjuice + name = "Lemon Juice" + id = "lemonjuice" + build_type = BIOGENERATOR + materials = list(/datum/material/biomass = 0.1) + make_reagent = /datum/reagent/consumable/lemonjuice + category = list(RND_CATEGORY_INITIAL, RND_CATEGORY_BIO_FOOD) + +/datum/design/limejuice + name = "Lime Juice" + id = "limejuice" + build_type = BIOGENERATOR + materials = list(/datum/material/biomass = 0.1) + make_reagent = /datum/reagent/consumable/orangejuice + category = list(RND_CATEGORY_INITIAL, RND_CATEGORY_BIO_FOOD) + +/datum/design/berryjuice + name = "Berry Juice" + id = "berryjuice" + build_type = BIOGENERATOR + materials = list(/datum/material/biomass = 0.1) + make_reagent = /datum/reagent/consumable/orangejuice + category = list(RND_CATEGORY_INITIAL, RND_CATEGORY_BIO_FOOD) + +/datum/design/berryjuice + name = "Tomato Juice" + id = "tomatojuice" + build_type = BIOGENERATOR + materials = list(/datum/material/biomass = 0.1) + make_reagent = /datum/reagent/consumable/tomatojuice + category = list(RND_CATEGORY_INITIAL, RND_CATEGORY_BIO_FOOD) + +/datum/design/grenadine + name = "Grenadine Syrup" + id = "grenadine" + build_type = BIOGENERATOR + materials = list(/datum/material/biomass = 0.1) + make_reagent = /datum/reagent/consumable/grenadine + category = list(RND_CATEGORY_INITIAL, RND_CATEGORY_BIO_FOOD) + +/datum/design/soysauce //Alternative to having to make it using sulphuric acid + name = "Soy Sauce" + id = "soysauce" + build_type = BIOGENERATOR + materials = list(/datum/material/biomass = 0.5) + make_reagent = /datum/reagent/consumable/soysauce + category = list(RND_CATEGORY_INITIAL, RND_CATEGORY_BIO_FOOD)