Add lightbulb.

This commit is contained in:
Half-Shot
2024-11-01 14:34:09 +00:00
parent a207536907
commit 80b40b6b00
3 changed files with 11 additions and 0 deletions

View File

@@ -1,5 +1,7 @@
import dogSoundOgg from "../sound/reactions/dog.ogg?url";
import dogSoundMp3 from "../sound/reactions/dog.mp3?url";
import lightbulbOgg from "../sound/reactions/lightbulb.mp3?url";
import lightbulbMp3 from "../sound/reactions/lightbulb.mp3?url";
import { RelationType } from "matrix-js-sdk/src/types";
export interface ReactionOption {
@@ -71,4 +73,13 @@ export const ReactionSet: ReactionOption[] = [
name: "ok",
alias: ["okay", "cool"],
},
{
emoji: "💡",
name: "lightbulb",
alias: ["bulb", "light", "idea", "ping"],
sound: {
ogg: lightbulbOgg,
mp3: lightbulbMp3,
},
},
];