mrmBot-Matrix/commands/image-editing/9gag.js

16 lines
426 B
JavaScript
Raw Normal View History

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