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 = {
|
2022-04-17 15:40:56 +00:00
|
|
|
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;
|