diff --git a/code/modules/emotes/definitions/audible_furry_vr.dm b/code/modules/emotes/definitions/audible_furry_vr.dm index 79c8819edf..0e838101f4 100644 --- a/code/modules/emotes/definitions/audible_furry_vr.dm +++ b/code/modules/emotes/definitions/audible_furry_vr.dm @@ -243,3 +243,8 @@ key = "roarbark" emote_message_3p = "lets out a roar-bark!" emote_sound = 'sound/voice/roarbark.ogg' + +/decl/emote/audible/dook + key = "dook" + emote_message_3p = "dooks." + emote_sound = 'sound/voice/FerretDook.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 ef2c271f71..f1983b776c 100644 --- a/code/modules/mob/living/carbon/human/emote.dm +++ b/code/modules/mob/living/carbon/human/emote.dm @@ -171,7 +171,8 @@ var/list/_human_default_emotes = list( /decl/emote/audible/croon, /decl/emote/audible/lwarble, /decl/emote/audible/croak_skrell, - /decl/emote/audible/roarbark + /decl/emote/audible/roarbark, + /decl/emote/audible/dook //VOREStation Add End ) @@ -313,7 +314,8 @@ var/list/_simple_mob_default_emotes = list( /decl/emote/audible/warble, /decl/emote/audible/vox_shriek, /decl/emote/audible/purr, - /decl/emote/audible/purrlong + /decl/emote/audible/purrlong, + /decl/emote/audible/dook ) //VOREStation Add End diff --git a/sound/voice/FerretDook.ogg b/sound/voice/FerretDook.ogg new file mode 100644 index 0000000000..629bed2f1a Binary files /dev/null and b/sound/voice/FerretDook.ogg differ