mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-05-19 21:28:37 +01:00
d59ad9df0c
* Anomalies * Tiles * Automatic changelog compile [ci skip] * Bioscramble * Reactive armour * Reactive * . * Automatic changelog compile [ci skip] * hallucination * Snowy * Bit of polishing * change * Cargo & Research * fimx * Anomaly stuffs * Bioscrambler + Terrible fire armour * Adjustment * Less spammy * Changes --------- Co-authored-by: vorestation-ci[bot] <199609141+vorestation-ci[bot]@users.noreply.github.com>
18 lines
473 B
Plaintext
18 lines
473 B
Plaintext
/obj/effect/spawner/lootdrop/environmentally_safe_anomaly
|
|
name = "safe anomaly spawner"
|
|
icon_state = "instability"
|
|
loot = list(
|
|
/obj/effect/anomaly/flux,
|
|
/obj/effect/anomaly/bluespace,
|
|
/obj/effect/anomaly/hallucination,
|
|
/obj/effect/anomaly/bioscrambler/docile
|
|
)
|
|
|
|
var/anchor_anomaly = FALSE
|
|
|
|
/obj/effect/spawner/lootdrop/environmentally_safe_anomaly/Initialize(mapload)
|
|
. = ..()
|
|
|
|
var/obj/effect/anomaly/anomaly = .
|
|
anomaly.stabilize(anchor = anchor_anomaly)
|