From 465af7ef3bcc1c91937dbd63fdebe91e226cdc69 Mon Sep 17 00:00:00 2001 From: pokesudenk Date: Sat, 24 Feb 2018 20:39:22 -0500 Subject: story 2 --- commands/Fun/story.js | 6 +++--- 1 file 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 }); -- cgit v1.2.3 From 2f992d2b2a3275aacecf20a7b8b4e9aadcba4748 Mon Sep 17 00:00:00 2001 From: pokesudenk Date: Sat, 24 Feb 2018 20:40:21 -0500 Subject: fix --- commands/Fun/story.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/Fun/story.js b/commands/Fun/story.js index f98de7c..c049cc9 100644 --- a/commands/Fun/story.js +++ b/commands/Fun/story.js @@ -8,7 +8,7 @@ exports.run = async (bot, msg) => { const stories = [ - `${selectedUser1.username} bought ${selectedUser2} his favorite video game. This game is called "Pokemon". Then, they became best friends.`, + `${selectedUser1.username} bought ${selectedUser2.username} 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)]; -- cgit v1.2.3 From d5b1987aebbc35869e952ed6eda63b6074ca3d5e Mon Sep 17 00:00:00 2001 From: Alee Date: Sat, 24 Feb 2018 20:43:15 -0500 Subject: Added a new story --- commands/Fun/story.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/Fun/story.js b/commands/Fun/story.js index c049cc9..56e4dac 100644 --- a/commands/Fun/story.js +++ b/commands/Fun/story.js @@ -9,7 +9,7 @@ exports.run = async (bot, msg) => { const stories = [ `${selectedUser1.username} bought ${selectedUser2.username} 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.`, + `${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'); -- cgit v1.2.3