Death and Unconscious Messages (#22321)

adds a death message, changes the brain damage message to output in the
chat, and tweaks the unconscious message to display in a chat examine
box.

death
<img width="820" height="38" alt="image"
src="https://github.com/user-attachments/assets/caff6bf0-1f8f-49fa-a763-98b7c8b0afc6"
/>

brain damage
<img width="820" height="58" alt="image"
src="https://github.com/user-attachments/assets/94eb57a5-244f-4f89-81ba-24923214ee0d"
/>

unconscious
<img width="820" height="58" alt="image"
src="https://github.com/user-attachments/assets/2e384f8a-86a9-4624-ae57-138d85747846"
/>
This commit is contained in:
SleepyGemmy
2026-04-27 00:12:56 +00:00
committed by GitHub
parent c4ce0da8f4
commit 8464424c7e
4 changed files with 15 additions and 6 deletions
+4 -4
View File
@@ -242,17 +242,17 @@
/obj/item/organ/internal/brain/proc/handle_severe_brain_damage()
set waitfor = FALSE
healed_threshold = 0
to_chat(owner, "<span class = 'notice'><font size=4><B>Where am I...?</B></font></span>")
to_chat(owner, SPAN_NOTICE(FONT_LARGE("<b>Where am I...?</b>")))
owner.Paralyse(20)
sleep(5 SECONDS)
if(!owner)
return
to_chat(owner, "<span class = 'notice'><font size=4><B>What's going on...?</B></font></span>")
to_chat(owner, SPAN_NOTICE(FONT_LARGE("<b>What is going on...?</b>")))
sleep(10 SECONDS)
if(!owner)
return
to_chat(owner, "<span class = 'notice'><font size=4><B>What happened...?</B></font></span>")
alert(owner.find_mob_consciousness(), "You have taken massive brain damage! You will not be able to remember the events leading up to your injury.", "Brain Damaged")
to_chat(owner, SPAN_NOTICE(FONT_LARGE("<b>What happened...?</b>")))
to_chat(owner, EXAMINE_BLOCK_RED(SPAN_NOTICE(FONT_LARGE("You have taken massive brain damage. You will not be able to remember the events leading up to your injury."))))
/obj/item/organ/internal/brain/proc/handle_damage_effects()
if(owner.stat)