mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-27 15:01:04 +01:00
Tendon Health (#11826)
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user