Files
xiao/commands/avataredit/beautiful.js
T
2017-05-08 13:46:36 +00:00

43 lines
1.6 KiB
JavaScript

const { Command } = require('discord.js-commando');
const Jimp = require('jimp');
module.exports = class BeautifulCommand extends Command {
constructor(client) {
super(client, {
name: 'beautiful',
aliases: ['grunkle-stan'],
group: 'avataredit',
memberName: 'beautiful',
description: 'Oh, this? This is beautiful.',
args: [
{
key: 'user',
prompt: 'Which user would you like to edit the avatar of?',
type: 'user'
}
]
});
}
async run(msg, args) {
if (msg.channel.type !== 'dm')
if (!msg.channel.permissionsFor(this.client.user).has('ATTACH_FILES'))
return msg.say('This Command requires the `Attach Files` Permission.');
const { user } = args;
const avatarURL = user.avatarURL('png', 2048);
if (!avatarURL) return msg.say('This user has no avatar.');
let images = [];
images.push(Jimp.read(avatarURL));
images.push(Jimp.read('https://i.imgur.com/71qLwPf.png'));
const [avatar, grunkle] = await Promise.all(images);
avatar.resize(117, 135);
grunkle.composite(avatar, 341, 35);
grunkle.composite(avatar, 342, 301);
grunkle.getBuffer(Jimp.MIME_PNG, (err, buff) => {
if (err) return msg.say(`An Error Occurred: ${err}`);
return msg.channel.send({ files: [{ attachment: buff, name: 'beautiful.png' }] })
.catch (err => msg.say(`An Error Occurred: ${err}`));
});
}
};