-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconstants.js
More file actions
113 lines (103 loc) · 1.99 KB
/
Copy pathconstants.js
File metadata and controls
113 lines (103 loc) · 1.99 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
// Allows users to override ratings
exports.ALLOW_RATING_OVERRIDE = true
// Uses 'general' as a fallback when 'adult' content is empty (prevents errors)
exports.ALLOW_FALLBACKS = true
exports.RATINGS = {
all: ['general', 'adult'],
general: ['general'],
adult: ['adult']
}
exports.VERBS = {
general: [
'slap',
'pinch',
'butter',
'smack',
'paint',
'paint',
'shave',
'wet',
'kick',
'kiss',
'steal',
'caress'
],
adult: [
'tongue-punch'
]
}
exports.OBJECTS = {
general: [
'my biscuit',
'my biscuits',
'my tacklebox',
'my toolshed',
'me silly',
'my nipples',
'my legs'
],
adult: [
'my ass',
'my lips',
'my keyhole'
]
}
exports.VERB_OBJECT_COMBOS = {
general: [
'shiver me timbers',
'lather me head to toe in honey',
'spin me around in a centrifuge'
],
adult: [
'clap my cheeks',
'spread me open'
]
}
exports.NAMES = {
general: [
'Sally',
'Delilah',
'Phoebe',
'Judy',
'Susan',
'Clementine',
'Sandy',
'Samantha',
'crazy',
'saucy',
'a hypocrite',
'a donkey',
'a monkey',
'Anderson',
'Daniel',
'David',
'Kaz',
'Kevin',
'Luke',
'Mary',
'Ruben',
'Topher',
'Traviss',
'Eli'
],
adult: [
]
}
exports.SENTENCES = {
general: [
'Well, smack my ass and call me a newborn.',
'Well, paint me green and call me a cucumber.',
'Well, slap me with bread and call me a sandwich.',
'Well, pin my tail and call me a donkey.',
'Well, fry me in butter and call me a catfish.',
'Well, saddle my back and call me a horse.',
'Well, knock me down and steal my teeth.',
'Well, dip me in mustard and call me a hotdog.',
'Well, butter my butt and call me a biscuit,',
'Well, slap my salami and call me a commie.',
'Well, I just met you, and this is crazy, but here\'s my Number, so call me maybe.'
],
adult: [
'Well, paint my ass red and call me a baboon.',
]
}