From 309e325d3d96a43ee84543643572b40d26a123e9 Mon Sep 17 00:00:00 2001 From: Fox-McCloud Date: Sat, 12 Dec 2015 23:39:42 -0500 Subject: [PATCH 1/2] Aranesp Tweak --- code/modules/reagents/newchem/drugs.dm | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/code/modules/reagents/newchem/drugs.dm b/code/modules/reagents/newchem/drugs.dm index 9bee5b09324..e6eb668c1c2 100644 --- a/code/modules/reagents/newchem/drugs.dm +++ b/code/modules/reagents/newchem/drugs.dm @@ -370,11 +370,14 @@ var/high_message = pick("You feel like you're made of steel!", "You feel invigorated!", "You feel really buff!", "You feel on top of the world!", "You feel full of energy!") if(prob(5)) M << "[high_message]" - M.adjustStaminaLoss(-35) - M.adjustToxLoss(1) - if(prob(3)) - M.losebreath += 2 - M.Stun(2) + M.adjustStaminaLoss(-40) + if(prob(90)) + M.adjustToxLoss(1) + if(prob(5)) + M << "You cannot breathe!" + M.losebreath += 1 + M.adjustOxyLoss(15) + M.Stun(1) ..() return From e15f65ce1f73161e541310816727018946a2b131 Mon Sep 17 00:00:00 2001 From: Fox-McCloud Date: Sun, 13 Dec 2015 18:10:32 -0500 Subject: [PATCH 2/2] CRY SUM MOAR --- code/modules/reagents/newchem/drugs.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/reagents/newchem/drugs.dm b/code/modules/reagents/newchem/drugs.dm index e6eb668c1c2..c27bef559ae 100644 --- a/code/modules/reagents/newchem/drugs.dm +++ b/code/modules/reagents/newchem/drugs.dm @@ -374,7 +374,7 @@ if(prob(90)) M.adjustToxLoss(1) if(prob(5)) - M << "You cannot breathe!" + M << "You cannot breathe!" M.losebreath += 1 M.adjustOxyLoss(15) M.Stun(1)