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

15 lines
335 B
JavaScript
Raw Normal View History

import ImageCommand from "../../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";
}
export default ImplodeCommand;