mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-29 07:59:01 +01:00
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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user