mirror of
https://github.com/Equicord/Equicord.git
synced 2025-06-27 15:34:26 -04:00
43 lines
1.4 KiB
TypeScript
43 lines
1.4 KiB
TypeScript
/*
|
|
* Vencord, a modification for Discord's desktop app
|
|
* Copyright (c) 2022 Vendicated and Megumin
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
import { EquicordDevs } from "@utils/constants";
|
|
import definePlugin from "@utils/types";
|
|
|
|
let clickCount = 0;
|
|
|
|
function play() {
|
|
clickCount++;
|
|
|
|
if (clickCount % 10 === 0) {
|
|
const audio = new Audio("https://github.com/Equicord/Equibored/raw/main/sounds/equissant/croissant.mp3");
|
|
audio.play();
|
|
}
|
|
}
|
|
|
|
export default definePlugin({
|
|
name: "Equissant",
|
|
description: "Crossant every 10 clicks :trolley:",
|
|
authors: [EquicordDevs.SomeAspy, EquicordDevs.thororen],
|
|
start() {
|
|
document.addEventListener("click", play);
|
|
},
|
|
stop() {
|
|
document.removeEventListener("click", play);
|
|
}
|
|
});
|