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

15 lines
325 B
JavaScript
Raw Normal View History

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