2022-10-21 19:17:06 -04:00
|
|
|
/*
|
|
|
|
* Vencord, a modification for Discord's desktop app
|
|
|
|
* Copyright (c) 2022 Vendicated and contributors
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
2022-10-04 15:38:38 -04:00
|
|
|
import { Devs } from "../utils/constants";
|
2022-10-22 12:18:41 -04:00
|
|
|
import definePlugin, { OptionType } from "../utils/types";
|
2022-09-03 18:21:35 -04:00
|
|
|
|
|
|
|
export default definePlugin({
|
|
|
|
name: "BANger",
|
|
|
|
description: "Replaces the GIF in the ban dialogue with a custom one.",
|
2022-10-04 15:38:38 -04:00
|
|
|
authors: [
|
|
|
|
{
|
|
|
|
name: "Xinto",
|
|
|
|
id: 423915768191647755n
|
|
|
|
},
|
|
|
|
Devs.Glitch
|
|
|
|
],
|
2022-09-03 18:21:35 -04:00
|
|
|
patches: [
|
|
|
|
{
|
2022-10-04 15:38:38 -04:00
|
|
|
find: "BAN_CONFIRM_TITLE.",
|
2022-09-03 18:21:35 -04:00
|
|
|
replacement: {
|
|
|
|
match: /src:\w\(\d+\)/g,
|
2022-10-19 15:50:58 -04:00
|
|
|
replace: "src: Vencord.Settings.plugins.BANger.source"
|
2022-09-03 18:21:35 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
],
|
2022-10-19 15:50:58 -04:00
|
|
|
options: {
|
|
|
|
source: {
|
|
|
|
description: "Source to replace ban GIF with (Video or Gif)",
|
|
|
|
type: OptionType.STRING,
|
|
|
|
default: "https://i.imgur.com/wp5q52C.mp4",
|
|
|
|
restartNeeded: true,
|
|
|
|
}
|
|
|
|
}
|
2022-09-16 16:59:34 -04:00
|
|
|
});
|