-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbusiness.wordbank.js
205 lines (179 loc) · 5.08 KB
/
business.wordbank.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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
var businessbank = function(words) {
var adjectives = words.adjectives;
var interjections = words.interjections;
// need a home
var residence = ['office', 'conference room', 'table', 'desk'];
// the vicinity of the home
var location = ['first floor', 'second floor', 'third floor', 'tenth floor', 'penthouse', 'executive row'];
// this should more be country. 'Nation' is short-hand.
var nation = ['Acme Corporation', 'Goliath National Bank', 'a large office building', 'another office building'];
var magicalitem = ['a red stapler', 'a new laptop', 'washroom key', 'potted plant', 'confidential memo', 'financial report'];
var task = ['increase revenue', 'enlarge market share', 'postpone the drawdowns', 'cook the books', 'delay the auditors'];
var punish = ['fired', 'demoted', 'sent to the mailroom'];
var ascension = ['is made CEO', 'is made CFO', 'is given a corner office', 'becomes chair of the board', 'gets keys to the executive washroom'];
var marries = ['is promoted', 'has parking tickets forgiven', 'works hard for a few years, then decides that consulting is the right career move', 'given a reserved parking space'];
var names = {
male: ['Baitogogo', 'Jaffar', 'Tyrion Lannister', 'PeeWee Herman', 'Santa Claus',
'Jolly Green Giant', 'Stay-Puft Marshmallow Man', 'Jacob',
'Michael', 'Joshua', 'Matthew', 'Daniel', 'Christopher',
'Andrew', 'Ethan', 'Joseph', 'William', 'Anthony', 'David',
'Alexander', 'Nicholas', 'Ryan', 'Tyler', 'James', 'John',
'Jonathan', 'Noah', 'Brandon', 'Christian', 'Dylan', 'Samuel',
'Benjamin', 'Nathan'],
female: ['Brienne of Tarth', 'Joan of Arc', 'Holly Shiftwell',
'Lauren', 'Chloe', 'Natalie', 'Kayla', 'Jessica', 'Anna',
'Victoria', 'Mia', 'Hailey', 'Sydney', 'Jasmine', 'Julia',
'Morgan', 'Destiny', 'Rachel', 'Ella', 'Kaitlyn', 'Megan',
'Katherine', 'Savannah', 'Jennifer', 'Alexandra', 'Allison',
'Haley', 'Maria', 'Kaylee', 'Lily', 'Makayla'],
// could also be "unisex"
// see also http://en.wikipedia.org/wiki/Unisex_name
neuter: [
'the Easter Bunny',
'TIAMAT',
'the Spirit of 1776',
'DEATH',
'Pat',
'Chris',
'Leslie',
'Alexis',
'Amari',
'Angel',
'Ariel',
'Armani',
'Avery',
'Blake',
'Cameron',
'Camryn',
'Carter',
'Casey',
'Charlie',
'Dakota',
'Dallas',
'Dylan',
'Eden',
'Elliot',
'Elliott',
'Emerson',
'Emery',
'Emory',
'Finley',
'Harley',
'Harper',
'Hayden',
'Hunter',
'Jamie',
'Jayden',
'Jaylin',
'Jessie',
'Jordan',
'Jordyn',
'Justice',
'Kai',
'Kamryn',
'Kayden',
'Kendall',
'Lennon',
'Logan',
'London',
'Lyric',
'Marley',
'Micah',
'Milan',
'Morgan',
'Oakley',
'Parker',
'Payton',
'Peyton',
'Phoenix',
'Quinn',
'Reagan',
'Reese',
'Riley',
'River',
'Rory',
'Rowan',
'Ryan',
'Rylan',
'Rylee',
'Sage',
'Sawyer',
'Sidney',
'Skylar',
'Skyler',
'Sydney',
'Tatum',
'Taylor',
'Teagan',
'Zion'
]
};
// magical science items
// are there going to be categories?
// based on list from
// http://webcache.googleusercontent.com/search?q=cache:hHHDD1u3puMJ:www.ironwolfgames.com/2011/09/17/fun-with-science-fiction-buzzwords/&client=firefox-a&hl=en&gl=us&strip=1
var itembank = {
adjectives: [
'actionable',
'value-added',
'silver-bullet',
'core competency',
'alternate',
'automatic',
'auxiliary',
'bespoke',
'best-of-breed',
'confidential',
'dynamic',
'executive',
'external',
'freelance',
'greenfield',
'infinite',
'innovative',
'internal',
'organized',
'pre-approved',
'phase',
'primary',
'static',
'secret'
, 'unlimited'
],
nouns: [
'report',
'briefcase',
'review',
'summary',
'office',
'desk',
'memo',
'summary'
]
};
var fantasticForm = ['CEO', 'CFO', 'Regulator'];
var greetings = {
good: ['Hello,', 'Nice to meet you'],
bad: ['Oh.', 'Oh, hello,', 'Well, well, well.', 'I see you somehow managed to stay employed.']
};
var magicalitems = ['World\s Best PowerPoint Presentation', 'Shiny Laser Pointer'];
return {
adjectives: adjectives,
ascension: ascension,
fantasticForm: fantasticForm,
greetings: greetings,
interjections: interjections,
itembank: itembank,
location: location,
magicalitem: magicalitem,
magicalitems: magicalitems,
marries: marries,
names: names,
nation: nation,
punish: punish,
residence: residence,
task: task
};
};
module = module || {};
module.exports = businessbank;