26 lines
1.3 KiB
JavaScript
26 lines
1.3 KiB
JavaScript
import ImageCommand from "../../classes/imageCommand.js";
|
|
const words = ["me irl", "dank", "follow my second account @esmBot_", "2016", "meme", "wholesome", "reddit", "instagram", "twitter", "facebook", "fortnite", "minecraft", "relatable", "gold", "funny", "template", "hilarious", "memes", "deep fried", "2020", "leafy", "pewdiepie"];
|
|
|
|
class CaptionTwoCommand extends ImageCommand {
|
|
params(url) {
|
|
const newArgs = this.args.filter(item => !item.includes(url));
|
|
return {
|
|
caption: newArgs.length !== 0 ? newArgs.join(" ").replaceAll("&", "\\&").replaceAll(">", "\\>").replaceAll("<", "\\<").replaceAll("\"", "\\"").replaceAll("'", "\\'").replaceAll("%", "\\%") : words.sort(() => 0.5 - Math.random()).slice(0, Math.floor(Math.random() * words.length + 1)).join(" "),
|
|
top: !!this.specialArgs.top
|
|
};
|
|
}
|
|
|
|
static description = "Adds a me.me caption/tag list to an image/GIF";
|
|
static aliases = ["tags2", "meirl", "memecaption", "medotmecaption"];
|
|
static arguments = ["{text}"];
|
|
static flags = [{
|
|
name: "top",
|
|
description: "Put the caption on the top of an image/GIF instead of the bottom"
|
|
}];
|
|
|
|
static noText = "You need to provide some text to add a caption!";
|
|
static noImage = "You need to provide an image to add a caption!";
|
|
static command = "captionTwo";
|
|
}
|
|
|
|
export default CaptionTwoCommand;
|