mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-01 12:31:32 +00:00
3591 individual conflicts Update build.js Update install_node.sh Update byond.js oh my fucking god hat slow huh holy shit we all fall down 2 more I missed 2900 individual conflicts 2700 Individual conflicts replaces yarn file with tg version, bumping us down to 2200-ish Down to 2000 individual conflicts 140 down mmm aaaaaaaaaaaaaaaaaaa not yt 575 soon 900 individual conflicts 600 individual conflicts, 121 file conflicts im not okay 160 across 19 files 29 in 4 files 0 conflicts, compiletime fix time some minor incap stuff missed ticks weird dupe definition stuff missed ticks 2 incap fixes undefs and pie fix Radio update and some extra minor stuff returns a single override no more dupe definitions, 175 compiletime errors Unticked file fix sound and emote stuff honk and more radio stuff
36 lines
1.7 KiB
Plaintext
36 lines
1.7 KiB
Plaintext
/datum/round_event_control/communications_blackout
|
|
name = "Communications Blackout"
|
|
typepath = /datum/round_event/communications_blackout
|
|
weight = 30
|
|
category = EVENT_CATEGORY_ENGINEERING
|
|
description = "Heavily emps all telecommunication machines, blocking all communication for a while."
|
|
min_wizard_trigger_potency = 0
|
|
max_wizard_trigger_potency = 3
|
|
|
|
/datum/round_event/communications_blackout
|
|
announce_when = 1
|
|
|
|
/datum/round_event/communications_blackout/announce(fake)
|
|
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_warning("<b>[alert]</b>")]<br>")
|
|
|
|
if(prob(30) || fake) //most of the time, we don't want an announcement, so as to allow AIs to fake blackouts.
|
|
priority_announce(alert, "Anomaly Alert", sound = ANNOUNCER_COMMSBLACKOUT) //SKYRAT EDIT CHANGE - ORIGINAL: priority_announce(alert, "Anomaly Alert")
|
|
|
|
|
|
/datum/round_event/communications_blackout/start()
|
|
for(var/obj/machinery/telecomms/T in GLOB.telecomms_list)
|
|
T.emp_act(EMP_HEAVY)
|
|
for(var/datum/transport_controller/linear/tram/transport as anything in SStransport.transports_by_type[TRANSPORT_TYPE_TRAM])
|
|
if(!isnull(transport.home_controller))
|
|
var/obj/machinery/transport/tram_controller/tcomms/controller = transport.home_controller
|
|
controller.emp_act(EMP_HEAVY)
|