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

12 lines
328 B
JavaScript
Raw Normal View History

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/GIF to fry!";
2021-06-29 22:26:22 +00:00
static command = "deepfry";
}
export default DeepfryCommand;