2021-04-15 22:55:05 +00:00
|
|
|
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"];
|
|
|
|
|
2021-05-24 19:31:44 +00:00
|
|
|
static noImage = "You need to provide an image to add a KineMaster watermark!";
|
2021-04-15 22:55:05 +00:00
|
|
|
static command = "watermark";
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = KineMasterCommand;
|