Blob immobility trait + examine text + new emote

This commit is contained in:
KabKebab
2021-10-26 20:57:19 +02:00
parent 115d9adcfc
commit c99a35c7e8
7 changed files with 33 additions and 3 deletions
@@ -18,3 +18,20 @@
if(ishuman(user))
playsound(user, 'GainStation13/sound/voice/burp1.ogg', 50, 1, -1)
. = ..()
/datum/emote/living/fart
key = "fart"
key_third_person = "farts"
message = " farts"
emote_type = EMOTE_AUDIBLE
//Shhh... It's a secret! Don't tell or I'll steal your legs
/datum/emote/living/burunyu
key = "burunyu"
key_third_person = "burunyues"
message = " emits a strange feline sound"
emote_type = EMOTE_AUDIBLE
/datum/emote/living/burunyu/run_emote(mob/living/user, params)
playsound(user, 'GainStation13/sound/voice/funnycat.ogg', 50, 1, -1)
. = ..()