mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2025-12-09 16:07:40 +00:00
29 lines
931 B
Plaintext
29 lines
931 B
Plaintext
/datum/round_event_control/wizard/ghost //The spook is real
|
|
name = "G-G-G-Ghosts!"
|
|
weight = 3
|
|
typepath = /datum/round_event/wizard/ghost
|
|
max_occurrences = 1
|
|
earliest_start = 0 MINUTES
|
|
description = "Ghosts become visible."
|
|
|
|
/datum/round_event/wizard/ghost/start()
|
|
var/msg = "<span class='warning'>You suddenly feel extremely obvious...</span>"
|
|
set_observer_default_invisibility(0, msg)
|
|
|
|
|
|
//--//
|
|
|
|
/datum/round_event_control/wizard/possession //Oh shit
|
|
name = "Possessing G-G-G-Ghosts!"
|
|
weight = 2
|
|
typepath = /datum/round_event/wizard/possession
|
|
max_occurrences = 5
|
|
earliest_start = 0 MINUTES
|
|
description = "Ghosts become visible and gain the power of possession."
|
|
|
|
/datum/round_event/wizard/possession/start()
|
|
for(var/mob/dead/observer/G in GLOB.player_list)
|
|
add_verb(G, /mob/dead/observer/verb/boo)
|
|
add_verb(G, /mob/dead/observer/verb/possess)
|
|
to_chat(G, "You suddenly feel a welling of new spooky powers...")
|