-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcuss.py
32 lines (31 loc) · 1.22 KB
/
cuss.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
"""
* a dictionary of all the swear words that the bot will censor
* each entry is in the following format:
swear : [list, of, replacement, words]
* the order matters! words that contain other words are placed higher
"""
#FIXME when tweeting @ ppl using many swear words say "your mother would be ashamed"
words = {
"hella" : ["a hecka lotta"],
"hell" : ["heck", "h-e-double-hockey-sticks"],
"fuck" : ["frick", "fudge"],
"shitty" : ["unfortunate in a poopy manner"],
"shithead" : ["buttlips"],
"shit" : ["turd", "shoot", "sheesh"],
"crap" : ["doodoo", "caca", "poopoo", "poopie"],
"bitch" : ["lil honey biscuit", "bacon bit"],
"bastard" : ["booger snot", "fartknocker"],
"wth" : ["gee whiz", "geeze louise", "gee whillikers"],
"tf" : ["the heckle"],
#"af" : ["as frick"],
"mf" : ["biscuit eater"],
"wtf" : ["kiss my grits", "heavens to betsy", "shut the front door", "what the devil"],
"cunt" : ["pleasure orb", "clam tongue"],
"pussy" : ["snatch", "beaver", "vajayjay"],
"dick" : ["long boi", "donger", "ding-dong", "pleasure rod", "yogurt slinger"],
"ass" : ["butt", "booty"],
"nigger" : ["african american brother"],
"nigga" : ["darker skinned comrade"], #racism is bad
"faggot" : ["wigglin' wuss"],
"gangbang" : ["entourage barrage"]
}