diff --git a/src/reactions/index.ts b/src/reactions/index.ts index 0be6024e..1abadb8e 100644 --- a/src/reactions/index.ts +++ b/src/reactions/index.ts @@ -21,6 +21,8 @@ import lightbulbSoundOgg from "../sound/reactions/lightbulb.ogg?url"; import lightbulbSoundMp3 from "../sound/reactions/lightbulb.mp3?url"; import partySoundOgg from "../sound/reactions/party.ogg?url"; import partySoundMp3 from "../sound/reactions/party.mp3?url"; +import deerSoundOgg from "../sound/reactions/deer.ogg?url"; +import deerSoundMp3 from "../sound/reactions/deer.mp3?url"; export const ElementCallReactionEventType = "io.element.call.reaction"; @@ -80,7 +82,7 @@ export const ReactionSet: ReactionOption[] = [ { emoji: "🐶", name: "dog", - alias: ["doggo", "pupper", "woofer"], + alias: ["doggo", "pupper", "woofer", "bark"], sound: { ogg: dogSoundOgg, mp3: dogSoundMp3, @@ -138,4 +140,13 @@ export const ReactionSet: ReactionOption[] = [ name: "laugh", alias: ["giggle", "joy", "smiling"], }, + { + emoji: "🦌", + name: "deer", + alias: ["stag", "doe", "bleat"], + sound: { + ogg: deerSoundOgg, + mp3: deerSoundMp3, + }, + }, ]; diff --git a/src/sound/reactions/deer.mp3 b/src/sound/reactions/deer.mp3 new file mode 100644 index 00000000..36c01e82 Binary files /dev/null and b/src/sound/reactions/deer.mp3 differ diff --git a/src/sound/reactions/deer.ogg b/src/sound/reactions/deer.ogg new file mode 100644 index 00000000..19f6055e Binary files /dev/null and b/src/sound/reactions/deer.ogg differ