avs4you command

This commit is contained in:
bjcscat 2022-03-06 03:54:13 +00:00
parent 969869e4ab
commit 799c69dcc9
2 changed files with 17 additions and 0 deletions

BIN
assets/images/avs4you.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

@ -0,0 +1,17 @@
import ImageCommand from "../../classes/imageCommand.js";
class AVSCommand extends ImageCommand {
params = {
water: "./assets/images/avs4you.png",
gravity: 5,
resize: true
};
static description = "Adds the avs4you watermark to an image";
static aliases = ["avs4you"];
static noImage = "You need to provide an image/GIF to add a avs4you watermark!";
static command = "watermark";
}
export default AVSCommand;