2022-10-08 18:56:38 +00:00
|
|
|
|
import definePlugin from "../utils/types";
|
|
|
|
|
import { findOption, RequiredMessageOption } from "../api/Commands";
|
|
|
|
|
|
|
|
|
|
const endings = [
|
2022-10-12 20:22:37 +00:00
|
|
|
|
"owo", "UwU", ">w<", "^w^", "●w●", "☆w☆", "𝗨𝘄𝗨", "(ᗒᗨᗕ)", "(▰˘v˘▰)",
|
|
|
|
|
"( ´ ▽ ` ).。o♡", "*unbuttons shirt*", ">3<", ">:3", ":3", "murr~",
|
|
|
|
|
"♥(。U ω U。)", "(˘ε˘)", "*screams*", "*twerks*", "*sweats*",
|
2022-10-08 18:56:38 +00:00
|
|
|
|
];
|
|
|
|
|
|
2022-10-12 20:22:37 +00:00
|
|
|
|
const replacements = [
|
2022-10-08 18:56:38 +00:00
|
|
|
|
["love", "wuv"],
|
|
|
|
|
["mr", "mistuh"],
|
|
|
|
|
["dog", "doggo"],
|
|
|
|
|
["cat", "kitteh"],
|
|
|
|
|
["hello", "henwo"],
|
|
|
|
|
["hell", "heck"],
|
|
|
|
|
["fuck", "fwick"],
|
|
|
|
|
["fuk", "fwick"],
|
|
|
|
|
["shit", "shoot"],
|
|
|
|
|
["friend", "fwend"],
|
|
|
|
|
["stop", "stawp"],
|
|
|
|
|
["god", "gosh"],
|
|
|
|
|
["dick", "peepee"],
|
|
|
|
|
["penis", "bulge"],
|
|
|
|
|
["damn", "darn"],
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function uwuify(message: string): string {
|
|
|
|
|
return message
|
|
|
|
|
.split(" ")
|
2022-10-08 19:11:14 +00:00
|
|
|
|
.map(w => {
|
|
|
|
|
let owofied = false;
|
2022-10-20 09:58:20 +00:00
|
|
|
|
const lowerCase = w.toLowerCase();
|
2022-10-08 19:11:14 +00:00
|
|
|
|
// return if the word is too short - uwuifying short words makes them unreadable
|
|
|
|
|
if (w.length < 4) {
|
|
|
|
|
return w;
|
2022-10-08 18:56:38 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-10-08 19:11:14 +00:00
|
|
|
|
// replacing the words based on the array on line 29
|
2022-10-20 09:58:20 +00:00
|
|
|
|
for (const [find, replace] of replacements) {
|
2022-10-08 19:11:14 +00:00
|
|
|
|
if (w.includes(find)) {
|
|
|
|
|
w = w.replace(find, replace);
|
|
|
|
|
owofied = true;
|
2022-10-08 18:56:38 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2022-10-08 19:11:14 +00:00
|
|
|
|
// these are the biggest word changes. if any of these are done we dont do the
|
|
|
|
|
// ones after the isowo check. to keep the words somewhat readable
|
2022-10-08 18:56:38 +00:00
|
|
|
|
if (lowerCase.includes("u") && !lowerCase.includes("uwu")) {
|
2022-10-08 19:11:14 +00:00
|
|
|
|
w = w.replace("u", "UwU");
|
|
|
|
|
owofied = true;
|
2022-10-08 18:56:38 +00:00
|
|
|
|
}
|
|
|
|
|
if (lowerCase.includes("o") && !lowerCase.includes("owo")) {
|
2022-10-08 19:11:14 +00:00
|
|
|
|
w = w.replace("o", "OwO");
|
|
|
|
|
owofied = true;
|
2022-10-08 18:56:38 +00:00
|
|
|
|
}
|
2022-10-08 19:11:14 +00:00
|
|
|
|
if (lowerCase.endsWith("y") && w.length < 7) {
|
|
|
|
|
w = w + " " + "w" + w.slice(1);
|
|
|
|
|
owofied = true;
|
2022-10-08 18:56:38 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-10-08 19:11:14 +00:00
|
|
|
|
// returning if word has been already uwuified - to prevent over-uwuifying
|
|
|
|
|
if (owofied) {
|
|
|
|
|
return w;
|
2022-10-08 18:56:38 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-10-08 19:11:14 +00:00
|
|
|
|
// more tiny changes - to keep the words that passed through the latter changes uwuified
|
2022-10-08 18:56:38 +00:00
|
|
|
|
if (!lowerCase.endsWith("n")) {
|
2022-10-08 19:11:14 +00:00
|
|
|
|
w = w.replace("n", "ny");
|
2022-10-08 18:56:38 +00:00
|
|
|
|
}
|
2022-10-08 19:11:14 +00:00
|
|
|
|
if (Math.floor(Math.random() * 2) === 1) {
|
|
|
|
|
w.replace("s", "sh");
|
2022-10-08 18:56:38 +00:00
|
|
|
|
}
|
2022-10-08 19:11:14 +00:00
|
|
|
|
if (Math.floor(Math.random() * 5) === 3 && !owofied) {
|
|
|
|
|
w = w[0] + "-" + w[0] + "-" + w;
|
2022-10-08 18:56:38 +00:00
|
|
|
|
}
|
2022-10-08 19:11:14 +00:00
|
|
|
|
if (Math.floor(Math.random() * 5) === 3) {
|
|
|
|
|
w =
|
|
|
|
|
w +
|
2022-10-08 18:56:38 +00:00
|
|
|
|
" " +
|
|
|
|
|
endings[Math.floor(Math.random() * endings.length)];
|
|
|
|
|
}
|
2022-10-08 19:11:14 +00:00
|
|
|
|
w = w.replaceAll("r", "w").replaceAll("l", "w");
|
|
|
|
|
return w;
|
2022-10-08 18:56:38 +00:00
|
|
|
|
}).join(" ");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2022-10-08 19:11:14 +00:00
|
|
|
|
// actual command declaration
|
2022-10-08 18:56:38 +00:00
|
|
|
|
export default definePlugin({
|
|
|
|
|
name: "UwUifier",
|
|
|
|
|
description: "Simply uwuify commands",
|
2022-10-12 20:22:37 +00:00
|
|
|
|
authors: [{
|
|
|
|
|
name: "ECHO",
|
|
|
|
|
id: 712639419785412668n
|
|
|
|
|
}],
|
2022-10-08 18:56:38 +00:00
|
|
|
|
dependencies: ["CommandsAPI"],
|
|
|
|
|
|
|
|
|
|
commands: [
|
|
|
|
|
{
|
|
|
|
|
name: "uwuify",
|
|
|
|
|
description: "uwuifies your messages",
|
|
|
|
|
options: [RequiredMessageOption],
|
|
|
|
|
|
|
|
|
|
execute: opts => ({
|
|
|
|
|
content: uwuify(findOption(opts, "message", "")),
|
|
|
|
|
}),
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
});
|