-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnamegen.js
158 lines (154 loc) · 4.29 KB
/
namegen.js
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
var adj = [
'red',
'orange',
'yellow',
'green',
'blue',
'purple',
'bright',
'fluffy',
'small',
'big',
'sleepy',
'funny',
'cheerful',
'potted',
'some kind of',
'a random',
'that one',
'fuzzy'
]
var noun = [
'cat',
'dog',
'mouse',
'deer',
'parrot',
'finch',
'fish',
'squid',
'octopus',
'dragon',
'moose',
'bnuy',
'anteater',
'plant',
'gem',
'capybara',
'froge',
'fox'
]
function gen() {
return adj[Math.floor(Math.random() * adj.length)] + " " + noun[Math.floor(Math.random() * noun.length)]
}
exports.gen = gen
var deny_quotes = [
"...",
"...",
"...",
"...",
"...",
"...",
"...",
"...",
"...",
"...",
"...",
"...",
"...",
"...",
"...",
"Nope.",
"Nope.",
"Nope.",
"Nope.",
"Nope.",
"No, sir.",
"No, sir.",
"No, sir.",
"No, sir.",
"No, sir.",
"No way.",
"No way.",
"No way.",
"No way.",
"No way.",
"Why are you asking me?",
"Why are you asking me?",
"Why are you asking me?",
"What is that smell?",
"This is as far as I go.",
"Are you thinking what I'm thinking?",
"Did you have any idea they were working on this kind of stuff?",
"My god, what are you doing?",
"What the hell is this?",
"Why do we all have to wear these ridiculous ties?",
"I suspected this could happen but the Administrator just would not listen.",
"Do you think we should appeal to the alien authorities?",
"Do you suspect some alien subterfuge behind this failure?",
"Did you understand that last announcement?",
"Have you been able to get the beverage machine to work yet?",
"What the hell is going on with our equipment?",
"They're waiting for you, Gordon. In the Test Chamberrrrrrrr.",
"Climb up and start the rotors.",
"Quick! It's about to go critical!",
"Very good. We'll take it from here.",
"Power to stage one emitters in three... two... one...",
"I'm seeing predictable phase arrays.",
"Stage two emitters activating... now.",
"Standard insertion for a nonstandard specimen.",
"Overhead capacitors to one oh five percent.",
"Get away from the beams!",
"Shutting down. Attempting shut down. It's not... it's- it's not... it's not shutting down... it's not...",
"Take me with you! I'm the one man who knows everything!",
"Fat lot of good that Ph.D. does me now, hm?",
"Why do we all have to wear these ridiculous ties?",
"Do you smell what I smell?",
]
function deny() {
return deny_quotes[Math.floor(Math.random() * deny_quotes.length)]
}
exports.deny = deny
var startup_quotes = [
// **** ALL QUOTES MUST BE 63 CHARACTERS OR LESS ****
//-------------------------------------------------------------- <- max length
// "What is that smell?",
// "Why do we all have to wear these ridiculous ties?",
// "Do you think we should appeal to the alien authorities?",
// "Do you suspect some alien subterfuge behind this failure?",
// "Did you understand that last announcement?",
// "Climb up and start the rotors.",
// "Very good. We'll take it from here.",
// "Power to stage one emitters in three... two... one...",
// "I'm seeing predictable phase arrays.",
// "Stage two emitters activating... now.",
// "Get away from the beams!",
// "Fat lot of good that Ph.D. does me now, hm?",
"Why do we all have to wear these ridiculous ties?",
"Are you thinking what I'm thinking?",
"Did you have any idea they were working on this kind of stuff?",
"My god, what are you doing?",
"What the hell is this?",
"Have you been able to get the beverage machine to work yet?",
"What the hell is going on with our equipment?",
"Standard insertion for a nonstandard specimen.",
"Overhead capacitors to one oh five percent.",
"Take me with you! I'm the one man who knows everything!",
"Do you smell what I smell?",
"basil was here",
"pyrule was here",
"Brought to you by terrible ideas!",
":catJAM:",
"Fresh colors, picked directly from Firefox devtools!",
"Did you know? The",
"Winner!",
"Do you have a moment to discuss your car's extended warranty?",
"Not rusty!",
"engineer gamine ,, !",
//-------------------------------------------------------------- <- max length
// **** ALL QUOTES MUST BE 63 CHARACTERS OR LESS ****
]
function startup() {
return startup_quotes[Math.floor(Math.random() * startup_quotes.length)]
}
exports.startup = startup