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

16 lines
407 B
JavaScript
Raw Normal View History

const ImageCommand = require("../../classes/imageCommand.js");
class SlowCommand extends ImageCommand {
params = {
slow: true
};
static description = "Makes an image sequence slower";
static aliases = ["slowdown", "slower", "gifspeed2"];
static requiresGIF = true;
static noImage = "you need to provide an image to slow down!";
static command = "speed";
}
module.exports = SlowCommand;