From d8b6b7b4c915dd76f64564eabba3013888c8db86 Mon Sep 17 00:00:00 2001 From: Birdtalon Date: Wed, 21 Feb 2018 15:26:32 +0000 Subject: [PATCH] reduces ether metabolism rate, increases time before knockout --- code/modules/reagents/chemistry/reagents/medicine.dm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/code/modules/reagents/chemistry/reagents/medicine.dm b/code/modules/reagents/chemistry/reagents/medicine.dm index b135d076818..f37f5882f98 100644 --- a/code/modules/reagents/chemistry/reagents/medicine.dm +++ b/code/modules/reagents/chemistry/reagents/medicine.dm @@ -853,16 +853,17 @@ description = "A strong anesthetic and sedative." reagent_state = LIQUID color = "#96DEDE" + metabolization_rate = 0.1 /datum/reagent/medicine/ether/on_mob_life(mob/living/M) M.AdjustJitter(-25) switch(current_cycle) - if(1 to 15) + if(1 to 30) if(prob(7)) M.emote("yawn") - if(16 to 35) + if(31 to 40) M.Drowsy(20) - if(36 to INFINITY) + if(41 to INFINITY) M.Paralyse(15) M.Drowsy(20) ..()