This commit is contained in:
loicbersier 2019-09-22 17:50:56 +02:00
parent 56b6b7f324
commit 72c569af1d

24
commands/fun/explosm.js Normal file
View file

@ -0,0 +1,24 @@
const { Command } = require('discord-akairo');
const extract = require('meta-extractor');
class explosmCommand extends Command {
constructor() {
super('explosm', {
aliases: ['explosm', 'rcg'],
category: 'fun',
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.channel.send({files: [res.ogImage]});
});
}
}
module.exports = explosmCommand;