mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-04 15:56:52 +02:00
31 lines
715 B
JavaScript
31 lines
715 B
JavaScript
const Command = require('../../structures/Command');
|
|
const request = require('node-superfetch');
|
|
|
|
module.exports = class FoxCommand extends Command {
|
|
constructor(client) {
|
|
super(client, {
|
|
name: 'fox',
|
|
group: 'random',
|
|
memberName: 'fox',
|
|
description: 'Responds with a random fox image.',
|
|
clientPermissions: ['ATTACH_FILES'],
|
|
credit: [
|
|
{
|
|
name: 'RandomFox',
|
|
url: 'https://randomfox.ca/',
|
|
reason: 'API'
|
|
}
|
|
]
|
|
});
|
|
}
|
|
|
|
async run(msg) {
|
|
try {
|
|
const { body } = await request.get('https://randomfox.ca/floof/');
|
|
return msg.say({ files: [body.image] });
|
|
} catch (err) {
|
|
return msg.reply(`Oh no, an error occurred: \`${err.message}\`. Try again later!`);
|
|
}
|
|
}
|
|
};
|