mirror of
https://github.com/fulpstation/fulpstation.git
synced 2025-12-10 10:01:40 +00:00
-Centcom announcement proc merged with generic priority announcement proc -Re-added the Captain Announces accompanied by a new pleasant sound, instead of the generic priority announcement -Captain Announcements will automatically generate a newscaster article -Priority announcements without any defined accompanying sound will play a generic "Attention" soundbyte as an audio cue -Communications consoles will display who is currently logged in
19 lines
633 B
Plaintext
19 lines
633 B
Plaintext
/datum/round_event_control/anomaly/anomaly_vortex
|
|
name = "Vortex Anomaly"
|
|
typepath = /datum/round_event/anomaly/anomaly_vortex
|
|
max_occurrences = 5
|
|
weight = 2
|
|
|
|
/datum/round_event/anomaly/anomaly_vortex
|
|
startWhen = 10
|
|
announceWhen = 3
|
|
endWhen = 80
|
|
|
|
|
|
/datum/round_event/anomaly/anomaly_vortex/announce()
|
|
priority_announce("Localized high-intensity vortex anomaly detected on long range scanners. Expected location: [impact_area.name]", "Anomaly Alert")
|
|
|
|
/datum/round_event/anomaly/anomaly_vortex/start()
|
|
var/turf/T = pick(get_area_turfs(impact_area))
|
|
if(T)
|
|
newAnomaly = new /obj/effect/anomaly/bhole(T.loc) |