From 72f66ae3a3fa4513b3c3a6459fdc2b1f27772ab1 Mon Sep 17 00:00:00 2001 From: Crescent Date: Sat, 26 Jun 2021 02:26:36 -0500 Subject: [PATCH] l.dodge command --- commands/social/dodge.js | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 commands/social/dodge.js diff --git a/commands/social/dodge.js b/commands/social/dodge.js new file mode 100644 index 0000000..a5e7a87 --- /dev/null +++ b/commands/social/dodge.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: "dodge", + aliases: ['dodge'], + help: "Avoid an incoming attack with {{p}}dodge!", + meta: { + category: 'Social', + description: "Avoid incoming death with a dodge!", + syntax: '`dodge`', + extra: null + }, + async execute(message, msg, args, cmd, prefix, mention, client) { + let savess = await Saves.findOne({name: 'dodge'}) ? await Saves.findOne({name: 'dodge'}) : new Saves({name: 'dodge'}); + let saves = savess.saves; + if (!args.length) {return message.channel.send(new Discord.MessageEmbed() + .setTitle(`${message.guild ? message.member.displayName : message.author.username} dodged the attack!`) + .setImage(String(Array.from(saves.values())[Math.floor(Math.random() * saves.size)])) + .setColor('b2ac88') + );} + 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 smile GIFs.");} + 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("I did it! Are you proud of me senpai?"); + } + } +}; \ No newline at end of file