17 lines
No EOL
458 B
JavaScript
17 lines
No EOL
458 B
JavaScript
const ImageCommand = require("../../classes/imageCommand.js");
|
|
|
|
class KineMasterCommand extends ImageCommand {
|
|
params = {
|
|
water: "./assets/images/kinemaster.png",
|
|
gravity: 3,
|
|
resize: true
|
|
};
|
|
|
|
static description = "Adds the KineMaster watermark to an image";
|
|
static aliases = ["kine"];
|
|
|
|
static noImage = "You need to provide an image to add a KineMaster watermark!";
|
|
static command = "watermark";
|
|
}
|
|
|
|
module.exports = KineMasterCommand; |