From 89660bbc67b06058ad25cd30492f5aaac8faa834 Mon Sep 17 00:00:00 2001 From: skull132 Date: Tue, 25 Mar 2014 19:06:17 +0200 Subject: [PATCH] Sleep Toxin Fix Modified values to actually allow STox to work properly. --- code/modules/reagents/Chemistry-Reagents.dm | 23 +++++++++++---------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/code/modules/reagents/Chemistry-Reagents.dm b/code/modules/reagents/Chemistry-Reagents.dm index 96f9343e..1ce323df 100644 --- a/code/modules/reagents/Chemistry-Reagents.dm +++ b/code/modules/reagents/Chemistry-Reagents.dm @@ -1623,8 +1623,8 @@ datum M.sleeping += 1 ..() return - - toxin/destabilizer + + toxin/destabilizer name = "Genetic Destabilizer" id = "destabilizer" description = "Causes severe damage to genetic data." @@ -1637,8 +1637,8 @@ datum M.adjustCloneLoss(6) //High but still knocks out slower than mutagen. ..() return - - + + chefspecial // Quiet and lethal, needs atleast 4 units in the person before they'll die name = "Chef's Special" @@ -1783,16 +1783,17 @@ datum if(!M) M = holder.my_atom if(!data) data = 1 switch(data) - if(1 to 12) - if(prob(5)) M.emote("yawn") - if(12 to 15) + if(1 to 5) + if(prob(20)) M.emote("yawn") + if(5 to 10) M.eye_blurry = max(M.eye_blurry, 10) - if(15 to 49) - if(prob(50)) + if(10 to 15) + if(prob(25)) M.Weaken(2) M.drowsyness = max(M.drowsyness, 20) - if(50 to INFINITY) - M.Weaken(20) + if(15 to INFINITY) + if(prob(75)) + M.Weaken(20) M.drowsyness = max(M.drowsyness, 30) data++ ..()