avs4you command (#243)

This commit is contained in:
bjcscat 2022-03-05 23:05:14 -06:00 committed by GitHub
parent 969869e4ab
commit 10cb101b0d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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;