15 lines
No EOL
342 B
JavaScript
15 lines
No EOL
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; |