From 2117ecba8254bbbf6f58e2a2269221ebd181d1e6 Mon Sep 17 00:00:00 2001 From: Crescent Date: Wed, 7 Jul 2021 00:42:28 -0500 Subject: [PATCH] l.lesbian --- commands/fun/lesbian.js | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 commands/fun/lesbian.js diff --git a/commands/fun/lesbian.js b/commands/fun/lesbian.js new file mode 100644 index 0000000..88b9af7 --- /dev/null +++ b/commands/fun/lesbian.js @@ -0,0 +1,38 @@ +const Discord = require('discord.js'); +const Saves = require('../../models/saves'); +const UserData = require('../../models/user'); +const makeId = require('../../util/makeid'); + +module.exports = { + name: "lesbian", + help: "Get a random lesbian gif", + aliases: ['lesbian', 'lesbians', 'lesbo'], + meta: { + category: 'Social', + description: "Get a random lesbian gif", + syntax: '`lesbian`', + extra: null + }, + async execute(message, msg, args, cmd, prefix, mention, client) { + let savess = await Saves.findOne({name: 'lesbian'}) ? await Saves.findOne({name: 'lesbian'}) : new Saves({name:'lesbian'}); + let saves = savess.saves; + if (!args.length) {return message.channel.send(new Discord.MessageEmbed() + .setTitle(`Here's some beautiful lesbians uwu`) + .setImage(String(Array.from(saves.values())[Math.floor(Math.random() * saves.size)])) + .setColor('aa459d') + );} + if (['s', 'save', 'n', 'new', 'a', 'add'].includes(args[0].toLowerCase())) { + if (!args[1]) {return message.channel.send('oi there cunt, give me a link of an image to add!');} + let tu = await UserData.findOne({uid: message.author.id}); + if ((!tu || !tu.developer) && !client.misc.savers.includes(message.author.id)) {return message.reply("You must be a Luno Developer in order to add new lesbian GIFs/images.");} + let e = true; + let id; + while (e === true) {id = makeId(6); if (!saves.has(id)) {e = false;}} + args.shift(); + saves.set(id, args.join(" ").trim()); + savess.saves = saves; + savess.save(); + return message.channel.send("Yayyy more lesbians!"); + } + } +}; \ No newline at end of file