aboutsummaryrefslogtreecommitdiff
path: root/commands/Fun
diff options
context:
space:
mode:
authorUnknown <jtsshieh@outlook.com>2018-02-24 21:22:22 -0500
committerUnknown <jtsshieh@outlook.com>2018-02-24 21:22:22 -0500
commit8e185048a5a998f3ff49d42a7894aef88d619481 (patch)
treec8345a0a06225f195f6569ce437a3d6dea119138 /commands/Fun
parent773ebdeccaef172ccfb46cf5d5bb070cee93eabe (diff)
parentd5b1987aebbc35869e952ed6eda63b6074ca3d5e (diff)
downloadPokeBot-8e185048a5a998f3ff49d42a7894aef88d619481.tar.gz
PokeBot-8e185048a5a998f3ff49d42a7894aef88d619481.tar.bz2
PokeBot-8e185048a5a998f3ff49d42a7894aef88d619481.zip
Merge remote-tracking branch 'origin/master'
Diffstat (limited to 'commands/Fun')
-rw-r--r--commands/Fun/story.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/commands/Fun/story.js b/commands/Fun/story.js
index 8e0f361..56e4dac 100644
--- a/commands/Fun/story.js
+++ b/commands/Fun/story.js
@@ -8,14 +8,14 @@ exports.run = async (bot, msg) => {
const stories =
[
- 'In progress story.',
- `${selectedUser1.username} jumps into the window. Then, ${selectedUser2.username} saves ${selectedUser1.username}, and ${selectedUser3.username} claps.`,
+ `${selectedUser1.username} bought ${selectedUser2.username} his favorite video game. This game is called "Pokemon". Then, they became best friends.`,
+ `${selectedUser1.username} wants to become a Pokemon trainer, but he needs to get a Pokemon first!`,
];
const storySelected = [Math.floor(Math.random() * stories.length)];
const { RichEmbed } = require('discord.js');
const embed = new RichEmbed()
.setColor(0x00ae86)
- .setTitle('Pokebot Storytime')
+ .setTitle('PokeBot Storytime')
.setDescription(stories[storySelected])
.setFooter('PokeBot Beta');
msg.channel.send({ embed });