aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpokesudenk <thisis@notarealema.il>2018-02-24 12:23:23 -0500
committerpokesudenk <thisis@notarealema.il>2018-02-24 12:23:23 -0500
commit06810eb40e395f67630ae320c2ad497e3283d9b2 (patch)
tree44dc3061c2fa35e4a1a58abd8d5e00275852daef
parent342f9f5222369cc109820d5959014a7039f55430 (diff)
downloadPokeBot-06810eb40e395f67630ae320c2ad497e3283d9b2.tar.gz
PokeBot-06810eb40e395f67630ae320c2ad497e3283d9b2.tar.bz2
PokeBot-06810eb40e395f67630ae320c2ad497e3283d9b2.zip
cureboredom
-rw-r--r--commands/cureboredom.js22
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