Crashed Vulpkanin Ship - Lavaland Ruin (#32110)

* Charon's Revolver

* Dog tags

* Ash Whelps

* Ash walkers and resist adjustment

* Some providence stuff

* Minor wording adjustment

* Desc change

* Ruin, salvage, and ruin assets

* linters

* Mo linters

* quick

* Various fixes

* Variety of fixes

* Update

* Naming

* FIX
This commit is contained in:
PollardTheDragon
2026-06-24 22:37:10 +00:00
committed by GitHub
parent 9d76cfee8e
commit 4d5b0e1286
28 changed files with 5968 additions and 2 deletions
+20
View File
@@ -654,6 +654,26 @@ INITIALIZE_IMMEDIATE(/obj/effect/landmark/newplayer_start) //Without this you sp
mobtype = /mob/living/basic/mining/goliath/ancient
. = ..()
/obj/effect/landmark/mob_spawner/ash_whelp
mobtype = /mob/living/basic/mining/ash_whelp
/obj/effect/landmark/mob_spawner/ash_whelp/Initialize(mapload)
if(prob(2))
mobtype = /mob/living/basic/mining/ash_whelp/ice
. = ..()
/obj/effect/landmark/mob_spawner/ashwalker_npc
mobtype = /mob/living/basic/ash_walker
/obj/effect/landmark/mob_spawner/ashwalker_npc/Initialize(mapload)
if(prob(40))
mobtype = /mob/living/basic/ash_walker/tough
else if(prob(15))
mobtype = /mob/living/basic/ash_walker/veteran
else if(prob(1))
mobtype = /mob/living/basic/ash_walker/elite
. = ..()
/obj/effect/landmark/mob_spawner/legion
mobtype = /mob/living/basic/mining/hivelord/legion
@@ -37,8 +37,10 @@
list(
/obj/effect/landmark/mob_spawner/abandoned_minebot,
/obj/effect/landmark/mob_spawner/ashwalker_npc,
/obj/effect/landmark/mob_spawner/goldgrub,
/obj/effect/landmark/mob_spawner/gutlunch,
/obj/effect/landmark/mob_spawner/ash_whelp,
) = 1,
)