yolkbot 0.1.0 → 0.1.1-alpha.3

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.
@@ -0,0 +1,1822 @@
1
+ /* eslint-disable */
2
+ export const Challenges = [
3
+ {
4
+ "id": 1,
5
+ "loc_ref": "chlg_kill_streak_five",
6
+ "type": 0,
7
+ "subType": 0,
8
+ "period": 0,
9
+ "goal": 1,
10
+ "reward": 100,
11
+ "conditional": 0,
12
+ "value": "5",
13
+ "valueTwo": null,
14
+ "tier": 2,
15
+ "loc": {
16
+ "title": "Master Chef",
17
+ "desc": "Get a 5 killstreak"
18
+ }
19
+ },
20
+ {
21
+ "id": 2,
22
+ "loc_ref": "chlg_kill_streak_ten",
23
+ "type": 0,
24
+ "subType": 0,
25
+ "period": 0,
26
+ "goal": 1,
27
+ "reward": 200,
28
+ "conditional": 0,
29
+ "value": "10",
30
+ "valueTwo": null,
31
+ "tier": 2,
32
+ "loc": {
33
+ "title": "Butcher",
34
+ "desc": "Get a 10 killstreak"
35
+ }
36
+ },
37
+ {
38
+ "id": 3,
39
+ "loc_ref": "chlg_kill_streak_fifteen",
40
+ "type": 0,
41
+ "subType": 0,
42
+ "period": 0,
43
+ "goal": 1,
44
+ "reward": 500,
45
+ "conditional": 0,
46
+ "value": "15",
47
+ "valueTwo": null,
48
+ "tier": 3,
49
+ "loc": {
50
+ "title": "Eggsassin",
51
+ "desc": "Get a 15 killstreak"
52
+ }
53
+ },
54
+ {
55
+ "id": 4,
56
+ "loc_ref": "chlg_kill_streak_twenty",
57
+ "type": 0,
58
+ "subType": 0,
59
+ "period": 0,
60
+ "goal": 1,
61
+ "reward": 1000,
62
+ "conditional": 0,
63
+ "value": "20",
64
+ "valueTwo": null,
65
+ "tier": 3,
66
+ "loc": {
67
+ "title": "Eggsecutioner",
68
+ "desc": "Get a 20 killstreak"
69
+ }
70
+ },
71
+ {
72
+ "id": 5,
73
+ "loc_ref": "chlg_kill_streak_fifty",
74
+ "type": 0,
75
+ "subType": 0,
76
+ "period": 0,
77
+ "goal": 1,
78
+ "reward": 5000,
79
+ "conditional": 0,
80
+ "value": "50",
81
+ "valueTwo": null,
82
+ "tier": 3,
83
+ "loc": {
84
+ "title": "Shell Smasher",
85
+ "desc": "Get a 50 killstreak"
86
+ }
87
+ },
88
+ {
89
+ "id": 6,
90
+ "loc_ref": "chlg_kill_kills_ten",
91
+ "type": 0,
92
+ "subType": 10,
93
+ "period": 0,
94
+ "goal": 10,
95
+ "reward": 100,
96
+ "conditional": null,
97
+ "value": null,
98
+ "valueTwo": null,
99
+ "tier": 0,
100
+ "loc": {
101
+ "title": "Shell Shocker",
102
+ "desc": "Get 10 total kills"
103
+ }
104
+ },
105
+ {
106
+ "id": 7,
107
+ "loc_ref": "chlg_kill_kills_twenty",
108
+ "type": 0,
109
+ "subType": 10,
110
+ "period": 0,
111
+ "goal": 20,
112
+ "reward": 200,
113
+ "conditional": null,
114
+ "value": null,
115
+ "valueTwo": null,
116
+ "tier": 1,
117
+ "loc": {
118
+ "title": "Yolk Drinker",
119
+ "desc": "Get 20 total kills"
120
+ }
121
+ },
122
+ {
123
+ "id": 8,
124
+ "loc_ref": "chlg_kill_kills_fifty",
125
+ "type": 0,
126
+ "subType": 10,
127
+ "period": 0,
128
+ "goal": 50,
129
+ "reward": 500,
130
+ "conditional": null,
131
+ "value": null,
132
+ "valueTwo": null,
133
+ "tier": 2,
134
+ "loc": {
135
+ "title": "Clutch Master",
136
+ "desc": "Get 50 total kills"
137
+ }
138
+ },
139
+ {
140
+ "id": 9,
141
+ "loc_ref": "chlg_kill_kills_hundred",
142
+ "type": 0,
143
+ "subType": 10,
144
+ "period": 0,
145
+ "goal": 100,
146
+ "reward": 1000,
147
+ "conditional": null,
148
+ "value": null,
149
+ "valueTwo": null,
150
+ "tier": 3,
151
+ "loc": {
152
+ "title": "Eggsterminator",
153
+ "desc": "Get 100 total kills"
154
+ }
155
+ },
156
+ {
157
+ "id": 10,
158
+ "loc_ref": "chlg_kill_kills_two_fifty",
159
+ "type": 0,
160
+ "subType": 10,
161
+ "period": 0,
162
+ "goal": 250,
163
+ "reward": 2500,
164
+ "conditional": null,
165
+ "value": null,
166
+ "valueTwo": null,
167
+ "tier": 3,
168
+ "loc": {
169
+ "title": "Ovum Overlord",
170
+ "desc": "Get 250 total kills"
171
+ }
172
+ },
173
+ {
174
+ "id": 11,
175
+ "loc_ref": "chlg_kill_timePlayed_two",
176
+ "type": 0,
177
+ "subType": 6,
178
+ "period": 0,
179
+ "goal": 1,
180
+ "reward": 100,
181
+ "conditional": null,
182
+ "value": "2",
183
+ "valueTwo": "60",
184
+ "tier": 0,
185
+ "loc": {
186
+ "title": "Back to Back",
187
+ "desc": "Spawn and get 2 kills in 1 min"
188
+ }
189
+ },
190
+ {
191
+ "id": 12,
192
+ "loc_ref": "chlg_kill_timePlayed_four",
193
+ "type": 0,
194
+ "subType": 6,
195
+ "period": 0,
196
+ "goal": 1,
197
+ "reward": 500,
198
+ "conditional": null,
199
+ "value": "4",
200
+ "valueTwo": "60",
201
+ "tier": 2,
202
+ "loc": {
203
+ "title": "C-C-C-COMBO",
204
+ "desc": "Spawn and get 4 kills in 1 min"
205
+ }
206
+ },
207
+ {
208
+ "id": 13,
209
+ "loc_ref": "chlg_kill_timePlayed_seven",
210
+ "type": 0,
211
+ "subType": 6,
212
+ "period": 0,
213
+ "goal": 1,
214
+ "reward": 1000,
215
+ "conditional": null,
216
+ "value": "7",
217
+ "valueTwo": "60",
218
+ "tier": 3,
219
+ "loc": {
220
+ "title": "Eggcellerator",
221
+ "desc": "Spawn and get 7 kills in 1 min"
222
+ }
223
+ },
224
+ {
225
+ "id": 14,
226
+ "loc_ref": "chlg_kill_timePlayed_ten",
227
+ "type": 0,
228
+ "subType": 6,
229
+ "period": 0,
230
+ "goal": 1,
231
+ "reward": 2500,
232
+ "conditional": null,
233
+ "value": "10",
234
+ "valueTwo": "60",
235
+ "tier": 3,
236
+ "loc": {
237
+ "title": "Need for Speed",
238
+ "desc": "Spawn and get 10 kills in 1 min"
239
+ }
240
+ },
241
+ {
242
+ "id": 15,
243
+ "loc_ref": "chlg_kill_con_kill_one_shot",
244
+ "type": 0,
245
+ "subType": 8,
246
+ "period": 0,
247
+ "goal": 1,
248
+ "reward": 100,
249
+ "conditional": 11,
250
+ "value": "1",
251
+ "valueTwo": "1",
252
+ "tier": 1,
253
+ "loc": {
254
+ "title": "Bullseye",
255
+ "desc": "Kill an egg with 1 shot"
256
+ }
257
+ },
258
+ {
259
+ "id": 16,
260
+ "loc_ref": "chlg_kill_con_kill_hp_ten",
261
+ "type": 0,
262
+ "subType": 8,
263
+ "period": 0,
264
+ "goal": 1,
265
+ "reward": 500,
266
+ "conditional": 12,
267
+ "value": "1",
268
+ "valueTwo": "10",
269
+ "tier": 1,
270
+ "loc": {
271
+ "title": "Cutting it Close",
272
+ "desc": "Get a kill with less than 10 HP"
273
+ }
274
+ },
275
+ {
276
+ "id": 17,
277
+ "loc_ref": "chlg_kill_con_kill_five_streak",
278
+ "type": 0,
279
+ "subType": 8,
280
+ "period": 0,
281
+ "goal": 1,
282
+ "reward": 1000,
283
+ "conditional": 0,
284
+ "value": "0",
285
+ "valueTwo": "5",
286
+ "tier": 2,
287
+ "loc": {
288
+ "title": "Soft Boiled",
289
+ "desc": "Kill an egg on a 5+ streak"
290
+ }
291
+ },
292
+ {
293
+ "id": 18,
294
+ "loc_ref": "chlg_kill_con_kill_ten_streak",
295
+ "type": 0,
296
+ "subType": 8,
297
+ "period": 0,
298
+ "goal": 1,
299
+ "reward": 2500,
300
+ "conditional": 0,
301
+ "value": "0",
302
+ "valueTwo": "10",
303
+ "tier": 3,
304
+ "loc": {
305
+ "title": "Breaker-breaker",
306
+ "desc": "Kill an egg on a 10+ streak"
307
+ }
308
+ },
309
+ {
310
+ "id": 19,
311
+ "loc_ref": "chlg_kill_con_kill_scoped",
312
+ "type": 0,
313
+ "subType": 8,
314
+ "period": 0,
315
+ "goal": 1,
316
+ "reward": 200,
317
+ "conditional": 13,
318
+ "value": null,
319
+ "valueTwo": null,
320
+ "tier": 2,
321
+ "loc": {
322
+ "title": "Eye 2 Eye",
323
+ "desc": "Snipe a zoomed-in sniper"
324
+ }
325
+ },
326
+ {
327
+ "id": 20,
328
+ "loc_ref": "chlg_kill_con_two_kills_one_shot",
329
+ "type": 0,
330
+ "subType": 8,
331
+ "period": 0,
332
+ "goal": 1,
333
+ "reward": 200,
334
+ "conditional": 16,
335
+ "value": "2",
336
+ "valueTwo": null,
337
+ "tier": 2,
338
+ "loc": {
339
+ "title": "Collateral Damage",
340
+ "desc": "Kill two eggs at once"
341
+ }
342
+ },
343
+ {
344
+ "id": 21,
345
+ "loc_ref": "chlg_kill_con_reloading",
346
+ "type": 0,
347
+ "subType": 8,
348
+ "period": 0,
349
+ "goal": 1,
350
+ "reward": 100,
351
+ "conditional": 17,
352
+ "value": null,
353
+ "valueTwo": null,
354
+ "tier": 1,
355
+ "loc": {
356
+ "title": "Owned",
357
+ "desc": "Kill an egg while they reload"
358
+ }
359
+ },
360
+ {
361
+ "id": 22,
362
+ "loc_ref": "chlg_kill_con_kill_scoped_melee",
363
+ "type": 0,
364
+ "subType": 8,
365
+ "period": 0,
366
+ "goal": 1,
367
+ "reward": 200,
368
+ "conditional": 13,
369
+ "value": null,
370
+ "valueTwo": "9",
371
+ "tier": 2,
372
+ "loc": {
373
+ "title": "Behind You!",
374
+ "desc": "Melee kill a zoomed-in egg"
375
+ }
376
+ },
377
+ {
378
+ "id": 23,
379
+ "loc_ref": "chlg_kill_con_kill_two_grenade",
380
+ "type": 0,
381
+ "subType": 8,
382
+ "period": 0,
383
+ "goal": 1,
384
+ "reward": 200,
385
+ "conditional": 16,
386
+ "value": "2",
387
+ "valueTwo": "8",
388
+ "tier": 2,
389
+ "loc": {
390
+ "title": "2 Birds 1 Stone",
391
+ "desc": "Kill 2 eggs with 1 Grenade"
392
+ }
393
+ },
394
+ {
395
+ "id": 24,
396
+ "loc_ref": "chlg_kill_con_kill_three_grenade",
397
+ "type": 0,
398
+ "subType": 8,
399
+ "period": 0,
400
+ "goal": 1,
401
+ "reward": 1000,
402
+ "conditional": 16,
403
+ "value": "3",
404
+ "valueTwo": "8",
405
+ "tier": 3,
406
+ "loc": {
407
+ "title": "M-M-M-Multikill",
408
+ "desc": "Kill 3 eggs with 1 Grenade"
409
+ }
410
+ },
411
+ {
412
+ "id": 25,
413
+ "loc_ref": "chlg_kill_con_kill_two_rpegg",
414
+ "type": 0,
415
+ "subType": 8,
416
+ "period": 0,
417
+ "goal": 1,
418
+ "reward": 200,
419
+ "conditional": 16,
420
+ "value": "2",
421
+ "valueTwo": "4",
422
+ "tier": 2,
423
+ "loc": {
424
+ "title": "Splash Damage",
425
+ "desc": "Kill 2 eggs with 1 RPEGG shot"
426
+ }
427
+ },
428
+ {
429
+ "id": 26,
430
+ "loc_ref": "chlg_kill_con_kill_three_rpegg",
431
+ "type": 0,
432
+ "subType": 8,
433
+ "period": 0,
434
+ "goal": 1,
435
+ "reward": 1000,
436
+ "conditional": 16,
437
+ "value": "3",
438
+ "valueTwo": "4",
439
+ "tier": 3,
440
+ "loc": {
441
+ "title": "Big Boomer",
442
+ "desc": "Kill 3 eggs with 1 RPEGG shot"
443
+ }
444
+ },
445
+ {
446
+ "id": 27,
447
+ "loc_ref": "chlg_kill_weaponType_Cluck9mm_five",
448
+ "type": 0,
449
+ "subType": 1,
450
+ "period": 0,
451
+ "goal": 5,
452
+ "reward": 200,
453
+ "conditional": null,
454
+ "value": null,
455
+ "valueTwo": "3",
456
+ "tier": 1,
457
+ "loc": {
458
+ "title": "Pew Pew",
459
+ "desc": "Get 5 Cluck 9mm kills"
460
+ }
461
+ },
462
+ {
463
+ "id": 28,
464
+ "loc_ref": "chlg_kill_weaponType_Cluck9mm_ten",
465
+ "type": 0,
466
+ "subType": 1,
467
+ "period": 0,
468
+ "goal": 10,
469
+ "reward": 500,
470
+ "conditional": null,
471
+ "value": null,
472
+ "valueTwo": "3",
473
+ "tier": 1,
474
+ "loc": {
475
+ "title": "Trigger Happy",
476
+ "desc": "Get 10 Cluck 9mm kills"
477
+ }
478
+ },
479
+ {
480
+ "id": 29,
481
+ "loc_ref": "chlg_kill_weaponType_Cluck9mm_twenty",
482
+ "type": 0,
483
+ "subType": 1,
484
+ "period": 0,
485
+ "goal": 20,
486
+ "reward": 1000,
487
+ "conditional": null,
488
+ "value": null,
489
+ "valueTwo": "3",
490
+ "tier": 2,
491
+ "loc": {
492
+ "title": "Sidearm Specialist",
493
+ "desc": "Get 20 Cluck 9mm kills"
494
+ }
495
+ },
496
+ {
497
+ "id": 30,
498
+ "loc_ref": "chlg_kill_weaponType_Cluck9mm_fifty",
499
+ "type": 0,
500
+ "subType": 1,
501
+ "period": 0,
502
+ "goal": 50,
503
+ "reward": 2500,
504
+ "conditional": null,
505
+ "value": null,
506
+ "valueTwo": "3",
507
+ "tier": 3,
508
+ "loc": {
509
+ "title": "9mm Master",
510
+ "desc": "Get 50 Cluck 9mm kills"
511
+ }
512
+ },
513
+ {
514
+ "id": 31,
515
+ "loc_ref": "chlg_kill_weaponType_Scrambler_five",
516
+ "type": 0,
517
+ "subType": 1,
518
+ "period": 0,
519
+ "goal": 5,
520
+ "reward": 100,
521
+ "conditional": null,
522
+ "value": null,
523
+ "valueTwo": "1",
524
+ "tier": 1,
525
+ "loc": {
526
+ "title": "Scrambled Eggs",
527
+ "desc": "Get 5 Scrambler kills"
528
+ }
529
+ },
530
+ {
531
+ "id": 32,
532
+ "loc_ref": "chlg_kill_weaponType_Scrambler_ten",
533
+ "type": 0,
534
+ "subType": 1,
535
+ "period": 0,
536
+ "goal": 10,
537
+ "reward": 200,
538
+ "conditional": null,
539
+ "value": null,
540
+ "valueTwo": "1",
541
+ "tier": 1,
542
+ "loc": {
543
+ "title": "Hunting Wabbits",
544
+ "desc": "Get 10 Scrambler kills"
545
+ }
546
+ },
547
+ {
548
+ "id": 33,
549
+ "loc_ref": "chlg_kill_weaponType_Scrambler_twenty",
550
+ "type": 0,
551
+ "subType": 1,
552
+ "period": 0,
553
+ "goal": 20,
554
+ "reward": 500,
555
+ "conditional": null,
556
+ "value": null,
557
+ "valueTwo": "1",
558
+ "tier": 2,
559
+ "loc": {
560
+ "title": "Boomstick",
561
+ "desc": "Get 20 Scrambler kills"
562
+ }
563
+ },
564
+ {
565
+ "id": 34,
566
+ "loc_ref": "chlg_kill_weaponType_Scrambler_fifty",
567
+ "type": 0,
568
+ "subType": 1,
569
+ "period": 0,
570
+ "goal": 50,
571
+ "reward": 1000,
572
+ "conditional": null,
573
+ "value": null,
574
+ "valueTwo": "1",
575
+ "tier": 3,
576
+ "loc": {
577
+ "title": "Splat-o-matic",
578
+ "desc": "Get 50 Scrambler kills"
579
+ }
580
+ },
581
+ {
582
+ "id": 35,
583
+ "loc_ref": "chlg_kill_weaponType_Rpegg_five",
584
+ "type": 0,
585
+ "subType": 1,
586
+ "period": 0,
587
+ "goal": 5,
588
+ "reward": 100,
589
+ "conditional": null,
590
+ "value": null,
591
+ "valueTwo": "4",
592
+ "tier": 2,
593
+ "loc": {
594
+ "title": "Eggsploder",
595
+ "desc": "Get 5 RPEGG kills"
596
+ }
597
+ },
598
+ {
599
+ "id": 36,
600
+ "loc_ref": "chlg_kill_weaponType_Rpegg_ten",
601
+ "type": 0,
602
+ "subType": 1,
603
+ "period": 0,
604
+ "goal": 10,
605
+ "reward": 200,
606
+ "conditional": null,
607
+ "value": null,
608
+ "valueTwo": "4",
609
+ "tier": 2,
610
+ "loc": {
611
+ "title": "Arm Cannons",
612
+ "desc": "Get 10 RPEGG kills"
613
+ }
614
+ },
615
+ {
616
+ "id": 37,
617
+ "loc_ref": "chlg_kill_weaponType_Rpegg_twenty",
618
+ "type": 0,
619
+ "subType": 1,
620
+ "period": 0,
621
+ "goal": 20,
622
+ "reward": 500,
623
+ "conditional": null,
624
+ "value": null,
625
+ "valueTwo": "4",
626
+ "tier": 2,
627
+ "loc": {
628
+ "title": "Bazooka Joe",
629
+ "desc": "Get 20 RPEGG kills"
630
+ }
631
+ },
632
+ {
633
+ "id": 38,
634
+ "loc_ref": "chlg_kill_weaponType_Rpegg_fifty",
635
+ "type": 0,
636
+ "subType": 1,
637
+ "period": 0,
638
+ "goal": 50,
639
+ "reward": 1000,
640
+ "conditional": null,
641
+ "value": null,
642
+ "valueTwo": "4",
643
+ "tier": 3,
644
+ "loc": {
645
+ "title": "Master Eggsploder",
646
+ "desc": "Get 50 RPEGG kills"
647
+ }
648
+ },
649
+ {
650
+ "id": 39,
651
+ "loc_ref": "chlg_kill_weaponType_Whipper_five",
652
+ "type": 0,
653
+ "subType": 1,
654
+ "period": 0,
655
+ "goal": 5,
656
+ "reward": 100,
657
+ "conditional": null,
658
+ "value": null,
659
+ "valueTwo": "5",
660
+ "tier": 1,
661
+ "loc": {
662
+ "title": "Whip it Good",
663
+ "desc": "Get 5 Whipper kills"
664
+ }
665
+ },
666
+ {
667
+ "id": 40,
668
+ "loc_ref": "chlg_kill_weaponType_Whipper_ten",
669
+ "type": 0,
670
+ "subType": 1,
671
+ "period": 0,
672
+ "goal": 10,
673
+ "reward": 200,
674
+ "conditional": null,
675
+ "value": null,
676
+ "valueTwo": "5",
677
+ "tier": 1,
678
+ "loc": {
679
+ "title": "Cool Whip",
680
+ "desc": "Get 10 Whipper kills"
681
+ }
682
+ },
683
+ {
684
+ "id": 41,
685
+ "loc_ref": "chlg_kill_weaponType_Whipper_twenty",
686
+ "type": 0,
687
+ "subType": 1,
688
+ "period": 0,
689
+ "goal": 20,
690
+ "reward": 500,
691
+ "conditional": null,
692
+ "value": null,
693
+ "valueTwo": "5",
694
+ "tier": 2,
695
+ "loc": {
696
+ "title": "Whip it REAL Good",
697
+ "desc": "Get 20 Whipper kills"
698
+ }
699
+ },
700
+ {
701
+ "id": 42,
702
+ "loc_ref": "chlg_kill_weaponType_Whipper_fifty",
703
+ "type": 0,
704
+ "subType": 1,
705
+ "period": 0,
706
+ "goal": 50,
707
+ "reward": 1000,
708
+ "conditional": null,
709
+ "value": null,
710
+ "valueTwo": "5",
711
+ "tier": 3,
712
+ "loc": {
713
+ "title": "Whip up a Storm",
714
+ "desc": "Get 50 Whipper kills"
715
+ }
716
+ },
717
+ {
718
+ "id": 43,
719
+ "loc_ref": "chlg_kill_weaponType_Eggk47_five",
720
+ "type": 0,
721
+ "subType": 1,
722
+ "period": 0,
723
+ "goal": 5,
724
+ "reward": 100,
725
+ "conditional": null,
726
+ "value": null,
727
+ "valueTwo": "0",
728
+ "tier": 0,
729
+ "loc": {
730
+ "title": "Lock & Load",
731
+ "desc": "Get 5 EggK-47 kills"
732
+ }
733
+ },
734
+ {
735
+ "id": 44,
736
+ "loc_ref": "chlg_kill_weaponType_Eggk47_ten",
737
+ "type": 0,
738
+ "subType": 1,
739
+ "period": 0,
740
+ "goal": 10,
741
+ "reward": 200,
742
+ "conditional": null,
743
+ "value": null,
744
+ "valueTwo": "0",
745
+ "tier": 1,
746
+ "loc": {
747
+ "title": "Almost a Dozen",
748
+ "desc": "Get 10 EggK-47 kills"
749
+ }
750
+ },
751
+ {
752
+ "id": 45,
753
+ "loc_ref": "chlg_kill_weaponType_Eggk47_twenty",
754
+ "type": 0,
755
+ "subType": 1,
756
+ "period": 0,
757
+ "goal": 20,
758
+ "reward": 500,
759
+ "conditional": null,
760
+ "value": null,
761
+ "valueTwo": "0",
762
+ "tier": 2,
763
+ "loc": {
764
+ "title": "Spray Down",
765
+ "desc": "Get 20 EggK-47 kills"
766
+ }
767
+ },
768
+ {
769
+ "id": 46,
770
+ "loc_ref": "chlg_kill_weaponType_Eggk47_fifty",
771
+ "type": 0,
772
+ "subType": 1,
773
+ "period": 0,
774
+ "goal": 50,
775
+ "reward": 1000,
776
+ "conditional": null,
777
+ "value": null,
778
+ "valueTwo": "0",
779
+ "tier": 3,
780
+ "loc": {
781
+ "title": "Eggk-47 Eggspert",
782
+ "desc": "Get 50 EggK-47 kills"
783
+ }
784
+ },
785
+ {
786
+ "id": 47,
787
+ "loc_ref": "chlg_kill_weaponType_FreeRanger_five",
788
+ "type": 0,
789
+ "subType": 1,
790
+ "period": 0,
791
+ "goal": 5,
792
+ "reward": 100,
793
+ "conditional": null,
794
+ "value": null,
795
+ "valueTwo": "2",
796
+ "tier": 1,
797
+ "loc": {
798
+ "title": "Poacher",
799
+ "desc": "Get 5 Free Ranger kills"
800
+ }
801
+ },
802
+ {
803
+ "id": 48,
804
+ "loc_ref": "chlg_kill_weaponType_FreeRanger_ten",
805
+ "type": 0,
806
+ "subType": 1,
807
+ "period": 0,
808
+ "goal": 10,
809
+ "reward": 200,
810
+ "conditional": null,
811
+ "value": null,
812
+ "valueTwo": "2",
813
+ "tier": 1,
814
+ "loc": {
815
+ "title": "Bounty Hunter",
816
+ "desc": "Get 10 Free Ranger kills"
817
+ }
818
+ },
819
+ {
820
+ "id": 49,
821
+ "loc_ref": "chlg_kill_weaponType_FreeRanger_twenty",
822
+ "type": 0,
823
+ "subType": 1,
824
+ "period": 0,
825
+ "goal": 20,
826
+ "reward": 500,
827
+ "conditional": null,
828
+ "value": null,
829
+ "valueTwo": "2",
830
+ "tier": 2,
831
+ "loc": {
832
+ "title": "Hired Gun",
833
+ "desc": "Get 20 Free Ranger kills"
834
+ }
835
+ },
836
+ {
837
+ "id": 50,
838
+ "loc_ref": "chlg_kill_weaponType_FreeRanger_fifty",
839
+ "type": 0,
840
+ "subType": 1,
841
+ "period": 0,
842
+ "goal": 50,
843
+ "reward": 1000,
844
+ "conditional": null,
845
+ "value": null,
846
+ "valueTwo": "2",
847
+ "tier": 3,
848
+ "loc": {
849
+ "title": "Big-Game Hunter",
850
+ "desc": "Get 50 Free Ranger kills"
851
+ }
852
+ },
853
+ {
854
+ "id": 51,
855
+ "loc_ref": "chlg_kill_weaponType_Crackshot_five",
856
+ "type": 0,
857
+ "subType": 1,
858
+ "period": 0,
859
+ "goal": 5,
860
+ "reward": 100,
861
+ "conditional": null,
862
+ "value": null,
863
+ "valueTwo": "6",
864
+ "tier": 1,
865
+ "loc": {
866
+ "title": "Sniper",
867
+ "desc": "Get 5 Crackshot kills"
868
+ }
869
+ },
870
+ {
871
+ "id": 52,
872
+ "loc_ref": "chlg_kill_weaponType_Crackshot_ten",
873
+ "type": 0,
874
+ "subType": 1,
875
+ "period": 0,
876
+ "goal": 10,
877
+ "reward": 200,
878
+ "conditional": null,
879
+ "value": null,
880
+ "valueTwo": "6",
881
+ "tier": 1,
882
+ "loc": {
883
+ "title": "Sharpshooter",
884
+ "desc": "Get 10 Crackshot kills"
885
+ }
886
+ },
887
+ {
888
+ "id": 53,
889
+ "loc_ref": "chlg_kill_weaponType_Crackshot_twenty",
890
+ "type": 0,
891
+ "subType": 1,
892
+ "period": 0,
893
+ "goal": 20,
894
+ "reward": 500,
895
+ "conditional": null,
896
+ "value": null,
897
+ "valueTwo": "6",
898
+ "tier": 2,
899
+ "loc": {
900
+ "title": "Marksman",
901
+ "desc": "Get 20 Crackshot kills"
902
+ }
903
+ },
904
+ {
905
+ "id": 54,
906
+ "loc_ref": "chlg_kill_weaponType_Crackshot_fifty",
907
+ "type": 0,
908
+ "subType": 1,
909
+ "period": 0,
910
+ "goal": 50,
911
+ "reward": 1000,
912
+ "conditional": null,
913
+ "value": null,
914
+ "valueTwo": "6",
915
+ "tier": 3,
916
+ "loc": {
917
+ "title": "Cracked",
918
+ "desc": "Get 50 Crackshot kills"
919
+ }
920
+ },
921
+ {
922
+ "id": 55,
923
+ "loc_ref": "chlg_kill_weaponType_TriHard_five",
924
+ "type": 0,
925
+ "subType": 1,
926
+ "period": 0,
927
+ "goal": 5,
928
+ "reward": 100,
929
+ "conditional": null,
930
+ "value": null,
931
+ "valueTwo": "7",
932
+ "tier": 1,
933
+ "loc": {
934
+ "title": "Tri-Hard",
935
+ "desc": "Get 5 Tri-Hard kills"
936
+ }
937
+ },
938
+ {
939
+ "id": 56,
940
+ "loc_ref": "chlg_kill_weaponType_TriHard_ten",
941
+ "type": 0,
942
+ "subType": 1,
943
+ "period": 0,
944
+ "goal": 10,
945
+ "reward": 200,
946
+ "conditional": null,
947
+ "value": null,
948
+ "valueTwo": "7",
949
+ "tier": 1,
950
+ "loc": {
951
+ "title": "Tri-Harder",
952
+ "desc": "Get 10 Tri-Hard kills"
953
+ }
954
+ },
955
+ {
956
+ "id": 57,
957
+ "loc_ref": "chlg_kill_weaponType_TriHard_twenty",
958
+ "type": 0,
959
+ "subType": 1,
960
+ "period": 0,
961
+ "goal": 20,
962
+ "reward": 500,
963
+ "conditional": null,
964
+ "value": null,
965
+ "valueTwo": "7",
966
+ "tier": 2,
967
+ "loc": {
968
+ "title": "Tri-Even-Harder",
969
+ "desc": "Get 20 Tri-Hard kills"
970
+ }
971
+ },
972
+ {
973
+ "id": 58,
974
+ "loc_ref": "chlg_kill_weaponType_TriHard_fifty",
975
+ "type": 0,
976
+ "subType": 1,
977
+ "period": 0,
978
+ "goal": 50,
979
+ "reward": 1000,
980
+ "conditional": null,
981
+ "value": null,
982
+ "valueTwo": "7",
983
+ "tier": 3,
984
+ "loc": {
985
+ "title": "Tri-Hardest",
986
+ "desc": "Get 50 Tri-Hard kills"
987
+ }
988
+ },
989
+ {
990
+ "id": 59,
991
+ "loc_ref": "chlg_kill_weaponType_Melee_five",
992
+ "type": 0,
993
+ "subType": 1,
994
+ "period": 0,
995
+ "goal": 5,
996
+ "reward": 200,
997
+ "conditional": null,
998
+ "value": null,
999
+ "valueTwo": "9",
1000
+ "tier": 2,
1001
+ "loc": {
1002
+ "title": "Whisky Business",
1003
+ "desc": "Get 5 Melee kills"
1004
+ }
1005
+ },
1006
+ {
1007
+ "id": 60,
1008
+ "loc_ref": "chlg_kill_weaponType_Melee_ten",
1009
+ "type": 0,
1010
+ "subType": 1,
1011
+ "period": 0,
1012
+ "goal": 10,
1013
+ "reward": 500,
1014
+ "conditional": null,
1015
+ "value": null,
1016
+ "valueTwo": "9",
1017
+ "tier": 2,
1018
+ "loc": {
1019
+ "title": "Slap the Bass",
1020
+ "desc": "Get 10 Melee kills"
1021
+ }
1022
+ },
1023
+ {
1024
+ "id": 61,
1025
+ "loc_ref": "chlg_kill_weaponType_Melee_twenty",
1026
+ "type": 0,
1027
+ "subType": 1,
1028
+ "period": 0,
1029
+ "goal": 20,
1030
+ "reward": 1000,
1031
+ "conditional": null,
1032
+ "value": null,
1033
+ "valueTwo": "9",
1034
+ "tier": 3,
1035
+ "loc": {
1036
+ "title": "Whack & Slash",
1037
+ "desc": "Get 20 Melee kills"
1038
+ }
1039
+ },
1040
+ {
1041
+ "id": 62,
1042
+ "loc_ref": "chlg_kill_weaponType_Melee_fifty",
1043
+ "type": 0,
1044
+ "subType": 1,
1045
+ "period": 0,
1046
+ "goal": 50,
1047
+ "reward": 2500,
1048
+ "conditional": null,
1049
+ "value": null,
1050
+ "valueTwo": "9",
1051
+ "tier": 3,
1052
+ "loc": {
1053
+ "title": "Melee Master",
1054
+ "desc": "Get 50 Melee kills"
1055
+ }
1056
+ },
1057
+ {
1058
+ "id": 63,
1059
+ "loc_ref": "chlg_damage_five_hundred",
1060
+ "type": 1,
1061
+ "subType": null,
1062
+ "period": 0,
1063
+ "goal": 500,
1064
+ "reward": 100,
1065
+ "conditional": null,
1066
+ "value": null,
1067
+ "valueTwo": null,
1068
+ "tier": 0,
1069
+ "loc": {
1070
+ "title": "Shattered Shells",
1071
+ "desc": "Deal 500 damage"
1072
+ }
1073
+ },
1074
+ {
1075
+ "id": 64,
1076
+ "loc_ref": "chlg_damage_one_thousand",
1077
+ "type": 1,
1078
+ "subType": null,
1079
+ "period": 0,
1080
+ "goal": 1000,
1081
+ "reward": 100,
1082
+ "conditional": null,
1083
+ "value": null,
1084
+ "valueTwo": null,
1085
+ "tier": 1,
1086
+ "loc": {
1087
+ "title": "Decimator",
1088
+ "desc": "Deal 1000 damage"
1089
+ }
1090
+ },
1091
+ {
1092
+ "id": 65,
1093
+ "loc_ref": "chlg_damage_twenty_five_hundred",
1094
+ "type": 1,
1095
+ "subType": null,
1096
+ "period": 0,
1097
+ "goal": 2500,
1098
+ "reward": 200,
1099
+ "conditional": null,
1100
+ "value": null,
1101
+ "valueTwo": null,
1102
+ "tier": 1,
1103
+ "loc": {
1104
+ "title": "Tormentor",
1105
+ "desc": "Deal 2500 damage"
1106
+ }
1107
+ },
1108
+ {
1109
+ "id": 66,
1110
+ "loc_ref": "chlg_damage_five_thousand",
1111
+ "type": 1,
1112
+ "subType": null,
1113
+ "period": 0,
1114
+ "goal": 5000,
1115
+ "reward": 500,
1116
+ "conditional": null,
1117
+ "value": null,
1118
+ "valueTwo": null,
1119
+ "tier": 2,
1120
+ "loc": {
1121
+ "title": "Devastator",
1122
+ "desc": "Deal 5000 damage"
1123
+ }
1124
+ },
1125
+ {
1126
+ "id": 67,
1127
+ "loc_ref": "chlg_damage_ten_thousand",
1128
+ "type": 1,
1129
+ "subType": null,
1130
+ "period": 0,
1131
+ "goal": 10000,
1132
+ "reward": 1000,
1133
+ "conditional": null,
1134
+ "value": null,
1135
+ "valueTwo": null,
1136
+ "tier": 3,
1137
+ "loc": {
1138
+ "title": "Boomsauce",
1139
+ "desc": "Deal 10000 damage"
1140
+ }
1141
+ },
1142
+ {
1143
+ "id": 68,
1144
+ "loc_ref": "chlg_damage_twenty_five_thousand",
1145
+ "type": 1,
1146
+ "subType": null,
1147
+ "period": 0,
1148
+ "goal": 25000,
1149
+ "reward": 2500,
1150
+ "conditional": null,
1151
+ "value": null,
1152
+ "valueTwo": null,
1153
+ "tier": 3,
1154
+ "loc": {
1155
+ "title": "Maximum Damage",
1156
+ "desc": "Deal 25000 damage"
1157
+ }
1158
+ },
1159
+ {
1160
+ "id": 69,
1161
+ "loc_ref": "chlg_deaths_ten",
1162
+ "type": 2,
1163
+ "subType": null,
1164
+ "period": 0,
1165
+ "goal": 10,
1166
+ "reward": 100,
1167
+ "conditional": null,
1168
+ "value": null,
1169
+ "valueTwo": null,
1170
+ "tier": 1,
1171
+ "loc": {
1172
+ "title": "Cracked",
1173
+ "desc": "Die 10 times"
1174
+ }
1175
+ },
1176
+ {
1177
+ "id": 70,
1178
+ "loc_ref": "chlg_deaths_twenty",
1179
+ "type": 2,
1180
+ "subType": null,
1181
+ "period": 0,
1182
+ "goal": 20,
1183
+ "reward": 200,
1184
+ "conditional": null,
1185
+ "value": null,
1186
+ "valueTwo": null,
1187
+ "tier": 1,
1188
+ "loc": {
1189
+ "title": "Fried",
1190
+ "desc": "Die 20 times"
1191
+ }
1192
+ },
1193
+ {
1194
+ "id": 71,
1195
+ "loc_ref": "chlg_deaths_fifty",
1196
+ "type": 2,
1197
+ "subType": null,
1198
+ "period": 0,
1199
+ "goal": 50,
1200
+ "reward": 500,
1201
+ "conditional": null,
1202
+ "value": null,
1203
+ "valueTwo": null,
1204
+ "tier": 2,
1205
+ "loc": {
1206
+ "title": "Death Wish",
1207
+ "desc": "Die 50 times"
1208
+ }
1209
+ },
1210
+ {
1211
+ "id": 72,
1212
+ "loc_ref": "chlg_movement_distance_five_hunderd",
1213
+ "type": 3,
1214
+ "subType": 3,
1215
+ "period": 0,
1216
+ "goal": 500,
1217
+ "reward": 100,
1218
+ "conditional": null,
1219
+ "value": null,
1220
+ "valueTwo": null,
1221
+ "tier": 0,
1222
+ "loc": {
1223
+ "title": "Runny Egg",
1224
+ "desc": "Travel 500m"
1225
+ }
1226
+ },
1227
+ {
1228
+ "id": 73,
1229
+ "loc_ref": "chlg_movement_distance_one_thousand",
1230
+ "type": 3,
1231
+ "subType": 3,
1232
+ "period": 0,
1233
+ "goal": 1000,
1234
+ "reward": 500,
1235
+ "conditional": null,
1236
+ "value": null,
1237
+ "valueTwo": null,
1238
+ "tier": 1,
1239
+ "loc": {
1240
+ "title": "Poultry in Motion",
1241
+ "desc": "Travel 1000m"
1242
+ }
1243
+ },
1244
+ {
1245
+ "id": 74,
1246
+ "loc_ref": "chlg_movement_distance_five_thousand",
1247
+ "type": 3,
1248
+ "subType": 3,
1249
+ "period": 0,
1250
+ "goal": 5000,
1251
+ "reward": 2500,
1252
+ "conditional": null,
1253
+ "value": null,
1254
+ "valueTwo": null,
1255
+ "tier": 2,
1256
+ "loc": {
1257
+ "title": "Gaming Marathon",
1258
+ "desc": "Travel 5000m"
1259
+ }
1260
+ },
1261
+ {
1262
+ "id": 75,
1263
+ "loc_ref": "chlg_movement_jump_one_hundred",
1264
+ "type": 3,
1265
+ "subType": 4,
1266
+ "period": 0,
1267
+ "goal": 100,
1268
+ "reward": 100,
1269
+ "conditional": null,
1270
+ "value": null,
1271
+ "valueTwo": null,
1272
+ "tier": 1,
1273
+ "loc": {
1274
+ "title": "Jumpman",
1275
+ "desc": "Jump 100 times"
1276
+ }
1277
+ },
1278
+ {
1279
+ "id": 76,
1280
+ "loc_ref": "chlg_movement_jump_five_hundred",
1281
+ "type": 3,
1282
+ "subType": 4,
1283
+ "period": 0,
1284
+ "goal": 500,
1285
+ "reward": 500,
1286
+ "conditional": null,
1287
+ "value": null,
1288
+ "valueTwo": null,
1289
+ "tier": 1,
1290
+ "loc": {
1291
+ "title": "Bouncing Bomb",
1292
+ "desc": "Jump 500 times"
1293
+ }
1294
+ },
1295
+ {
1296
+ "id": 77,
1297
+ "loc_ref": "chlg_kill_jump_one",
1298
+ "type": 0,
1299
+ "subType": 4,
1300
+ "period": 0,
1301
+ "goal": 1,
1302
+ "reward": 200,
1303
+ "conditional": null,
1304
+ "value": null,
1305
+ "valueTwo": null,
1306
+ "tier": 2,
1307
+ "loc": {
1308
+ "title": "Aerial Assault",
1309
+ "desc": "Get a kill while jumping"
1310
+ }
1311
+ },
1312
+ {
1313
+ "id": 78,
1314
+ "loc_ref": "chlg_kill_jump_five",
1315
+ "type": 0,
1316
+ "subType": 4,
1317
+ "period": 0,
1318
+ "goal": 5,
1319
+ "reward": 1000,
1320
+ "conditional": null,
1321
+ "value": null,
1322
+ "valueTwo": null,
1323
+ "tier": 3,
1324
+ "loc": {
1325
+ "title": "Do a Barrel Roll",
1326
+ "desc": "Get 5 kills while airborne"
1327
+ }
1328
+ },
1329
+ {
1330
+ "id": 79,
1331
+ "loc_ref": "chlg_kill_jump_victim_jump",
1332
+ "type": 0,
1333
+ "subType": 4,
1334
+ "period": 0,
1335
+ "goal": 1,
1336
+ "reward": 2500,
1337
+ "conditional": 4,
1338
+ "value": null,
1339
+ "valueTwo": null,
1340
+ "tier": 3,
1341
+ "loc": {
1342
+ "title": "Aerial Acrobatics",
1343
+ "desc": "Kill an egg while both airborne"
1344
+ }
1345
+ },
1346
+ {
1347
+ "id": 80,
1348
+ "loc_ref": "chlg_movement_collect_ammo_ten",
1349
+ "type": 4,
1350
+ "subType": 18,
1351
+ "period": 0,
1352
+ "goal": 10,
1353
+ "reward": 100,
1354
+ "conditional": 16,
1355
+ "value": "0",
1356
+ "valueTwo": null,
1357
+ "tier": 1,
1358
+ "loc": {
1359
+ "title": "We Need Supplies!",
1360
+ "desc": "Collect 10 ammo boxes"
1361
+ }
1362
+ },
1363
+ {
1364
+ "id": 81,
1365
+ "loc_ref": "chlg_movement_collect_ammo_twenty_five",
1366
+ "type": 4,
1367
+ "subType": 18,
1368
+ "period": 0,
1369
+ "goal": 25,
1370
+ "reward": 500,
1371
+ "conditional": 16,
1372
+ "value": "0",
1373
+ "valueTwo": null,
1374
+ "tier": 2,
1375
+ "loc": {
1376
+ "title": "Quartermaster",
1377
+ "desc": "Collect 25 ammo boxes"
1378
+ }
1379
+ },
1380
+ {
1381
+ "id": 82,
1382
+ "loc_ref": "chlg_movement_collect_ammo_fifty",
1383
+ "type": 4,
1384
+ "subType": 18,
1385
+ "period": 0,
1386
+ "goal": 50,
1387
+ "reward": 1000,
1388
+ "conditional": 16,
1389
+ "value": "0",
1390
+ "valueTwo": null,
1391
+ "tier": 3,
1392
+ "loc": {
1393
+ "title": "Locked & Loaded",
1394
+ "desc": "Collect 50 ammo boxes"
1395
+ }
1396
+ },
1397
+ {
1398
+ "id": 83,
1399
+ "loc_ref": "chlg_movement_collect_grenade_ten",
1400
+ "type": 4,
1401
+ "subType": 18,
1402
+ "period": 0,
1403
+ "goal": 10,
1404
+ "reward": 100,
1405
+ "conditional": 17,
1406
+ "value": "1",
1407
+ "valueTwo": null,
1408
+ "tier": 1,
1409
+ "loc": {
1410
+ "title": "Explosives expert",
1411
+ "desc": "Collect 10 grenades"
1412
+ }
1413
+ },
1414
+ {
1415
+ "id": 84,
1416
+ "loc_ref": "chlg_movement_collect_grenade_twenty_five",
1417
+ "type": 4,
1418
+ "subType": 18,
1419
+ "period": 0,
1420
+ "goal": 25,
1421
+ "reward": 500,
1422
+ "conditional": 17,
1423
+ "value": "1",
1424
+ "valueTwo": null,
1425
+ "tier": 2,
1426
+ "loc": {
1427
+ "title": "Bombardier",
1428
+ "desc": "Collect 25 grenades"
1429
+ }
1430
+ },
1431
+ {
1432
+ "id": 85,
1433
+ "loc_ref": "chlg_movement_collect_grenade_fifty",
1434
+ "type": 4,
1435
+ "subType": 18,
1436
+ "period": 0,
1437
+ "goal": 50,
1438
+ "reward": 1000,
1439
+ "conditional": 17,
1440
+ "value": "1",
1441
+ "valueTwo": null,
1442
+ "tier": 3,
1443
+ "loc": {
1444
+ "title": "Explosive Temper",
1445
+ "desc": "Collect 50 grenades"
1446
+ }
1447
+ },
1448
+ {
1449
+ "id": 86,
1450
+ "loc_ref": "chlg_timed_timeAlive_thirty",
1451
+ "type": 5,
1452
+ "subType": 7,
1453
+ "period": 0,
1454
+ "goal": 1,
1455
+ "reward": 100,
1456
+ "conditional": 7,
1457
+ "value": "30",
1458
+ "valueTwo": null,
1459
+ "tier": 1,
1460
+ "loc": {
1461
+ "title": "Running Scared",
1462
+ "desc": "Stay alive for 30 sec"
1463
+ }
1464
+ },
1465
+ {
1466
+ "id": 87,
1467
+ "loc_ref": "chlg_timed_timeAlive_sixty",
1468
+ "type": 5,
1469
+ "subType": 7,
1470
+ "period": 0,
1471
+ "goal": 1,
1472
+ "reward": 200,
1473
+ "conditional": 7,
1474
+ "value": "60",
1475
+ "valueTwo": null,
1476
+ "tier": 2,
1477
+ "loc": {
1478
+ "title": "Hard to Beat",
1479
+ "desc": "Stay alive for 1 min"
1480
+ }
1481
+ },
1482
+ {
1483
+ "id": 88,
1484
+ "loc_ref": "chlg_timed_timeAlive_three_hundred",
1485
+ "type": 5,
1486
+ "subType": 7,
1487
+ "period": 0,
1488
+ "goal": 1,
1489
+ "reward": 2500,
1490
+ "conditional": 7,
1491
+ "value": "300",
1492
+ "valueTwo": null,
1493
+ "tier": 3,
1494
+ "loc": {
1495
+ "title": "Happily Ever After",
1496
+ "desc": "Stay alive for 5 min"
1497
+ }
1498
+ },
1499
+ {
1500
+ "id": 90,
1501
+ "loc_ref": "chlg_timed_timePlayed_three_hundred",
1502
+ "type": 5,
1503
+ "subType": 6,
1504
+ "period": 0,
1505
+ "goal": 300,
1506
+ "reward": 200,
1507
+ "conditional": 6,
1508
+ "value": "300",
1509
+ "valueTwo": null,
1510
+ "tier": 0,
1511
+ "loc": {
1512
+ "title": "Shell Shocked!",
1513
+ "desc": "Play for 5 min"
1514
+ }
1515
+ },
1516
+ {
1517
+ "id": 91,
1518
+ "loc_ref": "chlg_timed_timePlayed_nine_hundred",
1519
+ "type": 5,
1520
+ "subType": 6,
1521
+ "period": 0,
1522
+ "goal": 900,
1523
+ "reward": 500,
1524
+ "conditional": 6,
1525
+ "value": "900",
1526
+ "valueTwo": null,
1527
+ "tier": 1,
1528
+ "loc": {
1529
+ "title": "Not so Noob",
1530
+ "desc": "Play for 15 min"
1531
+ }
1532
+ },
1533
+ {
1534
+ "id": 92,
1535
+ "loc_ref": "chlg_timed_timePlayed_eighteen_hundred",
1536
+ "type": 5,
1537
+ "subType": 6,
1538
+ "period": 0,
1539
+ "goal": 1800,
1540
+ "reward": 1000,
1541
+ "conditional": 6,
1542
+ "value": "1800",
1543
+ "valueTwo": null,
1544
+ "tier": 2,
1545
+ "loc": {
1546
+ "title": "Oval Office",
1547
+ "desc": "Play for 30 min"
1548
+ }
1549
+ },
1550
+ {
1551
+ "id": 93,
1552
+ "loc_ref": "chlg_timed_timePlayed_thirty_six_hundred",
1553
+ "type": 5,
1554
+ "subType": 6,
1555
+ "period": 0,
1556
+ "goal": 3600,
1557
+ "reward": 2500,
1558
+ "conditional": 6,
1559
+ "value": "3600",
1560
+ "valueTwo": null,
1561
+ "tier": 3,
1562
+ "loc": {
1563
+ "title": "On That Grind",
1564
+ "desc": "Play for 60 min"
1565
+ }
1566
+ },
1567
+ {
1568
+ "id": 94,
1569
+ "loc_ref": "chlg_kotc_capturing_timeAlive_twenty",
1570
+ "type": 6,
1571
+ "subType": 20,
1572
+ "period": 0,
1573
+ "goal": 1,
1574
+ "reward": 100,
1575
+ "conditional": 7,
1576
+ "value": "10",
1577
+ "valueTwo": null,
1578
+ "tier": 1,
1579
+ "loc": {
1580
+ "title": "Hold the Fort",
1581
+ "desc": "Stand on Coop for 10 sec"
1582
+ }
1583
+ },
1584
+ {
1585
+ "id": 95,
1586
+ "loc_ref": "chlg_kotc_capture",
1587
+ "type": 6,
1588
+ "subType": 21,
1589
+ "period": 0,
1590
+ "goal": 1,
1591
+ "reward": 100,
1592
+ "conditional": null,
1593
+ "value": null,
1594
+ "valueTwo": null,
1595
+ "tier": 1,
1596
+ "loc": {
1597
+ "title": "Coop King",
1598
+ "desc": "Capture a Coop"
1599
+ }
1600
+ },
1601
+ {
1602
+ "id": 96,
1603
+ "loc_ref": "chlg_kotc_win_one",
1604
+ "type": 6,
1605
+ "subType": 23,
1606
+ "period": 0,
1607
+ "goal": 1,
1608
+ "reward": 200,
1609
+ "conditional": null,
1610
+ "value": null,
1611
+ "valueTwo": null,
1612
+ "tier": 1,
1613
+ "loc": {
1614
+ "title": "King of the Coop",
1615
+ "desc": "Win a KotC match"
1616
+ }
1617
+ },
1618
+ {
1619
+ "id": 97,
1620
+ "loc_ref": "chlg_kotc_win_three",
1621
+ "type": 6,
1622
+ "subType": 23,
1623
+ "period": 0,
1624
+ "goal": 3,
1625
+ "reward": 500,
1626
+ "conditional": null,
1627
+ "value": null,
1628
+ "valueTwo": null,
1629
+ "tier": 2,
1630
+ "loc": {
1631
+ "title": "Team Sports",
1632
+ "desc": "Win 3 KotC matches"
1633
+ }
1634
+ },
1635
+ {
1636
+ "id": 98,
1637
+ "loc_ref": "chlg_kotc_win_five",
1638
+ "type": 6,
1639
+ "subType": 23,
1640
+ "period": 0,
1641
+ "goal": 5,
1642
+ "reward": 1000,
1643
+ "conditional": null,
1644
+ "value": null,
1645
+ "valueTwo": null,
1646
+ "tier": 3,
1647
+ "loc": {
1648
+ "title": "Rule the Roost",
1649
+ "desc": "Win 5 KotC matches"
1650
+ }
1651
+ },
1652
+ {
1653
+ "id": 99,
1654
+ "loc_ref": "chlg_kotc_win_ten",
1655
+ "type": 6,
1656
+ "subType": 23,
1657
+ "period": 0,
1658
+ "goal": 10,
1659
+ "reward": 2500,
1660
+ "conditional": null,
1661
+ "value": null,
1662
+ "valueTwo": null,
1663
+ "tier": 3,
1664
+ "loc": {
1665
+ "title": "Coop Commander",
1666
+ "desc": "Win 10 KotC matches"
1667
+ }
1668
+ },
1669
+ {
1670
+ "id": 100,
1671
+ "loc_ref": "chlg_kotc_coop_kill",
1672
+ "type": 6,
1673
+ "subType": 20,
1674
+ "period": 0,
1675
+ "goal": 1,
1676
+ "reward": 200,
1677
+ "conditional": 10,
1678
+ "value": null,
1679
+ "valueTwo": null,
1680
+ "tier": 1,
1681
+ "loc": {
1682
+ "title": "Defender",
1683
+ "desc": "Kill an egg from the Coop"
1684
+ }
1685
+ },
1686
+ {
1687
+ "id": 101,
1688
+ "loc_ref": "chlg_kotc_coop_kill_victim_capturing",
1689
+ "type": 6,
1690
+ "subType": 20,
1691
+ "period": 0,
1692
+ "goal": 1,
1693
+ "reward": 200,
1694
+ "conditional": 10,
1695
+ "value": "18",
1696
+ "valueTwo": null,
1697
+ "tier": 1,
1698
+ "loc": {
1699
+ "title": "Offender",
1700
+ "desc": "Kill an egg on a Coop"
1701
+ }
1702
+ },
1703
+ {
1704
+ "id": 102,
1705
+ "loc_ref": "chlg_cts_pick_up",
1706
+ "type": 7,
1707
+ "subType": 21,
1708
+ "period": 0,
1709
+ "goal": 1,
1710
+ "reward": 200,
1711
+ "conditional": null,
1712
+ "value": null,
1713
+ "valueTwo": null,
1714
+ "tier": 1,
1715
+ "loc": {
1716
+ "title": "Fry Cook",
1717
+ "desc": "CTS: Pick up the Spatula"
1718
+ }
1719
+ },
1720
+ {
1721
+ "id": 103,
1722
+ "loc_ref": "chlg_cts_capture_timeAlive_thirty",
1723
+ "type": 7,
1724
+ "subType": 21,
1725
+ "period": 0,
1726
+ "goal": 1,
1727
+ "reward": 500,
1728
+ "conditional": 7,
1729
+ "value": "30",
1730
+ "valueTwo": null,
1731
+ "tier": 2,
1732
+ "loc": {
1733
+ "title": "Keepaway",
1734
+ "desc": "CTS: Hold the Spatula for 30s"
1735
+ }
1736
+ },
1737
+ {
1738
+ "id": 104,
1739
+ "loc_ref": "chlg_cts_win_ten",
1740
+ "type": 7,
1741
+ "subType": 23,
1742
+ "period": 0,
1743
+ "goal": 20,
1744
+ "reward": 1000,
1745
+ "conditional": null,
1746
+ "value": null,
1747
+ "valueTwo": null,
1748
+ "tier": 1,
1749
+ "loc": {
1750
+ "title": "Sunny Side Up!",
1751
+ "desc": "CTS: Gain 20+ kills holding the spatula"
1752
+ }
1753
+ },
1754
+ {
1755
+ "id": 105,
1756
+ "loc_ref": "chlg_cts_win_twenty_five",
1757
+ "type": 7,
1758
+ "subType": 23,
1759
+ "period": 0,
1760
+ "goal": 50,
1761
+ "reward": 4000,
1762
+ "conditional": null,
1763
+ "value": null,
1764
+ "valueTwo": null,
1765
+ "tier": 2,
1766
+ "loc": {
1767
+ "title": "Flippin 'em",
1768
+ "desc": "CTS: Gain 50+ kills holding the spatula"
1769
+ }
1770
+ },
1771
+ {
1772
+ "id": 106,
1773
+ "loc_ref": "chlg_cts_win_fifty",
1774
+ "type": 7,
1775
+ "subType": 23,
1776
+ "period": 0,
1777
+ "goal": 100,
1778
+ "reward": 10000,
1779
+ "conditional": null,
1780
+ "value": null,
1781
+ "valueTwo": null,
1782
+ "tier": 3,
1783
+ "loc": {
1784
+ "title": "Makin' Bacon",
1785
+ "desc": "CTS: Gain 100+ kills holding the spatula"
1786
+ }
1787
+ },
1788
+ {
1789
+ "id": 107,
1790
+ "loc_ref": "chlg_cts_kills_victim_spatula",
1791
+ "type": 7,
1792
+ "subType": 10,
1793
+ "period": 0,
1794
+ "goal": 1,
1795
+ "reward": 200,
1796
+ "conditional": null,
1797
+ "value": null,
1798
+ "valueTwo": null,
1799
+ "tier": 2,
1800
+ "loc": {
1801
+ "title": "Kill the Cook",
1802
+ "desc": "CTS: Kill the Spatula holder"
1803
+ }
1804
+ },
1805
+ {
1806
+ "id": 108,
1807
+ "loc_ref": "chlg_cts_kills_killstreak_five",
1808
+ "type": 7,
1809
+ "subType": 10,
1810
+ "period": 0,
1811
+ "goal": 1,
1812
+ "reward": 500,
1813
+ "conditional": 0,
1814
+ "value": "5",
1815
+ "valueTwo": null,
1816
+ "tier": 3,
1817
+ "loc": {
1818
+ "title": "Flippin' Dangerous",
1819
+ "desc": "CTS: Get a 5 KS with the spatula"
1820
+ }
1821
+ }
1822
+ ];