mirror of
https://github.com/KabKebab/GS13.git
synced 2026-07-20 12:29:32 +01:00
*meow
This commit is contained in:
@@ -254,4 +254,52 @@
|
||||
return
|
||||
user.nextsoundemote = world.time + 7
|
||||
var/path = pick(list('modular_citadel/sound/voice/bark.ogg', 'modular_citadel/sound/voice/bark1.ogg', 'modular_citadel/sound/voice/bark2.ogg'))
|
||||
playsound(user, path, 50, 1, -1)
|
||||
playsound(user, path, 50, 1, -1)
|
||||
|
||||
/datum/emote/living/hiss
|
||||
key = "hiss"
|
||||
key_third_person = "hisses"
|
||||
message = "hisses!"
|
||||
emote_type = EMOTE_AUDIBLE
|
||||
muzzle_ignore = FALSE
|
||||
restraint_check = FALSE
|
||||
|
||||
/datum/emote/living/hiss/run_emote(mob/living/user, params)
|
||||
if(!(. = ..()))
|
||||
return
|
||||
if(user.nextsoundemote >= world.time)
|
||||
return
|
||||
user.nextsoundemote = world.time + 7
|
||||
playsound(user, 'modular_citadel/sound/voice/hiss.ogg', 50, 1, -1)
|
||||
|
||||
/datum/emote/living/meow
|
||||
key = "meow"
|
||||
key_third_person = "mrowls"
|
||||
message = "mrowls!"
|
||||
emote_type = EMOTE_AUDIBLE
|
||||
muzzle_ignore = FALSE
|
||||
restraint_check = FALSE
|
||||
|
||||
/datum/emote/living/meow/run_emote(mob/living/user, params)
|
||||
if(!(. = ..()))
|
||||
return
|
||||
if(user.nextsoundemote >= world.time)
|
||||
return
|
||||
user.nextsoundemote = world.time + 7
|
||||
playsound(user, 'modular_citadel/sound/voice/meow1.ogg', 50, 1, -1)
|
||||
|
||||
/datum/emote/living/purr
|
||||
key = "purr"
|
||||
key_third_person = "purrs softly"
|
||||
message = "purrs softly."
|
||||
emote_type = EMOTE_AUDIBLE
|
||||
muzzle_ignore = FALSE
|
||||
restraint_check = FALSE
|
||||
|
||||
/datum/emote/living/purr/run_emote(mob/living/user, params)
|
||||
if(!(. = ..()))
|
||||
return
|
||||
if(user.nextsoundemote >= world.time)
|
||||
return
|
||||
user.nextsoundemote = world.time + 7
|
||||
playsound(user, 'modular_citadel/sound/voice/purr.ogg', 50, 1, -1)
|
||||
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user