From a24b91d36995287bee05c16c80a0867ede56ddb5 Mon Sep 17 00:00:00 2001 From: Fox-McCloud Date: Thu, 17 Sep 2015 02:08:20 -0400 Subject: [PATCH] reagent amounts adjustment --- code/modules/research/experimentor.dm | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/code/modules/research/experimentor.dm b/code/modules/research/experimentor.dm index d844ffb2434..ee773b52d89 100644 --- a/code/modules/research/experimentor.dm +++ b/code/modules/research/experimentor.dm @@ -320,9 +320,9 @@ if(prob(EFFECT_PROB_VERYLOW-badThingCoeff)) visible_message("[src] destroys [exp_on], leaking dangerous gas!") chosenchem = pick("carbon","radium","toxin","condensedcapsaicin","psilocybin","space_drugs","ethanol","beepskysmash") - var/datum/reagents/R = new/datum/reagents(50) + var/datum/reagents/R = new/datum/reagents(15) R.my_atom = src - R.add_reagent(chosenchem , 50) + R.add_reagent(chosenchem , 15) investigate_log("Experimentor has released [chosenchem] smoke.", "experimentor") var/datum/effect/effect/system/chem_smoke_spread/smoke = new smoke.set_up(R, 1, 0, src, 0, silent = 1) @@ -333,9 +333,9 @@ if(prob(EFFECT_PROB_VERYLOW-badThingCoeff)) visible_message("[src]'s chemical chamber has sprung a leak!") chosenchem = pick("mutationtoxin","itching_powder","sacid") - var/datum/reagents/R = new/datum/reagents(50) + var/datum/reagents/R = new/datum/reagents(15) R.my_atom = src - R.add_reagent(chosenchem , 50) + R.add_reagent(chosenchem , 15) var/datum/effect/effect/system/chem_smoke_spread/smoke = new smoke.set_up(R, 1, 0, src, 0, silent = 1) playsound(src.loc, 'sound/effects/smoke.ogg', 50, 1, -3) @@ -420,9 +420,9 @@ investigate_log("Experimentor has made a cup of [chosenchem] coffee.", "experimentor") if(prob(EFFECT_PROB_VERYLOW-badThingCoeff)) visible_message("[src] malfunctions, shattering [exp_on] and releasing a dangerous cloud of coolant!") - var/datum/reagents/R = new/datum/reagents(50) + var/datum/reagents/R = new/datum/reagents(15) R.my_atom = src - R.add_reagent("frostoil" , 50) + R.add_reagent("frostoil" , 15) investigate_log("Experimentor has released frostoil gas.", "experimentor") var/datum/effect/effect/system/chem_smoke_spread/smoke = new smoke.set_up(R, 1, 0, src, 0, silent = 1)