summaryrefslogtreecommitdiff
path: root/src/commands/fun/lorem.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/fun/lorem.ts')
-rw-r--r--src/commands/fun/lorem.ts34
1 files changed, 0 insertions, 34 deletions
diff --git a/src/commands/fun/lorem.ts b/src/commands/fun/lorem.ts
deleted file mode 100644
index 3189375..0000000
--- a/src/commands/fun/lorem.ts
+++ /dev/null
@@ -1,34 +0,0 @@
-import { Command, CommandoMessage } from 'discord.js-commando';
-import lm from 'lorem-memesum';
-import emoji from 'emoji-random';
-
-module.exports = class LoremFun extends Command {
- constructor(client) {
- super(client, {
- name: 'lorem',
- aliases: ['lorem-impsum', 'loremipsum', 'ipsum', 'lorem-memesum', 'loremmemesum', 'memesum'],
- group: 'fun',
- memberName: 'lorem',
- description: 'Gives you a random memeified Lorem Ipsum.',
- examples: [
- 'uwu!lorem',
- 'uwu!lorem-ipsum',
- 'uwu!loremipsum',
- 'uwu!ipsum',
- 'uwu!lorem-memesum',
- 'uwu!loremmemesum',
- 'uwu!memesum'
- ],
- throttling: {
- usages: 5,
- duration: 30
- },
- userPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
- clientPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
- });
- }
- run(msg: CommandoMessage) {
- msg.reply(lm.sentence.randomSentence() + ' ' + emoji.random());
- msg.delete();
- }
-}; \ No newline at end of file