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

15 lines
342 B
JavaScript
Raw Normal View History

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