ff7f0a3110
Co-authored-by: Essem <TheEssem@users.noreply.github.com>
16 lines
397 B
JavaScript
16 lines
397 B
JavaScript
import ImageCommand from "../../classes/imageCommand.js";
|
|
|
|
class ExplodeCommand extends ImageCommand {
|
|
params = {
|
|
implode: false
|
|
};
|
|
|
|
static category = "image-editing"
|
|
static description = "Explodes an image";
|
|
static aliases = ["exp"];
|
|
|
|
static noImage = "You need to provide an image/GIF to explode!";
|
|
static command = "explode";
|
|
}
|
|
|
|
export default ExplodeCommand;
|