mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-23 13:05:44 +01:00
Adds Off-Worlder Humans (#6078)
This commit is contained in:
@@ -128,16 +128,11 @@ var/const/BLOOD_VOLUME_SURVIVE = 122
|
||||
for(var/obj/item/organ/external/temp in organs)
|
||||
if(!(temp.status & ORGAN_BLEEDING) || temp.status & ORGAN_ROBOT)
|
||||
continue
|
||||
if(isvaurca(src))
|
||||
for(var/datum/wound/W in temp.wounds) if(W.bleeding())
|
||||
blood_max += W.damage / 30
|
||||
if (temp.open)
|
||||
blood_max += 3 //Yer stomach is cut open
|
||||
else
|
||||
for(var/datum/wound/W in temp.wounds) if(W.bleeding())
|
||||
blood_max += W.damage / 40
|
||||
if (temp.open)
|
||||
blood_max += 2 //Yer stomach is cut open
|
||||
for(var/datum/wound/W in temp.wounds)
|
||||
if(W.bleeding())
|
||||
blood_max += ((W.damage / 40) * species.bleed_mod)
|
||||
if (temp.open)
|
||||
blood_max += 2 * species.bleed_mod //Yer stomach is cut open
|
||||
drip(blood_max)
|
||||
|
||||
//Makes a blood drop, leaking amt units of blood from the mob
|
||||
|
||||
Reference in New Issue
Block a user