Added soos

This commit is contained in:
TheEssem 2020-05-20 13:52:37 -05:00
parent ba07757d1d
commit 53b4f80848
1 changed files with 19 additions and 0 deletions

19
commands/soos.js Normal file
View File

@ -0,0 +1,19 @@
const gm = require("gm").subClass({
imageMagick: true
});
exports.run = async (message) => {
message.channel.sendTyping();
const image = await require("../utils/imagedetect.js")(message);
if (image === undefined) return `${message.author.mention}, you need to provide a GIF to loop!`;
if (image.type !== "gif") return `${message.author.mention}, that isn't a GIF!`;
const buffer = await gm(image.path).coalesce().out("-duplicate", "1,-2-1").bufferPromise(image.type, image.delay);
return {
file: buffer,
name: "soos.gif"
};
};
exports.aliases = ["bounce"];
exports.category = 5;
exports.help = "\"Loops\" a GIF by reversing it when it's finished";