aboutsummaryrefslogtreecommitdiff
path: root/commands/Fun
diff options
context:
space:
mode:
authorUnknown <jtsshieh@outlook.com>2018-02-25 21:58:31 -0500
committerUnknown <jtsshieh@outlook.com>2018-02-25 21:58:31 -0500
commit2b83e842fea1c9cab7abbe45154a1f140e26f990 (patch)
treed5632015dbc0f28a56ee1295d0d32d92378b6204 /commands/Fun
parent6d17517b4543afbf5100b55619efc8a6d8f3c754 (diff)
downloadPokeBot-2b83e842fea1c9cab7abbe45154a1f140e26f990.tar.gz
PokeBot-2b83e842fea1c9cab7abbe45154a1f140e26f990.tar.bz2
PokeBot-2b83e842fea1c9cab7abbe45154a1f140e26f990.zip
Basic music commands
Diffstat (limited to 'commands/Fun')
-rw-r--r--commands/Fun/8ball.js2
-rw-r--r--commands/Fun/cureboredom.js2
-rw-r--r--commands/Fun/findmyphone.js53
-rw-r--r--commands/Fun/og151.js2
-rw-r--r--commands/Fun/ship.js2
-rw-r--r--commands/Fun/story.js2
6 files changed, 31 insertions, 32 deletions
diff --git a/commands/Fun/8ball.js b/commands/Fun/8ball.js
index 28bf0e1..16d5d24 100644
--- a/commands/Fun/8ball.js
+++ b/commands/Fun/8ball.js
@@ -1,4 +1,4 @@
-/****************************************
+/** **************************************
*
* 8ball: Plugin for PokeBot that allows users to use an 8ball.
* Copyright (C) 2018 TheEdge, jtsshieh, Alee
diff --git a/commands/Fun/cureboredom.js b/commands/Fun/cureboredom.js
index 3b7cde5..1b7913c 100644
--- a/commands/Fun/cureboredom.js
+++ b/commands/Fun/cureboredom.js
@@ -1,4 +1,4 @@
-/****************************************
+/** **************************************
*
* CureBoredom: Plugin for PokeBot that "cures" your boredom.
* Copyright (C) 2018 TheEdge, jtsshieh, Alee
diff --git a/commands/Fun/findmyphone.js b/commands/Fun/findmyphone.js
index 482ceb3..1575917 100644
--- a/commands/Fun/findmyphone.js
+++ b/commands/Fun/findmyphone.js
@@ -1,4 +1,4 @@
-/****************************************
+/** **************************************
*
* FindMyPhone: Plugin for PokeBot that "helps you find your phone".
* Copyright (C) 2018 TheEdge, jtsshieh, Alee
@@ -19,30 +19,29 @@
* *************************************/
exports.run = (bot, msg) => {
- const cities = [
- 'Aurora',
- 'Montgomery',
- 'Chandler',
- 'Boise',
- 'Fresno',
- 'Lubbock',
- 'Miami',
- 'Stockton',
- 'Colorado Springs',
- 'Portland',
- 'Cincinnati',
- ];
+ const cities = [
+ 'Aurora',
+ 'Montgomery',
+ 'Chandler',
+ 'Boise',
+ 'Fresno',
+ 'Lubbock',
+ 'Miami',
+ 'Stockton',
+ 'Colorado Springs',
+ 'Portland',
+ 'Cincinnati',
+ ];
- msg.channel.send(cities[Math.floor(Math.random() * cities.length)]);
- };
-
- exports.conf = {
- aliases: ['findphone', 'findmyiphone', 'findmyandroid', 'findmyandroidphone'],
- guildOnly: true,
- };
-
- exports.help = {
- name: 'findmyphone',
- description: 'Find your phone. Not just a random list of cities being randomly picked.',
- };
- \ No newline at end of file
+ msg.channel.send(cities[Math.floor(Math.random() * cities.length)]);
+};
+
+exports.conf = {
+ aliases: ['findphone', 'findmyiphone', 'findmyandroid', 'findmyandroidphone'],
+ guildOnly: true,
+};
+
+exports.help = {
+ name: 'findmyphone',
+ description: 'Find your phone. Not just a random list of cities being randomly picked.',
+};
diff --git a/commands/Fun/og151.js b/commands/Fun/og151.js
index 2c789c7..aa9a288 100644
--- a/commands/Fun/og151.js
+++ b/commands/Fun/og151.js
@@ -1,4 +1,4 @@
-/****************************************
+/** **************************************
*
* og151: Plugin for PokeBot that randomly picks 1 out of the original 151 Pokemon.
* Copyright (C) 2018 TheEdge, jtsshieh, Alee
diff --git a/commands/Fun/ship.js b/commands/Fun/ship.js
index ee218f8..fdf9e3e 100644
--- a/commands/Fun/ship.js
+++ b/commands/Fun/ship.js
@@ -1,4 +1,4 @@
-/****************************************
+/** **************************************
*
* Ship: Plugin for PokeBot that ships the user with someone else.
* Copyright (C) 2018 TheEdge, jtsshieh, Alee
diff --git a/commands/Fun/story.js b/commands/Fun/story.js
index 2faf510..de5a6ff 100644
--- a/commands/Fun/story.js
+++ b/commands/Fun/story.js
@@ -1,4 +1,4 @@
-/****************************************
+/** **************************************
*
* Story: Plugin for PokeBot that tells the user a story.
* Copyright (C) 2018 TheEdge, jtsshieh, Alee