diff --git a/code/modules/mob/living/carbon/monkey/emote.dm b/code/modules/mob/living/carbon/monkey/emote.dm
index 615fb631d0..d5328183f3 100644
--- a/code/modules/mob/living/carbon/monkey/emote.dm
+++ b/code/modules/mob/living/carbon/monkey/emote.dm
@@ -31,6 +31,11 @@
if ("custom")
return custom_emote(m_type, message)
+ if ("chirp")
+ if(istype(src,/mob/living/carbon/monkey/diona))
+ message = "The [src.name] chirps!"
+ playsound(src.loc, 'sound/misc/nymphchirp.ogg', 50, 0)
+ m_type = 2
if("sign")
if (!src.restrained())
message = text("The monkey signs[].", (text2num(param) ? text(" the number []", text2num(param)) : null))
@@ -114,7 +119,11 @@
message = "The [src.name] lets out a faint chimper as it collapses and stops moving..."
m_type = 1
if("help")
- src << "choke, collapse, dance, deathgasp, drool, gasp, shiver, gnarl, jump, paw, moan, nod, roar, roll, scratch,\nscretch, shake, sign-#, sit, sulk, sway, tail, twitch, whimper"
+ var/text = "choke, "
+ if(istype(src,/mob/living/carbon/monkey/diona))
+ text += "chirp, "
+ text += "collapse, dance, deathgasp, drool, gasp, shiver, gnarl, jump, paw, moan, nod, roar, roll, scratch,\nscretch, shake, sign-#, sit, sulk, sway, tail, twitch, whimper"
+ src << text
else
src << text("Invalid Emote: []", act)
if ((message && src.stat == 0))
diff --git a/sound/misc/nymphchirp.ogg b/sound/misc/nymphchirp.ogg
new file mode 100644
index 0000000000..e0e573d497
Binary files /dev/null and b/sound/misc/nymphchirp.ogg differ