diff options
author | Vendicated <vendicated@riseup.net> | 2022-10-12 22:22:37 +0200 |
---|---|---|
committer | Vendicated <vendicated@riseup.net> | 2022-10-12 22:22:37 +0200 |
commit | 8817e2dff71f4736f4f8c9011457d20e63ec4ca3 (patch) | |
tree | 27bcbbbd86210cfcaa518831ed7e456c2c769762 /src/plugins/moreCommands.ts | |
parent | 267b2b1a0703313311da01addafcee28100347ea (diff) | |
download | Vencord-8817e2dff71f4736f4f8c9011457d20e63ec4ca3.tar.gz Vencord-8817e2dff71f4736f4f8c9011457d20e63ec4ca3.tar.bz2 Vencord-8817e2dff71f4736f4f8c9011457d20e63ec4ca3.zip |
Reorganise command plugins
Diffstat (limited to 'src/plugins/moreCommands.ts')
-rw-r--r-- | src/plugins/moreCommands.ts | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/src/plugins/moreCommands.ts b/src/plugins/moreCommands.ts new file mode 100644 index 0000000..91c1abb --- /dev/null +++ b/src/plugins/moreCommands.ts @@ -0,0 +1,37 @@ +import definePlugin from "../utils/types"; +import { ApplicationCommandInputType, sendBotMessage, findOption, OptionalMessageOption } from "../api/Commands"; +import { Devs } from "../utils/constants"; + +export default definePlugin({ + name: "MoreCommands", + description: "echo, lenny", + authors: [ + Devs.Arjix, + { + 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", "") + " ( ͡° ͜ʖ ͡°)" + }), + }, + ] +}); |