Files
xiao/commands/random/xiao.js
T
Daniel Odendahl Jr 45c8d62dd5 Credit Command
2019-04-14 00:03:38 +00:00

27 lines
612 B
JavaScript

const ImgurAlbumCommand = require('../../structures/commands/ImgurAlbum');
const { XIAO_ALBUM_ID } = process.env;
module.exports = class XiaoCommand extends ImgurAlbumCommand {
constructor(client) {
super(client, {
name: 'xiao',
aliases: ['xiao-pai', 'iao'],
group: 'random',
memberName: 'xiao',
description: 'Responds with a random image of Xiao Pai.',
clientPermissions: ['ATTACH_FILES'],
albumID: XIAO_ALBUM_ID,
credit: [
{
name: 'Rune Factory 4',
url: 'http://www.runefactory4.com/index1.html'
}
]
});
}
generateText() {
return 'It\'s me, yes?';
}
};