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
21 lines
721 B
Plaintext
21 lines
721 B
Plaintext
/datum/round_event_control/radiation_storm
|
|
name = "Radiation Storm"
|
|
typepath = /datum/round_event/radiation_storm
|
|
max_occurrences = 1
|
|
|
|
/datum/round_event/radiation_storm
|
|
|
|
|
|
/datum/round_event/radiation_storm/setup()
|
|
startWhen = 3
|
|
endWhen = startWhen + 1
|
|
announceWhen = 1
|
|
|
|
/datum/round_event/radiation_storm/announce(fake)
|
|
priority_announce("High levels of radiation detected near the station. Maintenance is best shielded from radiation.", "Anomaly Alert", 'sound/ai/radiation.ogg')
|
|
//sound not longer matches the text, but an audible warning is probably good
|
|
|
|
/datum/round_event/radiation_storm/start()
|
|
SSweather.run_weather("radiation storm",ZLEVEL_STATION_PRIMARY)
|
|
make_maint_all_access()
|