forked from userplugins/vc-goodperson
Compare commits
7 commits
Author | SHA1 | Date | |
---|---|---|---|
d1611dd0b0 | |||
4beec45850 | |||
e943fc9460 | |||
e0488f23bc | |||
3fd131ddcb | |||
53217612b8 | |||
724905c8ce |
1 changed files with 3 additions and 12 deletions
15
index.ts
15
index.ts
|
@ -25,19 +25,16 @@ import { FluxDispatcher } from "@webpack/common";
|
||||||
/** * SEXUAL ***/
|
/** * SEXUAL ***/
|
||||||
const badVerbsSexual = ["fuck", "cum"];
|
const badVerbsSexual = ["fuck", "cum"];
|
||||||
const badNounsSexual = ["cunt", "yuri", "whore", "dick", "pussy", "slut", "tit", "cum", "cock", "blowjob", "sex", "ass", "furry", "bewbs", "boob", "booba", "boobies", "boobs", "booby", "porn", "pron", "pronhub", "r34", "rape", "raped", "raping", "rapist"];
|
const badNounsSexual = ["cunt", "yuri", "whore", "dick", "pussy", "slut", "tit", "cum", "cock", "blowjob", "sex", "ass", "furry", "bewbs", "boob", "booba", "boobies", "boobs", "booby", "porn", "pron", "pronhub", "r34", "rape", "raped", "raping", "rapist"];
|
||||||
/** * FURRY ***/
|
|
||||||
const badNounsFurry = ["meow", "miau", "mreow", "mrow", "woof", "nya", ":pleading_catgirl", "purr"];
|
|
||||||
const badRegexesFurry = ["mr*eo*w+, mr+p, nya+, mrow+, purr+"];
|
|
||||||
/** * BRAINROT ***/
|
/** * BRAINROT ***/
|
||||||
const badNounsBrainrot = ["mewing", "mew", "skibidi", "gyat", "gyatt", "rizzler", "nettspend", "boykisser", "ohio"];
|
const badNounsBrainrot = ["mewing", "mew", "skibidi", "gyat", "gyatt", "rizzler", "nettspend", "boykisser", "ohio", "rizz", "tickle my toes bruh", "crack my spine like a whip", "hawk tuah"];
|
||||||
/** * SLURS ***/
|
/** * SLURS ***/
|
||||||
const badNounsSlurs = ["retard", "faggot", "fag", "faggots", "fags", "retards"];
|
const badNounsSlurs = ["retard", "faggot", "fag", "faggots", "fags", "retards", "n*g", "n*gg*", "n*gg*r"];
|
||||||
const badRegexesSlurs = ["\\bn{1,}(i|!|1){1,}(b|g){2,}(a|@|e|3){1,}?"];
|
const badRegexesSlurs = ["\\bn{1,}(i|!|1){1,}(b|g){2,}(a|@|e|3){1,}?"];
|
||||||
/** * GENERAL ***/
|
/** * GENERAL ***/
|
||||||
const badVerbsGeneral = ["kill", "destroy"];
|
const badVerbsGeneral = ["kill", "destroy"];
|
||||||
const badNounsGeneral = ["shit", "bullshit", "bitch", "bastard", "die", "brainless"];
|
const badNounsGeneral = ["shit", "bullshit", "bitch", "bastard", "die", "brainless"];
|
||||||
/** * FUN ***/
|
/** * FUN ***/
|
||||||
const badNounsFun = ["kotlin", "avast"];
|
const badNounsFun = ["kotlin", "avast", "fres"];
|
||||||
/** * REPLACEMENTS ***/
|
/** * REPLACEMENTS ***/
|
||||||
const badVerbsReplacements = ["love", "eat", "deconstruct", "marry", "fart", "teach", "display", "plug", "explode", "undress", "finish", "freeze", "beat", "free", "brush", "allocate", "date", "melt", "breed", "educate", "injure", "change"];
|
const badVerbsReplacements = ["love", "eat", "deconstruct", "marry", "fart", "teach", "display", "plug", "explode", "undress", "finish", "freeze", "beat", "free", "brush", "allocate", "date", "melt", "breed", "educate", "injure", "change"];
|
||||||
const badNounsReplacements = ["pasta", "kebab", "cake", "potato", "woman", "computer", "java", "hamburger", "monster truck", "osu!", "Ukrainian ball in search of gas game", "Anime", "Anime girl", "good", "keyboard", "NVIDIA RTX 3090 Graphics Card", "storm", "queen", "single", "umbrella", "mosque", "physics", "bath", "virus", "bathroom", "mom", "owner", "airport", "Avast Antivirus Free"];
|
const badNounsReplacements = ["pasta", "kebab", "cake", "potato", "woman", "computer", "java", "hamburger", "monster truck", "osu!", "Ukrainian ball in search of gas game", "Anime", "Anime girl", "good", "keyboard", "NVIDIA RTX 3090 Graphics Card", "storm", "queen", "single", "umbrella", "mosque", "physics", "bath", "virus", "bathroom", "mom", "owner", "airport", "Avast Antivirus Free"];
|
||||||
|
@ -58,11 +55,6 @@ export default definePlugin({
|
||||||
description: "Block sexual words/hornyspeak",
|
description: "Block sexual words/hornyspeak",
|
||||||
default: true
|
default: true
|
||||||
},
|
},
|
||||||
blockFurryspeak: {
|
|
||||||
type: OptionType.BOOLEAN,
|
|
||||||
description: "Block furryspeak/meowing",
|
|
||||||
default: true
|
|
||||||
},
|
|
||||||
blockBrainrot: {
|
blockBrainrot: {
|
||||||
type: OptionType.BOOLEAN,
|
type: OptionType.BOOLEAN,
|
||||||
description: "Block things commonly said by Gen Alpha children",
|
description: "Block things commonly said by Gen Alpha children",
|
||||||
|
@ -96,7 +88,6 @@ export default definePlugin({
|
||||||
getEnabledBadNouns() {
|
getEnabledBadNouns() {
|
||||||
const thingToReturn: string[] = [];
|
const thingToReturn: string[] = [];
|
||||||
if (this.settings.store.blockBrainrot) thingToReturn.push(...badNounsBrainrot);
|
if (this.settings.store.blockBrainrot) thingToReturn.push(...badNounsBrainrot);
|
||||||
if (this.settings.store.blockFurryspeak) thingToReturn.push(...badNounsFurry);
|
|
||||||
if (this.settings.store.blockInsults) thingToReturn.push(...badNounsGeneral);
|
if (this.settings.store.blockInsults) thingToReturn.push(...badNounsGeneral);
|
||||||
if (this.settings.store.blockOthers) thingToReturn.push(...badNounsFun);
|
if (this.settings.store.blockOthers) thingToReturn.push(...badNounsFun);
|
||||||
if (this.settings.store.blockSexual) thingToReturn.push(...badNounsSexual);
|
if (this.settings.store.blockSexual) thingToReturn.push(...badNounsSexual);
|
||||||
|
|
Loading…
Reference in a new issue