diff --git a/modular_citadel/code/modules/mob/cit_emotes.dm b/modular_citadel/code/modules/mob/cit_emotes.dm index b80425e59a..c76b8f2c12 100644 --- a/modular_citadel/code/modules/mob/cit_emotes.dm +++ b/modular_citadel/code/modules/mob/cit_emotes.dm @@ -161,6 +161,20 @@ playsound(user, 'modular_citadel/sound/voice/weh.ogg', 50, 1, -1) . = ..() +/datum/emote/living/peep + key = "peep" + key_third_person = "peeps like a bird" + message = "peeps like a bird!" + emote_type = EMOTE_AUDIBLE + +/datum/emote/living/peep/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/peep.ogg', 50, 1, -1) + . = ..() + /datum/emote/living/dab key = "dab" key_third_person = "suddenly hits a dab" diff --git a/modular_citadel/sound/voice/peep.ogg b/modular_citadel/sound/voice/peep.ogg new file mode 100644 index 0000000000..b687300677 Binary files /dev/null and b/modular_citadel/sound/voice/peep.ogg differ