JaBa/commands/Images/love.js

41 lines
1.2 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 Love extends Command {
constructor (client) {
super(client, {
name: "love",
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 users = [
await this.client.resolveUser(args[0]) || message.author,
await this.client.resolveUser(args[1]) || message.author
];
2021-12-11 01:11:50 +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=ship&user1=${users[0].displayAvatarURL({ format: "png", size: 512 })}&user2=${users[1].displayAvatarURL({ format: "png", size: 512 })}`));
const json = await res.json();
const attachment = new Discord.MessageAttachment(json.message, "love.png");
message.channel.send(attachment);
m.delete();
} catch(e){
console.log(e);
2021-12-11 01:11:50 +05:00
m.error("misc:ERROR_OCCURRED", null, { edit: true });
};
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 = Love;