diff --git a/src/reactions/index.ts b/src/reactions/index.ts index d3c2d9c9..acf7e181 100644 --- a/src/reactions/index.ts +++ b/src/reactions/index.ts @@ -27,6 +27,8 @@ import rockSoundOgg from "../sound/reactions/rock.ogg?url"; import rockSoundMp3 from "../sound/reactions/rock.mp3?url"; import waveSoundOgg from "../sound/reactions/wave.ogg?url"; import waveSoundMp3 from "../sound/reactions/wave.mp3?url"; +import baduntssSoundOgg from "../sound/reactions/baduntss.ogg?url"; +import baduntssSoundMp3 from "../sound/reactions/baduntss.mp3?url"; export const ElementCallReactionEventType = "io.element.call.reaction"; @@ -191,6 +193,15 @@ export const ReactionSet: ReactionOption[] = [ mp3: waveSoundMp3, }, }, + { + emoji: "🥁", + name: "drum", + alias: ["joke"], + sound: { + ogg: baduntssSoundOgg, + mp3: baduntssSoundMp3, + }, + }, ]; export interface RaisedHandInfo { diff --git a/src/sound/reactions/baduntss.mp3 b/src/sound/reactions/baduntss.mp3 new file mode 100644 index 00000000..4dd5abb9 Binary files /dev/null and b/src/sound/reactions/baduntss.mp3 differ diff --git a/src/sound/reactions/baduntss.ogg b/src/sound/reactions/baduntss.ogg new file mode 100644 index 00000000..390bbce0 Binary files /dev/null and b/src/sound/reactions/baduntss.ogg differ