Added soos
This commit is contained in:
parent
ba07757d1d
commit
53b4f80848
1 changed files with 19 additions and 0 deletions
19
commands/soos.js
Normal file
19
commands/soos.js
Normal 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";
|
Loading…
Reference in a new issue