diff --git a/modular_citadel/code/modules/mob/cit_emotes.dm b/modular_citadel/code/modules/mob/cit_emotes.dm index df97cee63b..883d628af4 100644 --- a/modular_citadel/code/modules/mob/cit_emotes.dm +++ b/modular_citadel/code/modules/mob/cit_emotes.dm @@ -100,4 +100,46 @@ return user.nextsoundemote = world.time + 7 playsound(user, 'modular_citadel/sound/voice/snap3.ogg', 50, 1, -1) + . = ..() + +/datum/emote/living/awoo + key = "awoo" + key_third_person = "lets out an awoo" + message = "lets out an awoo!" + emote_type = EMOTE_AUDIBLE + +/datum/emote/living/awoo/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/awoo.ogg', 50, 1, -1) + . = ..() + +/datum/emote/living/nya + key = "nya" + key_third_person = "lets out a nya" + message = "lets out a nya!" + emote_type = EMOTE_AUDIBLE + +/datum/emote/living/nya/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/nya.ogg', 50, 1, -1) + . = ..() + +/datum/emote/living/weh + key = "weh" + key_third_person = "lets out a weh" + message = "lets out a weh!" + emote_type = EMOTE_AUDIBLE + +/datum/emote/living/weh/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/weh.ogg', 50, 1, -1) . = ..() \ No newline at end of file diff --git a/modular_citadel/sound/voice/awoo.ogg b/modular_citadel/sound/voice/awoo.ogg new file mode 100644 index 0000000000..1cbdbc01df Binary files /dev/null and b/modular_citadel/sound/voice/awoo.ogg differ diff --git a/modular_citadel/sound/voice/nya.ogg b/modular_citadel/sound/voice/nya.ogg new file mode 100644 index 0000000000..1ca8cc08ea Binary files /dev/null and b/modular_citadel/sound/voice/nya.ogg differ diff --git a/modular_citadel/sound/voice/weh.ogg b/modular_citadel/sound/voice/weh.ogg new file mode 100644 index 0000000000..9867651bc2 Binary files /dev/null and b/modular_citadel/sound/voice/weh.ogg differ