2020-07-23 20:49:34 +00:00
|
|
|
const magick = require("../build/Release/image.node");
|
|
|
|
const { promisify } = require("util");
|
2019-10-24 18:54:23 +00:00
|
|
|
|
|
|
|
exports.run = async (message) => {
|
2019-12-02 20:47:22 +00:00
|
|
|
message.channel.sendTyping();
|
2019-10-24 18:54:23 +00:00
|
|
|
const image = await require("../utils/imagedetect.js")(message);
|
|
|
|
if (image === undefined) return `${message.author.mention}, you need to provide an image to mirror!`;
|
2020-07-23 20:49:34 +00:00
|
|
|
const buffer = await promisify(magick.mirror)(image.path, false, false, image.type.toUpperCase(), image.delay ? (100 / image.delay.split("/")[0]) * image.delay.split("/")[1] : 0);
|
2020-04-12 19:51:48 +00:00
|
|
|
return {
|
2020-02-21 00:26:49 +00:00
|
|
|
file: buffer,
|
2020-02-25 20:45:47 +00:00
|
|
|
name: `waaw.${image.type}`
|
2020-04-12 19:51:48 +00:00
|
|
|
};
|
2019-10-24 18:54:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
exports.aliases = ["magik3", "mirror"];
|
2019-12-02 20:47:22 +00:00
|
|
|
exports.category = 5;
|
2020-02-21 00:26:49 +00:00
|
|
|
exports.help = "Mirrors the right side of an image onto the left";
|