JaBa/commands/Images/clyde.js

46 lines
994 B
JavaScript
Raw Normal View History

const Command = require("../../base/Command"),
2022-01-04 02:18:28 +05:00
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,
2022-01-13 00:26:23 +05:00
cooldown: 3000
2022-01-04 02:18:28 +05:00
});
}
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();
message.channel.send({
files: [{
attachment: json.message
}]
});
2022-01-04 02:18:28 +05:00
m.delete();
} catch (e) {
console.log(e);
m.error("misc:ERR_OCCURRED", null, {
2022-01-04 02:18:28 +05:00
edit: true
});
2022-01-13 00:26:23 +05:00
}
2022-01-04 02:18:28 +05:00
}
2022-01-13 00:26:23 +05:00
}
2022-01-04 02:18:28 +05:00
module.exports = Clyde;