Files
xiao/commands/single/wynaut.js
T
2020-01-14 18:25:35 -05:00

27 lines
603 B
JavaScript

const Command = require('../../structures/Command');
const path = require('path');
module.exports = class WynautCommand extends Command {
constructor(client) {
super(client, {
name: 'wynaut',
aliases: ['why-not'],
group: 'single',
memberName: 'wynaut',
description: 'Why not? Wynaut?',
clientPermissions: ['ATTACH_FILES'],
credit: [
{
name: 'Pokémon',
url: 'https://www.pokemon.com/us/',
reason: 'Image, Original Anime'
}
]
});
}
run(msg) {
return msg.say({ files: [path.join(__dirname, '..', '..', 'assets', 'images', 'wynaut.png')] });
}
};