mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-23 15:38:08 +00:00
* Causes Immovable Rods to actually bisect the station * Changes odds for more deadly Meteor Waves * Fixes that FUCKING TEXT FOR MEATY ORE WAVES
26 lines
822 B
Plaintext
26 lines
822 B
Plaintext
/datum/round_event_control/anomaly/anomaly_flux
|
|
name = "Anomaly: Hyper-Energetic Flux"
|
|
typepath = /datum/round_event/anomaly/anomaly_flux
|
|
max_occurrences = 5
|
|
weight = 20
|
|
|
|
/datum/round_event/anomaly/anomaly_flux
|
|
startWhen = 3
|
|
announceWhen = 20
|
|
endWhen = 80
|
|
|
|
|
|
/datum/round_event/anomaly/anomaly_flux/announce()
|
|
priority_announce("Localized hyper-energetic flux wave detected on long range scanners. Expected location: [impact_area.name].", "Anomaly Alert")
|
|
|
|
|
|
/datum/round_event/anomaly/anomaly_flux/start()
|
|
var/turf/T = pick(get_area_turfs(impact_area))
|
|
if(T)
|
|
newAnomaly = new /obj/effect/anomaly/flux(T.loc)
|
|
|
|
|
|
/datum/round_event/anomaly/anomaly_flux/end()
|
|
if(newAnomaly.loc)//If it hasn't been neutralized, it's time to blow up.
|
|
explosion(newAnomaly, -1, 3, 8, 10)
|
|
qdel(newAnomaly) |