2021-08-19 14:19:14 +00:00
|
|
|
import ImageCommand from "../../classes/imageCommand.js";
|
2021-04-15 22:55:05 +00:00
|
|
|
|
|
|
|
class KineMasterCommand extends ImageCommand {
|
|
|
|
params = {
|
2022-04-17 15:40:56 +00:00
|
|
|
water: "assets/images/kinemaster.png",
|
2021-04-15 22:55:05 +00:00
|
|
|
gravity: 3,
|
|
|
|
resize: true
|
|
|
|
};
|
|
|
|
|
|
|
|
static description = "Adds the KineMaster watermark to an image";
|
|
|
|
static aliases = ["kine"];
|
|
|
|
|
2022-01-26 18:53:20 +00:00
|
|
|
static noImage = "You need to provide an image/GIF to add a KineMaster watermark!";
|
2021-04-15 22:55:05 +00:00
|
|
|
static command = "watermark";
|
|
|
|
}
|
|
|
|
|
2022-01-26 18:53:20 +00:00
|
|
|
export default KineMasterCommand;
|