summaryrefslogtreecommitdiff
path: root/src/commands/fun/spongebob.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/fun/spongebob.ts')
-rw-r--r--src/commands/fun/spongebob.ts39
1 files changed, 0 insertions, 39 deletions
diff --git a/src/commands/fun/spongebob.ts b/src/commands/fun/spongebob.ts
deleted file mode 100644
index d8010a6..0000000
--- a/src/commands/fun/spongebob.ts
+++ /dev/null
@@ -1,39 +0,0 @@
-import { Command, CommandoMessage } from 'discord.js-commando';
-import sbm from 'spongibobu.js';
-import emoji from 'emoji-random';
-
-module.exports = class SpongebobFun extends Command {
- constructor(client) {
- super(client, {
- name: 'spongebob',
- aliases: ['spongibobu', 'sbm'],
- group: 'fun',
- memberName: 'spongebob',
- description: 'Spongebob memifys anything you send.',
- args: [
- {
- key: 'userMsg',
- prompt: 'What would you like to spongebob memify?',
- type: 'string'
- }
- ],
- throttling: {
- usages: 5,
- duration: 30
- },
- examples: [
- 'uwu!spongebob please spongebob memify this',
- 'uwu!spongibobu sponge gang',
- 'uwu!sbm oooh example'
- ],
- userPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
- clientPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
- });
- }
- run(msg: CommandoMessage, { userMsg }) {
- var m = userMsg;
- var u1 = sbm(m);
- msg.reply(u1 + ' ' + emoji.random());
- msg.delete();
- }
-}; \ No newline at end of file