forked from rDrama/rDrama
1
0
Fork 0

better slurs and profanities

master
Aevann 2023-06-24 17:54:27 +03:00
parent af1581be66
commit 7f17b2eaa8
1 changed files with 23 additions and 23 deletions

View File

@ -124,20 +124,20 @@ GIRL_PHRASES = [
SLURS = {
"(?<!\\bs)nigger": "BIPOC",
"negroid": "BIPOC",
" coon ": " BIPOC ",
" coons ": " BIPOCs ",
"(?<!\w)coon(?!\w)": "BIPOC",
"(?<!\w)coons(?!\w)": "BIPOCs",
"niglet": 'BIPOClet',
"negress": "BIPOCette",
"faggot": "cute twink",
"fag": "cute twink",
" spic ": " hard-working American ",
" spics ": " hard-working Americans ",
"(?<!\w)spic(?!\w)": "hard-working American",
"(?<!\w)spics(?!\w)": "hard-working Americans",
"trannie": '<img loading="lazy" data-bs-toggle="tooltip" alt=":marseytrain:" title=":marseytrain:" src="/e/marseytrain.webp">',
"tranny": '<img loading="lazy" data-bs-toggle="tooltip" alt=":marseytrain:" title=":marseytrain:" src="/e/marseytrain.webp">',
"troon": '<img loading="lazy" data-bs-toggle="tooltip" alt=":marseytrain:" title=":marseytrain:" src="/e/marseytrain.webp">',
"tranner": '<img loading="lazy" data-bs-toggle="tooltip" alt=":marseytrain:" title=":marseytrain:" src="/e/marseytrain.webp">',
"kike": "jewish chad",
" heeb": " jewish chad",
"(?<!\w)heeb": "jewish chad",
"daisy's destruction": "Cars 2",
"daisys destruction": "Cars 2",
"daisy destruction": "Cars 2",
@ -203,22 +203,22 @@ if SITE_NAME == 'rDrama':
"journalism": "journ*lism",
"elon musk": "Rocket Daddy",
"fake and gay": "fake and straight",
" rapist": " male feminist",
" pedo ": " p-do ",
" kys": " keep yourself safe",
"kys ": "keep yourself safe ",
"(?<!\w)rapist": "male feminist",
"(?<!\w)pedo(?!\w)": "p-do",
"(?<!\w)kys": "keep yourself safe",
"kys(?!\w)": "keep yourself safe",
"republican": 'rethuglican',
"america": 'ameriKKKa',
"it's almost as if": "I'm a retard but",
"it's almost like": "I'm a retard but",
"my brother in christ": "my brother in Allah",
"kyle": "Kylie",
" cool (?!it)": " fetch ",
"(?<!\w)cool (?!it)": "fetch ",
"krayon": "krayon (sister toucher)",
"discord": "groomercord",
"allah(?! \()": "Allah (ﷻ)",
"my wife(?! \()": "my wife (male)",
"(?<!cow) tools ": " cow tools ",
"(?<!cow) tools(?!\w)": " cow tools",
"explain": "mansplain",
'nigga': 'neighbor',
'(?<!\w)cat(?!\w)': 'marsey',
@ -392,27 +392,27 @@ for k, val in SLURS.items():
PROFANITIES = {
'motherfucker': 'motherlover',
'fuck': 'frick',
' ass ': ' butt ',
'(?<!\w)ass(?!\w)': 'butt',
'shitting': 'pooping',
'damn': 'darn',
'bitch ': 'b-word ',
'bitch(?!\w)': 'b-word',
'toilet': 'potty',
' asshole': ' butthole',
' rape ': ' r*pe ',
' hell ': ' heck ',
' sex ': ' intercourse ',
' cum ': ' c*m ',
'(?<!\w)asshole': 'butthole',
'(?<!\w)rape(?!\w)': 'r*pe',
'(?<!\w)hell(?!\w)': 'heck',
'(?<!\w)sex(?!\w)': 'intercourse',
'(?<!\w)cum(?!\w)': 'c*m',
'orgasm': 'sexual climax',
'dick': 'peepee',
' cock ': ' peepee ',
' cocks': ' peepees',
'(?<!\w)cock(?!\w)': 'peepee',
'(?<!\w)cocks': 'peepees',
'penis': 'peepee',
'pussy': 'girl peepee',
'pussies': 'girl peepees',
'vagina ': 'girl peepee ',
'vaginas ': 'girl peepees ',
'vagina(?!\w)': 'girl peepee',
'vaginas(?!\w)': 'girl peepees',
'cunt': 'girl peepee',
' twat ': ' girl peepee ',
'(?<!\w)twat(?!\w)': 'girl peepee',
'lmao': 'lmbo',
'peacock': 'peapeepee',
}