diff --git a/code/modules/emotes/definitions/audible.dm b/code/modules/emotes/definitions/audible.dm index b6fbe8a9bc..d7e8d7a677 100644 --- a/code/modules/emotes/definitions/audible.dm +++ b/code/modules/emotes/definitions/audible.dm @@ -306,6 +306,18 @@ emote_message_mute_3p = "silently purrs." emote_sound = 'sound/voice/cat_purr_long.ogg' +/datum/decl/emote/audible/catgrowl + key = "catgrowl" + emote_message_3p = "growls like a big cat!" + emote_message_mute_3p = "growls like a big cat!" + emote_sound = 'sound/voice/cougar.ogg' + +/datum/decl/emote/audible/catgrowl2 + key = "catgrowl2" + emote_message_3p = "growls like an upset big cat!" + emote_message_mute_3p = "growls like an upset big cat!" + emote_sound = 'sound/voice/lynx.ogg' + /datum/decl/emote/audible/fennecscream key = "fennecscream" emote_message_3p = "screeches!" diff --git a/code/modules/mob/living/carbon/human/emote.dm b/code/modules/mob/living/carbon/human/emote.dm index 2e53b7a7f1..36545de8f4 100644 --- a/code/modules/mob/living/carbon/human/emote.dm +++ b/code/modules/mob/living/carbon/human/emote.dm @@ -108,6 +108,8 @@ GLOBAL_LIST_INIT(human_default_emotes, list( /datum/decl/emote/audible/vox_shriek, /datum/decl/emote/audible/purr, /datum/decl/emote/audible/purrlong, + /datum/decl/emote/audible/catgrowl, + /datum/decl/emote/audible/catgrowl2, /datum/decl/emote/audible/awoo, /datum/decl/emote/audible/awoo2, /datum/decl/emote/audible/belch, diff --git a/sound/voice/cougar.ogg b/sound/voice/cougar.ogg new file mode 100644 index 0000000000..68d90b7e77 Binary files /dev/null and b/sound/voice/cougar.ogg differ diff --git a/sound/voice/lynx.ogg b/sound/voice/lynx.ogg new file mode 100644 index 0000000000..28d0fd0f49 Binary files /dev/null and b/sound/voice/lynx.ogg differ