Adds *mlem and *awoo

YOU. MAKE. ME. ***SICK.***

That you somehow convinced me to do this.
This commit is contained in:
Arokha Sieyes
2017-03-03 18:19:39 -05:00
parent 3a8051b142
commit 79805c8cbe
3 changed files with 18 additions and 0 deletions

View File

@@ -18,6 +18,7 @@
if(src.stat == 2.0 && (act != "deathgasp"))
return
if(attempt_vr(src,"emote_vr",list(act,m_type,message))) return //VOREStation Add - Custom Emote Handler
switch(act)
if ("airguitar")

View File

@@ -0,0 +1,16 @@
/mob/living/carbon/human/emote_vr(var/act,var/m_type=1,var/message = null)
switch(act)
if ("mlem")
message = "mlems their tongue up over their nose. Mlem."
m_type = 1
if ("awoo")
message = "awoos loudly. AwoooOOOOoooo!"
m_type = 2
if (message)
log_emote("[name]/[key] : [message]")
custom_emote(m_type,message)
return 1
return 0