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,2032 +0,0 @@
1
- /* eslint-disable */
2
- export const ShopItems = [
3
- {
4
- "itemIds": null,
5
- "sku": "egg_pack_small",
6
- "name": "Small Pack",
7
- "price": 3,
8
- "salePrice": 5,
9
- "flagText": "",
10
- "type": "currency",
11
- "inStore": 1,
12
- "currency": 30000,
13
- "isActive": true,
14
- "id": 1
15
- },
16
- {
17
- "itemIds": null,
18
- "sku": "egg_pack_medium",
19
- "name": "Medium Pack",
20
- "price": 6,
21
- "salePrice": 10,
22
- "flagText": "",
23
- "type": "currency",
24
- "inStore": 1,
25
- "currency": 65000,
26
- "isActive": true,
27
- "id": 2
28
- },
29
- {
30
- "itemIds": null,
31
- "sku": "egg_pack_large",
32
- "name": "Large Pack",
33
- "price": 12,
34
- "salePrice": 20,
35
- "flagText": "",
36
- "type": "currency",
37
- "inStore": 1,
38
- "currency": 150000,
39
- "isActive": true,
40
- "id": 3
41
- },
42
- {
43
- "itemIds": null,
44
- "sku": "egg_pack_giant",
45
- "name": "Giant Pack",
46
- "price": 50,
47
- "salePrice": 25,
48
- "flagText": "p_egg_shop_bestvalue",
49
- "type": "currency",
50
- "inStore": 0,
51
- "currency": 50000,
52
- "isActive": true,
53
- "id": 4
54
- },
55
- {
56
- "itemIds": [
57
- 4223
58
- ],
59
- "sku": "item_gun_m24_techno",
60
- "name": "Untz Untz Gun",
61
- "price": 10,
62
- "salePrice": null,
63
- "flagText": "",
64
- "type": "item",
65
- "inStore": 0,
66
- "currency": 0,
67
- "isActive": true,
68
- "id": 8
69
- },
70
- {
71
- "itemIds": [
72
- 1112
73
- ],
74
- "sku": "item_hat_yolk_arms",
75
- "name": "Yolk Arms",
76
- "price": 1,
77
- "salePrice": null,
78
- "flagText": "",
79
- "type": "item",
80
- "inStore": 0,
81
- "currency": 0,
82
- "isActive": true,
83
- "id": 9
84
- },
85
- {
86
- "itemIds": [
87
- 1105
88
- ],
89
- "sku": "item_hat_cape",
90
- "name": "Magic Cape",
91
- "price": 1,
92
- "salePrice": null,
93
- "flagText": "",
94
- "type": "item",
95
- "inStore": 0,
96
- "currency": 0,
97
- "isActive": true,
98
- "id": 10
99
- },
100
- {
101
- "itemIds": [
102
- 1092
103
- ],
104
- "sku": "item_hat_dragon",
105
- "name": "GoE Dragon",
106
- "price": 2,
107
- "salePrice": null,
108
- "flagText": "",
109
- "type": "item",
110
- "inStore": 0,
111
- "currency": 0,
112
- "isActive": true,
113
- "id": 11
114
- },
115
- {
116
- "itemIds": [
117
- 1110
118
- ],
119
- "sku": "item_hat_space_gladi",
120
- "name": "Space Gladiator",
121
- "price": 2,
122
- "salePrice": null,
123
- "flagText": "",
124
- "type": "item",
125
- "inStore": 0,
126
- "currency": 0,
127
- "isActive": true,
128
- "id": 12
129
- },
130
- {
131
- "itemIds": [
132
- 1126
133
- ],
134
- "sku": "item_hat_zombie_mask",
135
- "name": "Zombie Mask",
136
- "price": 2,
137
- "salePrice": null,
138
- "flagText": "",
139
- "type": "item",
140
- "inStore": 0,
141
- "currency": 0,
142
- "isActive": true,
143
- "id": 13
144
- },
145
- {
146
- "itemIds": [
147
- 3016
148
- ],
149
- "sku": "item_gun_9mm_space",
150
- "name": "Cluck 9mm Space Egg",
151
- "price": 4,
152
- "salePrice": null,
153
- "flagText": "",
154
- "type": "item",
155
- "inStore": 0,
156
- "currency": 0,
157
- "isActive": true,
158
- "id": 14
159
- },
160
- {
161
- "itemIds": [
162
- 1125
163
- ],
164
- "sku": "item_hat_oni",
165
- "name": "Oni Hat",
166
- "price": 4,
167
- "salePrice": null,
168
- "flagText": "",
169
- "type": "item",
170
- "inStore": 0,
171
- "currency": 0,
172
- "isActive": true,
173
- "id": 15
174
- },
175
- {
176
- "itemIds": [
177
- 3416
178
- ],
179
- "sku": "item_gun_csg1_space",
180
- "name": "CSG1 Space Egg Skin",
181
- "price": 3,
182
- "salePrice": null,
183
- "flagText": "",
184
- "type": "item",
185
- "inStore": 0,
186
- "currency": 0,
187
- "isActive": true,
188
- "id": 16
189
- },
190
- {
191
- "itemIds": [
192
- 1160
193
- ],
194
- "sku": "item_hat_galeggsy",
195
- "name": "Galeggsy Wings",
196
- "price": 5,
197
- "salePrice": null,
198
- "flagText": "",
199
- "type": "item",
200
- "inStore": 0,
201
- "currency": 0,
202
- "isActive": true,
203
- "id": 17
204
- },
205
- {
206
- "itemIds": [
207
- 3025
208
- ],
209
- "sku": "item_gun_9mm_techno",
210
- "name": "Cluck 9mm Techno",
211
- "price": 10,
212
- "salePrice": null,
213
- "flagText": "",
214
- "type": "item",
215
- "inStore": 0,
216
- "currency": 0,
217
- "isActive": true,
218
- "id": 18
219
- },
220
- {
221
- "itemIds": [
222
- 1171
223
- ],
224
- "sku": "item_hat_rooter_wing",
225
- "name": "Rooster Wings",
226
- "price": 5,
227
- "salePrice": null,
228
- "flagText": "",
229
- "type": "item",
230
- "inStore": 0,
231
- "currency": 0,
232
- "isActive": true,
233
- "id": 19
234
- },
235
- {
236
- "itemIds": [
237
- 4026
238
- ],
239
- "sku": "item_gun_smg_techno",
240
- "name": "Tuh SMG",
241
- "price": 10,
242
- "salePrice": null,
243
- "flagText": "",
244
- "type": "item",
245
- "inStore": 0,
246
- "currency": 0,
247
- "isActive": true,
248
- "id": 20
249
- },
250
- {
251
- "itemIds": [
252
- 1174
253
- ],
254
- "sku": "item_hat_demon_wings",
255
- "name": "Demon Wings",
256
- "price": 5,
257
- "salePrice": null,
258
- "flagText": "",
259
- "type": "item",
260
- "inStore": 0,
261
- "currency": 0,
262
- "isActive": true,
263
- "id": 21
264
- },
265
- {
266
- "itemIds": [
267
- 3627
268
- ],
269
- "sku": "gun_gauge_techno",
270
- "name": "Badoosh Dozen Gauge",
271
- "price": 10,
272
- "salePrice": null,
273
- "flagText": "",
274
- "type": "item",
275
- "inStore": 0,
276
- "currency": 0,
277
- "isActive": true,
278
- "id": 22
279
- },
280
- {
281
- "itemIds": [
282
- 1184
283
- ],
284
- "sku": "item_hat_fallen_wing",
285
- "name": "Fallen Wings",
286
- "price": 5,
287
- "salePrice": null,
288
- "flagText": "",
289
- "type": "item",
290
- "inStore": 0,
291
- "currency": 0,
292
- "isActive": true,
293
- "id": 23
294
- },
295
- {
296
- "itemIds": [
297
- 3426
298
- ],
299
- "sku": "item_gun_csg1_techno",
300
- "name": "CSG1 Techno Catz",
301
- "price": 10,
302
- "salePrice": null,
303
- "flagText": "",
304
- "type": "item",
305
- "inStore": 0,
306
- "currency": 0,
307
- "isActive": true,
308
- "id": 24
309
- },
310
- {
311
- "itemIds": [
312
- 1185,
313
- 2204,
314
- 16011
315
- ],
316
- "sku": "1oOnkjL7",
317
- "name": "1 month membership",
318
- "price": 699,
319
- "salePrice": null,
320
- "flagText": "",
321
- "type": "subscription",
322
- "inStore": 0,
323
- "currency": 0,
324
- "isActive": true,
325
- "id": 25
326
- },
327
- {
328
- "itemIds": [
329
- 1185,
330
- 2204,
331
- 16011
332
- ],
333
- "sku": "K5JjxL1z",
334
- "name": "3 month membership",
335
- "price": 1499,
336
- "salePrice": null,
337
- "flagText": "",
338
- "type": "subscription",
339
- "inStore": 0,
340
- "currency": 0,
341
- "isActive": true,
342
- "id": 26
343
- },
344
- {
345
- "itemIds": [
346
- 1185,
347
- 2204,
348
- 16011
349
- ],
350
- "sku": "TymKKdoQ",
351
- "name": "12 month membership",
352
- "price": 4999,
353
- "salePrice": null,
354
- "flagText": "p_egg_shop_bestvalue",
355
- "type": "subscription",
356
- "inStore": 0,
357
- "currency": 0,
358
- "isActive": true,
359
- "id": 27
360
- },
361
- {
362
- "itemIds": [
363
- 1186
364
- ],
365
- "sku": "item_hat_chrome_wing",
366
- "name": "Chrome Wings",
367
- "price": 5,
368
- "salePrice": null,
369
- "flagText": "",
370
- "type": "item",
371
- "inStore": 0,
372
- "currency": 0,
373
- "isActive": true,
374
- "id": 29
375
- },
376
- {
377
- "itemIds": [
378
- 3126
379
- ],
380
- "sku": "gun_eggk47_techno",
381
- "name": "Eggk Poggers",
382
- "price": 10,
383
- "salePrice": null,
384
- "flagText": "",
385
- "type": "item",
386
- "inStore": 0,
387
- "currency": 0,
388
- "isActive": true,
389
- "id": 30
390
- },
391
- {
392
- "itemIds": [
393
- 1193
394
- ],
395
- "sku": "item_hat_steamWings",
396
- "name": "Steampunk Wings",
397
- "price": 5,
398
- "salePrice": null,
399
- "flagText": "",
400
- "type": "item",
401
- "inStore": 0,
402
- "currency": 0,
403
- "isActive": true,
404
- "id": 31
405
- },
406
- {
407
- "itemIds": [
408
- 3828
409
- ],
410
- "sku": "item_gun_rpeggTechno",
411
- "name": "RPEGGTechno",
412
- "price": 10,
413
- "salePrice": null,
414
- "flagText": "",
415
- "type": "item",
416
- "inStore": 0,
417
- "currency": 0,
418
- "isActive": true,
419
- "id": 32
420
- },
421
- {
422
- "itemIds": [
423
- 3029
424
- ],
425
- "sku": "item_gun_retro_9mm",
426
- "name": "Retro Skin Cluck9mm",
427
- "price": 5,
428
- "salePrice": null,
429
- "flagText": "",
430
- "type": "item",
431
- "inStore": 0,
432
- "currency": 0,
433
- "isActive": true,
434
- "id": 33
435
- },
436
- {
437
- "itemIds": [
438
- 1195
439
- ],
440
- "sku": "item_hat_pixel_wings",
441
- "name": "Angel Pixel Wings",
442
- "price": 5,
443
- "salePrice": null,
444
- "flagText": "",
445
- "type": "item",
446
- "inStore": 0,
447
- "currency": 0,
448
- "isActive": true,
449
- "id": 34
450
- },
451
- {
452
- "itemIds": [
453
- 16014
454
- ],
455
- "sku": "item_gre_skullnado",
456
- "name": "Skullnado",
457
- "price": 7,
458
- "salePrice": null,
459
- "flagText": "",
460
- "type": "item",
461
- "inStore": 0,
462
- "currency": 0,
463
- "isActive": true,
464
- "id": 35
465
- },
466
- {
467
- "itemIds": [
468
- 1202
469
- ],
470
- "sku": "item_hat_skull_wings",
471
- "name": "Skull Wings",
472
- "price": 5,
473
- "salePrice": null,
474
- "flagText": "",
475
- "type": "item",
476
- "inStore": 0,
477
- "currency": 0,
478
- "isActive": true,
479
- "id": 36
480
- },
481
- {
482
- "itemIds": [
483
- 4512
484
- ],
485
- "sku": "item_gun_aug_retro",
486
- "name": "Retro TriHard",
487
- "price": 5,
488
- "salePrice": null,
489
- "flagText": "",
490
- "type": "item",
491
- "inStore": 0,
492
- "currency": 0,
493
- "isActive": true,
494
- "id": 37
495
- },
496
- {
497
- "itemIds": [
498
- 1215
499
- ],
500
- "sku": "item_hat_robot_wings",
501
- "name": "Robot Pixel Wings",
502
- "price": 5,
503
- "salePrice": null,
504
- "flagText": "",
505
- "type": "item",
506
- "inStore": 0,
507
- "currency": 0,
508
- "isActive": true,
509
- "id": 38
510
- },
511
- {
512
- "itemIds": [
513
- 16019
514
- ],
515
- "sku": "item_gre_unicorn",
516
- "name": "Unicorn Grenade",
517
- "price": 5,
518
- "salePrice": null,
519
- "flagText": "",
520
- "type": "item",
521
- "inStore": 0,
522
- "currency": 0,
523
- "isActive": true,
524
- "id": 39
525
- },
526
- {
527
- "itemIds": [
528
- 1222
529
- ],
530
- "sku": "item_hat_uni_wing",
531
- "name": "Unicorn Wings",
532
- "price": 5,
533
- "salePrice": null,
534
- "flagText": "",
535
- "type": "item",
536
- "inStore": 0,
537
- "currency": 0,
538
- "isActive": true,
539
- "id": 40
540
- },
541
- {
542
- "itemIds": [
543
- 4229
544
- ],
545
- "sku": "item_gun_m24_retro",
546
- "name": "M2DZ Retro Skin",
547
- "price": 5,
548
- "salePrice": null,
549
- "flagText": "",
550
- "type": "item",
551
- "inStore": 0,
552
- "currency": 0,
553
- "isActive": true,
554
- "id": 41
555
- },
556
- {
557
- "itemIds": [
558
- 1226
559
- ],
560
- "sku": "item_hat_fairy_wings",
561
- "name": "Fairy Pixel Wings",
562
- "price": 5,
563
- "salePrice": null,
564
- "flagText": "",
565
- "type": "item",
566
- "inStore": 0,
567
- "currency": 0,
568
- "isActive": true,
569
- "id": 42
570
- },
571
- {
572
- "itemIds": [
573
- 16023
574
- ],
575
- "sku": "item_gre_toilet_papr",
576
- "name": "Grenade Toilet Paper",
577
- "price": 5,
578
- "salePrice": null,
579
- "flagText": "",
580
- "type": "item",
581
- "inStore": 0,
582
- "currency": 0,
583
- "isActive": true,
584
- "id": 43
585
- },
586
- {
587
- "itemIds": [
588
- 3431
589
- ],
590
- "sku": "item_gun_csg1_retro",
591
- "name": "CSG1 Retro",
592
- "price": 5,
593
- "salePrice": null,
594
- "flagText": "",
595
- "type": "item",
596
- "inStore": 0,
597
- "currency": 0,
598
- "isActive": true,
599
- "id": 45
600
- },
601
- {
602
- "itemIds": [
603
- 1235
604
- ],
605
- "sku": "item_hat_pixel_fire",
606
- "name": "Fire Pixel Wings",
607
- "price": 5,
608
- "salePrice": null,
609
- "flagText": "",
610
- "type": "item",
611
- "inStore": 0,
612
- "currency": 0,
613
- "isActive": true,
614
- "id": 46
615
- },
616
- {
617
- "itemIds": [
618
- 16027
619
- ],
620
- "sku": "item_gre_glitterbomb",
621
- "name": "Grenade Glitterbomb",
622
- "price": 5,
623
- "salePrice": null,
624
- "flagText": "",
625
- "type": "item",
626
- "inStore": 0,
627
- "currency": 0,
628
- "isActive": true,
629
- "id": 47
630
- },
631
- {
632
- "itemIds": [
633
- 1241
634
- ],
635
- "sku": "item_hat_glitch_wing",
636
- "name": "Glitch Wings",
637
- "price": 5,
638
- "salePrice": null,
639
- "flagText": "",
640
- "type": "item",
641
- "inStore": 0,
642
- "currency": 0,
643
- "isActive": true,
644
- "id": 48
645
- },
646
- {
647
- "itemIds": [
648
- 3634
649
- ],
650
- "sku": "item_gun_crack_retro",
651
- "name": "Scrambler Retro",
652
- "price": 5,
653
- "salePrice": null,
654
- "flagText": "",
655
- "type": "item",
656
- "inStore": 0,
657
- "currency": 0,
658
- "isActive": true,
659
- "id": 49
660
- },
661
- {
662
- "itemIds": [
663
- 1245
664
- ],
665
- "sku": "item_hat_moth_wings",
666
- "name": "Moth Pixel Wings",
667
- "price": 5,
668
- "salePrice": null,
669
- "flagText": "",
670
- "type": "item",
671
- "inStore": 0,
672
- "currency": 0,
673
- "isActive": true,
674
- "id": 50
675
- },
676
- {
677
- "itemIds": [
678
- 16032
679
- ],
680
- "sku": "item_gre_thermal",
681
- "name": "Grenade Thermal Detonator",
682
- "price": 5,
683
- "salePrice": null,
684
- "flagText": "",
685
- "type": "item",
686
- "inStore": 0,
687
- "currency": 0,
688
- "isActive": true,
689
- "id": 51
690
- },
691
- {
692
- "itemIds": [
693
- 1248
694
- ],
695
- "sku": "hat_thermal_wings",
696
- "name": "Thermal Wings",
697
- "price": 5,
698
- "salePrice": null,
699
- "flagText": "",
700
- "type": "item",
701
- "inStore": 0,
702
- "currency": 0,
703
- "isActive": true,
704
- "id": 52
705
- },
706
- {
707
- "itemIds": [
708
- 4032
709
- ],
710
- "sku": "item_gun_smg_retro",
711
- "name": "SMEGG Retro",
712
- "price": 5,
713
- "salePrice": null,
714
- "flagText": "",
715
- "type": "item",
716
- "inStore": 0,
717
- "currency": 0,
718
- "isActive": true,
719
- "id": 53
720
- },
721
- {
722
- "itemIds": [
723
- 1269
724
- ],
725
- "sku": "item_hat_pixel_butt",
726
- "name": "Pixel Butterfly Wings",
727
- "price": 5,
728
- "salePrice": null,
729
- "flagText": "",
730
- "type": "item",
731
- "inStore": 0,
732
- "currency": 0,
733
- "isActive": true,
734
- "id": 54
735
- },
736
- {
737
- "itemIds": [
738
- 1272
739
- ],
740
- "sku": "item_hat_pixel_bird",
741
- "name": "Pixel Bird Wings",
742
- "price": 5,
743
- "salePrice": null,
744
- "flagText": "",
745
- "type": "item",
746
- "inStore": 0,
747
- "currency": 0,
748
- "isActive": true,
749
- "id": 55
750
- },
751
- {
752
- "itemIds": [
753
- 16036
754
- ],
755
- "sku": "item_gre_supernova",
756
- "name": "Grenade Supernova",
757
- "price": 5,
758
- "salePrice": null,
759
- "flagText": "",
760
- "type": "item",
761
- "inStore": 0,
762
- "currency": 0,
763
- "isActive": true,
764
- "id": 56
765
- },
766
- {
767
- "itemIds": [
768
- 16038
769
- ],
770
- "sku": "item_gre_octopus",
771
- "name": "Grenade Octopus",
772
- "price": 5,
773
- "salePrice": null,
774
- "flagText": "",
775
- "type": "item",
776
- "inStore": 0,
777
- "currency": 0,
778
- "isActive": true,
779
- "id": 57
780
- },
781
- {
782
- "itemIds": [
783
- 3835
784
- ],
785
- "sku": "item_gun_rpegg_retro",
786
- "name": "RPEGG Retro",
787
- "price": 5,
788
- "salePrice": null,
789
- "flagText": "",
790
- "type": "item",
791
- "inStore": 0,
792
- "currency": 0,
793
- "isActive": true,
794
- "id": 58
795
- },
796
- {
797
- "itemIds": [
798
- 1212
799
- ],
800
- "sku": "item_hat_dog_cap",
801
- "name": "Dog Cap",
802
- "price": 2,
803
- "salePrice": null,
804
- "flagText": "",
805
- "type": "item",
806
- "inStore": 0,
807
- "currency": 0,
808
- "isActive": true,
809
- "id": 59
810
- },
811
- {
812
- "itemIds": [
813
- 1044
814
- ],
815
- "sku": "item_hat_egg_glasses",
816
- "name": "Egg Glasses",
817
- "price": 2,
818
- "salePrice": null,
819
- "flagText": "",
820
- "type": "item",
821
- "inStore": 0,
822
- "currency": 0,
823
- "isActive": true,
824
- "id": 60
825
- },
826
- {
827
- "itemIds": [
828
- 1288
829
- ],
830
- "sku": "item_hat_luckywings",
831
- "name": "Lucky Wings",
832
- "price": 5,
833
- "salePrice": null,
834
- "flagText": "",
835
- "type": "item",
836
- "inStore": 0,
837
- "currency": 0,
838
- "isActive": true,
839
- "id": 61
840
- },
841
- {
842
- "itemIds": [
843
- 3637
844
- ],
845
- "sku": "item_gun_bros",
846
- "name": "Dozen Gauge Bros",
847
- "price": 5,
848
- "salePrice": null,
849
- "flagText": "",
850
- "type": "item",
851
- "inStore": 0,
852
- "currency": 0,
853
- "isActive": true,
854
- "id": 63
855
- },
856
- {
857
- "itemIds": [
858
- 4528
859
- ],
860
- "sku": "item_gun_valk_aug",
861
- "name": "Trihard Valkyrie",
862
- "price": 5,
863
- "salePrice": null,
864
- "flagText": "",
865
- "type": "item",
866
- "inStore": 0,
867
- "currency": 0,
868
- "isActive": true,
869
- "id": 64
870
- },
871
- {
872
- "itemIds": [
873
- 16041
874
- ],
875
- "sku": "item_gre_diablo",
876
- "name": "Grenade Diablo",
877
- "price": 5,
878
- "salePrice": null,
879
- "flagText": "",
880
- "type": "item",
881
- "inStore": 0,
882
- "currency": 0,
883
- "isActive": true,
884
- "id": 65
885
- },
886
- {
887
- "itemIds": [
888
- 3134
889
- ],
890
- "sku": "item_gun_ak_retro",
891
- "name": "Eggk47 Retro",
892
- "price": 5,
893
- "salePrice": null,
894
- "flagText": "",
895
- "type": "item",
896
- "inStore": 0,
897
- "currency": 0,
898
- "isActive": true,
899
- "id": 66
900
- },
901
- {
902
- "itemIds": [
903
- 3136
904
- ],
905
- "sku": "item_gun_ak_valkyrie",
906
- "name": "Eggk47 Valkyrie",
907
- "price": 5,
908
- "salePrice": null,
909
- "flagText": "",
910
- "type": "item",
911
- "inStore": 0,
912
- "currency": 0,
913
- "isActive": true,
914
- "id": 67
915
- },
916
- {
917
- "itemIds": [
918
- 1312
919
- ],
920
- "sku": "item_hat_dinowings",
921
- "name": "Dino Pterodactyl Win",
922
- "price": 5,
923
- "salePrice": null,
924
- "flagText": "",
925
- "type": "item",
926
- "inStore": 0,
927
- "currency": 0,
928
- "isActive": true,
929
- "id": 68
930
- },
931
- {
932
- "itemIds": [
933
- 1316
934
- ],
935
- "sku": "item_hat_airplane",
936
- "name": "Airplane Wings",
937
- "price": 5,
938
- "salePrice": null,
939
- "flagText": "",
940
- "type": "item",
941
- "inStore": 0,
942
- "currency": 0,
943
- "isActive": true,
944
- "id": 69
945
- },
946
- {
947
- "itemIds": [
948
- 16044
949
- ],
950
- "sku": "item_gre_bumble",
951
- "name": "Grenade Bumblebee",
952
- "price": 5,
953
- "salePrice": null,
954
- "flagText": "",
955
- "type": "item",
956
- "inStore": 0,
957
- "currency": 0,
958
- "isActive": true,
959
- "id": 71
960
- },
961
- {
962
- "itemIds": [
963
- 3642
964
- ],
965
- "sku": "item_gauge_valk",
966
- "name": "Valkyrie Scrambler",
967
- "price": 3,
968
- "salePrice": null,
969
- "flagText": "",
970
- "type": "item",
971
- "inStore": 0,
972
- "currency": 0,
973
- "isActive": true,
974
- "id": 72
975
- },
976
- {
977
- "itemIds": [
978
- 16046
979
- ],
980
- "sku": "item_gre_football",
981
- "name": "Grenade Football",
982
- "price": 5,
983
- "salePrice": null,
984
- "flagText": "",
985
- "type": "item",
986
- "inStore": 0,
987
- "currency": 0,
988
- "isActive": true,
989
- "id": 73
990
- },
991
- {
992
- "itemIds": [
993
- 16048
994
- ],
995
- "sku": "item_gre_valk",
996
- "name": "Grenade Valkyrie",
997
- "price": 5,
998
- "salePrice": null,
999
- "flagText": "",
1000
- "type": "item",
1001
- "inStore": 0,
1002
- "currency": 0,
1003
- "isActive": true,
1004
- "id": 74
1005
- },
1006
- {
1007
- "itemIds": [
1008
- 3439
1009
- ],
1010
- "sku": "item_csg1_rubchick",
1011
- "name": "CSG1 Rubber Chicken",
1012
- "price": 5,
1013
- "salePrice": null,
1014
- "flagText": "",
1015
- "type": "item",
1016
- "inStore": 0,
1017
- "currency": 0,
1018
- "isActive": true,
1019
- "id": 75
1020
- },
1021
- {
1022
- "itemIds": [
1023
- 16049
1024
- ],
1025
- "sku": "item_gre_milk",
1026
- "name": "Grenade Milk",
1027
- "price": 5,
1028
- "salePrice": null,
1029
- "flagText": "",
1030
- "type": "item",
1031
- "inStore": 0,
1032
- "currency": 0,
1033
- "isActive": true,
1034
- "id": 76
1035
- },
1036
- {
1037
- "itemIds": [
1038
- 4240
1039
- ],
1040
- "sku": "item_gun_m24_scav",
1041
- "name": "Crackshot Scavenger",
1042
- "price": 5,
1043
- "salePrice": null,
1044
- "flagText": "",
1045
- "type": "item",
1046
- "inStore": 0,
1047
- "currency": 0,
1048
- "isActive": true,
1049
- "id": 77
1050
- },
1051
- {
1052
- "itemIds": [
1053
- 3045
1054
- ],
1055
- "sku": "item_gun_9mm_valk",
1056
- "name": "Cluck 9mm Valkyrie",
1057
- "price": 5,
1058
- "salePrice": null,
1059
- "flagText": "",
1060
- "type": "item",
1061
- "inStore": 0,
1062
- "currency": 0,
1063
- "isActive": true,
1064
- "id": 78
1065
- },
1066
- {
1067
- "itemIds": [
1068
- 1341
1069
- ],
1070
- "sku": "item_hat_rainbow",
1071
- "name": "Rainbow Wings",
1072
- "price": 5,
1073
- "salePrice": null,
1074
- "flagText": "",
1075
- "type": "item",
1076
- "inStore": 0,
1077
- "currency": 0,
1078
- "isActive": true,
1079
- "id": 79
1080
- },
1081
- {
1082
- "itemIds": [
1083
- 3441
1084
- ],
1085
- "sku": "item_range_valk",
1086
- "name": "Free-Ranger Valkyrie",
1087
- "price": 5,
1088
- "salePrice": null,
1089
- "flagText": "",
1090
- "type": "item",
1091
- "inStore": 0,
1092
- "currency": 0,
1093
- "isActive": true,
1094
- "id": 80
1095
- },
1096
- {
1097
- "itemIds": [
1098
- 1349
1099
- ],
1100
- "sku": "item_hat_teggtris",
1101
- "name": "Teggtris wings",
1102
- "price": 5,
1103
- "salePrice": null,
1104
- "flagText": "",
1105
- "type": "item",
1106
- "inStore": 0,
1107
- "currency": 0,
1108
- "isActive": true,
1109
- "id": 81
1110
- },
1111
- {
1112
- "itemIds": [
1113
- 16054
1114
- ],
1115
- "sku": "item_gre_blood",
1116
- "name": "Grenade Blood",
1117
- "price": 5,
1118
- "salePrice": null,
1119
- "flagText": "",
1120
- "type": "item",
1121
- "inStore": 0,
1122
- "currency": 0,
1123
- "isActive": true,
1124
- "id": 82
1125
- },
1126
- {
1127
- "itemIds": [
1128
- 1356
1129
- ],
1130
- "sku": "item_hat_bloodwing",
1131
- "name": "Blood Wings",
1132
- "price": 5,
1133
- "salePrice": null,
1134
- "flagText": "",
1135
- "type": "item",
1136
- "inStore": 0,
1137
- "currency": 0,
1138
- "isActive": true,
1139
- "id": 83
1140
- },
1141
- {
1142
- "itemIds": [
1143
- 3843
1144
- ],
1145
- "sku": "item_gun_rpegg_valk",
1146
- "name": "RPEGG Valkyrie",
1147
- "price": 5,
1148
- "salePrice": null,
1149
- "flagText": "",
1150
- "type": "item",
1151
- "inStore": 0,
1152
- "currency": 0,
1153
- "isActive": true,
1154
- "id": 84
1155
- },
1156
- {
1157
- "itemIds": [
1158
- 4040
1159
- ],
1160
- "sku": "item_gun_smg_turk",
1161
- "name": "Turkey-Supreme Whipp",
1162
- "price": 5,
1163
- "salePrice": null,
1164
- "flagText": "",
1165
- "type": "item",
1166
- "inStore": 0,
1167
- "currency": 0,
1168
- "isActive": true,
1169
- "id": 85
1170
- },
1171
- {
1172
- "itemIds": [
1173
- 4242
1174
- ],
1175
- "sku": "item_gun_m24_valk",
1176
- "name": "Crackshot Valkyrie",
1177
- "price": 5,
1178
- "salePrice": null,
1179
- "flagText": "",
1180
- "type": "item",
1181
- "inStore": 0,
1182
- "currency": 0,
1183
- "isActive": true,
1184
- "id": 86
1185
- },
1186
- {
1187
- "itemIds": [
1188
- 1363
1189
- ],
1190
- "sku": "item_hat_fall",
1191
- "name": "Fall Wings",
1192
- "price": 5,
1193
- "salePrice": null,
1194
- "flagText": "",
1195
- "type": "item",
1196
- "inStore": 0,
1197
- "currency": 0,
1198
- "isActive": true,
1199
- "id": 87
1200
- },
1201
- {
1202
- "itemIds": [
1203
- 3844
1204
- ],
1205
- "sku": "item_rpegg_christ",
1206
- "name": "RPEGG Santa Boot",
1207
- "price": 5,
1208
- "salePrice": null,
1209
- "flagText": "",
1210
- "type": "item",
1211
- "inStore": 0,
1212
- "currency": 0,
1213
- "isActive": true,
1214
- "id": 88
1215
- },
1216
- {
1217
- "itemIds": [
1218
- 1369
1219
- ],
1220
- "sku": "item_holy_wings",
1221
- "name": "Holly Wings",
1222
- "price": 5,
1223
- "salePrice": null,
1224
- "flagText": "",
1225
- "type": "item",
1226
- "inStore": 0,
1227
- "currency": 0,
1228
- "isActive": true,
1229
- "id": 89
1230
- },
1231
- {
1232
- "itemIds": [
1233
- 4042
1234
- ],
1235
- "sku": "item_gun_smg_valk",
1236
- "name": "Whipper Valkyrie",
1237
- "price": 5,
1238
- "salePrice": null,
1239
- "flagText": "",
1240
- "type": "item",
1241
- "inStore": 0,
1242
- "currency": 0,
1243
- "isActive": true,
1244
- "id": 90
1245
- },
1246
- {
1247
- "itemIds": [
1248
- 3443
1249
- ],
1250
- "sku": "item_csg1_fusion",
1251
- "name": "Free-Ranger Fusion",
1252
- "price": 5,
1253
- "salePrice": null,
1254
- "flagText": "",
1255
- "type": "item",
1256
- "inStore": 0,
1257
- "currency": 0,
1258
- "isActive": true,
1259
- "id": 92
1260
- },
1261
- {
1262
- "itemIds": [
1263
- 1372
1264
- ],
1265
- "sku": "item_hat_soundwave",
1266
- "name": "Sound Wave Wings",
1267
- "price": 5,
1268
- "salePrice": null,
1269
- "flagText": "",
1270
- "type": "item",
1271
- "inStore": 0,
1272
- "currency": 0,
1273
- "isActive": true,
1274
- "id": 93
1275
- },
1276
- {
1277
- "itemIds": [
1278
- 3650
1279
- ],
1280
- "sku": "item_gauge_octopus",
1281
- "name": "Octopus Scrambler",
1282
- "price": 5,
1283
- "salePrice": null,
1284
- "flagText": "",
1285
- "type": "item",
1286
- "inStore": 0,
1287
- "currency": 0,
1288
- "isActive": true,
1289
- "id": 94
1290
- },
1291
- {
1292
- "itemIds": [
1293
- 3050
1294
- ],
1295
- "sku": "item_9mm_cloud",
1296
- "name": "Cluck 9mm Clouds",
1297
- "price": 5,
1298
- "salePrice": null,
1299
- "flagText": "",
1300
- "type": "item",
1301
- "inStore": 0,
1302
- "currency": 0,
1303
- "isActive": true,
1304
- "id": 95
1305
- },
1306
- {
1307
- "itemIds": [
1308
- 3142
1309
- ],
1310
- "sku": "item_ak47_fusion",
1311
- "name": "Eggk47 Fusion",
1312
- "price": 5,
1313
- "salePrice": null,
1314
- "flagText": "",
1315
- "type": "item",
1316
- "inStore": 0,
1317
- "currency": 0,
1318
- "isActive": true,
1319
- "id": 96
1320
- },
1321
- {
1322
- "itemIds": [
1323
- 4044
1324
- ],
1325
- "sku": "item_smg_fusion",
1326
- "name": "Whipper Fusion",
1327
- "price": 3,
1328
- "salePrice": null,
1329
- "flagText": "",
1330
- "type": "item",
1331
- "inStore": 0,
1332
- "currency": 0,
1333
- "isActive": true,
1334
- "id": 99
1335
- },
1336
- {
1337
- "itemIds": [
1338
- 1394
1339
- ],
1340
- "sku": "item_hat_hooped",
1341
- "name": "Hooped",
1342
- "price": 5,
1343
- "salePrice": null,
1344
- "flagText": "",
1345
- "type": "item",
1346
- "inStore": 0,
1347
- "currency": 0,
1348
- "isActive": true,
1349
- "id": 100
1350
- },
1351
- {
1352
- "itemIds": [
1353
- 3654
1354
- ],
1355
- "sku": "item_gauge_monster",
1356
- "name": "Beholder Scrambler",
1357
- "price": 5,
1358
- "salePrice": null,
1359
- "flagText": "",
1360
- "type": "item",
1361
- "inStore": 0,
1362
- "currency": 0,
1363
- "isActive": true,
1364
- "id": 101
1365
- },
1366
- {
1367
- "itemIds": [
1368
- 1400
1369
- ],
1370
- "sku": "item_qwings",
1371
- "name": "Question Block Wings",
1372
- "price": 5,
1373
- "salePrice": null,
1374
- "flagText": "",
1375
- "type": "item",
1376
- "inStore": 0,
1377
- "currency": 0,
1378
- "isActive": true,
1379
- "id": 102
1380
- },
1381
- {
1382
- "itemIds": [
1383
- 3054
1384
- ],
1385
- "sku": "item_9mm_fusion",
1386
- "name": "Cluck 9mm Fusion",
1387
- "price": 5,
1388
- "salePrice": null,
1389
- "flagText": "",
1390
- "type": "item",
1391
- "inStore": 0,
1392
- "currency": 0,
1393
- "isActive": true,
1394
- "id": 103
1395
- },
1396
- {
1397
- "itemIds": [
1398
- 15023
1399
- ],
1400
- "sku": "item_melee_stone",
1401
- "name": "Stone Hammer Melee",
1402
- "price": 5,
1403
- "salePrice": null,
1404
- "flagText": "",
1405
- "type": "item",
1406
- "inStore": 0,
1407
- "currency": 0,
1408
- "isActive": true,
1409
- "id": 104
1410
- },
1411
- {
1412
- "itemIds": [
1413
- 3445
1414
- ],
1415
- "sku": "item_csg1_shellpreme",
1416
- "name": "Free-Ranger Shellpre",
1417
- "price": 5,
1418
- "salePrice": null,
1419
- "flagText": "",
1420
- "type": "item",
1421
- "inStore": 0,
1422
- "currency": 0,
1423
- "isActive": true,
1424
- "id": 105
1425
- },
1426
- {
1427
- "itemIds": [
1428
- 3655
1429
- ],
1430
- "sku": "item_gauge_fusion",
1431
- "name": "Fusion Scrambler",
1432
- "price": 5,
1433
- "salePrice": null,
1434
- "flagText": "",
1435
- "type": "item",
1436
- "inStore": 0,
1437
- "currency": 0,
1438
- "isActive": true,
1439
- "id": 106
1440
- },
1441
- {
1442
- "itemIds": [
1443
- 3055
1444
- ],
1445
- "sku": "item_9mm_camera",
1446
- "name": "Cluck 9mm Camera",
1447
- "price": 5,
1448
- "salePrice": null,
1449
- "flagText": "",
1450
- "type": "item",
1451
- "inStore": 0,
1452
- "currency": 0,
1453
- "isActive": true,
1454
- "id": 107
1455
- },
1456
- {
1457
- "itemIds": [
1458
- 1417
1459
- ],
1460
- "sku": "item_hat_surf",
1461
- "name": "Octopus Surfboard",
1462
- "price": 5,
1463
- "salePrice": null,
1464
- "flagText": "",
1465
- "type": "item",
1466
- "inStore": 0,
1467
- "currency": 0,
1468
- "isActive": true,
1469
- "id": 108
1470
- },
1471
- {
1472
- "itemIds": [
1473
- 15013
1474
- ],
1475
- "sku": "item_melee_valk",
1476
- "name": "Melee Valkyrie",
1477
- "price": 6,
1478
- "salePrice": null,
1479
- "flagText": "",
1480
- "type": "item",
1481
- "inStore": 0,
1482
- "currency": 0,
1483
- "isActive": true,
1484
- "id": 109
1485
- },
1486
- {
1487
- "itemIds": [
1488
- 15030
1489
- ],
1490
- "sku": "item_melee_fusion",
1491
- "name": "The Fusion Melee",
1492
- "price": 5,
1493
- "salePrice": null,
1494
- "flagText": "",
1495
- "type": "item",
1496
- "inStore": 0,
1497
- "currency": 0,
1498
- "isActive": true,
1499
- "id": 110
1500
- },
1501
- {
1502
- "itemIds": [
1503
- 1423
1504
- ],
1505
- "sku": "item_hat_scales",
1506
- "name": "Scales of Justice",
1507
- "price": 5,
1508
- "salePrice": null,
1509
- "flagText": "",
1510
- "type": "item",
1511
- "inStore": 0,
1512
- "currency": 0,
1513
- "isActive": true,
1514
- "id": 111
1515
- },
1516
- {
1517
- "itemIds": [
1518
- 4540
1519
- ],
1520
- "sku": "item_aug_fusion",
1521
- "name": "Fusion Trihard",
1522
- "price": 5,
1523
- "salePrice": null,
1524
- "flagText": "",
1525
- "type": "item",
1526
- "inStore": 0,
1527
- "currency": 0,
1528
- "isActive": true,
1529
- "id": 113
1530
- },
1531
- {
1532
- "itemIds": [
1533
- 16064
1534
- ],
1535
- "sku": "item_gre_timebomb",
1536
- "name": "Timebomb Grenade",
1537
- "price": 5,
1538
- "salePrice": null,
1539
- "flagText": "",
1540
- "type": "item",
1541
- "inStore": 0,
1542
- "currency": 0,
1543
- "isActive": true,
1544
- "id": 115
1545
- },
1546
- {
1547
- "itemIds": [
1548
- 15037
1549
- ],
1550
- "sku": "item_melee_cat",
1551
- "name": "Harrison Cat Melee",
1552
- "price": 5,
1553
- "salePrice": null,
1554
- "flagText": "",
1555
- "type": "item",
1556
- "inStore": 0,
1557
- "currency": 0,
1558
- "isActive": true,
1559
- "id": 120
1560
- },
1561
- {
1562
- "itemIds": [
1563
- 3059
1564
- ],
1565
- "sku": "item_9mm_mega",
1566
- "name": "Megaphone Cluck 9mm",
1567
- "price": 5,
1568
- "salePrice": null,
1569
- "flagText": "",
1570
- "type": "item",
1571
- "inStore": 0,
1572
- "currency": 0,
1573
- "isActive": true,
1574
- "id": 121
1575
- },
1576
- {
1577
- "itemIds": [
1578
- 4248
1579
- ],
1580
- "sku": "item_m24_fusion",
1581
- "name": "The Fusion Crackshot",
1582
- "price": 6,
1583
- "salePrice": null,
1584
- "flagText": "",
1585
- "type": "item",
1586
- "inStore": 0,
1587
- "currency": 0,
1588
- "isActive": true,
1589
- "id": 124
1590
- },
1591
- {
1592
- "itemIds": [
1593
- 3951
1594
- ],
1595
- "sku": "item_rpegg_fusion",
1596
- "name": "Fusion RPEGG",
1597
- "price": 5,
1598
- "salePrice": null,
1599
- "flagText": "",
1600
- "type": "item",
1601
- "inStore": 0,
1602
- "currency": 0,
1603
- "isActive": true,
1604
- "id": 126
1605
- },
1606
- {
1607
- "itemIds": [
1608
- 3952
1609
- ],
1610
- "sku": "item_rpegg_skele",
1611
- "name": "Skellington RPEGG",
1612
- "price": 5,
1613
- "salePrice": null,
1614
- "flagText": "",
1615
- "type": "item",
1616
- "inStore": 0,
1617
- "currency": 0,
1618
- "isActive": true,
1619
- "id": 128
1620
- },
1621
- {
1622
- "itemIds": [
1623
- 3149
1624
- ],
1625
- "sku": "item_ak_infernal",
1626
- "name": "Infernal Eggk47",
1627
- "price": 4,
1628
- "salePrice": null,
1629
- "flagText": "",
1630
- "type": "item",
1631
- "inStore": 0,
1632
- "currency": 0,
1633
- "isActive": true,
1634
- "id": 129
1635
- },
1636
- {
1637
- "itemIds": [
1638
- 15047
1639
- ],
1640
- "sku": "item_melee_turkcar",
1641
- "name": "The Turkey Carver",
1642
- "price": 5,
1643
- "salePrice": null,
1644
- "flagText": "",
1645
- "type": "item",
1646
- "inStore": 0,
1647
- "currency": 0,
1648
- "isActive": true,
1649
- "id": 134
1650
- },
1651
- {
1652
- "itemIds": [
1653
- 1470
1654
- ],
1655
- "sku": "item_hat_owl",
1656
- "name": "Snow Owl Wings",
1657
- "price": 5,
1658
- "salePrice": null,
1659
- "flagText": "",
1660
- "type": "item",
1661
- "inStore": 0,
1662
- "currency": 0,
1663
- "isActive": true,
1664
- "id": 136
1665
- },
1666
- {
1667
- "itemIds": [
1668
- 4253
1669
- ],
1670
- "sku": "item_m24_infernal",
1671
- "name": "Infernal Crackshot",
1672
- "price": 5,
1673
- "salePrice": null,
1674
- "flagText": "",
1675
- "type": "item",
1676
- "inStore": 0,
1677
- "currency": 0,
1678
- "isActive": true,
1679
- "id": 138
1680
- },
1681
- {
1682
- "itemIds": [
1683
- 3455
1684
- ],
1685
- "sku": "item_csg1_infernal",
1686
- "name": "Infernal CSG1",
1687
- "price": 5,
1688
- "salePrice": null,
1689
- "flagText": "",
1690
- "type": "item",
1691
- "inStore": 0,
1692
- "currency": 0,
1693
- "isActive": true,
1694
- "id": 140
1695
- },
1696
- {
1697
- "itemIds": [
1698
- 3662
1699
- ],
1700
- "sku": "item_gauge_cloud",
1701
- "name": "Cloudkicker Scramble",
1702
- "price": 5,
1703
- "salePrice": null,
1704
- "flagText": "",
1705
- "type": "item",
1706
- "inStore": 0,
1707
- "currency": 0,
1708
- "isActive": true,
1709
- "id": 144
1710
- },
1711
- {
1712
- "itemIds": [
1713
- 16074
1714
- ],
1715
- "sku": "item_gre_fusion",
1716
- "name": "Fusion Grenade",
1717
- "price": 5,
1718
- "salePrice": null,
1719
- "flagText": "",
1720
- "type": "item",
1721
- "inStore": 0,
1722
- "currency": 0,
1723
- "isActive": true,
1724
- "id": 146
1725
- },
1726
- {
1727
- "itemIds": [
1728
- 3663
1729
- ],
1730
- "sku": "item_gauge_irish",
1731
- "name": "Irish Scrambler",
1732
- "price": 5,
1733
- "salePrice": null,
1734
- "flagText": "",
1735
- "type": "item",
1736
- "inStore": 0,
1737
- "currency": 0,
1738
- "isActive": true,
1739
- "id": 148
1740
- },
1741
- {
1742
- "itemIds": [
1743
- 3058
1744
- ],
1745
- "sku": "item_9mm_infernal",
1746
- "name": "Infernal Cluck 9mm",
1747
- "price": 4,
1748
- "salePrice": null,
1749
- "flagText": "",
1750
- "type": "item",
1751
- "inStore": 0,
1752
- "currency": 0,
1753
- "isActive": true,
1754
- "id": 150
1755
- },
1756
- {
1757
- "itemIds": [
1758
- 3154
1759
- ],
1760
- "sku": "item_ak_choc",
1761
- "name": "gun_eggk47_Chocolate",
1762
- "price": 5,
1763
- "salePrice": null,
1764
- "flagText": "",
1765
- "type": "item",
1766
- "inStore": 0,
1767
- "currency": 0,
1768
- "isActive": true,
1769
- "id": 151
1770
- },
1771
- {
1772
- "itemIds": [
1773
- 4256
1774
- ],
1775
- "sku": "item_m24_cyborg",
1776
- "name": "Cyborg Crackshot",
1777
- "price": 5,
1778
- "salePrice": null,
1779
- "flagText": "",
1780
- "type": "item",
1781
- "inStore": 0,
1782
- "currency": 0,
1783
- "isActive": true,
1784
- "id": 152
1785
- },
1786
- {
1787
- "itemIds": [
1788
- 4550
1789
- ],
1790
- "sku": "item_aug_infernal",
1791
- "name": "Infernal Tri-hard",
1792
- "price": 3,
1793
- "salePrice": null,
1794
- "flagText": "",
1795
- "type": "item",
1796
- "inStore": 0,
1797
- "currency": 0,
1798
- "isActive": true,
1799
- "id": 155
1800
- },
1801
- {
1802
- "itemIds": [
1803
- 4054
1804
- ],
1805
- "sku": "item_smg_infernal",
1806
- "name": "Infernal SMG",
1807
- "price": 5,
1808
- "salePrice": null,
1809
- "flagText": "",
1810
- "type": "item",
1811
- "inStore": 0,
1812
- "currency": 0,
1813
- "isActive": true,
1814
- "id": 159
1815
- },
1816
- {
1817
- "itemIds": [
1818
- 15063
1819
- ],
1820
- "sku": "item_melee_infernal",
1821
- "name": "Infernal Melee",
1822
- "price": 5,
1823
- "salePrice": null,
1824
- "flagText": "",
1825
- "type": "item",
1826
- "inStore": 0,
1827
- "currency": 0,
1828
- "isActive": true,
1829
- "id": 163
1830
- },
1831
- {
1832
- "itemIds": [
1833
- 3665
1834
- ],
1835
- "sku": "item_gauge_infernal",
1836
- "name": "Infernal Scrambler",
1837
- "price": 4,
1838
- "salePrice": null,
1839
- "flagText": "",
1840
- "type": "item",
1841
- "inStore": 0,
1842
- "currency": 0,
1843
- "isActive": true,
1844
- "id": 166
1845
- },
1846
- {
1847
- "itemIds": [
1848
- 3958
1849
- ],
1850
- "sku": "item_rpegg_infernal",
1851
- "name": "Infernal RPEGG",
1852
- "price": 3,
1853
- "salePrice": null,
1854
- "flagText": "",
1855
- "type": "item",
1856
- "inStore": 0,
1857
- "currency": 0,
1858
- "isActive": true,
1859
- "id": 172
1860
- },
1861
- {
1862
- "itemIds": [
1863
- 16082
1864
- ],
1865
- "sku": "item_gre_infernal",
1866
- "name": "Infernal Grenade",
1867
- "price": 5,
1868
- "salePrice": null,
1869
- "flagText": "",
1870
- "type": "item",
1871
- "inStore": 0,
1872
- "currency": 0,
1873
- "isActive": true,
1874
- "id": 176
1875
- },
1876
- {
1877
- "itemIds": [
1878
- 15072
1879
- ],
1880
- "sku": "item_melee_pan",
1881
- "name": "Frying Pan Melee",
1882
- "price": 1,
1883
- "salePrice": null,
1884
- "flagText": "",
1885
- "type": "item",
1886
- "inStore": 0,
1887
- "currency": 0,
1888
- "isActive": true,
1889
- "id": 180
1890
- },
1891
- {
1892
- "itemIds": [
1893
- 15074
1894
- ],
1895
- "sku": "item_melee_panegg",
1896
- "name": "Let Them Cook Melee",
1897
- "price": 2,
1898
- "salePrice": null,
1899
- "flagText": "",
1900
- "type": "item",
1901
- "inStore": 0,
1902
- "currency": 0,
1903
- "isActive": true,
1904
- "id": 181
1905
- },
1906
- {
1907
- "itemIds": [
1908
- 1565
1909
- ],
1910
- "sku": "item_hat_sleigh",
1911
- "name": "Santa's Sleigh",
1912
- "price": 5,
1913
- "salePrice": null,
1914
- "flagText": "",
1915
- "type": "item",
1916
- "inStore": 0,
1917
- "currency": 0,
1918
- "isActive": true,
1919
- "id": 185
1920
- },
1921
- {
1922
- "itemIds": [
1923
- 1073,
1924
- 4216,
1925
- 15084,
1926
- 16038
1927
- ],
1928
- "sku": "pass_welcome",
1929
- "name": "Welcome Bonus",
1930
- "price": 1,
1931
- "salePrice": null,
1932
- "flagText": "",
1933
- "type": "pass",
1934
- "inStore": 1,
1935
- "currency": 50000,
1936
- "isActive": true,
1937
- "id": 187
1938
- },
1939
- {
1940
- "itemIds": [
1941
- 15083
1942
- ],
1943
- "sku": "item_melee_frost",
1944
- "name": "Frostfall Whisk",
1945
- "price": 4,
1946
- "salePrice": null,
1947
- "flagText": "",
1948
- "type": "item",
1949
- "inStore": 0,
1950
- "currency": 0,
1951
- "isActive": true,
1952
- "id": 188
1953
- },
1954
- {
1955
- "itemIds": [
1956
- 1569
1957
- ],
1958
- "sku": "item_hat_equal",
1959
- "name": "The Equalizer",
1960
- "price": 3,
1961
- "salePrice": null,
1962
- "flagText": "",
1963
- "type": "item",
1964
- "inStore": 0,
1965
- "currency": 0,
1966
- "isActive": true,
1967
- "id": 190
1968
- },
1969
- {
1970
- "itemIds": [
1971
- 1578
1972
- ],
1973
- "sku": "item_hat_frost",
1974
- "name": "The Frostfall Wings",
1975
- "price": 2,
1976
- "salePrice": null,
1977
- "flagText": "",
1978
- "type": "item",
1979
- "inStore": 0,
1980
- "currency": 0,
1981
- "isActive": true,
1982
- "id": 197
1983
- },
1984
- {
1985
- "itemIds": [
1986
- 3070
1987
- ],
1988
- "sku": "item_9mm_frost",
1989
- "name": "Frostfall 9mm",
1990
- "price": 3,
1991
- "salePrice": null,
1992
- "flagText": "",
1993
- "type": "item",
1994
- "inStore": 0,
1995
- "currency": 0,
1996
- "isActive": true,
1997
- "id": 200
1998
- },
1999
- {
2000
- "itemIds": [
2001
- 1587,
2002
- 2167,
2003
- 3071,
2004
- 15088
2005
- ],
2006
- "sku": "bun_rd",
2007
- "name": "Red Dragon Bundle",
2008
- "price": 6,
2009
- "salePrice": null,
2010
- "flagText": "",
2011
- "type": "bundle",
2012
- "inStore": 1,
2013
- "currency": 0,
2014
- "isActive": true,
2015
- "id": 203
2016
- },
2017
- {
2018
- "itemIds": [
2019
- 1589
2020
- ],
2021
- "sku": "item_hat_pixair",
2022
- "name": "Pixel Airplane Wings",
2023
- "price": 5,
2024
- "salePrice": null,
2025
- "flagText": "",
2026
- "type": "item",
2027
- "inStore": 1,
2028
- "currency": 0,
2029
- "isActive": true,
2030
- "id": 204
2031
- }
2032
- ];