mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 10:12:45 +00:00
[MIRROR] remove static chat colour tags (#7635)
Co-authored-by: Heroman3003 <31296024+Heroman3003@users.noreply.github.com> Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com> Co-authored-by: Guti <32563288+TheCaramelion@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: CHOMPStation2 <chompsation2@gmail.com> Co-authored-by: Raeschen <rycoop29@gmail.com> Co-authored-by: Changelogs <action@github.com> Co-authored-by: Aroliacue <96730930+Aroliacue@users.noreply.github.com> Co-authored-by: Eli <fracshun@gmail.com> Co-authored-by: tacoguy7765093 <karokaromaro@gmail.com> Co-authored-by: Nadyr <41974248+Darlantanis@users.noreply.github.com> Co-authored-by: TheGreatKitsune <88862343+TheGreatKitsune@users.noreply.github.com> Co-authored-by: Missile597 <150307788+Missile597@users.noreply.github.com>
This commit is contained in:
@@ -120,10 +120,10 @@ var/const/CE_STABLE_THRESHOLD = 0.5
|
||||
pale = 1
|
||||
update_icons_body()
|
||||
var/word = pick("dizzy","woozy","faint","disoriented","unsteady")
|
||||
to_chat(src, "<font color='red'>You feel slightly [word]</font>")
|
||||
to_chat(src, span_red("You feel slightly [word]"))
|
||||
if(prob(1))
|
||||
var/word = pick("dizzy","woozy","faint","disoriented","unsteady")
|
||||
to_chat(src, "<font color='red'>You feel [word]</font>")
|
||||
to_chat(src, span_red("You feel [word]"))
|
||||
if(getOxyLoss() < 20 * threshold_coef)
|
||||
adjustOxyLoss(3 * dmg_coef)
|
||||
else if(blood_volume_raw >= species.blood_volume*species.blood_level_danger)
|
||||
@@ -137,13 +137,13 @@ var/const/CE_STABLE_THRESHOLD = 0.5
|
||||
if(prob(15))
|
||||
Paralyse(rand(1,3))
|
||||
var/word = pick("dizzy","woozy","faint","disoriented","unsteady")
|
||||
to_chat(src, "<font color='red'>You feel dangerously [word]</font>")
|
||||
to_chat(src, span_red("You feel dangerously [word]"))
|
||||
else if(blood_volume_raw >= species.blood_volume*species.blood_level_fatal)
|
||||
adjustOxyLoss(5 * dmg_coef)
|
||||
// adjustToxLoss(3 * dmg_coef)
|
||||
if(prob(15))
|
||||
var/word = pick("dizzy","woozy","faint","disoriented","unsteady")
|
||||
to_chat(src, "<font color='red'>You feel extremely [word]</font>")
|
||||
to_chat(src, span_red("You feel extremely [word]"))
|
||||
else //Not enough blood to survive (usually)
|
||||
if(!pale)
|
||||
pale = 1
|
||||
|
||||
Reference in New Issue
Block a user