Files
xiao/commands/pokedex/pokedex-location.js
T
2021-02-11 13:45:03 -05:00

71 lines
1.9 KiB
JavaScript

const Command = require('../../structures/Command');
const { MessageEmbed } = require('discord.js');
const versions = require('../../assets/json/pokedex-location');
module.exports = class PokedexLocationCommand extends Command {
constructor(client) {
super(client, {
name: 'pokedex-location',
aliases: [
'pokemon-location',
'pokémon-location',
'pokédex-location',
'pkmn-location',
'pokedex-locate',
'pokémon-locate',
'pokemon-locate',
'pokédex-locate',
'pkmn-locate'
],
group: 'pokedex',
memberName: 'pokedex-location',
description: 'Responds with the location data for a Pokémon.',
clientPermissions: ['EMBED_LINKS'],
credit: [
{
name: 'Pokémon',
url: 'https://www.pokemon.com/us/',
reason: 'Images, Original Game'
},
{
name: 'PokéAPI',
url: 'https://pokeapi.co/',
reason: 'API'
},
{
name: 'Serebii.net',
url: 'https://www.serebii.net/index2.shtml',
reason: 'Images'
}
],
args: [
{
key: 'pokemon',
prompt: 'What Pokémon would you like to get information on?',
type: 'pokemon'
}
]
});
}
async run(msg, { pokemon }) {
try {
if (!pokemon.gameDataCached) await pokemon.fetchGameData();
if (!pokemon.encounters) await pokemon.fetchEncounters();
const desc = pokemon.encounters.length
? pokemon.encounters
.map(location => `${location.name} (${location.versions.map(v => versions[v]).join('/')})`)
.join('\n')
: 'Location Unknown';
const embed = new MessageEmbed()
.setColor(0xED1C24)
.setAuthor(`#${pokemon.displayID} - ${pokemon.name}`, pokemon.boxImageURL, pokemon.serebiiURL)
.setDescription(desc)
.setThumbnail(pokemon.spriteImageURL);
return msg.embed(embed);
} catch (err) {
return msg.reply(`Oh no, an error occurred: \`${err.message}\`. Try again later!`);
}
}
};