mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-18 19:44:58 +01:00
Moderate blood loss now does tapering damage.
This commit is contained in:
@@ -83,15 +83,12 @@ var/const/BLOOD_VOLUME_SURVIVE = 122
|
||||
update_body()
|
||||
var/word = pick("dizzy","woozy","faint")
|
||||
src << "<span class='warning'>You feel [word].</span>"
|
||||
if(oxyloss < 20)
|
||||
oxyloss += 3
|
||||
oxyloss += max(0, (20-oxyloss)*0.2)
|
||||
if(BLOOD_VOLUME_BAD to BLOOD_VOLUME_OKAY)
|
||||
if(!pale)
|
||||
pale = 1
|
||||
update_body()
|
||||
if(oxyloss < 50)
|
||||
oxyloss += 10
|
||||
oxyloss += 1
|
||||
oxyloss += max(1, (50-oxyloss)*0.2)
|
||||
if(prob(5))
|
||||
eye_blurry += 6
|
||||
var/word = pick("dizzy","woozy","faint")
|
||||
@@ -310,4 +307,4 @@ var/const/BLOOD_VOLUME_SURVIVE = 122
|
||||
else
|
||||
B.blood_DNA[source.data["blood_DNA"]] = "O+"
|
||||
|
||||
return B
|
||||
return B
|
||||
|
||||
Reference in New Issue
Block a user