added mock command (#103)
This commit is contained in:
parent
c7c5ffdd44
commit
82d53b1928
2 changed files with 26 additions and 3 deletions
|
@ -1,12 +1,22 @@
|
||||||
import definePlugin from "../utils/types";
|
import definePlugin from "../utils/types";
|
||||||
import { ApplicationCommandInputType, sendBotMessage, findOption, OptionalMessageOption } from "../api/Commands";
|
import { ApplicationCommandInputType, OptionalMessageOption, sendBotMessage, findOption, RequiredMessageOption } from "../api/Commands";
|
||||||
import { Devs } from "../utils/constants";
|
import { Devs } from "../utils/constants";
|
||||||
|
|
||||||
|
|
||||||
|
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;
|
||||||
|
}
|
||||||
|
|
||||||
export default definePlugin({
|
export default definePlugin({
|
||||||
name: "MoreCommands",
|
name: "MoreCommands",
|
||||||
description: "echo, lenny",
|
description: "echo, lenny, mock",
|
||||||
authors: [
|
authors: [
|
||||||
Devs.Arjix,
|
Devs.Arjix,
|
||||||
|
Devs.echo,
|
||||||
{
|
{
|
||||||
name: "ICodeInAssembly",
|
name: "ICodeInAssembly",
|
||||||
id: 702973430449832038n
|
id: 702973430449832038n
|
||||||
|
@ -33,5 +43,13 @@ export default definePlugin({
|
||||||
content: findOption(opts, "message", "") + " ( ͡° ͜ʖ ͡°)"
|
content: findOption(opts, "message", "") + " ( ͡° ͜ʖ ͡°)"
|
||||||
}),
|
}),
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: "mock",
|
||||||
|
description: "mOcK PeOpLe",
|
||||||
|
options: [RequiredMessageOption],
|
||||||
|
execute: opts => ({
|
||||||
|
content: mock(findOption(opts, "message", ""))
|
||||||
|
}),
|
||||||
|
},
|
||||||
]
|
]
|
||||||
});
|
});
|
||||||
|
|
|
@ -46,5 +46,10 @@ export const Devs = Object.freeze({
|
||||||
MaiKokain: {
|
MaiKokain: {
|
||||||
name: "Mai",
|
name: "Mai",
|
||||||
id: 722647978577363026n
|
id: 722647978577363026n
|
||||||
}
|
},
|
||||||
|
echo: {
|
||||||
|
name: "ECHO",
|
||||||
|
id: 712639419785412668n
|
||||||
|
},
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue