From f30cd8e96bf8476e67c18c910adba3970bbbb052 Mon Sep 17 00:00:00 2001 From: ZomgPonies Date: Tue, 11 Feb 2014 02:45:36 -0500 Subject: [PATCH] Some statue tuning --- .../mob/living/simple_animal/hostile/statue.dm | 13 ++++++++++--- code/modules/mob/transform_procs.dm | 2 ++ 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/code/modules/mob/living/simple_animal/hostile/statue.dm b/code/modules/mob/living/simple_animal/hostile/statue.dm index e39eaa9f51f..d8074b8015f 100644 --- a/code/modules/mob/living/simple_animal/hostile/statue.dm +++ b/code/modules/mob/living/simple_animal/hostile/statue.dm @@ -14,8 +14,8 @@ response_disarm = "pushes" speed = -1 - maxHealth = 25000 - health = 25000 + maxHealth = 2500 + health = 2500 harm_intent_damage = 70 melee_damage_lower = 68 @@ -47,7 +47,7 @@ sight = SEE_SELF|SEE_MOBS|SEE_OBJS|SEE_TURFS anchored = 1 - status_flags = GODMODE // Cannot push also +// status_flags = GODMODE // Cannot push also // No movement while seen code. @@ -129,6 +129,13 @@ dust(animation) +/mob/living/simple_animal/hostile/statue/Die() + living_mob_list -= src + dead_mob_list += src + if(key) + respawnable_list += src + gib() + // Stop attacking clientless mobs /mob/living/simple_animal/hostile/statue/CanAttack(var/atom/the_target) diff --git a/code/modules/mob/transform_procs.dm b/code/modules/mob/transform_procs.dm index 88583df81ce..284f3052619 100644 --- a/code/modules/mob/transform_procs.dm +++ b/code/modules/mob/transform_procs.dm @@ -413,6 +413,8 @@ return 1 if(ispath(MP, /mob/living/carbon/alien)) return 1 + if(ispath(MP, /mob/living/simple_animal/hostile/statue)) + return 1 //Friendly Creatures! if(ispath(MP, /mob/living/carbon/monkey/diona))