const dict = { ft1: [... " ".repeat(48) + "๐Ÿ˜๐Ÿ™๐Ÿš๐Ÿ›๐Ÿœ๐Ÿ๐Ÿž๐ŸŸ๐Ÿ ๐Ÿก" + " ".repeat(7) + "๐”ธ๐”นโ„‚๐”ป๐”ผ๐”ฝ๐”พโ„๐•€๐•๐•‚๐•ƒ๐•„โ„•๐•†โ„™โ„šโ„๐•Š๐•‹๐•Œ๐•๐•Ž๐•๐•โ„ค" + " ".repeat(6) + "๐•’๐•“๐•”๐••๐•–๐•—๐•˜๐•™๐•š๐•›๐•œ๐•๐•ž๐•Ÿ๐• ๐•ก๐•ข๐•ฃ๐•ค๐•ฅ๐•ฆ๐•ง๐•จ๐•ฉ๐•ช๐•ซ" ], ft2: [... " ".repeat(48) + "๐Ÿข๐Ÿฃ๐Ÿค๐Ÿฅ๐Ÿฆ๐Ÿง๐Ÿจ๐Ÿฉ๐Ÿช๐Ÿซ" + " ".repeat(7) + "๐’œ๐ต๐’ž๐’Ÿ๐ธ๐น๐’ข๐ป๐ผ๐’ฅ๐’ฆ๐ฟ๐‘€๐’ฉ๐’ช๐’ซ๐’ฌ๐‘…๐’ฎ๐’ฏ๐’ฐ๐’ฑ๐’ฒ๐’ณ๐’ด๐’ต" + " ".repeat(6) + "๐’ถ๐’ท๐’ธ๐’น๐‘’๐’ป๐‘”๐’ฝ๐’พ๐’ฟ๐“€๐“๐“‚๐“ƒ๐‘œ๐“…๐“†๐“‡๐“ˆ๐“‰๐“Š๐“‹๐“Œ๐“๐“Ž๐“" ], ft3: [... " ".repeat(48) + "0123456789" + " ".repeat(7) + "๐”„๐”…โ„ญ๐”‡๐”ˆ๐”‰๐”Šโ„Œโ„‘๐”๐”Ž๐”๐”๐”‘๐”’๐”“๐””โ„œ๐”–๐”—๐”˜๐”™๐”š๐”›๐”œโ„จ" + " ".repeat(6) + "๐”ž๐”Ÿ๐” ๐”ก๐”ข๐”ฃ๐”ค๐”ฅ๐”ฆ๐”ง๐”จ๐”ฉ๐”ช๐”ซ๐”ฌ๐”ญ๐”ฎ๐”ฏ๐”ฐ๐”ฑ๐”ฒ๐”ณ๐”ด๐”ต๐”ถ๐”ท" ], ft4: [... " ".repeat(48) + "โ“ชโ‘ โ‘กโ‘ขโ‘ฃโ‘คโ‘ฅโ‘ฆโ‘งโ‘จ" + " ".repeat(7) + "โ’ถโ’ทโ’ธโ’นโ’บโ’ปโ’ผโ’ฝโ’พโ’ฟโ“€โ“โ“‚โ“ƒโ“„โ“…โ“†โ“‡โ“ˆโ“‰โ“Šโ“‹โ“Œโ“โ“Žโ“" + " ".repeat(6) + "โ“โ“‘โ“’โ““โ“”โ“•โ“–โ“—โ“˜โ“™โ“šโ“›โ“œโ“โ“žโ“Ÿโ“ โ“กโ“ขโ“ฃโ“คโ“ฅโ“ฆโ“งโ“จโ“ฉ" ] }; export default async bot => { return [{ name: "fancytext", call: /^(\.|\/)ft/i, f: async e => { const mode = +e.cmd.substring(2) || 1; if(!dict[`ft${mode}`]) return; e.reply( [...e.args.join(" ")].map(e => dict[`ft${mode}`][e.charCodeAt(0)] !== " " ? dict[`ft${mode}`][e.charCodeAt(0)] : e).join`` ); } }, { name: "blah", call: /^[A-Zร„ร–รœแบž](?: [A-Zร„ร–รœแบž]){1,5}$/, set: "uwe", clients: ["irc"], f: e => { const args = e.message.trim(); if (args.toUpperCase() === args) e.reply(args.substring(2).split(" ")); } }, { name: "fw", call: /^(\.|\/)fw .*/i, set: "nxy", f: e => { e.reply([...e.args.join(" ").toUpperCase()].map(c => c === ' ' ? ' ' : String.fromCharCode(65248 + c.charCodeAt(0))).join``); } }, { name: "mock", call: /^\.mock .*/i, set: "uwe", f: e => { e.reply([...e.args.join(" ")].map(l => (l === " ") ? " " : (Math.round(Math.random()) === 0) ? l.toUpperCase() : l.toLowerCase()).join``); } }, { name: "shm", call: /^\.shm/i, set: "all", f: e => { const term = e.args[0] || e.user.nick; const index = term.search(/[aeiouรครถรผ]/i); if(index === -1) return e.reply("wo Vokal du Mongo Schmongo"); const first = term.charAt(0) === term.charAt(0).toUpperCase() ? "S" : "s"; e.reply(` ${term} ${first}chm${term.slice(index).toLowerCase()} sag ich immer`); } }]; };