Files
Paradise/code/modules/events/wizard/ghost_wizard_spells.dm
T
AffectedArc07 b34e8fa301 [READY] CI now bans files with the same name (#20195)
* CI now bans files with the same name

* Part 1

* Warriorstar python tweaks

* Part Deux

* Fix unticked

* fix
2023-02-04 16:33:41 -06:00

15 lines
603 B
Plaintext

/datum/event/wizard/ghost //The spook is real
/datum/event/wizard/ghost/start()
var/msg = "<span class='warning'>You suddenly feel extremely obvious...</span>"
set_observer_default_invisibility(0, msg)
/datum/event/wizard/ghost_mute //The spook is silent
/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)