mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-13 02:13:06 +00:00
Increases the duration and occurrence rate of Anomaly events. Anomaly cores now give better research values. Bluespace anomalies no longer teleport anchored objects because it looks godawful. If not defused, Pyroclastic Anomalies will create a red or orange slime.
19 lines
634 B
Plaintext
19 lines
634 B
Plaintext
/datum/round_event_control/anomaly/anomaly_vortex
|
|
name = "Anomaly: Vortex"
|
|
typepath = /datum/round_event/anomaly/anomaly_vortex
|
|
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 = pick(get_area_turfs(impact_area))
|
|
if(T)
|
|
newAnomaly = new /obj/effect/anomaly/bhole(T.loc) |