remove static chat colour tags

This commit is contained in:
Kashargul
2024-01-21 12:34:53 +01:00
parent 956acefc4d
commit e4b62dfa35
242 changed files with 1178 additions and 996 deletions
+4 -4
View File
@@ -118,10 +118,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)
@@ -135,13 +135,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