mirror of
https://github.com/yogstation13/Yogstation.git
synced 2025-02-26 09:04:50 +00:00
18 lines
921 B
Plaintext
18 lines
921 B
Plaintext
GLOBAL_VAR_INIT(master_mode, "traitor") //"extended"
|
|
GLOBAL_VAR_INIT(secret_force_mode, "secret") // if this is anything but "secret", the secret rotation will forceably choose this mode
|
|
|
|
GLOBAL_VAR_INIT(wavesecret, 0) // meteor mode, delays wave progression, terrible name
|
|
GLOBAL_DATUM(start_state, /datum/station_state) // Used in round-end report
|
|
|
|
// Cult, needs to be global so admin cultists are functional
|
|
GLOBAL_VAR_INIT(blood_target, null) // Cult Master's target or Construct's Master
|
|
GLOBAL_DATUM(blood_target_image, /image)
|
|
GLOBAL_VAR_INIT(blood_target_reset_timer, null)
|
|
GLOBAL_DATUM(sac_mind, /datum/mind)
|
|
GLOBAL_VAR_INIT(sac_image, null)
|
|
GLOBAL_VAR_INIT(cult_vote_called, FALSE)
|
|
GLOBAL_VAR_INIT(cult_mastered, FALSE)
|
|
GLOBAL_VAR_INIT(reckoning_complete, FALSE)
|
|
GLOBAL_VAR_INIT(sac_complete, FALSE)
|
|
GLOBAL_DATUM(cult_narsie, /obj/singularity/narsie/large/cult)
|
|
GLOBAL_LIST_EMPTY(summon_spots) |