11 lines
No EOL
324 B
JavaScript
11 lines
No EOL
324 B
JavaScript
const ImageCommand = require("../../classes/imageCommand.js");
|
|
|
|
class DeepfryCommand extends ImageCommand {
|
|
static description = "Deep-fries an image";
|
|
static aliases = ["fry", "jpeg2", "nuke"];
|
|
|
|
static noImage = "You need to provide an image to fry!";
|
|
static command = "deepfry";
|
|
}
|
|
|
|
module.exports = DeepfryCommand; |