mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2025-12-10 01:49:19 +00:00
* Maps and things no code/icons * helpers defines globalvars * Onclick world.dm orphaned_procs * subsystems Round vote and shuttle autocall done here too * datums * Game folder * Admin - chatter modules * clothing - mining * modular computers - zambies * client * mob level 1 * mob stage 2 + simple_animal * silicons n brains * mob stage 3 + Alien/Monkey * human mobs * icons updated * some sounds * emitter y u no commit * update tgstation.dme * compile fixes * travis fixes Also removes Fast digest mode, because reasons. * tweaks for travis Mentors are broke again Also fixes Sizeray guns * oxygen loss fix for vore code. * removes unused code * some code updates * bulk fixes * further fixes * outside things * whoops. * Maint bar ported * GLOBs.
27 lines
798 B
Plaintext
27 lines
798 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
|
|
|
|
/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
|
|
|
|
/datum/round_event/wizard/possession/start()
|
|
for(var/mob/dead/observer/G in GLOB.player_list)
|
|
G.verbs += /mob/dead/observer/verb/boo
|
|
G.verbs += /mob/dead/observer/verb/possess
|
|
to_chat(G, "You suddenly feel a welling of new spooky powers...")
|