diff options
| author | pokesudenk <thisis@notarealema.il> | 2018-02-24 12:23:23 -0500 |
|---|---|---|
| committer | pokesudenk <thisis@notarealema.il> | 2018-02-24 12:23:23 -0500 |
| commit | 06810eb40e395f67630ae320c2ad497e3283d9b2 (patch) | |
| tree | 44dc3061c2fa35e4a1a58abd8d5e00275852daef | |
| parent | 342f9f5222369cc109820d5959014a7039f55430 (diff) | |
| download | PokeBot-06810eb40e395f67630ae320c2ad497e3283d9b2.tar.gz PokeBot-06810eb40e395f67630ae320c2ad497e3283d9b2.tar.bz2 PokeBot-06810eb40e395f67630ae320c2ad497e3283d9b2.zip | |
cureboredom
| -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 |
