2021-08-19 14:19:14 +00:00
|
|
|
import ImageCommand from "../../classes/imageCommand.js";
|
2021-06-29 22:26:22 +00:00
|
|
|
|
|
|
|
class DeepfryCommand extends ImageCommand {
|
|
|
|
static description = "Deep-fries an image";
|
2021-08-09 03:46:10 +00:00
|
|
|
static aliases = ["fry", "jpeg2", "nuke", "df"];
|
2021-06-29 22:26:22 +00:00
|
|
|
|
|
|
|
static noImage = "You need to provide an image to fry!";
|
|
|
|
static command = "deepfry";
|
|
|
|
}
|
|
|
|
|
2021-08-19 14:19:14 +00:00
|
|
|
export default DeepfryCommand;
|