Raw Command

This commit is contained in:
Dragon Fire
2021-04-18 22:22:30 -04:00
parent 7232f1689f
commit 2d2390fd40
3 changed files with 56 additions and 1 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 195 KiB

+55
View File
@@ -0,0 +1,55 @@
const Command = require('../../structures/Command');
const { createCanvas, loadImage } = require('canvas');
const path = require('path');
module.exports = class RawCommand extends Command {
constructor(client) {
super(client, {
name: 'raw',
aliases: ['doing-it-raw'],
group: 'edit-meme',
memberName: 'raw',
description: 'Sends a "Give me x, and I wouldn\'t mind doing it raw!" meme with the text of your choice.',
nsfw: true,
throttling: {
usages: 2,
duration: 10
},
clientPermissions: ['ATTACH_FILES'],
credit: [
{
name: 'Inside Scanlation',
url: 'https://www.insidescanlation.com/',
reason: 'Wild Words Font',
// eslint-disable-next-line max-len
reasonURL: 'https://www.insidescanlation.com/etc/the-idiots-guide-to-editing-manga/guide/type/fonts.html'
}
],
args: [
{
key: 'text',
prompt: 'What makes her want to do it raw?',
type: 'string',
max: 100
}
]
});
}
async run(msg, { text }) {
const base = await loadImage(path.join(__dirname, '..', '..', 'assets', 'images', 'raw.png'));
const canvas = createCanvas(base.width, base.height);
const ctx = canvas.getContext('2d');
ctx.drawImage(base, 0, 0);
ctx.textAlign = 'center';
ctx.textBaseline = 'top';
ctx.font = this.client.fonts.get('wildwordsroman.ttf').toCanvasString(24);
let fontSize = 24;
while (ctx.measureText(text).width > 168) {
fontSize--;
ctx.font = this.client.fonts.get('wildwordsroman.ttf').toCanvasString(fontSize);
}
ctx.fillText(text, 520, 142);
return msg.say({ files: [{ attachment: canvas.toBuffer(), name: 'raw.png' }] });
}
};
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "xiao",
"version": "135.6.0",
"version": "135.7.0",
"description": "Your personal server companion.",
"main": "Xiao.js",
"private": true,