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

16 lines
376 B
JavaScript

import ImageCommand from "../../classes/imageCommand.js";
class SepiaCommand extends ImageCommand {
static category = "image-editing"
params = {
color: "sepia"
};
static description = "Adds a sepia filter";
static noImage = "You need to provide an image/GIF to add a sepia filter!";
static command = "colors";
}
export default SepiaCommand;