diff --git a/code/modules/mob/living/carbon/emote.dm b/code/modules/mob/living/carbon/emote.dm index e2c403a873b..ae2ca60397a 100644 --- a/code/modules/mob/living/carbon/emote.dm +++ b/code/modules/mob/living/carbon/emote.dm @@ -10,6 +10,18 @@ message = "blinks." sound = 'sound/effects/blink.ogg' +/datum/emote/living/carbon/hddspinup + key = "bootup" + key_third_person = "whirrs up their on board memory." + message = "whirrs up their on board memory." + sound = 'sound/effects/bootup.ogg' + +/datum/emote/living/carbon/beeper7 + key = "beeper7" + key_third_person = "pings!" + message = "pings!" + sound = 'sound/effects/beeper7.ogg' + /datum/emote/living/carbon/blink_r key = "blink_r" message = "blinks rapidly." diff --git a/modular_coyote/code/modules/say/soundbubbles.dm b/modular_coyote/code/modules/say/soundbubbles.dm index 3626caf9817..715f0d7a679 100644 --- a/modular_coyote/code/modules/say/soundbubbles.dm +++ b/modular_coyote/code/modules/say/soundbubbles.dm @@ -51,6 +51,8 @@ GLOBAL_LIST_INIT(typing_indicator_sounds, list( "Deep" = 'modular_coyote/sound/typing/deepspeak.ogg', "Soft" = 'modular_coyote/sound/typing/softspeak.ogg', "beep" = 'sound/machines/beep.ogg', + "win7 error" = 'sound/effects/beeper7.ogg', + "hard drive" = 'sound/effects/bootup.ogg', "buzz sigh" = 'sound/machines/buzz-sigh.ogg', "Light" = 'modular_coyote/sound/typing/lightspeak.ogg', "Jackal" = 'modular_coyote/sound/typing/arfs1sounds/anubis1.ogg', diff --git a/sound/effects/beeper7.ogg b/sound/effects/beeper7.ogg new file mode 100644 index 00000000000..01f90dfb570 Binary files /dev/null and b/sound/effects/beeper7.ogg differ diff --git a/sound/effects/bootup.ogg b/sound/effects/bootup.ogg new file mode 100644 index 00000000000..fdd961e9527 Binary files /dev/null and b/sound/effects/bootup.ogg differ