diff --git a/modular_splurt/code/modules/mob/living/emotes.dm b/modular_splurt/code/modules/mob/living/emotes.dm index a1ece05477..7bee34dd3c 100644 --- a/modular_splurt/code/modules/mob/living/emotes.dm +++ b/modular_splurt/code/modules/mob/living/emotes.dm @@ -1207,3 +1207,48 @@ emote_sound = 'modular_splurt/sound/voice/gachi/wepons.ogg' emote_cooldown = 1.07 SECONDS emote_volume = 10 + +/datum/emote/living/audio/sciteam + key = "sciteam" + key_third_person = "sciteams" + message = "exclaims, \"I am with the Science team!\"" + message_mime = "gestures being with the Science team!" + emote_sound = 'modular_splurt/sound/voice/sciteam.ogg' + emote_cooldown = 1.32 SECONDS + emote_volume = 90 + +/datum/emote/living/audio/ambatukam + key = "ambatukam" + key_third_person = "ambatukams" + message = "is about to come!" + message_mime = "seems like about to come!" + emote_sound = 'modular_splurt/sound/voice/ambatukam.ogg' + emote_cooldown = 2.75 SECONDS + //emote_volume = 30 + +/datum/emote/living/audio/ambatukam2 + key = "ambatukam2" + key_third_person = "ambatukams2" + message = "is about to come in harmony!" + message_mime = "seems like about to come in harmony!" + emote_sound = 'modular_splurt/sound/voice/ambatukam_harmony.ogg' + emote_cooldown = 3.42 SECONDS + //emote_volume = 60 + +/datum/emote/living/audio/eekum + key = "eekumbokum" + key_third_person = "eekumbokums" + message = "eekum-bokums!" + message_mime = "seem to eekum-bokum!" + emote_sound = 'modular_splurt/sound/voice/eekum-bokum.ogg' + emote_cooldown = 0.9 SECONDS // Uses longest sound's time. + +/datum/emote/living/audio/eekum/run_emote(mob/user, params) + switch(user.gender) + if(MALE) // Game's SFX + emote_sound = 'modular_splurt/sound/voice/eekum-bokum.ogg' + if(FEMALE) // Korone's + emote_sound = pick('modular_splurt/sound/voice/eekum-bokum_f1.ogg', 'modular_splurt/sound/voice/eekum-bokum_f2.ogg') + else // Both + emote_sound = pick('modular_splurt/sound/voice/eekum-bokum.ogg', 'modular_splurt/sound/voice/eekum-bokum_f1.ogg', 'modular_splurt/sound/voice/eekum-bokum_f2.ogg') + . = ..() diff --git a/modular_splurt/sound/voice/ambatukam.ogg b/modular_splurt/sound/voice/ambatukam.ogg new file mode 100644 index 0000000000..f3206796e7 Binary files /dev/null and b/modular_splurt/sound/voice/ambatukam.ogg differ diff --git a/modular_splurt/sound/voice/ambatukam_harmony.ogg b/modular_splurt/sound/voice/ambatukam_harmony.ogg new file mode 100644 index 0000000000..f236de9034 Binary files /dev/null and b/modular_splurt/sound/voice/ambatukam_harmony.ogg differ diff --git a/modular_splurt/sound/voice/eekum-bokum.ogg b/modular_splurt/sound/voice/eekum-bokum.ogg new file mode 100644 index 0000000000..3314def292 Binary files /dev/null and b/modular_splurt/sound/voice/eekum-bokum.ogg differ diff --git a/modular_splurt/sound/voice/eekum-bokum_f1.ogg b/modular_splurt/sound/voice/eekum-bokum_f1.ogg new file mode 100644 index 0000000000..0e36784b63 Binary files /dev/null and b/modular_splurt/sound/voice/eekum-bokum_f1.ogg differ diff --git a/modular_splurt/sound/voice/eekum-bokum_f2.ogg b/modular_splurt/sound/voice/eekum-bokum_f2.ogg new file mode 100644 index 0000000000..2ce3db73ce Binary files /dev/null and b/modular_splurt/sound/voice/eekum-bokum_f2.ogg differ diff --git a/modular_splurt/sound/voice/sciteam.ogg b/modular_splurt/sound/voice/sciteam.ogg new file mode 100644 index 0000000000..04c98dafb0 Binary files /dev/null and b/modular_splurt/sound/voice/sciteam.ogg differ