mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-06 15:02:29 +00:00
21 lines
655 B
Plaintext
21 lines
655 B
Plaintext
/datum/round_event_control/anomaly/anomaly_vortex
|
|
name = "Anomaly: Vortex"
|
|
typepath = /datum/round_event/anomaly/anomaly_vortex
|
|
|
|
min_players = 20
|
|
max_occurrences = 2
|
|
weight = 5
|
|
|
|
/datum/round_event/anomaly/anomaly_vortex
|
|
startWhen = 10
|
|
announceWhen = 3
|
|
endWhen = 95
|
|
|
|
|
|
/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 = safepick(get_area_turfs(impact_area))
|
|
if(T)
|
|
newAnomaly = new /obj/effect/anomaly/bhole(T) |