Skip to content

Commit

Permalink
Non-modular shit
Browse files Browse the repository at this point in the history
  • Loading branch information
AyIong committed Aug 15, 2024
1 parent 254326a commit 238c1b4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions code/modules/mob/living/carbon/human/human_life.dm
Original file line number Diff line number Diff line change
Expand Up @@ -631,7 +631,7 @@
if(prob(5))
Paralyse(4 SECONDS)
switch(health)
if(-INFINITY to -100)
if(-INFINITY to -50) // SS220 EDIT - Less survivability
adjustOxyLoss(1)
if(prob(health * -0.1))
if(ishuman(src))
Expand All @@ -641,14 +641,14 @@
var/datum/disease/D = new /datum/disease/critical/heart_failure
ForceContractDisease(D)
Paralyse(10 SECONDS)
if(-99 to -80)
if(-49 to -40) // SS220 EDIT - Less survivability
adjustOxyLoss(1)
if(prob(4))
to_chat(src, "<span class='userdanger'>Your chest hurts...</span>")
Paralyse(4 SECONDS)
var/datum/disease/D = new /datum/disease/critical/heart_failure
ForceContractDisease(D)
if(-79 to -50)
if(-39 to -25) // SS220 EDIT - Less survivability
adjustOxyLoss(1)
if(prob(10))
var/datum/disease/D = new /datum/disease/critical/shock
Expand All @@ -661,7 +661,7 @@
Weaken(6 SECONDS)
if(prob(3))
Paralyse(4 SECONDS)
if(-49 to 0)
if(-24 to 0) // SS220 EDIT - Less survivability
adjustOxyLoss(1)
if(prob(3))
var/datum/disease/D = new /datum/disease/critical/shock
Expand Down

0 comments on commit 238c1b4

Please sign in to comment.