To Be Continued Command

This commit is contained in:
Dragon Fire
2018-08-06 15:23:11 -04:00
parent 96ade18b63
commit 79ad8517ab
4 changed files with 52 additions and 2 deletions
+2 -1
View File
@@ -15,7 +15,7 @@ Xiao is a Discord bot coded in JavaScript with
The bot is no longer available for invite. You can self-host the bot, or use her
on the [home server](https://discord.gg/sbMe32W).
## Commands (301)
## Commands (302)
### Utility:
* **eval**: Executes JavaScript code.
@@ -251,6 +251,7 @@ on the [home server](https://discord.gg/sbMe32W).
* **shields-io-badge**: Creates a badge from shields.io.
* **silhouette**: Draws a silhouette of an image or a user's avatar.
* **tint**: Draws an image or a user's avatar but tinted a specific color.
* **to-be-continued**: Draws an image with the "To Be Continued..." arrow.
### Avatar Manipulation:
Binary file not shown.

After

Width:  |  Height:  |  Size: 62 KiB

+49
View File
@@ -0,0 +1,49 @@
const Command = require('../../structures/Command');
const { createCanvas, loadImage } = require('canvas');
const request = require('node-superfetch');
const path = require('path');
const { sepia } = require('../../util/Canvas');
module.exports = class ToBeContinuedCommand extends Command {
constructor(client) {
super(client, {
name: 'to-be-continued',
group: 'image-edit',
memberName: 'to-be-continued',
description: 'Draws an image with the "To Be Continued..." arrow.',
throttling: {
usages: 1,
duration: 10
},
clientPermissions: ['ATTACH_FILES'],
args: [
{
key: 'image',
prompt: 'What image would you like to edit?',
type: 'image|avatar',
default: msg => msg.author.displayAvatarURL({ format: 'png', size: 512 })
}
]
});
}
async run(msg, { image }) {
try {
const base = await loadImage(path.join(__dirname, '..', '..', 'assets', 'images', 'to-be-continued.png'));
const { body } = await request.get(image);
const data = await loadImage(body);
const canvas = createCanvas(data.width, data.height);
const ctx = canvas.getContext('2d');
ctx.drawImage(data, 0, 0);
sepia(ctx, 0, 0, data.width, data.height);
const ratio = base.width / base.height;
const width = canvas.width / 2;
ctx.drawImage(base, canvas.width - base.width, canvas.height - base.height, width, Math.round(width / ratio));
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: 'to-be-continued.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": "85.11.1",
"version": "85.12.0",
"description": "Your personal server companion.",
"main": "Xiao.js",
"scripts": {