Files
xiao/commands/random/fox.js
T
Daniel Odendahl Jr 4083427231 Fox Command
2018-07-10 02:52:39 +00:00

24 lines
606 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']
});
}
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!`);
}
}
};