Merge pull request #8705 from Birdtalon/ether

Re balances ether into a better anaesthetic
This commit is contained in:
tigercat2000
2018-04-06 20:21:04 -07:00
committed by GitHub
@@ -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)
..()