-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpotions.js
383 lines (383 loc) · 12.3 KB
/
potions.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
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
var POTIONS = [
['fire', 'water', 'steam'],
['air', 'water', 'bubbles'],
['air', 'fire', 'lightning'],
['air', 'air', 'sky'],
['air', 'earth', 'sky'],
['fire', 'earth', 'lava'],
['earth', 'water', 'mud'],
['water', 'water', 'pressure'],
['fire', 'fire', 'fireball'],
['water', 'bubbles', 'fizzywater'],
['pressure', 'earth', 'rock'],
['rock', 'fire', 'metal'],
['machine', 'bread', 'toaster'],
['flour', 'water', 'dough'],
['wheat', 'windmill', 'flour'],
['bread', 'toaster','toast'],
['metal', 'fire', 'oven'],
['dough','oven', 'bread'],
['seed', 'earth', 'plant'],
['metal', 'steam', 'boiler'],
['plant', 'water', 'tree'],
['animal', 'tree', 'ape'],
['life', 'life', 'movement'],
['space', 'movement', 'time'],
['time', 'ape', 'human'],
['ape', 'human', 'strength'],
['superevolvedbeing', 'human', 'superhero'],
['strength', 'superhero', 'superman'],
['superhero', 'rock', 'kryptonite'],
['water', 'life', 'fish'],
['bread', 'human', 'baker'],
['superman', 'rock', 'kryptonite'],
['human', 'fish', 'mermaid'],
['fire', 'space', 'star'],
['rock', 'lava', 'volcano'],
['mountain', 'lava', 'volcano'],
['rock', 'rock', 'mountain'],
['earth', 'earth', 'hill'],
['sky', 'pressure', 'wind'],
['sky', 'sky', 'space'],
['rock', 'star', 'planet'],
['rock', 'space', 'asteroid'],
['earth', 'asteroid', 'meteorite'],
['time', 'space', 'spacetime'],
['time', 'star', 'supernova'],
['star', 'planet', 'solarsystem'],
['star', 'star', 'galaxy'],
['blade', 'tree', 'wood'],
['human', 'machine', 'cyborg '],
['rock', 'metal', 'blade'],
['blade', 'wood', 'wheel'],
['plough', 'earth', 'field'],
['time', 'machine', 'clock'],
['air', 'wheel', 'tyre'],
['tyre', 'flood', 'rubberring'],
['air', 'pressure', 'wind'],
['seed', 'water', 'plant'],
['sky', 'star', 'sun'],
['sky', 'fire', 'sun'],
['sun', 'plant', 'wheat'],
['life', 'earth', 'seed'],
['dustcloud', 'water', 'life'],
['human', 'star', 'nome'],
['machine', 'wheel', 'car'],
['blacksmith', 'diamond', 'ring'],
['tree', 'pressure', 'coal'],
['coal', 'pressure', 'diamond'],
['human', 'oven', 'blacksmith'],
['machine', 'space', 'spaceship'],
['human', 'space', 'astronaut'],
['human', 'human', 'love'],
['love', 'ring', 'marriage'],
['marriage', 'human', 'baby'],
['time', 'baby', 'child'],
['sky', 'water', 'cloud'],
['sun', 'rain', 'rainbow'],
['boiler', 'water', 'hotwater'],
['child', 'time', 'teenager'],
['teenager', 'time', 'adult'],
['adult', 'time', 'elder'],
['teenager', 'teenager', 'gang'],
['wheel', 'blade', 'cog'],
['cog', 'metal', 'machine'],
['time', 'elder', 'corpse'],
['corpse', 'time', 'reincarnation'],
['oven', 'earth', 'brick'],
['brick', 'human', 'builder'],
['builder', 'brick', 'wall'],
['builder', 'wall', 'house'],
['wall', 'wall', 'house'],
['bread', 'house', 'bakery'],
['baby', 'bread', 'roll'],
['roll', 'house', 'bakery'],
['metal', 'human', 'robot'],
['superman', 'kryptonite', 'human'],
['rock', 'house', 'cave'],
['metal', 'metal', 'handle'],
['handle', 'blade', 'sword'],
['sword', 'human', 'knight'],
['sword', 'sword', 'doublesidedsword'],
['knight', 'knight', 'army'],
['fish', 'fish', 'school'],
['mountain', 'water', 'lake'],
['rock', 'time', 'sand'],
['sand', 'sand', 'desert'],
['desert', 'lake', 'oasis'],
['rock', 'roll', 'rockandroll'],
['earth', 'corpse', 'grave'],
['rock', 'grave', 'gravestone'],
['rainbow', 'rainbow', 'doublerainbow'],
['earth', 'blade', 'plough'],
['plant', 'desert', 'cactus'],
['cloud', 'water', 'rain'],
['cloud', 'life', 'sheep'],
['rockandroll', 'movement', 'dance'],
['human', 'dance', 'dancer'],
['tree', 'tree', 'forest'],
['sky', 'rock', 'moon'],
['machine', 'coal', 'train'],
['ape', 'baby', 'chimp'],
['ape', 'planet', 'planetoftheapes'],
['forest', 'human', 'path'],
['sheep', 'blade', 'wool'],
['plant', 'wool', 'cotton'],
['cotton', 'wheel', 'thread'],
['thread', 'human', 'weaver'],
['weaver', 'thread', 'loom'],
['thread', 'loom', 'cloth'],
['cloth', 'tree', 'hammock'],
['hammock', 'human', 'sleep'],
['baby', 'sleep', 'silence'],
['dustcloud', 'human', 'sneeze'],
['human', 'sneeze', 'mr.sneeze'],
['car', 'car', 'traffic'],
['car', 'path', 'road'],
['house', 'house', 'village'],
['house', 'village', 'town'],
['teenager', 'school', 'university'],
['university', 'teenager', 'student'],
['university', 'adult', 'maturestudent'],
['time', 'school', 'work'],
['time', 'university', 'dissertation'],
['work', 'builder', 'buildingsite'],
['movement', 'water', 'river'],
['lake', 'lake', 'sea'],
['sea', 'sea', 'ocean'],
['sea', 'sun', 'salt'],
['salt', 'sea', 'deadsea'],
['sky', 'life', 'bird'],
['space', 'life', 'alien'],
['earth', 'sun', 'solarsystem'],
['river', 'life', 'fish'],
['sea', 'life', 'dolphin'],
['ocean', 'life', 'whale'],
['sea', 'plant', 'seaweed'],
['wind', 'earth', 'dust'],
['wind', 'rain', 'storm'],
['storm', 'river', 'flood'],
['storm', 'cloud', 'lightning'],
['lightning', 'metal', 'electricity'],
['electricity', 'metal', 'wire'],
['wire', 'electricity', 'circuit'],
['wire', 'wire', 'coil'],
['coil', 'electricity', 'magnet'],
['magnet', 'coil', 'electricity'],
['glass', 'coil', 'lightbulb'],
['lightbulb', 'electricity', 'light'],
['light', 'traffic', 'trafficlight'],
['sand', 'fire', 'glass'],
['sand', 'metal', 'siliconchip'],
['siliconchip', 'siliconchip', 'computer'],
['computer', 'computer', 'network'],
['network', 'network', 'internet'],
['electricity', 'electricity', 'surge'],
['sea', 'wood', 'boat'],
['train', 'house', 'station'],
['bird', 'metal', 'aeroplane'],
['aeroplane', 'cloud', 'vapourtrail'],
['lightning', 'bog', 'life'],
['asteroid', 'earth', 'life'],
['lightning', 'sky', 'thunder'],
['water', 'lava', 'rock'],
['star', 'explosion', 'supernova'],
['wind', 'wind', 'hurricane'],
['pressure', 'water', 'whirlpool'],
['whirlpool', 'hurricane', 'tornado'],
['adult', 'adult', 'love'],
['love', 'human', 'baby'],
['human', 'plant', 'food'],
['water', 'metal', 'bottle'],
['bottle', 'hotwater', 'hotwaterbottle'],
['bird', 'blade', 'feather'],
['feather', 'cloth', 'pillow'],
['school', 'adult', 'teacher'],
['fire', 'human', 'fireman'],
['time', 'human', 'superevolvedbeing'],
['whirlpool', 'space', 'blackhole'],
['wheat', 'house', 'windmill'],
['wind', 'house', 'windmill'],
['spaceship', 'fire', 'rocket'],
['spaceship', 'alien', 'flyingsaucer'],
['whirlpool', 'water', 'bermudatriangle'],
['tornado', 'water', 'bermudatriangle'],
['cloth', 'boat', 'sailboat'],
['sailboat', 'wood', 'mast'],
['child', 'rubberring', 'learner'],
['learner', 'time', 'swimer'],
['nome', 'computer', 'thething'],
['pressure', 'seed', 'oil'],
['oil', 'fire', 'plastic'],
['plastic', 'fire', 'tube'],
['tube', 'metal', 'pole'],
['cloth', 'pole', 'flag'],
['cloth', 'mast', 'sail'],
['movement', 'trampoline', 'bounce'],
['metal', 'buildingsite', 'scaffolding'],
['light', 'light', 'laser'],
['laser', 'sword', 'lightsaber'],
['lightsaber', 'human', 'jedi'],
['lightsaber', 'rock', 'crystal'],
['desert', 'life', 'camel'],
['food', 'thething', 'electricity'],
['fireball', 'space', 'star'],
['ice', 'machine', 'freezer'],
['ice', 'ice', 'iceberg'],
['storm', 'ice', 'blizzard'],
['ice', 'rain', 'hail'],
['bandage', 'corpse', 'mummy'],
['cloth', 'wound', 'bandage'],
['blade', 'human', 'cut'],
['house', 'triangle', 'pyramid'],
['thread', 'thread', 'string'],
['string', 'string', 'rope'],
['wood', 'pressure', 'paper'],
['wood', 'coal', 'pencil'],
['pencil', 'paper', 'point'],
['point', 'point', 'line'],
['point', 'line', 'triangle'],
['triangle', 'point', 'square'],
['plant', 'thread', 'fibre'],
['fibre', 'fibre', 'pod'],
['pod', 'water', 'bean'],
['bean', 'oven', 'roastbeans'],
['roastbeans', 'rock', 'groundbeans'],
['groundbeans', 'hotwater', 'coffee'],
['fibre', 'tree', 'leaf'],
['leaf', 'hotwater', 'tea'],
['fibre', 'plant', 'leaf'],
['cut', 'cut', 'wound'],
['cut', 'human', 'blood'],
['metal', 'time', 'rust'],
['baby', 'food', 'milk'],
['milk', 'human', 'milkman'],
['milkman', 'car', 'milkfloat'],
['triangle', 'triangle', 'square'],
['poo', 'life', 'worm'],
['worm', 'worm', 'worms'],
['worm', 'poo', 'threadworm'],
['worms', 'earth', 'wormhole'],
['human', 'food', 'poo'],
['life', 'time', 'death'],
['rain', 'seed', 'plant'],
['rain', 'plant', 'tree'],
['mountain', 'mountain', 'mountainrange'],
['child', 'child', 'friend'],
['tree', 'sun', 'shade'],
['bubbles', 'blade', 'soap'],
['child', 'bubbles', 'run'],
['movement', 'human', 'walk'],
['point', 'computer', 'pixel'],
['explosion', 'explosion', 'bigbang'],
['bigbang', 'time', 'universe'],
['universe', 'human', 'spirit'],
['spirit', 'human', 'consciousness'],
['house', 'work', 'office'],
['explosion', 'volcano', 'eruption'],
['moon', 'asteroid', 'crater'],
['sea', 'path', 'miracale'],
['pressure', 'pressure', 'explosion'],
['movement', 'air', 'sound'],
['human', 'sound', 'talk'],
['baby', 'talk', 'nonsense'],
['baby', 'sound', 'cry'],
['baby', 'movement', 'crawl'],
['movement', 'earth', 'earthqake'],
['fire', 'ice', 'water'],
['ice', 'lake', 'icerink'],
['river', 'ice', 'glacier'],
['river', 'rock', 'waterfall'],
['cloth', 'human', 'clothes'],
['life', 'forest', 'animal'],
['animal', 'human', 'pet'],
['milk', 'baby','teeth'],
['teeth', 'baby', 'milkteeth'],
['blade', 'teeth', 'saw'],
['saw', 'electricity', 'chainsaw'],
['rope', 'metal', 'chain'],
['hill', 'hill', 'mountain'],
['hill', 'rock', 'mountain'],
['lava', 'water', 'rock'],
['plant', 'earth', 'grass'],
['grass', 'sun', 'hay'],
['hay', 'animal', 'horse'],
['horse', 'car', 'cart'],
['cart', 'wheel', 'cartwheel'],
['animal', 'forest', 'wildanimal'],
['animal', 'mountain', 'ibex'],
['ibex', 'earth','goat'],
['asteroid', 'asteroid', 'asteroidbelt'],
['mud', 'mud', 'bog'],
['coil', 'cloth', 'trampoline'],
['mud', 'water', 'silt'],
['knight', 'house', 'castle'],
['blacksmith', 'oven', 'forge'],
['forge', 'metal', 'meltedmetal'],
['animal', 'animal', 'pack'],
['bird','bird', 'flock'],
['desert','storm', 'sandstorm'],
['human','computer', 'programmer'],
['human','wood', 'carpenter'],
['human', 'car', 'mechanic'],
['house','ice', 'igloo'],
['university','town', 'city'],
['feather','feather', 'wing'],
['asteroid', 'ice', 'comet'],
['comet', 'earth', 'life'],
['space', 'water', 'ice'],
['ice', 'space', 'comet'],
['movement', 'star', 'shootingstar'],
['alien', 'machine', 'spaceship'],
['spaceship', 'spaceship', 'fleet'],
['tree', 'spirit', 'dryad'],
['plant', 'time', 'bud'],
['bud', 'time', 'flower'],
['flower', 'dust', 'polen'],
['polen', 'animal', 'bee'],
['bee', 'flower', 'fruit'],
['flower', 'water', 'nectar'],
['nectar', 'animal', 'butterfly'],
['bee', 'polen', 'food'],
['butterfly', 'nectar', 'food'],
['dust', 'dust', 'dustcloud'],
['poo', 'animal', 'fly'],
['fly', 'fly', 'swarm'],
['bee', 'bee', 'swarm'],
['bee', 'human', 'sting'],
['sting', 'bee', 'wasp'],
['car', 'robot', 'remotecontrolcar'],
['life', 'corpse', 'zombie'],
['lightning', 'zombie', 'frankensteinsmonster'],
['fire', 'wood', 'charcoal'],
['wind', 'human', 'fart'],
['blood', 'blade', 'bloodyblade'],
['cut', 'time', 'blood'],
['sun', 'water', 'condensation'],
['cloud', 'cold', 'snow'],
['metal', 'magnet', 'compass'],
['compass', 'human', 'north'],
['north', 'animal', 'polarbear'],
['north', 'human', 'cold'],
['north', 'ape', 'undiscoveredspecies'],
['undiscoveredspecies', 'space', 'extraterrestrial'],
['wall', 'human', 'boundry'],
['boundry', 'earth', 'realm'],
['realm', 'fire', 'hell'],
['hell', 'animal', 'devil'],
['bird', 'city', 'pigeon'],
['bird', 'human', 'angel'],
['angel', 'realm', 'heaven'],
['heaven', 'fire', 'hell'],
['milk', 'food', 'cheese'],
['cheese', 'water', 'yogurt'],
['yogurt', 'cheese', 'dairy'],
['yogurt', 'water', 'yogurtdrink'],
['mountain', 'house', 'cave'],
['cave', 'human', 'caveman'],
['fire', 'animal', 'dragon'],
['fire', 'bird', 'phoenix'],
['fire', 'forest', 'forestfire'],
['wood', 'saw', 'planks'],
['planks', 'builder', 'cabin']
];