diff options
| author | Unknown <jtsshieh@outlook.com> | 2018-02-24 14:59:35 -0500 |
|---|---|---|
| committer | Unknown <jtsshieh@outlook.com> | 2018-02-24 14:59:35 -0500 |
| commit | c484753ee15dbe2a5ce9c6297f22fabb52ce3b7e (patch) | |
| tree | 93fd74f30abbd3c8206321b9d9c20b2571ed84ca /commands/8ball.js | |
| parent | 3d36bcf0591f2694c3a2472a157ecca0de8d35fc (diff) | |
| download | PokeBot-c484753ee15dbe2a5ce9c6297f22fabb52ce3b7e.tar.gz PokeBot-c484753ee15dbe2a5ce9c6297f22fabb52ce3b7e.tar.bz2 PokeBot-c484753ee15dbe2a5ce9c6297f22fabb52ce3b7e.zip | |
New Command system
Diffstat (limited to 'commands/8ball.js')
| -rw-r--r-- | commands/8ball.js | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/commands/8ball.js b/commands/8ball.js deleted file mode 100644 index f188270..0000000 --- a/commands/8ball.js +++ /dev/null @@ -1,48 +0,0 @@ -exports.run = async (bot, msg, args) => { - if (args.length < 1) return msg.reply('You need to ask the 8-ball something for it to respond!'); - - const responses = [ - 'May the odds ever be in your favor...', - 'Definetely not! Did you ever think that this would work?', - 'Most definetely', - 'Seems probable..', - 'Sure, why not?', - 'No!', - 'Probably.', - 'If a sentience can do a backflip, then this can happen!', - 'It is certain', - 'It is decidedly so', - 'Without a doubt', - 'Yes definitely', - 'You may rely on it', - 'As I see it, yes', - 'Most likely', - 'Outlook good', - 'Yes', - 'Signs point to yes', - 'Reply hazy try again', - 'Ask again later', - 'Better not tell you now', - 'Cannot predict now', - 'Concentrate and ask again', - 'Don\'t count on it', - 'My reply is no', - 'My sources say no', - 'Outlook not so good', - 'Very doubtful', - ]; - - msg.channel.send(':8ball: *' + (responses[Math.floor(Math.random() * responses.length)]) + '*'); -}; - -exports.conf = { - aliases: [], - guildOnly: true, -}; - -exports.help = { - name: '8ball', - description: 'Ask the magic 8-ball something. It will answer back, and be as much of a smart-alac as it wants to.', - usage: '<...question>', - category: 'Fun', -}; |
