mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-09 00:13:55 +00:00
* Add a SCP-294 ruin * Convert map to TGM * Add hostile mobs, random traps * Add nanites * Now now, we don't wanna blow ourselves up, do we, Jimmy? * Blacklist blob chems * make it harder * Remove statue; use can_synth; name finder * Fixup scp_294.dmm * Fix traps * Fix traps * Add to POI list * TGM-ize * ruin remap * damn tags * Re-add mimics and traps * New sprites by @militaires! * Fix trap spawners spawning ctf protection thingys * map fixes * New sprite!
10 lines
318 B
Plaintext
10 lines
318 B
Plaintext
/obj/effect/spawner/trap
|
|
name = "random trap"
|
|
icon = 'icons/obj/hand_of_god_structures.dmi'
|
|
icon_state = "trap_rand"
|
|
|
|
/obj/effect/spawner/trap/Initialize(mapload)
|
|
..()
|
|
var/new_type = pick(subtypesof(/obj/structure/trap) - typesof(/obj/structure/trap/ctf))
|
|
new new_type(get_turf(src))
|
|
return INITIALIZE_HINT_QDEL |