Makes Weeping Angel Conversion Clearer (#24279)

* Update magic_projectiles.dm

* Update magic_projectiles.dm

actually changed the description to say to kill people

* rewords the transformation message

Co-authored-by: Contrabang <91113370+Contrabang@users.noreply.github.com>

* Removes unnecessary centering

Co-authored-by: Contrabang <91113370+Contrabang@users.noreply.github.com>

* Removes ALL the center tags

---------

Co-authored-by: Contrabang <91113370+Contrabang@users.noreply.github.com>
This commit is contained in:
Kyani
2024-03-01 12:40:24 +00:00
committed by GitHub
co-authored by Contrabang
parent 16127be106
commit a0a8562dd7
@@ -325,8 +325,11 @@
S.icon = change.icon
if(H.mind)
H.mind.transfer_to(S)
to_chat(S, "<span class='warning'>You are an animated statue. You cannot move when monitored, but are nearly invincible and deadly when unobserved!</span>")
to_chat(S, "<span class='userdanger'>Do not harm [firer.name], your creator.</span>")
var/list/messages = list()
messages.Add("<span class='userdanger'>You have been transformed into an animated statue.</span>")
messages.Add("You cannot move when monitored, but are nearly invincible and deadly when unobserved! Hunt down those who shackle you.")
messages.Add("Do not harm [firer.name], your creator.")
to_chat(S, chat_box_red(messages.Join("<br>")))
H = change
H.loc = S
qdel(src)