diff --git a/README.md b/README.md index f1ece183..449d955c 100644 --- a/README.md +++ b/README.md @@ -265,7 +265,7 @@ in the appropriate channel's topic to use it. ## Commands -Total: 616 +Total: 617 ### Utility: @@ -816,6 +816,7 @@ Total: 616 * **plankton-plan:** Sends a Plankton's Plan meme with steps of your choice. * **pogchamp:** Sends a pogchamp duplicated however many times you want. * **scroll-of-truth:** Sends a "Scroll of Truth" meme with the text of your choice. +* **sexy-singles:** Sends an "Sexy Singles in Your Area" meme with the image of your choice. * **skyrim-skill:** Sends a "Skyrim Skill" meme with the skill and image of your choice. * **sonic-says:** Sends a "Sonic Says" meme with the quote of your choice. * **sora-selfie:** Draws an image or a user's avatar behind Sora taking a selfie. diff --git a/assets/images/sexy-singles/0.png b/assets/images/sexy-singles/0.png new file mode 100644 index 00000000..fcd43eb5 Binary files /dev/null and b/assets/images/sexy-singles/0.png differ diff --git a/assets/images/sexy-singles/1.png b/assets/images/sexy-singles/1.png new file mode 100644 index 00000000..608432a3 Binary files /dev/null and b/assets/images/sexy-singles/1.png differ diff --git a/commands/edit-meme/sexy-singles.js b/commands/edit-meme/sexy-singles.js new file mode 100644 index 00000000..5ce79fbd --- /dev/null +++ b/commands/edit-meme/sexy-singles.js @@ -0,0 +1,53 @@ +const Command = require('../../structures/Command'); +const { createCanvas, loadImage } = require('canvas'); +const request = require('node-superfetch'); +const path = require('path'); +const count = 2; + +module.exports = class SexySinglesCommand extends Command { + constructor(client) { + super(client, { + name: 'sexy-singles', + aliases: ['sexy-single', 'singles'], + group: 'edit-meme', + memberName: 'sexy-singles', + description: 'Sends an "Sexy Singles in Your Area" meme with the image of your choice.', + nsfw: true, + throttling: { + usages: 1, + duration: 10 + }, + clientPermissions: ['ATTACH_FILES'], + args: [ + { + key: 'image', + prompt: 'What image would you like to edit?', + type: 'image-or-avatar', + default: msg => msg.author.displayAvatarURL({ format: 'png', size: 1024 }) + } + ] + }); + } + + async run(msg, { image }) { + try { + const { body } = await request.get(image); + const base = await loadImage(body); + const choice = Math.floor(Math.random() * count); + const plate = await loadImage( + path.join(__dirname, '..', '..', 'assets', 'images', 'sexy-singles', `${choice}.png`) + ); + const scaleW = plate.height / base.height; + const width = Math.round(base.width * scaleW); + const canvas = createCanvas(plate.width + width, plate.height); + const ctx = canvas.getContext('2d'); + ctx.drawImage(base, 0, 0, plate.width + 1, 0); + ctx.drawImage(plate, 0, 0); + const attachment = canvas.toBuffer(); + if (Buffer.byteLength(attachment) > 8e+6) return msg.reply('Resulting image was above 8 MB.'); + return msg.say({ files: [{ attachment, name: 'sexy-singles.png' }] }); + } catch (err) { + return msg.reply(`Oh no, an error occurred: \`${err.message}\`. Try again later!`); + } + } +}; diff --git a/package.json b/package.json index a88bca7e..6d9bbe31 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xiao", - "version": "131.10.0", + "version": "131.11.0", "description": "Your personal server companion.", "main": "Xiao.js", "scripts": {