Haha-Yes/commands/fun/face.js
2018-10-10 15:46:00 +02:00

31 lines
No EOL
1 KiB
JavaScript

const { Command } = require('discord.js-commando');
const faceapp = require('faceapp')
const superagent = require('superagent')
module.exports = class faceappCommand extends Command {
constructor(client) {
super(client, {
name: 'face',
group: 'fun',
memberName: 'face',
description: `use faceapp to change the face of someone, Here the available filter https://goo.gl/5LLbJJ`,
args: [
{
key: 'url',
prompt: 'Wich image would you want to process',
type: 'string',
},
{
key: 'type',
prompt: 'How the face should change ?',
type: 'string',
}
]
});
}
async run(message, { url, type }) {
let { body } = await superagent.get(url)
let image = await faceapp.process(body, type)
message.channel.sendFile(image)
}
};