mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-03 23:36:43 +02:00
Sexy Singles Command
This commit is contained in:
@@ -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.
|
||||
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 6.0 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 9.3 KiB |
@@ -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!`);
|
||||
}
|
||||
}
|
||||
};
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "xiao",
|
||||
"version": "131.10.0",
|
||||
"version": "131.11.0",
|
||||
"description": "Your personal server companion.",
|
||||
"main": "Xiao.js",
|
||||
"scripts": {
|
||||
|
||||
Reference in New Issue
Block a user