mrmBot-Matrix/commands/image-editing/soos.js

19 lines
518 B
JavaScript
Raw Normal View History

const ImageCommand = require("../../classes/imageCommand.js");
class SooSCommand extends ImageCommand {
params(url, delay) {
return {
delay: delay ? (100 / delay.split("/")[0]) * delay.split("/")[1] : 0,
soos: true
};
}
static description = "\"Loops\" an image sequence by reversing it when it's finished";
static aliases = ["bounce"];
static requiresGIF = true;
2021-05-24 19:31:44 +00:00
static noImage = "You need to provide an image to loop!";
static command = "reverse";
}
module.exports = SooSCommand;