mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-08-26 06:40:08 +01:00
Co-authored-by: Guti <32563288+TheCaramelion@users.noreply.github.com> Co-authored-by: Cameron Lennox <killer65311@gmail.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)
|