Vencord/src/plugins/moreCommands.ts

56 lines
1.6 KiB
TypeScript
Raw Normal View History

2022-10-12 20:22:37 +00:00
import definePlugin from "../utils/types";
2022-10-16 21:25:27 +00:00
import { ApplicationCommandInputType, OptionalMessageOption, sendBotMessage, findOption, RequiredMessageOption } from "../api/Commands";
2022-10-12 20:22:37 +00:00
import { Devs } from "../utils/constants";
2022-10-16 21:25:27 +00:00
function mock(input: string): string {
let output = "";
for (let i = 0; i < input.length; i++) {
output += i % 2 ? input[i].toUpperCase() : input[i].toLowerCase();
}
return output;
}
2022-10-12 20:22:37 +00:00
export default definePlugin({
name: "MoreCommands",
2022-10-16 21:25:27 +00:00
description: "echo, lenny, mock",
2022-10-12 20:22:37 +00:00
authors: [
Devs.Arjix,
2022-10-16 21:25:27 +00:00
Devs.echo,
2022-10-12 20:22:37 +00:00
{
name: "ICodeInAssembly",
id: 702973430449832038n
}
],
dependencies: ["CommandsAPI"],
commands: [
{
name: "echo",
description: "Sends a message as Clyde (locally)",
options: [OptionalMessageOption],
inputType: ApplicationCommandInputType.BOT,
execute: (opts, ctx) => {
const content = findOption(opts, "message", "");
sendBotMessage(ctx.channel.id, { content });
},
},
{
name: "lenny",
description: "Sends a lenny face",
options: [OptionalMessageOption],
execute: opts => ({
content: findOption(opts, "message", "") + " ( ͡° ͜ʖ ͡°)"
}),
},
2022-10-16 21:25:27 +00:00
{
name: "mock",
description: "mOcK PeOpLe",
options: [RequiredMessageOption],
execute: opts => ({
content: mock(findOption(opts, "message", ""))
}),
},
2022-10-12 20:22:37 +00:00
]
});