Merge pull request #1377 from chefferz/yeencackles

Adds *cackle
This commit is contained in:
QuoteFox
2021-07-24 11:03:18 +01:00
committed by GitHub
2 changed files with 18 additions and 1 deletions
+18 -1
View File
@@ -279,6 +279,23 @@
emote_type = EMOTE_AUDIBLE
muzzle_ignore = FALSE
restraint_check = FALSE
/datum/emote/living/cackle
key = "cackle"
key_third_person = "cackles"
message = "cackles hysterically!"
emote_type = EMOTE_AUDIBLE
muzzle_ignore = FALSE
restraint_check = FALSE
/datum/emote/living/cackle/run_emote(mob/living/user, params)
if(ishuman(user))
if(user.nextsoundemote >= world.time)
return
user.nextsoundemote = world.time + 7
playsound(user, 'modular_citadel/sound/voice/cackle_yeen.ogg', 50, 1, -1)
. = ..()
/datum/emote/living/meow/run_emote(mob/living/user, params)
if(!(. = ..()))
@@ -302,4 +319,4 @@
if(user.nextsoundemote >= world.time)
return
user.nextsoundemote = world.time + 7
playsound(user, 'modular_citadel/sound/voice/purr.ogg', 50, 1, -1)
playsound(user, 'modular_citadel/sound/voice/purr.ogg', 50, 1, -1)
Binary file not shown.