This commit is contained in:
Daniel Odendahl Jr
2017-08-26 01:49:08 +00:00
parent 24a6411a1e
commit 64cfe64731
+3 -3
View File
@@ -12,7 +12,7 @@ module.exports = class PokemonFusionCommand extends Command {
args: [
{
key: 'body',
prompt: 'What Pokémon should be fused?',
prompt: 'What Pokémon should be fused as the body?',
type: 'string',
validate: body => {
if (pokemon[body.toLowerCase()]) return true;
@@ -22,7 +22,7 @@ module.exports = class PokemonFusionCommand extends Command {
},
{
key: 'palette',
prompt: 'What Pokémon should be fused?',
prompt: 'What Pokémon should be fused as the palette?',
type: 'string',
validate: palette => {
if (pokemon[palette.toLowerCase()]) return true;
@@ -36,6 +36,6 @@ module.exports = class PokemonFusionCommand extends Command {
run(msg, args) {
const { body, palette } = args;
return msg.say(`http://images.alexonsager.net/pokemon/fused/${body}/${palette}.${body}.png`);
return msg.say(`http://images.alexonsager.net/pokemon/fused/${body}/${body}.${palette}.png`);
}
};