Buffs adminordrazine

This commit is contained in:
Unknown
2019-05-02 17:36:29 -04:00
parent ad2c62fada
commit 822a9c7259
@@ -180,8 +180,8 @@
M.setCloneLoss(0)
M.setOxyLoss(0)
M.radiation = 0
M.heal_organ_damage(5,5)
M.adjustToxLoss(-5)
M.heal_organ_damage(20,20)
M.adjustToxLoss(-20)
M.hallucination = 0
M.setBrainLoss(0)
M.disabilities = 0
@@ -198,6 +198,28 @@
M.SetConfused(0)
M.sleeping = 0
M.jitteriness = 0
M.radiation = 0
M.ExtinguishMob()
M.fire_stacks = 0
if(M.bodytemperature > 310)
M.bodytemperature = max(310, M.bodytemperature - (40 * TEMPERATURE_DAMAGE_COEFFICIENT))
else if(M.bodytemperature < 311)
M.bodytemperature = min(310, M.bodytemperature + (40 * TEMPERATURE_DAMAGE_COEFFICIENT))
if(ishuman(M))
var/mob/living/carbon/human/H = M
var/wound_heal = 5
for(var/obj/item/organ/external/O in H.bad_external_organs)
if(O.status & ORGAN_BROKEN)
O.mend_fracture() //Only works if the bone won't rebreak, as usual
for(var/datum/wound/W in O.wounds)
if(W.bleeding())
W.damage = max(W.damage - wound_heal, 0)
if(W.damage <= 0)
O.wounds -= W
if(W.internal)
W.damage = max(W.damage - wound_heal, 0)
if(W.damage <= 0)
O.wounds -= W
/datum/reagent/gold
name = "Gold"