diff --git a/_maps/map_files/KiloStation/KiloStation.dmm b/_maps/map_files/KiloStation/KiloStation.dmm index df5a3aad831..127359be72e 100644 --- a/_maps/map_files/KiloStation/KiloStation.dmm +++ b/_maps/map_files/KiloStation/KiloStation.dmm @@ -4605,15 +4605,7 @@ /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer4, /obj/structure/cable, -/mob/living/simple_animal/hostile/poison/giant_spider/hunter{ - desc = "Furry and black, it makes you shudder to look at it. This one has sparkling purple eyes, and looks abnormally thin and frail."; - environment_smash = 0; - health = 60; - maxHealth = 60; - melee_damage_lower = 5; - melee_damage_upper = 10; - name = "scrawny spider" - }, +/mob/living/simple_animal/hostile/poison/giant_spider/hunter/scrawny, /turf/open/floor/plating, /area/maintenance/department/electrical) "ajE" = ( @@ -53251,15 +53243,7 @@ /area/maintenance/starboard) "cME" = ( /obj/effect/decal/cleanable/dirt, -/mob/living/simple_animal/hostile/poison/giant_spider/hunter{ - desc = "Furry and black, it makes you shudder to look at it. This one has sparkling purple eyes, and looks abnormally thin and frail."; - environment_smash = 0; - health = 60; - maxHealth = 60; - melee_damage_lower = 5; - melee_damage_upper = 10; - name = "scrawny spider" - }, +/mob/living/simple_animal/hostile/poison/giant_spider/hunter/scrawny, /turf/open/floor/plating, /area/maintenance/department/electrical) "cMF" = ( diff --git a/code/modules/mob/living/simple_animal/hostile/giant_spider.dm b/code/modules/mob/living/simple_animal/hostile/giant_spider.dm index 4b4f7d0f29d..fc529963798 100644 --- a/code/modules/mob/living/simple_animal/hostile/giant_spider.dm +++ b/code/modules/mob/living/simple_animal/hostile/giant_spider.dm @@ -662,6 +662,23 @@ gold_core_spawnable = NO_SPAWN menu_description = "Fast ice spider variant specializing in catching running prey, but has less health. Immune to temperature damage. Frost oil injection of 10u per bite." +/** + * # Scrawny Hunter Spider + * + * A hunter spider that trades damage for health, unable to smash enviroments. + * + * Mainly used as a minor threat in abandoned places, such as areas in maintenance or a ruin. + */ +/mob/living/simple_animal/hostile/poison/giant_spider/hunter/scrawny + name = "scrawny spider" + environment_smash = 0 + health = 60 + maxHealth = 60 + melee_damage_lower = 5 + melee_damage_upper = 10 + desc = "Furry and black, it makes you shudder to look at it. This one has sparkling purple eyes, and looks abnormally thin and frail." + menu_description = "Fast spider variant specializing in catching running prey, but has less damage than a normal hunter spider at the cost of more health. Toxin injection of 10u per bite." + /** * # Flesh Spider *