17 lines
461 B
JavaScript
17 lines
461 B
JavaScript
import ImageCommand from "../../classes/imageCommand.js";
|
|
|
|
class DeviantArtCommand extends ImageCommand {
|
|
params = {
|
|
water: "assets/images/deviantart.png",
|
|
gravity: 5,
|
|
resize: true
|
|
};
|
|
|
|
static description = "Adds a DeviantArt watermark to an image";
|
|
static aliases = ["da", "deviant"];
|
|
|
|
static noImage = "You need to provide an image/GIF to add a DeviantArt watermark!";
|
|
static command = "watermark";
|
|
}
|
|
|
|
export default DeviantArtCommand;
|