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

17 lines
396 B
JavaScript

import ImageCommand from "../../classes/imageCommand.js";
class ImplodeCommand extends ImageCommand {
static category = "image-editing"
params = {
implode: true
};
static description = "Implodes an image";
static aliases = ["imp"];
static noImage = "You need to provide an image/GIF to implode!";
static command = "explode";
}
export default ImplodeCommand;