diff --git a/code/modules/organs/internal/brain.dm b/code/modules/organs/internal/brain.dm
index 5f4992b55d9..f00288ab3a7 100644
--- a/code/modules/organs/internal/brain.dm
+++ b/code/modules/organs/internal/brain.dm
@@ -117,7 +117,7 @@
damage = max(damage-1, 0)
if(BLOOD_VOLUME_OKAY to BLOOD_VOLUME_SAFE)
if(prob(1))
- to_chat(owner, "You feel [pick("dizzy","woozy","faint")]...")
+ to_chat(owner, SPAN_WARNING("You feel a bit [pick("lightheaded","dizzy","pale")]..."))
damprob = owner.chem_effects[CE_STABLE] ? 30 : 60
if(!past_damage_threshold(2) && prob(damprob))
take_internal_damage(1)
@@ -128,7 +128,7 @@
take_internal_damage(1)
if(!owner.paralysis && prob(10))
owner.Paralyse(rand(1,3))
- to_chat(owner, "You feel extremely [pick("dizzy","woozy","faint")]...")
+ to_chat(owner, SPAN_WARNING("You feel [pick("weak","disoriented","faint","cold")]."))
if(BLOOD_VOLUME_SURVIVE to BLOOD_VOLUME_BAD)
owner.eye_blurry = max(owner.eye_blurry,6)
damprob = owner.chem_effects[CE_STABLE] ? 60 : 100
@@ -136,7 +136,7 @@
take_internal_damage(1)
if(!owner.paralysis && prob(15))
owner.Paralyse(rand(3, 5))
- to_chat(owner, "You feel extremely [pick("dizzy","woozy","faint")]...")
+ to_chat(owner, SPAN_WARNING("You feel extremely [pick("cold","woozy","faint","weak","confused","tired","lethargic")]."))
if(-(INFINITY) to BLOOD_VOLUME_SURVIVE) // Also see heart.dm, being below this point puts you into cardiac arrest.
owner.eye_blurry = max(owner.eye_blurry,6)
damprob = owner.chem_effects[CE_STABLE] ? 80 : 100
@@ -240,4 +240,4 @@
else
to_chat(user, SPAN_WARNING("The brain has already been prepared!"))
return
- return ..()
\ No newline at end of file
+ return ..()
diff --git a/html/changelogs/blood_loss_msg.yml b/html/changelogs/blood_loss_msg.yml
new file mode 100644
index 00000000000..ec500efbb10
--- /dev/null
+++ b/html/changelogs/blood_loss_msg.yml
@@ -0,0 +1,6 @@
+author: Vrow
+
+delete-after: True
+
+changes:
+ - tweak: "Tweaked the messages you get from blood loss. Now it's not just the same dizzy, faint, and woozy for all blood loss levels."