diff --git a/modular_skyrat/modules/emote_panel/code/emote_panel.dm b/modular_skyrat/modules/emote_panel/code/emote_panel.dm index b1974b8e54b..a2218631473 100644 --- a/modular_skyrat/modules/emote_panel/code/emote_panel.dm +++ b/modular_skyrat/modules/emote_panel/code/emote_panel.dm @@ -146,7 +146,8 @@ /mob/living/proc/emote_rpurr, /mob/living/proc/emote_purr, /mob/living/proc/emote_moo, - /mob/living/proc/emote_honk1 + /mob/living/proc/emote_honk1, + /mob/living/proc/emote_mggaow ) all_emotes += skyrat_living_emotes @@ -1018,3 +1019,8 @@ set name = "| Mark Turf |" set category = "Emotes+" usr.emote("turf", intentional = TRUE) + +/mob/living/proc/emote_mggaow() + set name = "> Mggaow" + set category = "Emotes+" + usr.emote("mggaow", intentional = TRUE) \ No newline at end of file diff --git a/modular_skyrat/modules/emotes/code/emotes.dm b/modular_skyrat/modules/emotes/code/emotes.dm index 9d40e187182..a6154232bb2 100644 --- a/modular_skyrat/modules/emotes/code/emotes.dm +++ b/modular_skyrat/modules/emotes/code/emotes.dm @@ -519,3 +519,11 @@ emote_type = EMOTE_AUDIBLE vary = TRUE sound = 'sound/effects/glassbash.ogg' + +/datum/emote/living/mggaow + key = "mggaow" + key_third_person = "meows loudly" + message = "meows loudly!" + emote_type = EMOTE_AUDIBLE + vary = TRUE + sound = 'modular_skyrat/modules/emotes/sound/voice/mggaow.ogg' \ No newline at end of file diff --git a/modular_skyrat/modules/emotes/sound/voice/mggaow.ogg b/modular_skyrat/modules/emotes/sound/voice/mggaow.ogg new file mode 100644 index 00000000000..5c3bc5e2c0b Binary files /dev/null and b/modular_skyrat/modules/emotes/sound/voice/mggaow.ogg differ