21 lines
No EOL
746 B
JavaScript
21 lines
No EOL
746 B
JavaScript
const wrap = require("../../utils/wrap.js");
|
|
const ImageCommand = require("../../classes/imageCommand.js");
|
|
|
|
class SonicCommand extends ImageCommand {
|
|
params() {
|
|
const cleanedMessage = this.args.join(" ").replaceAll("&", "\\&").replaceAll(">", "\\>").replaceAll("<", "\\<").replaceAll("\"", "\\"").replaceAll("'", "\\'").replaceAll("%", "\\%");
|
|
return {
|
|
text: wrap(cleanedMessage, {width: 15, indent: ""})
|
|
};
|
|
}
|
|
|
|
static description = "Creates a Sonic speech bubble image";
|
|
static arguments = ["[text]"];
|
|
|
|
static requiresImage = false;
|
|
static requiresText = true;
|
|
static noText = "You need to provide some text to make a Sonic meme!";
|
|
static command = "sonic";
|
|
}
|
|
|
|
module.exports = SonicCommand; |