Port goliaths to basic mobs, Round 2 (#30566)

* Port goliaths to basic mobs.

* linting whitespace

* more linting

* wtf

* Addresses reviews on prior PR, adjusts behavior for food searching

* Missing Comma

* Goliath aggro range

* Reduces goliath speed to 5 from 3

---------

Signed-off-by: PollardTheDragon <144391971+PollardTheDragon@users.noreply.github.com>
Co-authored-by: warriorstar-orion <orion@snowfrost.garden>
This commit is contained in:
PollardTheDragon
2025-10-21 19:27:27 +00:00
committed by GitHub
co-authored by warriorstar-orion
parent 28f7414c64
commit dc3f8f6cc9
26 changed files with 541 additions and 235 deletions
@@ -9,7 +9,7 @@
faction = list("mining")
max_mobs = 3
max_integrity = 250
mob_types = list(/mob/living/basic/mining/basilisk/watcher/tendril)
mob_types = list(/mob/living/basic/mining/basilisk/watcher)
move_resist = INFINITY // just killing it tears a massive hole in the ground, let's not move it
resistance_flags = FIRE_PROOF | LAVA_PROOF
@@ -17,10 +17,10 @@
var/obj/effect/light_emitter/tendril/emitted_light
/obj/structure/spawner/lavaland/goliath
mob_types = list(/mob/living/simple_animal/hostile/asteroid/goliath/beast/tendril)
mob_types = list(/mob/living/basic/mining/goliath)
/obj/structure/spawner/lavaland/legion
mob_types = list(/mob/living/basic/mining/hivelord/legion/tendril)
mob_types = list(/mob/living/basic/mining/hivelord/legion)
GLOBAL_LIST_EMPTY(tendrils)