From aac50349cd6cfea82f60e2b670338e32ba9bafba Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sun, 17 Jan 2021 13:44:46 -0500 Subject: [PATCH] Fix --- commands/pokedex/pokedex-stats.js | 4 ---- commands/pokedex/pokedex.js | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/commands/pokedex/pokedex-stats.js b/commands/pokedex/pokedex-stats.js index 8f2c9083..2335070d 100644 --- a/commands/pokedex/pokedex-stats.js +++ b/commands/pokedex/pokedex-stats.js @@ -61,10 +61,6 @@ module.exports = class PokedexCommand extends Command { const embed = new MessageEmbed() .setColor(0xED1C24) .setAuthor(`#${data.displayID} - ${data.name}`, data.boxImageURL, data.serebiiURL) - .setDescription(stripIndents` - **${data.genus}** - ${data.entries[Math.floor(Math.random() * data.entries.length)]} - `) .setThumbnail(data.spriteImageURL) .addField('❯ Base Stats (Base Form)', stripIndents` \`HP: [${'█'.repeat(repeat.hp)}${' '.repeat(20 - repeat.hp)}]\` **${data.stats.hp}** diff --git a/commands/pokedex/pokedex.js b/commands/pokedex/pokedex.js index 92642116..1aca563c 100644 --- a/commands/pokedex/pokedex.js +++ b/commands/pokedex/pokedex.js @@ -115,7 +115,7 @@ module.exports = class PokedexCommand extends Command { } else { const usage = this.client.registry.commands.get('join').usage(); embed.setFooter(stripIndents` - Usage ${statsUsage} to get the Pokémon's stats. + Use ${statsUsage} to get the Pokémon's stats. Use ${moveUsage} to get the Pokémon's moveset. Join a voice channel and use ${usage} to hear the Pokémon's cry. `);