diff --git a/assets/images/avs4you.png b/assets/images/avs4you.png new file mode 100644 index 0000000..9cf480b Binary files /dev/null and b/assets/images/avs4you.png differ diff --git a/commands/image-editing/avs4you.js b/commands/image-editing/avs4you.js new file mode 100644 index 0000000..34c48fb --- /dev/null +++ b/commands/image-editing/avs4you.js @@ -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;