You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Haha-Yes/commands/fun/explosm.js

25 lines
593 B
JavaScript

const { Command } = require('discord-akairo');
const extract = require('meta-extractor');
class explosmCommand extends Command {
constructor() {
super('explosm', {
aliases: ['explosm', 'rcg'],
category: 'fun',
clientPermissions: ['SEND_MESSAGES', 'ATTACH_FILES'],
description: {
content: 'Comic randomly generated from http://explosm.net/rcg',
usage: '',
examples: ['']
}
});
}
async exec(message) {
extract({ uri: 'http://explosm.net/rcg' }, (err, res) => {
return message.reply({files: [res.ogImage]});
});
}
}
module.exports = explosmCommand;