Tweaked overdose values so sleepers don't leave any toxin damage.

This commit is contained in:
Ren Erthilo
2012-03-04 16:05:00 +00:00
parent 8937aeaee0
commit ba38c4b11f

View File

@@ -437,7 +437,7 @@ datum
M.slurring = 0 M.slurring = 0
M.confused = 0 M.confused = 0
M.jitteriness = 0 M.jitteriness = 0
if(100 to INFINITY) if(125 to INFINITY)
M:adjustToxLoss(0.1) M:adjustToxLoss(0.1)
..() ..()
return return
@@ -1230,7 +1230,7 @@ datum
if(!data) data = 1 if(!data) data = 1
data++ data++
M:heal_organ_damage(0,2) M:heal_organ_damage(0,2)
if(data >= 100) if(data >= 125)
M:adjustToxLoss(0.1) M:adjustToxLoss(0.1)
..() ..()
return return
@@ -1249,7 +1249,7 @@ datum
if(!data) data = 1 if(!data) data = 1
data++ data++
M:heal_organ_damage(0,3) M:heal_organ_damage(0,3)
if(data >= 100) if(data >= 125)
M:adjustToxLoss(0.2) M:adjustToxLoss(0.2)
..() ..()
return return
@@ -1270,7 +1270,7 @@ datum
M:adjustOxyLoss(-2) M:adjustOxyLoss(-2)
if(holder.has_reagent("lexorin")) if(holder.has_reagent("lexorin"))
holder.remove_reagent("lexorin", 2) holder.remove_reagent("lexorin", 2)
if(data >= 100) if(data >= 125)
M:adjustToxLoss(0.2) M:adjustToxLoss(0.2)
..() ..()
return return
@@ -1510,7 +1510,7 @@ datum
if(!data) data = 1 if(!data) data = 1
data++ data++
M:heal_organ_damage(2,0) M:heal_organ_damage(2,0)
if(data >= 100) if(data >= 125)
M:adjustToxLoss(0.2) M:adjustToxLoss(0.2)
..() ..()
return return