Xenoflora expansion take2

This commit is contained in:
Mechoid
2020-01-08 10:44:41 -08:00
committed by VirgoBot
parent 6f24070dbd
commit ec5e851399
17 changed files with 280 additions and 34 deletions

View File

@@ -553,6 +553,20 @@
required_reagents = list ("ammonia" = 1, "ethanol" = 1)
result_amount = 2
/datum/chemical_reaction/left4zed
name = "Left4Zed"
id = "left4zed"
result = "left4zed"
required_reagents = list ("diethylamine" = 2, "mutagen" = 1)
result_amount = 3
/datum/chemical_reaction/robustharvest
name = "RobustHarvest"
id = "robustharvest"
result = "robustharvest"
required_reagents = list ("ammonia" = 1, "calcium" = 1, "neurotoxic_protein" = 1)
result_amount = 3
/datum/chemical_reaction/space_cleaner
name = "Space cleaner"
id = "cleaner"

View File

@@ -140,6 +140,4 @@
/obj/item/weapon/reagent_containers/chem_disp_cartridge/lime,
/obj/item/weapon/reagent_containers/chem_disp_cartridge/berry,
/obj/item/weapon/reagent_containers/chem_disp_cartridge/decaf
)

View File

@@ -50,12 +50,14 @@
return 1
/*
/datum/chemical_reaction/distilling/on_reaction(var/datum/reagents/holder, var/created_volume)
if(istype(holder.my_atom, /obj/item/weapon/reagent_containers/glass/distilling))
var/obj/item/weapon/reagent_containers/glass/distilling/D = holder.my_atom
var/obj/machinery/portable_atmospherics/powered/reagent_distillery/RD = D.Master
RD.current_temp += temp_shift
return
*/
// Subtypes //