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

18 lines
465 B
JavaScript

import ImageCommand from "../../classes/imageCommand.js";
class SooSCommand extends ImageCommand {
static category = "image-editing"
params = {
soos: true
};
static description = "\"Loops\" an image sequence by reversing it when it's finished";
static aliases = ["boomerang"];
static requiresGIF = true;
static noImage = "You need to provide an image/GIF to loop!";
static command = "reverse";
}
export default SooSCommand;