From 631e79c2af45559ef302b468b347e12b758d5fab Mon Sep 17 00:00:00 2001 From: Duck- Date: Wed, 19 Mar 2014 15:46:52 -0400 Subject: [PATCH] Adds clonetox, buffs lexorin Lexorin: 34 seconds to unconsciousness, 6 minutes and 10 seconds to death. Mutagen: 28 seconds to unconsciousness, 4 minutes and 21 seconds to death. Destabilizer: 36 seconds to unconsciousness, minute and 16 seconds to death. Unfortunately, the only thing that's ever really mattered is the knockout time. Cloneloss(5) drops the knockout time to a minute and 20 seconds because cloneloss doesn't cause much pain, apparently. Gave minor buff to Lexorin because it was worse than mutagen (Six minutes to kill after the spike is a long time, and it takes plasma. Might as well make it not awful?) --- code/modules/reagents/Chemistry-Reagents.dm | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/code/modules/reagents/Chemistry-Reagents.dm b/code/modules/reagents/Chemistry-Reagents.dm index ab24bdfc..4882da46 100644 --- a/code/modules/reagents/Chemistry-Reagents.dm +++ b/code/modules/reagents/Chemistry-Reagents.dm @@ -1586,7 +1586,7 @@ datum if(!M) M = holder.my_atom if(prob(33)) M.take_organ_damage(1*REM, 0) - M.adjustOxyLoss(3) + M.adjustOxyLoss(4) if(prob(20)) M.emote("gasp") ..() return @@ -1623,7 +1623,22 @@ datum M.sleeping += 1 ..() return + + toxin/destabilizer + name = "Genetic Destabilizer" + id = "destabilizer" + description = "A highly toxic chemical." + reagent_state = LIQUID + toxpwr = 0 + custom_metabolism = 0.05 + on_mob_life(var/mob/living/M as mob) + if(!M) M = holder.my_atom + 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"