mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-04 15:56:52 +02:00
27 lines
603 B
JavaScript
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')] });
|
|
}
|
|
};
|