17 lines
No EOL
465 B
JavaScript
17 lines
No EOL
465 B
JavaScript
const ImageCommand = require("../../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 to add a DeviantArt watermark!";
|
|
static command = "watermark";
|
|
}
|
|
|
|
module.exports = DeviantArtCommand; |