adds diethylamine and saltpetre to the biogenerator

This commit is contained in:
CameronWoof
2020-02-16 03:52:07 -08:00
parent 0f4f07dc95
commit 14e41e8d68
3 changed files with 22 additions and 1 deletions
+1 -1
View File
@@ -664,7 +664,7 @@
adjustHealth(round(S.get_reagent_amount(/datum/reagent/diethylamine) * 1))
adjustNutri(round(S.get_reagent_amount(/datum/reagent/diethylamine) * 2))
if(myseed)
myseed.adjust_yield(round(S.get_reagent_amount(/datum/reagent/diethylamine) * 0.02))
myseed.adjust_yield(round(S.get_reagent_amount(/datum/reagent/diethylamine) * 0.034))
adjustPests(-rand(1,2))
// Nutriment Compost, effectively
@@ -112,6 +112,11 @@
desc = "A small bottle of diethylamine."
list_reagents = list(/datum/reagent/diethylamine = 30)
/obj/item/reagent_containers/glass/bottle/saltpetre
name = "saltpetre bottle"
desc = "A small bottle of saltpetre."
list_reagents = list(/datum/reagent/saltpetre = 30)
/obj/item/reagent_containers/glass/bottle/facid
name = "Fluorosulfuric Acid Bottle"
desc = "A small bottle. Contains a small amount of fluorosulfuric acid."
@@ -107,6 +107,22 @@
build_path = /obj/item/reagent_containers/glass/bottle/nutrient/rh
category = list("initial","Botany Chemicals")
/datum/design/diethylamine
name = "Diethylamine"
id = "diethylamine_biogen"
build_type = BIOGENERATOR
materials = list(MAT_BIOMASS = 75)
build_path = /obj/item/reagent_containers/glass/bottle/diethylamine
category = list("initial","Botany Chemicals")
/datum/design/saltpetre
name = "Saltpetre"
id = "saltpetre_biogen"
build_type = BIOGENERATOR
materials = list(MAT_BIOMASS = 125)
build_path = /obj/item/reagent_containers/glass/bottle/saltpetre
category = list("initial","Botany Chemicals")
/datum/design/weed_killer
name = "Weed Killer"
id = "weed_killer"