aboutsummaryrefslogtreecommitdiff
path: root/commands
diff options
context:
space:
mode:
Diffstat (limited to 'commands')
-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 });