7e9b96a00f
* 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
1.1 KiB
Plaintext
27 lines
1.1 KiB
Plaintext
/datum/round_event_control/communications_blackout
|
|
name = "Communications Blackout"
|
|
typepath = /datum/round_event/communications_blackout
|
|
weight = 30
|
|
|
|
/datum/round_event/communications_blackout
|
|
announceWhen = 1
|
|
|
|
/datum/round_event/communications_blackout/announce()
|
|
var/alert = pick( "Ionospheric anomalies detected. Temporary telecommunication failure imminent. Please contact you*%fj00)`5vc-BZZT", \
|
|
"Ionospheric anomalies detected. Temporary telecommunication failu*3mga;b4;'1v�-BZZZT", \
|
|
"Ionospheric anomalies detected. Temporary telec#MCi46:5.;@63-BZZZZT", \
|
|
"Ionospheric anomalies dete'fZ\\kg5_0-BZZZZZT", \
|
|
"Ionospheri:%� MCayj^j<.3-BZZZZZZT", \
|
|
"#4nd%;f4y6,>�%-BZZZZZZZT")
|
|
|
|
for(var/mob/living/silicon/ai/A in GLOB.ai_list) //AIs are always aware of communication blackouts.
|
|
to_chat(A, "<br><span class='warning'><b>[alert]</b></span><br>")
|
|
|
|
if(prob(30)) //most of the time, we don't want an announcement, so as to allow AIs to fake blackouts.
|
|
priority_announce(alert)
|
|
|
|
|
|
/datum/round_event/communications_blackout/start()
|
|
for(var/obj/machinery/telecomms/T in GLOB.telecomms_list)
|
|
T.emp_act(1)
|