21 lines
1.2 KiB
JavaScript
21 lines
1.2 KiB
JavaScript
const ImageCommand = require("../../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(args, url) {
|
|
const newArgs = 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(" ")
|
|
};
|
|
}
|
|
|
|
static description = "Adds a me.me caption/tag list to an image/GIF";
|
|
static aliases = ["tags2", "meirl", "memecaption", "medotmecaption"];
|
|
static arguments = ["{text}"];
|
|
|
|
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";
|
|
}
|
|
|
|
module.exports = CaptionTwoCommand;
|