JaBa/commands/Images/clyde.js

47 lines
1 KiB
JavaScript
Raw Normal View History

2021-12-10 21:39:54 +05:00
const Command = require("../../base/Command.js"),
Discord = require("discord.js"),
fetch = require("node-fetch");
class Clyde extends Command {
2021-12-26 19:29:37 +05:00
constructor(client) {
2021-12-10 21:39:54 +05:00
super(client, {
name: "clyde",
dirname: __dirname,
enabled: true,
guildOnly: false,
aliases: [],
memberPermissions: [],
2021-12-26 19:29:37 +05:00
botPermissions: ["SEND_MESSAGES", "EMBED_LINKS", "ATTACH_FILES"],
2021-12-10 21:39:54 +05:00
nsfw: false,
ownerOnly: false,
cooldown: 5000
});
}
2021-12-26 19:29:37 +05:00
async run(message, args) {
2021-12-10 21:39:54 +05:00
const text = args.join(" ");
2021-12-11 01:11:50 +05:00
if (!text) return message.error("images/clyde:MISSING_TEXT");
2021-12-10 21:39:54 +05:00
2021-12-26 19:29:37 +05:00
const m = await message.sendT("misc:PLEASE_WAIT", null, {
prefixEmoji: "loading"
});
2021-12-10 21:39:54 +05:00
try {
const res = await fetch(encodeURI(`https://nekobot.xyz/api/imagegen?type=clyde&text=${text}`));
const json = await res.json();
2022-01-03 23:20:33 +05:00
message.channel.send({
files: [{
attachment: json.message
}]
});
2021-12-10 21:39:54 +05:00
m.delete();
2021-12-26 19:29:37 +05:00
} catch (e) {
2021-12-10 21:39:54 +05:00
console.log(e);
2021-12-26 19:29:37 +05:00
m.error("misc:ERROR_OCCURRED", null, {
edit: true
});
2021-12-11 01:11:50 +05:00
};
2021-12-10 21:39:54 +05:00
}
2021-12-11 01:11:50 +05:00
};
2021-12-10 21:39:54 +05:00
module.exports = Clyde;