mirror of
https://github.com/CHOMPstation/CHOMPstation.git
synced 2026-07-20 03:23:36 +01:00
Mobs on the asteroid now have 15 second escape time for vore bellies, not 60 seconds. Now you can get ate by mobs without being punished with critical damage! (Does not affect Admemed™ mobs)
This commit is contained in:
@@ -20,3 +20,17 @@
|
||||
/mob/living/simple_animal/hostile/goose = 60,
|
||||
/mob/living/simple_animal/retaliate/bee = 50,
|
||||
)
|
||||
|
||||
/obj/structure/mob_spawner/scanner/mining_animals/do_spawn(var/mob_path)
|
||||
if(!ispath(mob_path))
|
||||
return 0
|
||||
var/mob/living/L = new mob_path(get_turf(src))
|
||||
L/simple_animal.vore_escape_time = 15 SECONDS
|
||||
L.source_spawner = src
|
||||
spawned_mobs.Add(L)
|
||||
last_spawn = world.time
|
||||
if(total_spawns > 0)
|
||||
total_spawns--
|
||||
if(mob_faction)
|
||||
L.faction = mob_faction
|
||||
return L
|
||||
Reference in New Issue
Block a user