From f0e221a1ab8c4a59c725db4207051f3ddf310abd Mon Sep 17 00:00:00 2001 From: nemo Date: Thu, 9 Feb 2012 23:34:19 +0100 Subject: [PATCH] Increased the speed at which you lose damage in shock-crit greatly, and the speed at which you heal in non-crit slightly. --- code/modules/mob/living/carbon/human/life.dm | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/code/modules/mob/living/carbon/human/life.dm b/code/modules/mob/living/carbon/human/life.dm index 74f4d9fe0bb..c91a1282a83 100644 --- a/code/modules/mob/living/carbon/human/life.dm +++ b/code/modules/mob/living/carbon/human/life.dm @@ -113,17 +113,14 @@ handle_health_updates() // if the mob has enough health, she should slowly heal if(health >= 0) - var/pr = 5 + var/pr = 10 if(stat == 1) // sleeping means faster healing - pr += 3 + pr += 5 if(prob(pr)) heal_organ_damage(1,1) adjustToxLoss(-1) else if(health < 0) - var/pr = 8 - // sleeping means slower damage - if(stat == 1) - pr = 3 + var/pr = 80 if(prob(pr)) adjustToxLoss(1) @@ -1157,4 +1154,4 @@ else if(shock_stage == 40) src << ""+pick("The pain is excrutiating!", "Please, just end the pain!", "Your whole body is going numb!") else if(shock_stage == 80) - src << ""+pick("You see a light at the end of the tunnel!", "You feel like you could die any moment now.", "You're about to lose consciousness.") \ No newline at end of file + src << ""+pick("You see a light at the end of the tunnel!", "You feel like you could die any moment now.", "You're about to lose consciousness.")