Ah yes, enslaved command

This commit is contained in:
Dragon Fire
2020-07-02 21:31:53 -04:00
parent 3b712a6475
commit 3e67422a3d
4 changed files with 78 additions and 2 deletions
+4 -1
View File
@@ -243,7 +243,7 @@ in the appropriate channel's topic to use it.
## Commands
Total: 522
Total: 523
### Utility:
@@ -683,6 +683,7 @@ Total: 522
* **distracted-boyfriend:** Draws three user's avatars over the "Distracted Boyfriend" meme.
* **drakeposting:** Sends a "Drakeposting" meme with the text of your choice.
* **edd-facts-book:** Sends a "Double D's Facts Book" meme with the fact of your choice.
* **enslaved:** Sends a "Ah yes, enslaved" meme with the image and text of your choice.
* **food-broke:** Draws a user's avatar over the "Food Broke" meme.
* **for-five-hours:** Sends an "I've looked at this for 5 hours now" meme with the image of your choice.
* **genie-rules:** Sends a "There are 4 rules" meme with the text of your choice.
@@ -1076,6 +1077,7 @@ here.
* demotivational ([Noto Font](https://www.google.com/get/noto/))
* drakeposting ([Noto Font](https://www.google.com/get/noto/))
* edd-facts-book ([Noto Font](https://www.google.com/get/noto/))
* enslaved ([Noto Font](https://www.google.com/get/noto/))
* genie-rules ([Noto Font](https://www.google.com/get/noto/))
* google ([Custom Search API](https://cse.google.com/cse/all))
* google-autofill (Autofill API)
@@ -1370,6 +1372,7 @@ here.
* alert (Concept)
* boardroom-meeting (Concept)
* dislike (Concept)
* enslaved (Concept)
* for-five-hours (Concept)
* gun (Concept)
* hands (Concept)
Binary file not shown.

After

Width:  |  Height:  |  Size: 232 KiB

+73
View File
@@ -0,0 +1,73 @@
const Command = require('../../structures/Command');
const { createCanvas, loadImage, registerFont } = require('canvas');
const request = require('node-superfetch');
const path = require('path');
const { centerImagePart } = require('../../util/Canvas');
registerFont(path.join(__dirname, '..', '..', 'assets', 'fonts', 'Noto-Regular.ttf'), { family: 'Noto' });
registerFont(path.join(__dirname, '..', '..', 'assets', 'fonts', 'Noto-CJK.otf'), { family: 'Noto' });
registerFont(path.join(__dirname, '..', '..', 'assets', 'fonts', 'Noto-Emoji.ttf'), { family: 'Noto' });
module.exports = class EnslavedCommand extends Command {
constructor(client) {
super(client, {
name: 'enslaved',
aliases: ['ah-yes-enslaved', 'ah-yes'],
group: 'edit-meme',
memberName: 'enslaved',
description: 'Sends a "Ah yes, enslaved" meme with the image and text of your choice.',
throttling: {
usages: 1,
duration: 10
},
clientPermissions: ['ATTACH_FILES'],
credit: [
{
name: 'Google',
url: 'https://www.google.com/',
reason: 'Noto Font',
reasonURL: 'https://www.google.com/get/noto/'
},
{
name: 'Overtime2005',
url: 'https://github.com/Overtime2005',
reason: 'Concept'
}
],
args: [
{
key: 'name',
prompt: 'What is the name of thing you want to enslave?',
type: 'string',
max: 20
},
{
key: 'image',
prompt: 'What image would you like to edit?',
type: 'image',
default: msg => msg.author.displayAvatarURL({ format: 'png', size: 256 })
}
]
});
}
async run(msg, { name, image }) {
try {
const base = await loadImage(path.join(__dirname, '..', '..', 'assets', 'images', 'enslaved.png'));
const { body } = await request.get(image);
const data = await loadImage(body);
const canvas = createCanvas(base.width, base.height);
const ctx = canvas.getContext('2d');
ctx.drawImage(base, 0, 0);
const { x, y, width, height } = centerImagePart(data, 200, 200, 254, 145);
ctx.drawImage(data, x, y, width, height);
ctx.textBaseline = 'top';
ctx.textAlign = 'center';
ctx.fillStyle = 'white';
ctx.font = '50px Noto';
ctx.fillText(name.toLowerCase(), 365, 400, 240);
return msg.say({ files: [{ attachment: canvas.toBuffer(), name: 'enslaved.png' }] });
} catch (err) {
return msg.reply(`Oh no, an error occurred: \`${err.message}\`. Try again later!`);
}
}
};
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "xiao",
"version": "119.4.2",
"version": "119.5.0",
"description": "Your personal server companion.",
"main": "Xiao.js",
"scripts": {