mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-12 15:45:25 +01:00
Newer Crit (Hardcrit is fixed to be more lethal) (#22853)
* death comes for us all * brain damage is less impactful due to defibs
This commit is contained in:
@@ -604,7 +604,7 @@
|
||||
|
||||
if(!check_death_method())
|
||||
if(health <= HEALTH_THRESHOLD_DEAD)
|
||||
var/deathchance = min(99, ((getBrainLoss() * -5) + (health + (getOxyLoss() / 2))) * -0.01)
|
||||
var/deathchance = min(99, ((getBrainLoss() / 5) + (health + (getOxyLoss() / -2))) * -0.1)
|
||||
if(prob(deathchance))
|
||||
death()
|
||||
return
|
||||
|
||||
Reference in New Issue
Block a user