Regen Coma heals for more and triggers closer to death (#16814)

* be careful what you say

* better threshold
This commit is contained in:
Molti
2022-12-02 08:06:51 -06:00
committed by GitHub
parent dc5af39e88
commit 7c55df7bc7

View File

@@ -260,7 +260,7 @@
return power * 0.5
else if(M.IsSleeping())
return power * 0.25
else if(M.getBruteLoss() + M.getFireLoss() >= 70 && !active_coma)
else if(M.getBruteLoss() + M.getFireLoss() >= 90 && !active_coma)
to_chat(M, span_warning("You feel yourself slip into a regenerative coma..."))
active_coma = TRUE
addtimer(CALLBACK(src, .proc/coma, M), 60)
@@ -282,7 +282,7 @@
M.update_mobility()
/datum/symptom/heal/coma/Heal(mob/living/carbon/M, datum/disease/advance/A, actual_power)
var/heal_amt = 4 * actual_power
var/heal_amt = 6 * actual_power
var/list/parts = M.get_damaged_bodyparts(1,1)