mirror of
https://github.com/JonnyBro/JaBa.git
synced 2024-11-22 21:24:59 +05:00
40 lines
No EOL
1 KiB
JavaScript
40 lines
No EOL
1 KiB
JavaScript
const Command = require("../../base/Command.js"),
|
|
Discord = require("discord.js"),
|
|
fetch = require("node-fetch");
|
|
|
|
class Clyde extends Command {
|
|
constructor (client) {
|
|
super(client, {
|
|
name: "clyde",
|
|
dirname: __dirname,
|
|
enabled: true,
|
|
guildOnly: false,
|
|
aliases: [],
|
|
memberPermissions: [],
|
|
botPermissions: [ "SEND_MESSAGES", "EMBED_LINKS", "ATTACH_FILES" ],
|
|
nsfw: false,
|
|
ownerOnly: false,
|
|
cooldown: 5000
|
|
});
|
|
}
|
|
|
|
async run (message, args) {
|
|
const text = args.join(" ");
|
|
|
|
if (!text) return message.error("images/clyde:MISSING_TEXT");
|
|
|
|
const m = await message.sendT("misc:PLEASE_WAIT", null, { prefixEmoji: "loading" });
|
|
try {
|
|
const res = await fetch(encodeURI(`https://nekobot.xyz/api/imagegen?type=clyde&text=${text}`));
|
|
const json = await res.json();
|
|
const attachment = new Discord.MessageAttachment(json.message, "clyde.png");
|
|
message.channel.send(attachment);
|
|
m.delete();
|
|
} catch(e) {
|
|
console.log(e);
|
|
m.error("misc:ERROR_OCCURRED", null, { edit: true });
|
|
};
|
|
}
|
|
};
|
|
|
|
module.exports = Clyde; |