lowers succumb threshold to 130 damage (#26941)

This commit is contained in:
Silverplate
2024-10-02 15:17:06 +00:00
committed by GitHub
parent e118716f16
commit 2d58d8e3ad
3 changed files with 4 additions and 3 deletions
@@ -720,7 +720,7 @@
healthdoll.overlays -= (cached_overlays - new_overlays)
healthdoll.cached_healthdoll_overlays = new_overlays
if(health <= HEALTH_THRESHOLD_CRIT)
if(health <= HEALTH_THRESHOLD_SUCCUMB)
throw_alert("succumb", /atom/movable/screen/alert/succumb)
else
clear_alert("succumb")
+2 -2
View File
@@ -293,7 +293,7 @@
if(stat == DEAD)
to_chat(src, "<span class='notice'>It's too late, you're already dead!</span>")
return
if(health >= HEALTH_THRESHOLD_CRIT)
if(health >= HEALTH_THRESHOLD_SUCCUMB)
to_chat(src, "<span class='warning'>You are unable to succumb to death! This life continues!</span>")
return
@@ -307,7 +307,7 @@
if(stat == DEAD)
return
if(health >= HEALTH_THRESHOLD_CRIT)
if(health >= HEALTH_THRESHOLD_SUCCUMB)
to_chat(src, "<span class='warning'>You are unable to succumb to death! This life continues!</span>")
return