Fix pokedex move

This commit is contained in:
Dragon Fire
2024-03-21 18:41:36 -04:00
parent 2f5906ba0a
commit 80806b299e
+3 -3
View File
@@ -41,9 +41,9 @@ module.exports = class PokedexMoveCommand extends Command {
.setTitle(data.name)
.setDescription(data.description ? data.cleanDescription : 'No description available.')
.addField(' Accuracy', `${data.accuracy}%`, true)
.addField(' Power', data.power || '???', true)
.addField(' PP', data.pp, true)
.addField(' Type', data.type, true)
.addField(' Power', data.power.toString() || '???', true)
.addField(' PP', data.pp.toString(), true)
.addField(' Type', data.type.toString(), true)
.addField(' Contest Type', data.contestType || 'N/A', true)
.addField(' Class', data.class, true);
return msg.embed(embed);