diff --git a/code/modules/mob/living/carbon/human/human_emote.dm b/code/modules/mob/living/carbon/human/human_emote.dm index 4b1e0637881..83270f2aaf7 100644 --- a/code/modules/mob/living/carbon/human/human_emote.dm +++ b/code/modules/mob/living/carbon/human/human_emote.dm @@ -643,17 +643,20 @@ key = "flap" key_third_person = "flaps" message = "flaps their wings." + sound = 'sound/effects/mob_effects/flap.ogg' species_type_whitelist_typecache = list(/datum/species/moth) /datum/emote/living/carbon/human/flap/angry key = "aflap" key_third_person = "aflaps" + sound = 'sound/effects/mob_effects/angryflap.ogg' message = "flaps their wings ANGRILY!" /datum/emote/living/carbon/human/flutter key = "flutter" key_third_person = "flutters" message = "flutters their wings." + sound = 'sound/effects/mob_effects/flutter.ogg' species_type_whitelist_typecache = list(/datum/species/moth) /datum/emote/living/carbon/human/quill diff --git a/sound/Attributions.txt b/sound/Attributions.txt index 7660b35d645..31733ba4830 100644 --- a/sound/Attributions.txt +++ b/sound/Attributions.txt @@ -21,3 +21,7 @@ effects/voxfcaw.ogg and effects/voxrcaw.ogg are processed versions of https://op starline_pickup was spliced from Phone Receiver.mp3 at https://freesound.org/people/Percy%20Duke/sounds/23535/ under Attributions CC 3.0 voice/scream_kidan.ogg is a modification of voice/scream_moth.ogg introduced from PR# 17000 https://github.com/ParadiseSS13/Paradise/pull/17000 — CC BY-SA 3.0 modified by iramoye(GitHub) + +effects/mob_effects/flap.ogg and effects/mob_effects/angryflap.ogg were taken from https://freesound.org/people/Elfman-Rox/sounds/238555/ under CC0 + +effects/mob_effects/flutter.ogg was taken from https://freesound.org/people/Godowan/sounds/240476/ under CC0 diff --git a/sound/effects/mob_effects/angryflap.ogg b/sound/effects/mob_effects/angryflap.ogg new file mode 100644 index 00000000000..0872fbbfc94 Binary files /dev/null and b/sound/effects/mob_effects/angryflap.ogg differ diff --git a/sound/effects/mob_effects/flap.ogg b/sound/effects/mob_effects/flap.ogg new file mode 100644 index 00000000000..7e2598e7d79 Binary files /dev/null and b/sound/effects/mob_effects/flap.ogg differ diff --git a/sound/effects/mob_effects/flutter.ogg b/sound/effects/mob_effects/flutter.ogg new file mode 100644 index 00000000000..cbd3afd29ea Binary files /dev/null and b/sound/effects/mob_effects/flutter.ogg differ