mrmBot-Matrix/commands/image-editing/memecenter.js

17 lines
466 B
JavaScript
Raw Normal View History

const ImageCommand = require("../../classes/imageCommand.js");
class MemeCenterCommand extends ImageCommand {
params = {
water: "./assets/images/memecenter.png",
gravity: 9,
mc: true
};
static description = "Adds the MemeCenter watermark to an image";
static aliases = ["memec", "mcenter"];
2021-05-24 19:31:44 +00:00
static noImage = "You need to provide an image to add a MemeCenter watermark!";
static command = "watermark";
}
module.exports = MemeCenterCommand;