From 5ed2d5f1b537dbcf6d21f1d1241bafef96f24a31 Mon Sep 17 00:00:00 2001 From: Sharkmare <34294231+Sharkmare@users.noreply.github.com> Date: Thu, 21 Mar 2019 12:55:28 +0100 Subject: [PATCH] Update tarrasque.dm --- code/modules/mob/living/simple_animal/animals/tarrasque.dm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/code/modules/mob/living/simple_animal/animals/tarrasque.dm b/code/modules/mob/living/simple_animal/animals/tarrasque.dm index 46e398feba..81672c98ee 100644 --- a/code/modules/mob/living/simple_animal/animals/tarrasque.dm +++ b/code/modules/mob/living/simple_animal/animals/tarrasque.dm @@ -116,6 +116,7 @@ melee_damage_upper = 50 universal_speak = 0 var/alang = LANGUAGE_GALCOM + var/active_sound = null //'sound/effects/kefka.ogg' //https://www.youtube.com/watch?v=CyZoe-r9qb0 armor = list( "melee" = 99, "bullet" = 99, @@ -164,6 +165,10 @@ if(buckled) resist() buckled = null + if(active_sound) + while(anchored) + playsound(src.loc, "[active_sound]", 100, 0, 4) + sleep(15) //time for special MR X kick you in the shins and stands there code /mob/living/simple_animal/hostile/tarrasque/mrx/DoPunch(var/atom/A)