From 6ed8d50dabc93d93ec4ee619d156c909a2eead55 Mon Sep 17 00:00:00 2001 From: Skiedrake Date: Tue, 21 Sep 2010 19:02:56 +0000 Subject: [PATCH] Aliens now let out a sad screech when their beautiful life comes to an end. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@135 316c924e-a436-60f5-8080-3fe189b3f50e --- code/modules/mob/living/carbon/alien/humanoid/death.dm | 2 ++ code/modules/mob/living/carbon/alien/humanoid/emote.dm | 3 +++ 2 files changed, 5 insertions(+) diff --git a/code/modules/mob/living/carbon/alien/humanoid/death.dm b/code/modules/mob/living/carbon/alien/humanoid/death.dm index f3c70908cc7..15bfecccf1a 100644 --- a/code/modules/mob/living/carbon/alien/humanoid/death.dm +++ b/code/modules/mob/living/carbon/alien/humanoid/death.dm @@ -7,6 +7,8 @@ if (!gibbed) + emote("deathgasp") // Dead -- Skie + src.canmove = 0 if(src.client) src.blind.layer = 0 diff --git a/code/modules/mob/living/carbon/alien/humanoid/emote.dm b/code/modules/mob/living/carbon/alien/humanoid/emote.dm index 324ab27c91a..6d1de65b604 100644 --- a/code/modules/mob/living/carbon/alien/humanoid/emote.dm +++ b/code/modules/mob/living/carbon/alien/humanoid/emote.dm @@ -18,6 +18,9 @@ if (!muzzled) message = "[src] burps." m_type = 2 + if ("deathgasp") + message = "[src] lets out a waning guttural screech, green blood bubbling from its maw..." + m_type = 1 if("scratch") if (!src.restrained()) message = "The [src.name] scratches."