mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-10 22:54:32 +01:00
b0463d3c83
* spanish? * aaaagain * keep maptext * Update robot_items.dm * Update span_defines.dm * compiles * Update silicon_mob.dm * compile
17 lines
577 B
Plaintext
17 lines
577 B
Plaintext
/// The spook is real
|
|
/datum/event/wizard/ghost
|
|
|
|
/datum/event/wizard/ghost/start()
|
|
var/msg = SPAN_WARNING("You suddenly feel extremely obvious...")
|
|
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_WARNING("Magical forces wrap around your spectral form. You can no longer speak to other ghosts!"))
|
|
SEND_SOUND(silenced, S)
|