Tendon Health (#11826)

This commit is contained in:
Wildkins
2021-05-25 14:32:45 +02:00
committed by GitHub
parent 1166bb9579
commit 796c557856
15 changed files with 134 additions and 52 deletions
@@ -50,10 +50,10 @@
var/obj/item/organ/external/E = get_organ(organ_name)
if(!E || E.is_stump())
tally += 4
else if(E.status & ORGAN_SPLINTED)
tally += 0.5
else if(E.status & ORGAN_BROKEN)
else if((E.status & ORGAN_BROKEN) || (E.tendon_status() & TENDON_CUT))
tally += 1.5
else if((E.status & ORGAN_SPLINTED) || (E.tendon_status() & TENDON_BRUISED))
tally += 0.5
if (can_feel_pain())
if(shock_stage >= 10)