mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-31 12:01:47 +00:00
19 lines
611 B
Plaintext
19 lines
611 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()
|
|
command_alert("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) |