aboutsummaryrefslogtreecommitdiff
path: root/commands
diff options
context:
space:
mode:
authorpokesudenk <thisis@notarealema.il>2018-02-24 20:39:22 -0500
committerpokesudenk <thisis@notarealema.il>2018-02-24 20:39:22 -0500
commit465af7ef3bcc1c91937dbd63fdebe91e226cdc69 (patch)
treec38cfc96cab77fe3e61380a23d281953be13987d /commands
parentb3d0b3c933e140a011739c1ba23852258de9e392 (diff)
downloadPokeBot-465af7ef3bcc1c91937dbd63fdebe91e226cdc69.tar.gz
PokeBot-465af7ef3bcc1c91937dbd63fdebe91e226cdc69.tar.bz2
PokeBot-465af7ef3bcc1c91937dbd63fdebe91e226cdc69.zip
story 2
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..f98de7c 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} his favorite video game. This game is called "Pokemon". Then, they became best friends.`,
+ `${selectedUser1.username} jumps out the window. Then, ${selectedUser2.username} saves ${selectedUser1.username}, and ${selectedUser3.username} claps.`,
];
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 });