Makes mining mobs prioritize humans over raptors (#96134)

This commit is contained in:
SmArtKar
2026-05-27 23:51:59 -04:00
committed by GitHub
parent 8766f94edc
commit 5db9271022
4 changed files with 26 additions and 13 deletions
@@ -96,6 +96,10 @@ GLOBAL_LIST_INIT(raptor_colors, init_raptor_colors())
// Doesn't care for your excuses for friendly fire
ai_controller = /datum/ai_controller/basic_controller/raptor/aggressive
/datum/raptor_color/red/setup_raptor(mob/living/basic/raptor/raptor)
. = ..()
ADD_TRAIT(raptor, TRAIT_MINING_AGGRO, INNATE_TRAIT)
/datum/raptor_color/purple
color = "purple"
description = "A small, nimble breed, these raptors have been bred as travel companions rather than mounts, capable of storing the owner's possessions and helping them escape from danger unscathed."
@@ -440,7 +444,7 @@ GLOBAL_LIST_INIT(raptor_colors, init_raptor_colors())
/datum/raptor_color/black/setup_raptor(mob/living/basic/raptor/raptor)
. = ..()
raptor.add_traits(list(TRAIT_LAVA_IMMUNE, TRAIT_NOFIRE_SPREAD), INNATE_TRAIT)
raptor.add_traits(list(TRAIT_LAVA_IMMUNE, TRAIT_NOFIRE_SPREAD, TRAIT_MINING_AGGRO), INNATE_TRAIT)
/datum/raptor_color/black/setup_adult(mob/living/basic/raptor/raptor)
. = ..()