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

15 lines
342 B
JavaScript

const ImageCommand = require("../../classes/imageCommand.js");
class ImplodeCommand extends ImageCommand {
params = {
amount: 1
};
static description = "Implodes an image";
static aliases = ["imp"];
static noImage = "You need to provide an image to implode!";
static command = "explode";
}
module.exports = ImplodeCommand;