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

18 lines
438 B
JavaScript
Raw Normal View History

2022-03-06 05:05:14 +00:00
import ImageCommand from "../../classes/imageCommand.js";
class AVSCommand extends ImageCommand {
2022-03-06 05:08:08 +00:00
params = {
water: "assets/images/avs4you.png",
2022-03-06 05:08:08 +00:00
gravity: 5,
resize: true
};
2022-03-06 05:05:14 +00:00
2022-03-06 05:08:08 +00:00
static description = "Adds the avs4you watermark to an image";
static aliases = ["a4y", "avs"];
2022-03-06 05:05:14 +00:00
2022-03-06 05:08:08 +00:00
static noImage = "You need to provide an image/GIF to add an avs4you watermark!";
static command = "watermark";
2022-03-06 05:05:14 +00:00
}
export default AVSCommand;