18 lines
476 B
JavaScript
18 lines
476 B
JavaScript
import ImageCommand from "../../classes/imageCommand.js";
|
|
|
|
class SpeechBubbleCommand extends ImageCommand {
|
|
params = {
|
|
water: "assets/images/speechbubble.png",
|
|
gravity: "north",
|
|
resize: true,
|
|
yscale: 0.2,
|
|
};
|
|
|
|
static description = "Adds a speech bubble to an image";
|
|
static aliases = ["speech", "sb"];
|
|
|
|
static noImage = "You need to provide an image/GIF to add a speech bubble!";
|
|
static command = "watermark";
|
|
}
|
|
|
|
export default SpeechBubbleCommand;
|