mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-03 23:36:43 +02:00
37 lines
1018 B
JavaScript
37 lines
1018 B
JavaScript
const Command = require('../../structures/Command');
|
|
const request = require('node-superfetch');
|
|
const cheerio = require('cheerio');
|
|
|
|
module.exports = class LightNovelCoverCommand extends Command {
|
|
constructor(client) {
|
|
super(client, {
|
|
name: 'light-novel-cover',
|
|
aliases: ['ln-cover'],
|
|
group: 'random-img',
|
|
memberName: 'light-novel-cover',
|
|
description: 'Responds with a randomly generated Light Novel cover.',
|
|
nsfw: true,
|
|
credit: [
|
|
{
|
|
name: 'LN cover generator',
|
|
url: 'https://salty-salty-studios.com/shiz/lncovers.php',
|
|
reason: 'API'
|
|
}
|
|
]
|
|
});
|
|
}
|
|
|
|
async run(msg) {
|
|
try {
|
|
const { text } = await request.get('https://salty-salty-studios.com/shiz/lncovers.php');
|
|
const $ = cheerio.load(text);
|
|
const cover = $('img').first();
|
|
return msg.say(cover.attr('alt'), {
|
|
files: [`https://salty-salty-studios.com/shiz/${cover.attr('src')}`]
|
|
});
|
|
} catch (err) {
|
|
return msg.reply(`Oh no, an error occurred: \`${err.message}\`. Try again later!`);
|
|
}
|
|
}
|
|
};
|