diff --git a/code/modules/mob/living/carbon/human/emote_vr.dm b/code/modules/mob/living/carbon/human/emote_vr.dm index 37f891d036..7df6e169fa 100644 --- a/code/modules/mob/living/carbon/human/emote_vr.dm +++ b/code/modules/mob/living/carbon/human/emote_vr.dm @@ -130,6 +130,22 @@ message = "lets out a wurble." m_type = 2 playsound(src, 'sound/voice/wurble.ogg', 50, 1, -1, preference = /datum/client_preference/emote_noises) + if("snort") + message = "snorts!" + m_type = 2 + playsound(src, 'sound/voice/Snort.ogg', 50, 0, preference = /datum/client_preference/emote_noises) + if("meow") + message = "gently meows!" + m_type = 2 + playsound(src, 'sound/voice/Meow.ogg', 50, 0, preference = /datum/client_preference/emote_noises) + if("moo") + message = "takes a breath and lets out a moo." + m_type = 2 + playsound(src, 'sound/voice/Moo.ogg', 50, 0, preference = /datum/client_preference/emote_noises) + if("croak") + message = "rumbles their throat, puffs their cheeks and croaks." + m_type = 2 + playsound(src, 'sound/voice/Croak.ogg', 50, 0, preference = /datum/client_preference/emote_noises) if("nsay") nsay() return TRUE @@ -148,7 +164,7 @@ message = "does a flip!" m_type = 1 if("vhelp") //Help for Virgo-specific emotes. - to_chat(src, "vwag, vflap, mlem, blep, awoo, awoo2, growl, nya, peep, chirp, hoot, weh, merp, myarp, bark, bork, mrow, hypno, hiss, rattle, squeak, geck, baa, baa2, mar, wurble, nsay, nme, flip") + to_chat(src, "vwag, vflap, mlem, blep, awoo, awoo2, growl, nya, peep, chirp, hoot, weh, merp, myarp, bark, bork, mrow, hypno, hiss, rattle, squeak, geck, baa, baa2, mar, wurble, snort, meow, moo, croak, nsay, nme, flip") return TRUE if(message) diff --git a/sound/voice/Croak.ogg b/sound/voice/Croak.ogg new file mode 100644 index 0000000000..54327a26fb Binary files /dev/null and b/sound/voice/Croak.ogg differ diff --git a/sound/voice/Meow.ogg b/sound/voice/Meow.ogg new file mode 100644 index 0000000000..a76d81ca0c Binary files /dev/null and b/sound/voice/Meow.ogg differ diff --git a/sound/voice/Moo.ogg b/sound/voice/Moo.ogg new file mode 100644 index 0000000000..c81c46e1a4 Binary files /dev/null and b/sound/voice/Moo.ogg differ diff --git a/sound/voice/Snort.ogg b/sound/voice/Snort.ogg new file mode 100644 index 0000000000..30212fc263 Binary files /dev/null and b/sound/voice/Snort.ogg differ