TravBot-v3/src/commands/fun/vaporwave.ts

35 lines
1.4 KiB
TypeScript
Raw Normal View History

2021-04-08 11:37:49 +00:00
import {Command, NamedCommand} from "../../core";
const vaporwave = (() => {
const map = new Map<string, string>();
const vaporwave =
"_ ";
const normal = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz!\"#$%&'()*+,-./0123456789:;<=>?@[\\]^_`{|}~ ";
if (vaporwave.length !== normal.length) console.error("Vaporwave text failed to load properly!");
for (let i = 0; i < vaporwave.length; i++) map.set(normal[i], vaporwave[i]);
return map;
})();
function getVaporwaveText(text: string): string {
let output = "";
for (const c of text) {
const transformed = vaporwave.get(c);
if (transformed) output += transformed;
}
return output;
}
export default new NamedCommand({
description: "Transforms your text into .",
run: "You need to enter some text!",
any: new Command({
async run({message, channel, guild, author, member, client, args}) {
const text = getVaporwaveText(args.join(" "));
if (text !== "") channel.send(text);
else channel.send("Make sure to enter at least one valid character.");
}
})
});