diff options
| -rw-r--r-- | commands/cureboredom.js | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/commands/cureboredom.js b/commands/cureboredom.js new file mode 100644 index 0000000..96fe471 --- /dev/null +++ b/commands/cureboredom.js @@ -0,0 +1,22 @@ +exports.run = (bot, msg, args) => { + const ideas = [ + 'Pokemon Go to the polls :ballot_box:', + 'Consuming Maccas :fries:', + 'Fighting Astralmod :right_facing_fist:', + 'Joining a team :handshake:', + ]; + + msg.channel.send(games[Math.floor(Math.random() * games.length)]); + }; + + exports.conf = { + aliases: [], + guildOnly: true, + }; + + exports.help = { + name: 'cureboredom', + description: 'Finds you something to do.', + category: 'Fun', + }; +
\ No newline at end of file |
