mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-01-11 18:11:35 +00:00
* move all EOL comments on typepath names to dmdoc * Apply suggestions from code review Co-authored-by: Luc <89928798+lewcc@users.noreply.github.com> * Apply suggestions from code review Co-authored-by: S34N <12197162+S34NW@users.noreply.github.com> --------- Co-authored-by: Luc <89928798+lewcc@users.noreply.github.com> Co-authored-by: S34N <12197162+S34NW@users.noreply.github.com>
17 lines
607 B
Plaintext
17 lines
607 B
Plaintext
/// The spook is real
|
|
/datum/event/wizard/ghost
|
|
|
|
/datum/event/wizard/ghost/start()
|
|
var/msg = "<span class='warning'>You suddenly feel extremely obvious...</span>"
|
|
set_observer_default_invisibility(0, msg)
|
|
|
|
/// The spook is silent
|
|
/datum/event/wizard/ghost_mute
|
|
|
|
/datum/event/wizard/ghost_mute/start()
|
|
GLOB.dsay_enabled = FALSE
|
|
var/sound/S = sound('sound/hallucinations/wail.ogg')
|
|
for(var/mob/dead/observer/silenced in GLOB.player_list)
|
|
to_chat(silenced, "<span class='warning'>Magical forces wrap around your spectral form. You can no longer speak to other ghosts!</span>")
|
|
SEND_SOUND(silenced, S)
|