Merge pull request #4975 from Zuhayr/nymphs

Added a *chirp sound clip for diona nymphs.
This commit is contained in:
Ccomp5950
2014-05-12 22:14:20 -05:00
2 changed files with 10 additions and 1 deletions

View File

@@ -31,6 +31,11 @@
if ("custom")
return custom_emote(m_type, message)
if ("chirp")
if(istype(src,/mob/living/carbon/monkey/diona))
message = "<B>The [src.name]</B> chirps!"
playsound(src.loc, 'sound/misc/nymphchirp.ogg', 50, 0)
m_type = 2
if("sign")
if (!src.restrained())
message = text("<B>The monkey</B> signs[].", (text2num(param) ? text(" the number []", text2num(param)) : null))
@@ -114,7 +119,11 @@
message = "<b>The [src.name]</b> 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))

BIN
sound/misc/nymphchirp.ogg Normal file

Binary file not shown.