yolkbot 0.1.3 → 0.1.4-alpha.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (138) hide show
  1. package/browser/build/global.js +1 -1
  2. package/browser/build/module.js +1 -1
  3. package/dist/api.js +3 -0
  4. package/dist/bot/GamePlayer.js +3 -0
  5. package/dist/bot.js +3 -0
  6. package/dist/comm/Codes.js +3 -0
  7. package/dist/comm/CommIn.js +3 -0
  8. package/dist/comm/CommOut.js +3 -0
  9. package/dist/comm/OutBuffer.js +3 -0
  10. package/dist/comm/Pool.js +3 -0
  11. package/dist/comm/index.js +3 -0
  12. package/dist/constants/challenges.js +3 -0
  13. package/dist/constants/changelog.js +3 -0
  14. package/dist/constants/codes.js +3 -0
  15. package/dist/constants/guns.js +3 -0
  16. package/dist/constants/housePromo.js +3 -0
  17. package/dist/constants/index.js +3 -0
  18. package/dist/constants/items.js +3 -0
  19. package/dist/constants/language.js +3 -0
  20. package/dist/constants/maps.js +3 -0
  21. package/dist/constants/shellNews.js +3 -0
  22. package/dist/constants/shellYoutube.js +3 -0
  23. package/dist/constants/shopItems.js +3 -0
  24. package/dist/constants/sounds.js +3 -0
  25. package/dist/dispatches/BootPlayerDispatch.js +3 -0
  26. package/dist/dispatches/ChatDispatch.js +3 -0
  27. package/dist/dispatches/FireDispatch.js +3 -0
  28. package/dist/dispatches/GameOptionsDispatch.js +3 -0
  29. package/dist/dispatches/GoToAmmoDispatch.js +3 -0
  30. package/dist/dispatches/GoToCoopDispatch.js +3 -0
  31. package/dist/dispatches/GoToGrenadeDispatch.js +3 -0
  32. package/dist/dispatches/GoToPlayerDispatch.js +3 -0
  33. package/dist/dispatches/GoToSpatulaDispatch.js +3 -0
  34. package/dist/dispatches/LookAtDispatch.js +3 -0
  35. package/dist/dispatches/LookAtPosDispatch.js +3 -0
  36. package/dist/dispatches/MeleeDispatch.js +3 -0
  37. package/dist/dispatches/MovementDispatch.js +3 -0
  38. package/dist/dispatches/PauseDispatch.js +3 -0
  39. package/dist/dispatches/ReloadDispatch.js +3 -0
  40. package/dist/dispatches/ReportPlayerDispatch.js +3 -0
  41. package/dist/dispatches/SaveLoadoutDispatch.js +3 -0
  42. package/dist/dispatches/SpawnDispatch.js +3 -0
  43. package/dist/dispatches/SwapWeaponDispatch.js +3 -0
  44. package/dist/dispatches/SwitchTeamDispatch.js +3 -0
  45. package/dist/dispatches/ThrowGrenadeDispatch.js +3 -0
  46. package/dist/dispatches/index.js +3 -0
  47. package/dist/globals.js +3 -0
  48. package/dist/index.js +10 -0
  49. package/dist/matchmaker.js +3 -0
  50. package/dist/pathing/astar.js +3 -0
  51. package/dist/pathing/binaryheap.js +3 -0
  52. package/dist/pathing/mapnode.js +3 -0
  53. package/dist/socket.js +3 -0
  54. package/package.json +28 -28
  55. package/src/.DS_Store +0 -0
  56. package/src/api.js +0 -235
  57. package/src/bot/GamePlayer.js +0 -88
  58. package/src/bot.js +0 -1998
  59. package/src/comm/Codes.js +0 -99
  60. package/src/comm/CommIn.js +0 -84
  61. package/src/comm/CommOut.js +0 -16
  62. package/src/comm/OutBuffer.js +0 -60
  63. package/src/comm/Pool.js +0 -55
  64. package/src/comm/index.js +0 -16
  65. package/src/constants/challenges.js +0 -1822
  66. package/src/constants/changelog.js +0 -19
  67. package/src/constants/codes.js +0 -45
  68. package/src/constants/guns.js +0 -368
  69. package/src/constants/housePromo.js +0 -727
  70. package/src/constants/index.js +0 -121
  71. package/src/constants/items.js +0 -42533
  72. package/src/constants/language.js +0 -1669
  73. package/src/constants/maps.js +0 -1095
  74. package/src/constants/shellNews.js +0 -59
  75. package/src/constants/shellYoutube.js +0 -93
  76. package/src/constants/shopItems.js +0 -2032
  77. package/src/constants/sounds.js +0 -1160
  78. package/src/dispatches/BootPlayerDispatch.js +0 -21
  79. package/src/dispatches/ChatDispatch.js +0 -30
  80. package/src/dispatches/FireDispatch.js +0 -20
  81. package/src/dispatches/GameOptionsDispatch.js +0 -46
  82. package/src/dispatches/GoToAmmoDispatch.js +0 -44
  83. package/src/dispatches/GoToCoopDispatch.js +0 -44
  84. package/src/dispatches/GoToGrenadeDispatch.js +0 -44
  85. package/src/dispatches/GoToPlayerDispatch.js +0 -38
  86. package/src/dispatches/GoToSpatulaDispatch.js +0 -32
  87. package/src/dispatches/LookAtDispatch.js +0 -48
  88. package/src/dispatches/LookAtPosDispatch.js +0 -33
  89. package/src/dispatches/MeleeDispatch.js +0 -28
  90. package/src/dispatches/MovementDispatch.js +0 -19
  91. package/src/dispatches/PauseDispatch.js +0 -18
  92. package/src/dispatches/ReloadDispatch.js +0 -36
  93. package/src/dispatches/ReportPlayerDispatch.js +0 -51
  94. package/src/dispatches/SaveLoadoutDispatch.js +0 -119
  95. package/src/dispatches/SpawnDispatch.js +0 -21
  96. package/src/dispatches/SwapWeaponDispatch.js +0 -19
  97. package/src/dispatches/SwitchTeamDispatch.js +0 -34
  98. package/src/dispatches/ThrowGrenadeDispatch.js +0 -26
  99. package/src/dispatches/index.js +0 -69
  100. package/src/globals.js +0 -15
  101. package/src/index.js +0 -14
  102. package/src/matchmaker.js +0 -206
  103. package/src/pathing/astar.js +0 -71
  104. package/src/pathing/binaryheap.js +0 -117
  105. package/src/pathing/mapnode.js +0 -236
  106. package/src/socket.js +0 -19
  107. /package/{src → dist}/types/api.d.ts +0 -0
  108. /package/{src → dist}/types/bot/GamePlayer.d.ts +0 -0
  109. /package/{src → dist}/types/bot.d.ts +0 -0
  110. /package/{src → dist}/types/constants/challenges.d.ts +0 -0
  111. /package/{src → dist}/types/constants/guns.d.ts +0 -0
  112. /package/{src → dist}/types/constants/index.d.ts +0 -0
  113. /package/{src → dist}/types/constants/items.d.ts +0 -0
  114. /package/{src → dist}/types/constants/maps.d.ts +0 -0
  115. /package/{src → dist}/types/dispatches/BootPlayerDispatch.d.ts +0 -0
  116. /package/{src → dist}/types/dispatches/ChatDispatch.d.ts +0 -0
  117. /package/{src → dist}/types/dispatches/FireDispatch.d.ts +0 -0
  118. /package/{src → dist}/types/dispatches/GameOptionsDispatch.d.ts +0 -0
  119. /package/{src → dist}/types/dispatches/GoToAmmoDispatch.d.ts +0 -0
  120. /package/{src → dist}/types/dispatches/GoToCoopDispatch.d.ts +0 -0
  121. /package/{src → dist}/types/dispatches/GoToGrenadeDispatch.d.ts +0 -0
  122. /package/{src → dist}/types/dispatches/GoToPlayerDispatch.d.ts +0 -0
  123. /package/{src → dist}/types/dispatches/GoToSpatulaDispatch.d.ts +0 -0
  124. /package/{src → dist}/types/dispatches/LookAtDispatch.d.ts +0 -0
  125. /package/{src → dist}/types/dispatches/LookAtPosDispatch.d.ts +0 -0
  126. /package/{src → dist}/types/dispatches/MeleeDispatch.d.ts +0 -0
  127. /package/{src → dist}/types/dispatches/MovementDispatch.d.ts +0 -0
  128. /package/{src → dist}/types/dispatches/PauseDispatch.d.ts +0 -0
  129. /package/{src → dist}/types/dispatches/ReloadDispatch.d.ts +0 -0
  130. /package/{src → dist}/types/dispatches/ReportPlayerDispatch.d.ts +0 -0
  131. /package/{src → dist}/types/dispatches/SaveLoadoutDispatch.d.ts +0 -0
  132. /package/{src → dist}/types/dispatches/SpawnDispatch.d.ts +0 -0
  133. /package/{src → dist}/types/dispatches/SwapWeaponDispatch.d.ts +0 -0
  134. /package/{src → dist}/types/dispatches/SwitchTeamDispatch.d.ts +0 -0
  135. /package/{src → dist}/types/dispatches/ThrowGrenadeDispatch.d.ts +0 -0
  136. /package/{src → dist}/types/dispatches/index.d.ts +0 -0
  137. /package/{src → dist}/types/matchmaker.d.ts +0 -0
  138. /package/{src → dist}/types/socket.d.ts +0 -0
