17 lines
448 B
JavaScript
17 lines
448 B
JavaScript
|
const ImageCommand = require("../../classes/imageCommand.js");
|
||
|
|
||
|
class HypercamCommand extends ImageCommand {
|
||
|
params = {
|
||
|
water: "./assets/images/hypercam.png",
|
||
|
gravity: 1,
|
||
|
resize: true
|
||
|
};
|
||
|
|
||
|
static description = "Adds the Hypercam watermark to an image";
|
||
|
static aliases = ["hcam"];
|
||
|
|
||
|
static noImage = "you need to provide an image to add a Hypercam watermark!";
|
||
|
static command = "watermark";
|
||
|
}
|
||
|
|
||
|
module.exports = HypercamCommand;
|