From fd3fe0378fee56fdd3e19f23b8babc5ba385e0f6 Mon Sep 17 00:00:00 2001 From: Razgriz Date: Sun, 22 Nov 2020 16:56:26 -0700 Subject: [PATCH] QUICK FIX Hopefully to get jellybrig to retaliate --- .../living/simple_mob/subtypes/metroid/metTypes.dm | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/simple_mob/subtypes/metroid/metTypes.dm b/code/modules/mob/living/simple_mob/subtypes/metroid/metTypes.dm index e597a31707..1db485eeb3 100644 --- a/code/modules/mob/living/simple_mob/subtypes/metroid/metTypes.dm +++ b/code/modules/mob/living/simple_mob/subtypes/metroid/metTypes.dm @@ -8,9 +8,9 @@ GLOBAL_VAR_INIT(queen_amount, 0) //We only gonna want 1 queen in the world. /mob/living/simple_mob/metroid/jellybrig //Security's pet name = "Jellybrig" desc = "This one scree's happily at you." - ai_holder_type = /datum/ai_holder/simple_mob/retaliate //Instead of normal metroid code, this guy is basically a retaliatory punching bag. + ai_holder_type = /datum/ai_holder/simple_mob/jellybrig //Instead of normal metroid code, this guy is basically a retaliatory punching bag. say_list_type = /datum/say_list/metroid - faction = "neutral" + faction = "notmetroid" maxHealth = 400 health = 400 melee_damage_lower = 2 @@ -35,6 +35,15 @@ GLOBAL_VAR_INIT(queen_amount, 0) //We only gonna want 1 queen in the world. vore_digest_chance = 1 //Chance to switch to digest mode if resisted vore_absorb_chance = 0 vore_escape_chance = 10 //Chance to escape if resisted. + +/datum/ai_holder/simple_mob/jellybrig + hostile = FALSE // The majority of simplemobs are hostile, jellybrig is nice. + cooperative = FALSE + retaliate = TRUE //so the monster can attack back + returns_home = FALSE + can_flee = FALSE + wander = TRUE + base_wander_delay = 9 /mob/living/simple_mob/metroid/mine