diff --git a/code/modules/emotes/definitions/audible_furry_ch.dm b/code/modules/emotes/definitions/audible_furry_ch.dm new file mode 100644 index 0000000000..4268ffe2bb --- /dev/null +++ b/code/modules/emotes/definitions/audible_furry_ch.dm @@ -0,0 +1,4 @@ +/decl/emote/audible/coyawoo + key = "coyawoo" + emote_message_3p = "lets out a scraggly awoo." + emote_sound = 'sound/voice/coyoteawoo.ogg' \ No newline at end of file diff --git a/code/modules/mob/living/carbon/human/emote.dm b/code/modules/mob/living/carbon/human/emote.dm index d7cd2ef0eb..84090269e1 100644 --- a/code/modules/mob/living/carbon/human/emote.dm +++ b/code/modules/mob/living/carbon/human/emote.dm @@ -136,8 +136,11 @@ var/list/_human_default_emotes = list( /decl/emote/helper/vflap, /decl/emote/audible/prbt, /decl/emote/audible/gyoh, - /decl/emote/audible/rumble + /decl/emote/audible/rumble, //VOREStation Add End + //CHOMPStation Add Start + /decl/emote/audible/coyawoo + //CHOMPStation End Start ) //VOREStation Add Start diff --git a/sound/voice/coyoteawoo.ogg b/sound/voice/coyoteawoo.ogg new file mode 100644 index 0000000000..2801f42097 Binary files /dev/null and b/sound/voice/coyoteawoo.ogg differ diff --git a/vorestation.dme b/vorestation.dme index 1935c866a7..6d63abaf1e 100644 --- a/vorestation.dme +++ b/vorestation.dme @@ -2289,6 +2289,7 @@ #include "code\modules\emotes\definitions\audible.dm" #include "code\modules\emotes\definitions\audible_belch.dm" #include "code\modules\emotes\definitions\audible_cough.dm" +#include "code\modules\emotes\definitions\audible_furry_ch.dm" #include "code\modules\emotes\definitions\audible_furry_vr.dm" #include "code\modules\emotes\definitions\audible_scream.dm" #include "code\modules\emotes\definitions\audible_scream_ch.dm"