Files
CHOMPstation/code/game/objects/mob_spawner_chomp.dm
T
IgnusVam b0734d5aa1 Big update
- Fixes spiders (I hope?) - Spiders now spawn in groups of 2-8, growing up should be fixed as well.
- Christmas-ifies all the maps
- Minor tweaks all around the stations
- Cleans up the map for central (a lot)
- Adds a new mob to the spawn list in the mines
- Fixes some minor shadekin issues
- Fixes it so borgs/AI can't understand gutter
- Modifies the timing of the radiation storm
- Hopefully fixes the cargo request event. No more buggy gas mixtures.
- Adds a flamboyant crate
- A bunch of other stuff.
2018-11-29 12:35:52 -07:00

23 lines
751 B
Plaintext

/obj/structure/mob_spawner/scanner/mining_animals
name = "Mining Lazy Spawner"
spawn_delay = 10 MINUTES
range = 10
simultaneous_spawns = 1
mob_faction = "wild animal"
total_spawns = 2
destructible = 0
anchored = 1
invisibility = 101
spawn_types = list(
/mob/living/silicon/robot/lost = 2,
/mob/living/simple_animal/hostile/hivebot/swarm = 1,
/mob/living/simple_animal/hostile/carp = 20,
/mob/living/simple_animal/hostile/mimic/crate = 2,
/mob/living/simple_animal/hostile/scarybat = 70,
/mob/living/simple_animal/hostile/jelly = 25,
/mob/living/simple_animal/hostile/bear = 1,
/mob/living/simple_animal/hostile/deathclaw = 1,
/mob/living/simple_animal/hostile/goose = 60,
/mob/living/simple_animal/retaliate/bee = 50,
)