diff --git a/maplestation_modules/code/modules/mob/living/carbon/human/species_types/ethereal.dm b/maplestation_modules/code/modules/mob/living/carbon/human/species_types/ethereal.dm index d30dc8704d16..e1bd65b0c1e4 100644 --- a/maplestation_modules/code/modules/mob/living/carbon/human/species_types/ethereal.dm +++ b/maplestation_modules/code/modules/mob/living/carbon/human/species_types/ethereal.dm @@ -4,8 +4,23 @@ /datum/species/ethereal/get_species_speech_sounds(sound_type) switch(sound_type) if(SOUND_QUESTION) - return string_assoc_list(list('maplestation_modules/sound/voice/etheral_ask.ogg' = 80)) + return string_assoc_list(list( + 'goon/sound/voice/speak_1_ask.ogg' = 120, + 'goon/sound/voice/speak_2_ask.ogg' = 120, + 'goon/sound/voice/speak_3_ask.ogg' = 120, + 'goon/sound/voice/speak_4_ask.ogg' = 120, + )) if(SOUND_EXCLAMATION) - return string_assoc_list(list('maplestation_modules/sound/voice/etheral_exclaim.ogg' = 80)) + return string_assoc_list(list( + 'goon/sound/voice/speak_1_exclaim.ogg' = 120, + 'goon/sound/voice/speak_2_exclaim.ogg' = 120, + 'goon/sound/voice/speak_3_exclaim.ogg' = 120, + 'goon/sound/voice/speak_4_exclaim.ogg' = 120, + )) else - return string_assoc_list(list('maplestation_modules/sound/voice/etheral.ogg' = 60)) + return string_assoc_list(list( + 'goon/sound/voice/speak_1.ogg' = 120, + 'goon/sound/voice/speak_2.ogg' = 120, + 'goon/sound/voice/speak_3.ogg' = 120, + 'goon/sound/voice/speak_4.ogg' = 120, + ))