@@ -1,1095 +0,0 @@
1
- /* eslint-disable */
2
- export const Maps = [
3
- {
4
- "filename": "aqueduct",
5
- "hash": "11dp765kifr",
6
- "name": "Aqueduct",
7
- "modes": {
8
- "FFA": true,
9
- "Teams": true,
10
- "Spatula": true,
11
- "King": true
12
- },
13
- "availability": "private",
14
- "numPlayers": "18"
15
- },
16
- {
17
- "filename": "backstage",
18
- "hash": "9dsromfqr1",
19
- "name": "Backstage",
20
- "modes": {
21
- "FFA": true,
22
- "Teams": true,
23
- "Spatula": true,
24
- "King": true
25
- },
26
- "availability": "private",
27
- "numPlayers": "14"
28
- },
29
- {
30
- "filename": "bastion",
31
- "hash": "uuwh7401no",
32
- "name": "Bastion",
33
- "modes": {
34
- "FFA": true,
35
- "Teams": true,
36
- "Spatula": true,
37
- "King": true
38
- },
39
- "availability": "private",
40
- "numPlayers": "12"
41
- },
42
- {
43
- "filename": "bedrock",
44
- "hash": "yqbkimntiu",
45
- "name": "Bedrock",
46
- "modes": {
47
- "FFA": true,
48
- "Teams": true,
49
- "Spatula": true,
50
- "King": true
51
- },
52
- "availability": "private",
53
- "numPlayers": "12"
54
- },
55
- {
56
- "filename": "biohazard",
57
- "hash": "kzarr9ebqx",
58
- "name": "BioHazard",
59
- "modes": {
60
- "FFA": true,
61
- "Teams": true,
62
- "Spatula": true,
63
- "King": false
64
- },
65
- "availability": "private",
66
- "numPlayers": "18"
67
- },
68
- {
69
- "filename": "blender",
70
- "hash": "1vvfxp9rt8u",
71
- "name": "Blender",
72
- "modes": {
73
- "FFA": true,
74
- "Teams": true,
75
- "Spatula": true,
76
- "King": true
77
- },
78
- "availability": "private",
79
- "numPlayers": "14"
80
- },
81
- {
82
- "filename": "blue",
83
- "hash": "2e7izzo70bk",
84
- "name": "Blue",
85
- "modes": {
86
- "FFA": true,
87
- "Teams": true,
88
- "Spatula": true,
89
- "King": true
90
- },
91
- "availability": "both",
92
- "numPlayers": "14"
93
- },
94
- {
95
- "filename": "bridge",
96
- "hash": "20vcy8e1ev0",
97
- "name": "Bridge",
98
- "modes": {
99
- "FFA": true,
100
- "Teams": true,
101
- "Spatula": true,
102
- "King": false
103
- },
104
- "availability": "private",
105
- "numPlayers": "6"
106
- },
107
- {
108
- "filename": "canyon",
109
- "hash": "2avqtv9ygk1",
110
- "name": "Canyon",
111
- "modes": {
112
- "FFA": true,
113
- "Teams": true,
114
- "Spatula": true,
115
- "King": true
116
- },
117
- "availability": "private",
118
- "numPlayers": "18"
119
- },
120
- {
121
- "filename": "cash",
122
- "hash": "1427gfre8ma",
123
- "name": "Cash",
124
- "modes": {
125
- "FFA": true,
126
- "Teams": true,
127
- "Spatula": true,
128
- "King": true
129
- },
130
- "availability": "private",
131
- "numPlayers": "18"
132
- },
133
- {
134
- "filename": "castle",
135
- "hash": "2d2tcz2mw7e",
136
- "name": "Castle",
137
- "modes": {
138
- "FFA": true,
139
- "Teams": true,
140
- "Spatula": true,
141
- "King": true
142
- },
143
- "availability": "private",
144
- "numPlayers": "12"
145
- },
146
- {
147
- "filename": "castleArena",
148
- "hash": "9dhs3kms6l",
149
- "name": "Castle Arena",
150
- "modes": {
151
- "FFA": true,
152
- "Teams": true,
153
- "Spatula": true,
154
- "King": false
155
- },
156
- "availability": "private",
157
- "numPlayers": "8"
158
- },
159
- {
160
- "filename": "catacombs",
161
- "hash": "2el91jtcun0",
162
- "name": "Catacombs",
163
- "modes": {
164
- "FFA": true,
165
- "Teams": true,
166
- "Spatula": true,
167
- "King": true
168
- },
169
- "availability": "private",
170
- "numPlayers": "18"
171
- },
172
- {
173
- "filename": "chickenItza",
174
- "hash": "hyjqbat0i3",
175
- "name": "Chicken Itza",
176
- "modes": {
177
- "FFA": true,
178
- "Teams": true,
179
- "Spatula": true,
180
- "King": true
181
- },
182
- "availability": "private",
183
- "numPlayers": "18"
184
- },
185
- {
186
- "filename": "cluckgrounds",
187
- "hash": "1h9z3hj51g5",
188
- "name": "Cluckgrounds",
189
- "modes": {
190
- "FFA": true,
191
- "Teams": true,
192
- "Spatula": true,
193
- "King": true
194
- },
195
- "availability": "private",
196
- "numPlayers": "16"
197
- },
198
- {
199
- "filename": "crossed",
200
- "hash": "ead3tcf30r",
201
- "name": "Crossed",
202
- "modes": {
203
- "FFA": true,
204
- "Teams": true,
205
- "Spatula": true,
206
- "King": true
207
- },
208
- "availability": "private",
209
- "numPlayers": "12"
210
- },
211
- {
212
- "filename": "crowsnest",
213
- "hash": "1ze2s5zr9bm",
214
- "name": "Crowsnest",
215
- "modes": {
216
- "FFA": true,
217
- "Teams": true,
218
- "Spatula": true,
219
- "King": true
220
- },
221
- "availability": "private",
222
- "numPlayers": "8"
223
- },
224
- {
225
- "filename": "deathpit",
226
- "hash": "1cc9cvjf607",
227
- "name": "Death Pit",
228
- "modes": {
229
- "FFA": true,
230
- "Teams": true,
231
- "Spatula": true,
232
- "King": true
233
- },
234
- "availability": "private",
235
- "numPlayers": "12"
236
- },
237
- {
238
- "filename": "dirt",
239
- "hash": "1u3k5nfvwuh",
240
- "name": "Dirt",
241
- "modes": {
242
- "FFA": true,
243
- "Teams": true,
244
- "Spatula": true,
245
- "King": true
246
- },
247
- "availability": "private",
248
- "numPlayers": "18"
249
- },
250
- {
251
- "filename": "dirt2",
252
- "hash": "494aka3mb4",
253
- "name": "Dirt 2",
254
- "modes": {
255
- "FFA": true,
256
- "Teams": true,
257
- "Spatula": true,
258
- "King": true
259
- },
260
- "availability": "private",
261
- "numPlayers": "18"
262
- },
263
- {
264
- "filename": "dirtbase",
265
- "hash": "6e9r2y7dxk",
266
- "name": "Dirt Base",
267
- "modes": {
268
- "FFA": true,
269
- "Teams": true,
270
- "Spatula": true,
271
- "King": false
272
- },
273
- "availability": "private",
274
- "numPlayers": "10"
275
- },
276
- {
277
- "filename": "downfall",
278
- "hash": "26g5aj8aruc",
279
- "name": "Downfall",
280
- "modes": {
281
- "FFA": true,
282
- "Teams": true,
283
- "Spatula": true,
284
- "King": false
285
- },
286
- "availability": "private",
287
- "numPlayers": "18"
288
- },
289
- {
290
- "filename": "duelPyramid",
291
- "hash": "vmg0rj2e3b",
292
- "name": "Duel Pyramid",
293
- "modes": {
294
- "FFA": true,
295
- "Teams": true,
296
- "Spatula": true,
297
- "King": false
298
- },
299
- "availability": "private",
300
- "numPlayers": "6"
301
- },
302
- {
303
- "filename": "eggcrates",
304
- "hash": "j0i36e808n",
305
- "name": "Eggcrates",
306
- "modes": {
307
- "FFA": true,
308
- "Teams": true,
309
- "Spatula": true,
310
- "King": true
311
- },
312
- "availability": "private",
313
- "numPlayers": "6"
314
- },
315
- {
316
- "filename": "enchanted",
317
- "hash": "1igxtcyetaw",
318
- "name": "Enchanted",
319
- "modes": {
320
- "FFA": true,
321
- "Teams": true,
322
- "Spatula": true,
323
- "King": true
324
- },
325
- "availability": "private",
326
- "numPlayers": "16"
327
- },
328
- {
329
- "filename": "exposure",
330
- "hash": "15hv3cme1fh",
331
- "name": "Exposure",
332
- "modes": {
333
- "FFA": true,
334
- "Teams": true,
335
- "Spatula": true,
336
- "King": true
337
- },
338
- "availability": "both",
339
- "numPlayers": "18"
340
- },
341
- {
342
- "filename": "facility",
343
- "hash": "18djbmo35ru",
344
- "name": "Facility",
345
- "modes": {
346
- "FFA": true,
347
- "Teams": true,
348
- "Spatula": true,
349
- "King": true
350
- },
351
- "availability": "both",
352
- "numPlayers": "18"
353
- },
354
- {
355
- "filename": "feedlot",
356
- "hash": "iuj8rc7kyh",
357
- "name": "Feedlot",
358
- "modes": {
359
- "FFA": true,
360
- "Teams": true,
361
- "Spatula": true,
362
- "King": true
363
- },
364
- "availability": "private",
365
- "numPlayers": "16"
366
- },
367
- {
368
- "filename": "field",
369
- "hash": "e4aszuch87",
370
- "name": "Field",
371
- "modes": {
372
- "FFA": true,
373
- "Teams": true,
374
- "Spatula": true,
375
- "King": false
376
- },
377
- "availability": "private",
378
- "numPlayers": "10"
379
- },
380
- {
381
- "filename": "fortFlip",
382
- "hash": "1w1b6dkalc2",
383
- "name": "Fort Flip",
384
- "modes": {
385
- "FFA": true,
386
- "Teams": true,
387
- "Spatula": true,
388
- "King": true
389
- },
390
- "availability": "both",
391
- "numPlayers": "18"
392
- },
393
- {
394
- "filename": "foundation",
395
- "hash": "11y636vc64b",
396
- "name": "Foundation",
397
- "modes": {
398
- "FFA": true,
399
- "Teams": true,
400
- "Spatula": true,
401
- "King": true
402
- },
403
- "availability": "private",
404
- "numPlayers": "18"
405
- },
406
- {
407
- "filename": "fourQuarters",
408
- "hash": "1a0w7vbz8is",
409
- "name": "Four Quarters",
410
- "modes": {
411
- "FFA": true,
412
- "Teams": true,
413
- "Spatula": true,
414
- "King": false
415
- },
416
- "availability": "private",
417
- "numPlayers": "10"
418
- },
419
- {
420
- "filename": "growler",
421
- "hash": "1izyni7tb1e",
422
- "name": "Growler",
423
- "modes": {
424
- "FFA": true,
425
- "Teams": true,
426
- "Spatula": true,
427
- "King": true
428
- },
429
- "availability": "both",
430
- "numPlayers": "12"
431
- },
432
- {
433
- "filename": "haunted",
434
- "hash": "2dma8z1jdev",
435
- "name": "Haunted",
436
- "modes": {
437
- "FFA": true,
438
- "Teams": true,
439
- "Spatula": true,
440
- "King": true
441
- },
442
- "availability": "private",
443
- "numPlayers": "16"
444
- },
445
- {
446
- "filename": "helix",
447
- "hash": "i2sl4vsg3h",
448
- "name": "Helix",
449
- "modes": {
450
- "FFA": true,
451
- "Teams": true,
452
- "Spatula": true,
453
- "King": true
454
- },
455
- "availability": "private",
456
- "numPlayers": "18"
457
- },
458
- {
459
- "filename": "hydro",
460
- "hash": "8znnxbxfss",
461
- "name": "Hydro",
462
- "modes": {
463
- "FFA": true,
464
- "Teams": true,
465
- "Spatula": true,
466
- "King": true
467
- },
468
- "availability": "private",
469
- "numPlayers": "18"
470
- },
471
- {
472
- "filename": "indigo",
473
- "hash": "23rhtt62i3u",
474
- "name": "Indigo",
475
- "modes": {
476
- "FFA": true,
477
- "Teams": true,
478
- "Spatula": true,
479
- "King": true
480
- },
481
- "availability": "both",
482
- "numPlayers": "18"
483
- },
484
- {
485
- "filename": "jailbreak",
486
- "hash": "2a3blmd9hf4",
487
- "name": "Jail Break",
488
- "modes": {
489
- "FFA": true,
490
- "Teams": true,
491
- "Spatula": true,
492
- "King": true
493
- },
494
- "availability": "both",
495
- "numPlayers": "14"
496
- },
497
- {
498
- "filename": "jinx",
499
- "hash": "24u6pohagnj",
500
- "name": "Jinx",
501
- "modes": {
502
- "FFA": true,
503
- "Teams": true,
504
- "Spatula": true,
505
- "King": true
506
- },
507
- "availability": "private",
508
- "numPlayers": "18"
509
- },
510
- {
511
- "filename": "junction",
512
- "hash": "bkca8j2ppd",
513
- "name": "Junction",
514
- "modes": {
515
- "FFA": true,
516
- "Teams": true,
517
- "Spatula": true,
518
- "King": true
519
- },
520
- "availability": "private",
521
- "numPlayers": "18"
522
- },
523
- {
524
- "filename": "kingsCourt",
525
- "hash": "aq1t2lsjza",
526
- "name": "King's Court",
527
- "modes": {
528
- "FFA": true,
529
- "Teams": true,
530
- "Spatula": true,
531
- "King": true
532
- },
533
- "availability": "private",
534
- "numPlayers": "18"
535
- },
536
- {
537
- "filename": "lunarmodule",
538
- "hash": "1448aqjdqvl",
539
- "name": "Lunar Module",
540
- "modes": {
541
- "FFA": true,
542
- "Teams": true,
543
- "Spatula": true,
544
- "King": true
545
- },
546
- "availability": "private",
547
- "numPlayers": "18"
548
- },
549
- {
550
- "filename": "mansion",
551
- "hash": "nqhtvwj3fo",
552
- "name": "Mansion",
553
- "modes": {
554
- "FFA": true,
555
- "Teams": true,
556
- "Spatula": true,
557
- "King": true
558
- },
559
- "availability": "private",
560
- "numPlayers": "18"
561
- },
562
- {
563
- "filename": "mazerunner",
564
- "hash": "j16i30k9dz",
565
- "name": "Maze Runner",
566
- "modes": {
567
- "FFA": true,
568
- "Teams": true,
569
- "Spatula": true,
570
- "King": true
571
- },
572
- "availability": "private",
573
- "numPlayers": "18"
574
- },
575
- {
576
- "filename": "metamorph",
577
- "hash": "l9o69l8e1b",
578
- "name": "Metamorph",
579
- "modes": {
580
- "FFA": true,
581
- "Teams": true,
582
- "Spatula": true,
583
- "King": false
584
- },
585
- "availability": "private",
586
- "numPlayers": "14"
587
- },
588
- {
589
- "filename": "moonbase",
590
- "hash": "1yzocf1mex3",
591
- "name": "Moonbase",
592
- "modes": {
593
- "FFA": true,
594
- "Teams": true,
595
- "Spatula": true,
596
- "King": true
597
- },
598
- "availability": "private",
599
- "numPlayers": "18"
600
- },
601
- {
602
- "filename": "mudGulch",
603
- "hash": "kto278skze",
604
- "name": "Mud Gulch",
605
- "modes": {
606
- "FFA": true,
607
- "Teams": true,
608
- "Spatula": true,
609
- "King": true
610
- },
611
- "availability": "private",
612
- "numPlayers": "14"
613
- },
614
- {
615
- "filename": "nextdoor",
616
- "hash": "s2i5za1kx9",
617
- "name": "Nextdoor",
618
- "modes": {
619
- "FFA": true,
620
- "Teams": true,
621
- "Spatula": true,
622
- "King": true
623
- },
624
- "availability": "private",
625
- "numPlayers": "18"
626
- },
627
- {
628
- "filename": "outer",
629
- "hash": "w1biqokp89",
630
- "name": "Outer Reach",
631
- "modes": {
632
- "FFA": true,
633
- "Teams": true,
634
- "Spatula": true,
635
- "King": true
636
- },
637
- "availability": "both",
638
- "numPlayers": "18"
639
- },
640
- {
641
- "filename": "overcooked",
642
- "hash": "29ca98hgdeh",
643
- "name": "Overcooked",
644
- "modes": {
645
- "FFA": true,
646
- "Teams": true,
647
- "Spatula": true,
648
- "King": true
649
- },
650
- "availability": "private",
651
- "numPlayers": "12"
652
- },
653
- {
654
- "filename": "palaceSiege",
655
- "hash": "1enghs5hsxe",
656
- "name": "Palace Siege",
657
- "modes": {
658
- "FFA": true,
659
- "Teams": true,
660
- "Spatula": true,
661
- "King": true
662
- },
663
- "availability": "both",
664
- "numPlayers": "14"
665
- },
666
- {
667
- "filename": "quarry",
668
- "hash": "2crjk106pa",
669
- "name": "Quarry",
670
- "modes": {
671
- "FFA": true,
672
- "Teams": true,
673
- "Spatula": true,
674
- "King": true
675
- },
676
- "availability": "both",
677
- "numPlayers": "14"
678
- },
679
- {
680
- "filename": "queenscourt",
681
- "hash": "raudy4h9pv",
682
- "name": "Queen's Court",
683
- "modes": {
684
- "FFA": true,
685
- "Teams": true,
686
- "Spatula": true,
687
- "King": true
688
- },
689
- "availability": "private",
690
- "numPlayers": "18"
691
- },
692
- {
693
- "filename": "raceway",
694
- "hash": "1a3eo6xaoju",
695
- "name": "Raceway",
696
- "modes": {
697
- "FFA": true,
698
- "Teams": true,
699
- "Spatula": true,
700
- "King": true
701
- },
702
- "availability": "private",
703
- "numPlayers": "18"
704
- },
705
- {
706
- "filename": "rameses",
707
- "hash": "177jt4j8so9",
708
- "name": "Rameses",
709
- "modes": {
710
- "FFA": true,
711
- "Teams": true,
712
- "Spatula": true,
713
- "King": true
714
- },
715
- "availability": "private",
716
- "numPlayers": "16"
717
- },
718
- {
719
- "filename": "rats",
720
- "hash": "13r2oqql8se",
721
- "name": "Rats",
722
- "modes": {
723
- "FFA": true,
724
- "Teams": true,
725
- "Spatula": true,
726
- "King": true
727
- },
728
- "availability": "private",
729
- "numPlayers": "18"
730
- },
731
- {
732
- "filename": "relic",
733
- "hash": "lxzknz53a2",
734
- "name": "Relic",
735
- "modes": {
736
- "FFA": true,
737
- "Teams": true,
738
- "Spatula": true,
739
- "King": true
740
- },
741
- "availability": "private",
742
- "numPlayers": "18"
743
- },
744
- {
745
- "filename": "rivals",
746
- "hash": "26fkvcef2h6",
747
- "name": "Rivals",
748
- "modes": {
749
- "FFA": true,
750
- "Teams": true,
751
- "Spatula": true,
752
- "King": false
753
- },
754
- "availability": "private",
755
- "numPlayers": "6"
756
- },
757
- {
758
- "filename": "road",
759
- "hash": "2h312vlocd",
760
- "name": "Road",
761
- "modes": {
762
- "FFA": true,
763
- "Teams": true,
764
- "Spatula": true,
765
- "King": true
766
- },
767
- "availability": "private",
768
- "numPlayers": "14"
769
- },
770
- {
771
- "filename": "ruins",
772
- "hash": "3ycs8z9bcu",
773
- "name": "Ruins",
774
- "modes": {
775
- "FFA": true,
776
- "Teams": true,
777
- "Spatula": true,
778
- "King": true
779
- },
780
- "availability": "private",
781
- "numPlayers": "18"
782
- },
783
- {
784
- "filename": "scales",
785
- "hash": "101v5lpkv1s",
786
- "name": "Scales",
787
- "modes": {
788
- "FFA": true,
789
- "Teams": true,
790
- "Spatula": true,
791
- "King": true
792
- },
793
- "availability": "private",
794
- "numPlayers": "18"
795
- },
796
- {
797
- "filename": "shadyglen",
798
- "hash": "2d0d4bj7aq3",
799
- "name": "Shady Glen",
800
- "modes": {
801
- "FFA": true,
802
- "Teams": true,
803
- "Spatula": true,
804
- "King": true
805
- },
806
- "availability": "private",
807
- "numPlayers": "12"
808
- },
809
- {
810
- "filename": "shellville",
811
- "hash": "fdgmkbfe7n",
812
- "name": "Shellville",
813
- "modes": {
814
- "FFA": true,
815
- "Teams": true,
816
- "Spatula": true,
817
- "King": true
818
- },
819
- "availability": "private",
820
- "numPlayers": "16"
821
- },
822
- {
823
- "filename": "shipyard",
824
- "hash": "1n1sptszksq",
825
- "name": "Shipyard",
826
- "modes": {
827
- "FFA": true,
828
- "Teams": true,
829
- "Spatula": true,
830
- "King": true
831
- },
832
- "availability": "private",
833
- "numPlayers": "18"
834
- },
835
- {
836
- "filename": "skyScratcher",
837
- "hash": "1th1c8epp95",
838
- "name": "Sky Scratcher",
839
- "modes": {
840
- "FFA": true,
841
- "Teams": true,
842
- "Spatula": true,
843
- "King": true
844
- },
845
- "availability": "private",
846
- "numPlayers": "18"
847
- },
848
- {
849
- "filename": "spaceFactory",
850
- "hash": "10802a2az0f",
851
- "name": "Space Factory",
852
- "modes": {
853
- "FFA": true,
854
- "Teams": true,
855
- "Spatula": true,
856
- "King": true
857
- },
858
- "availability": "private",
859
- "numPlayers": "10"
860
- },
861
- {
862
- "filename": "spacearena",
863
- "hash": "k9zf5lqzze",
864
- "name": "Space Arena",
865
- "modes": {
866
- "FFA": true,
867
- "Teams": true,
868
- "Spatula": true,
869
- "King": false
870
- },
871
- "availability": "private",
872
- "numPlayers": "14"
873
- },
874
- {
875
- "filename": "sparta",
876
- "hash": "274wwdyll9w",
877
- "name": "Sparta",
878
- "modes": {
879
- "FFA": true,
880
- "Teams": true,
881
- "Spatula": true,
882
- "King": true
883
- },
884
- "availability": "private",
885
- "numPlayers": "18"
886
- },
887
- {
888
- "filename": "spellbound",
889
- "hash": "1curtd0i4ls",
890
- "name": "Spellbound",
891
- "modes": {
892
- "FFA": true,
893
- "Teams": true,
894
- "Spatula": true,
895
- "King": true
896
- },
897
- "availability": "private",
898
- "numPlayers": "12"
899
- },
900
- {
901
- "filename": "stage",
902
- "hash": "1zn44r9jb3t",
903
- "name": "Stage",
904
- "modes": {
905
- "FFA": true,
906
- "Teams": true,
907
- "Spatula": true,
908
- "King": true
909
- },
910
- "availability": "private",
911
- "numPlayers": "18"
912
- },
913
- {
914
- "filename": "starship",
915
- "hash": "27xerc3smw5",
916
- "name": "Starship",
917
- "modes": {
918
- "FFA": true,
919
- "Teams": true,
920
- "Spatula": true,
921
- "King": true
922
- },
923
- "availability": "private",
924
- "numPlayers": "18"
925
- },
926
- {
927
- "filename": "staxarena",
928
- "hash": "1jid8ffda0z",
929
- "name": "Stax Arena",
930
- "modes": {
931
- "FFA": true,
932
- "Teams": true,
933
- "Spatula": true,
934
- "King": false
935
- },
936
- "availability": "private",
937
- "numPlayers": "6"
938
- },
939
- {
940
- "filename": "teggtris",
941
- "hash": "1y4rswkkv3l",
942
- "name": "Teggtris",
943
- "modes": {
944
- "FFA": true,
945
- "Teams": true,
946
- "Spatula": true,
947
- "King": true
948
- },
949
- "availability": "private",
950
- "numPlayers": "18"
951
- },
952
- {
953
- "filename": "temple",
954
- "hash": "bp6twwct9v",
955
- "name": "Temple",
956
- "modes": {
957
- "FFA": true,
958
- "Teams": true,
959
- "Spatula": true,
960
- "King": false
961
- },
962
- "availability": "private",
963
- "numPlayers": "18"
964
- },
965
- {
966
- "filename": "timetwist",
967
- "hash": "1ad75xyk2rv",
968
- "name": "Timetwist",
969
- "modes": {
970
- "FFA": true,
971
- "Teams": true,
972
- "Spatula": true,
973
- "King": true
974
- },
975
- "availability": "both",
976
- "numPlayers": "18"
977
- },
978
- {
979
- "filename": "trainyard",
980
- "hash": "2e1w70fjqet",
981
- "name": "Trainyard",
982
- "modes": {
983
- "FFA": true,
984
- "Teams": true,
985
- "Spatula": true,
986
- "King": true
987
- },
988
- "availability": "private",
989
- "numPlayers": "18"
990
- },
991
- {
992
- "filename": "treefort",
993
- "hash": "14a9akanqms",
994
- "name": "Tree Fort",
995
- "modes": {
996
- "FFA": true,
997
- "Teams": true,
998
- "Spatula": true,
999
- "King": false
1000
- },
1001
- "availability": "private",
1002
- "numPlayers": "6"
1003
- },
1004
- {
1005
- "filename": "twoTowers",
1006
- "hash": "2asidv5c0ff",
1007
- "name": "Two Towers",
1008
- "modes": {
1009
- "FFA": true,
1010
- "Teams": true,
1011
- "Spatula": true,
1012
- "King": true
1013
- },
1014
- "availability": "both",
1015
- "numPlayers": "18"
1016
- },
1017
- {
1018
- "filename": "uncovered",
1019
- "hash": "bxrd0zdvtn",
1020
- "name": "Uncovered",
1021
- "modes": {
1022
- "FFA": true,
1023
- "Teams": true,
1024
- "Spatula": true,
1025
- "King": false
1026
- },
1027
- "availability": "private",
1028
- "numPlayers": "12"
1029
- },
1030
- {
1031
- "filename": "vert",
1032
- "hash": "25a9ikled77",
1033
- "name": "Vert",
1034
- "modes": {
1035
- "FFA": true,
1036
- "Teams": true,
1037
- "Spatula": true,
1038
- "King": true
1039
- },
1040
- "availability": "private",
1041
- "numPlayers": "12"
1042
- },
1043
- {
1044
- "filename": "wimble",
1045
- "hash": "13smnxheae1",
1046
- "name": "Wimble",
1047
- "modes": {
1048
- "FFA": true,
1049
- "Teams": true,
1050
- "Spatula": true,
1051
- "King": true
1052
- },
1053
- "availability": "private",
1054
- "numPlayers": "18"
1055
- },
1056
- {
1057
- "filename": "wonderland",
1058
- "hash": "5n6ixyepvy",
1059
- "name": "Wonderland",
1060
- "modes": {
1061
- "FFA": true,
1062
- "Teams": true,
1063
- "Spatula": true,
1064
- "King": true
1065
- },
1066
- "availability": "private",
1067
- "numPlayers": "18"
1068
- },
1069
- {
1070
- "filename": "wreckage",
1071
- "hash": "nkiu4z6uj1",
1072
- "name": "Wreckage",
1073
- "modes": {
1074
- "FFA": true,
1075
- "Teams": true,
1076
- "Spatula": true,
1077
- "King": true
1078
- },
1079
- "availability": "both",
1080
- "numPlayers": "18"
1081
- },
1082
- {
1083
- "filename": "yolkido",
1084
- "hash": "127ppvq4k6n",
1085
- "name": "Yolkido Garrison",
1086
- "modes": {
1087
- "FFA": true,
1088
- "Teams": true,
1089
- "Spatula": true,
1090
- "King": true
1091
- },
1092
- "availability": "both",
1093
- "numPlayers": "18"
1094
- }
1095
- ];