-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsample-data.json
6904 lines (6904 loc) · 191 KB
/
sample-data.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"keywordDict": {
"Skirmish": "Intended for use in Skirmish matches.",
"Low Profile": "While defending, if you have light cover, improve your cover by 1.",
"Generator": "During the End Phase, flip X inactive shield token(s).",
"Agile": "After you perform a standard move, gain X dodge token(s). Note: climbing, clambering, embarking, disembarking, pivoting, and reversing are not standard moves. This effect does not trigger abilities that occur after dodge actions are performed.",
"Compel": "After another friendly unit at range 1-2 rallies, if it is suppressed but not panicked, it may gain 1 suppression token to perform a free move action.",
"Transport: Closed": "You may transport up to X friendly trooper units.",
"Immune": "X cannot be used against you.",
"Creature Trooper": "You can: obscure other minis and provide light cover while doing so, pivot and reverse, displace troopers when moving through them. You do not: improve your cover while you have 1 or more suppression tokens, get cover from barricades, embark or disembark, use CLAIM/SABOTAGE/REPAIR abilities, be displaced",
"Vehicle": "You can: pivot, block line of sight. Ground vehicles can: reverse, move through repulsor vehicles, perform the standby action, obscure other minis and provide cover. Repuslor vehicles: can move through troopers and vehicles.",
"Surge Token": "Spending one or more surge tokens will convert the same number of surges to blocks while defending or using using GUARDIAN, and to hits while attacking.",
"Speeder": "While moving, ignore terrain that is height X or lower. When you activate, perform a compulsory move.",
"Hover": "You can reverse, strafe, and standby. You are treated as a ground vehicle by other units.",
"Heavy Weapon Team": "You must equip a Heavy Weapon upgrade card. The mini added by that card is your unit leader.",
"Nimble": "After defending, if you spent 1 or more dodge tokens, gain 1 dodge token.",
"Indomitable": "During your Rally step, roll red defense dice instead of white.",
"Versatile": "You can perform ranged attacks using this weapon while engaged.",
"Cunning": "When your commander-specific command cards are played, if there would be a tie for priority, treat your command card as though it had 1 fewer pip.",
"Reposition": "Either before or after you perform a standard move, you may perform a free pivot action.",
"Sidearm": "While performing a melee attack, this mini can only use the weapon on this card.",
"Enrage": "While you have 4 or more wound tokens, treat your courage as \"-\" and gain CHARGE.",
"Fixed": "The defender must be inside your X arc(s).",
"Full Pivot": "When you pivot, you can pivot up to 360 degrees.",
"Entourage": "While building an army, ignore the rank of 1 X unit. During the Command Phase, you may issue an order to a friendly X unit at range 1-2.",
"Ion Token": "At the start of a unit's activation, if it has 1 or more ion tokens, it loses one action for each ion token. At the end of a unit's activation, it removes any ion tokens it has. A unit may still perform free actions if it loses both of its actions due to ion tokens.",
"Ram": "While you perform an attack, during the \"Modify Attack Dice\" step, you may change X attack die results to crit results if you performed at least 1 full standard move at max speed during the same activation as the attack.",
"Spotter": "Choose X friendly unit at range 1. That unit gains an aim token.",
"Sentinel": "Your standby range is 1-3.",
"Arm": "Place X of the specified charge tokens within range 1 and in line of sight of your unit leader.",
"Recharge": "When you recover, flip up to X inactive shield tokens to their active side.",
"Impact": "While attacking a unit that has ARMOR, change up to X hit results to crit results.",
"Gunslinger": "After you perform a ranged attack, you may perform an additional ranged attack against a different unit.",
"Regenerate": "At the end of your activation, roll 1 white defense die for each wound token you have, up to X. For each defense surge or block result, remove 1 wound token.",
"Danger Sense": "You may choose not to remove your suppression tokens. While defending against a ranged attack, roll 1 extra defense die for each suppression token you have, adding up to X extra dice.",
"Makashi Mastery": "While performing a melee attack, you may reduce the PIERCE value of your melee weapon by 1. If you do, the defender cannot use IMMUNE: PIERCE or IMPERVIOUS.",
"Demoralize": "After your Rally step, an enemy unit at range 1-2 gains up to X suppression tokens.",
"Emplacement Trooper": "You can: obscure other minis and provided light cover when doing so, pivot. You cannot: climb or clamber, use CLAIM/SABOTAGE/REPAIR, be displaced, be moved through by ground vehicles.",
"Graffiti Token": "During the Rally step of a friendly unit's activation: if it has line of sight to a friendly graffiti token at range 1-2, it may roll 1 additional die; if it has line of sight to an enemy graffiti token at range 1-2, it must roll 1 fewer die, to a minimum of 1.",
"Uncanny Luck": "While defending, you may reroll up to X defense dice.",
"Ion": "A vehicle or droid wounded by an attack that includes this weapon gains X ion tokens. At the start of the Roll Defense Dice step, before any other effects, if the attack pool has ION X, for each hit or critical result, up to X, the defender must flip an active shield token without resolving its effect, if able.",
"Barrage": "If you do not use ARSENAL during your activation, you can perform up to 2 attack actions.",
"Soresu Master": "While defending or using GUARDIAN, if you spend a dodge token, you gain surge to block and the attacker suffers 1 wound for each surge rolled.",
"Spur": "While performing a move, you may gain 1 suppression token to increase your maximum speed by 1.",
"Pulling the Strings": "Choose a friendly trooper unit at range 1-2. That unit may perform a free attack action or a free move action.",
"Target": "After you are issued an order, gain X aim tokens.",
"Cover": "While defending against a ranged attack, improve your cover by X.",
"Distract": "Choose an enemy trooper at range 1-2 and in line of sight. Until the end of the round, you lose INCONSPICUOUS and when that unit performs an attack, it must attack you, if able.",
"Weak Point": "While defending, if the attacker's unit leader is inside your X arc(s), the attack pool gains IMPACT 1.",
"Ready": "After you perform a standby action, gain 1 aim token.",
"Smoke": "Place X smoke token(s) within range 1 and in line of sight of your unit leader.",
"Stationary": "You cannot perform moves, except pivots.",
"Block": "While defending, if you spend a dodge token, you gain surge to block.",
"Precise": "When you spend an aim token, reroll up to X additional dice.",
"Disengage": "You may perform moves while engaged with 1 unit.",
"Inspire": "After your Rally step, remove up to X suppression tokens from another friendly unit at range 1-2.",
"Arsenal": "While attacking, each mini in this unit can use up to X of its weapons.",
"Jump": "Perform a move during which you ignore terrain that is height 1 or lower. This is treated as a move action.",
"Jedi Hunter": "While attacking a unit that has a Force upgrade icon, you gain surge to crit.",
"Shield Token": "While defending against a ranged attack, during the Roll Defense Dice step, before rolling defense dice, you may flip any number of active shield tokens. For each shield token flipped this way, the defender adds 1 block result and rolls 1 fewer defense die.",
"Dauntless": "After you rally, if you are suppressed but not panicked, you may gain 1 suppression token to perform a free move action.",
"Defend": "When you are issued an order, you may gain X dodge tokens.",
"Critical": "While converting attack surges, you may convert up to X surge results to critical results.",
"Treat": "Place a wound token on this card to choose a friendly trooper unit at range 1 and in line of sight and remove up to X wound or poison tokens from that unit or restore up to X miniatures to that unit. Limit Y tokens.",
"Suppressive": "After you perform an attack, the defender that this weapon was used against gains 1 suppression token.",
"Leader": "This mini is your unit leader.",
"Guardian": "While a friendly trooper unit at range 1 and in line of sight is defending against a ranged attack, you may cancel up to X hit results. For each result canceled, roll 1 of your defense dice. Convert any surges, then suffer 1 wound for each blank result.",
"Outmaneuver": "You can spend dodge tokens to cancel critical hit results.",
"Armor": "While defending, cancel up to X hit results.",
"Scout": "After you deploy, you may perform a speed-X move.",
"Wheel Mode": "When you activate, you may increase your maximum speed to 3. If you do, until the end of the round, you gain COVER 2 and cannot attack or flip active shield tokens. This is a free action that can only be done at the start of this unit's activation.",
"Unhindered": "You ignore the effects of difficult terrain.",
"Expert Climber": "While clambering, do not roll defense dice or suffer wounds.",
"Blast": "Ignore cover.",
"Inconspicuous": "While an enemy unit performs an attack, if you have at least one suppression token, it must attack another unit, if able. During your Rally step, you may choose not to remove your suppression tokens.",
"Steady": "After you perform a move action, you may perform a free ranged attack action.",
"Detonate": "After a unit controlled by any player performs an action, you may detonate X of the friendly specified charge tokens.",
"Tactical": "After you perform a standard move, gain X aim tokens.",
"Coordinate": "After you are issued an order, you may issue an order to a friendly unit with the name or type specified by X at range 1.",
"Scatter": "After performing an attack against a trooper unit with small bases, you may move any non-leader minis in the defending unit, following the all the rules of cohesion, as if the unit leader had performed a standard move.",
"Repair": "Place a wound token on this card to remove up to X wound, ion, or vehicle damage tokens from a friendly vehicle at range 1 and in line of sight. Limit Y tokens.",
"Droid Trooper": "Droid troopers do not lose actions and do not gain cover from suppression. Droids can still become panicked due to suppression, however.",
"Tow Cable": "After a vehicle is wounded by an attack that includes this weapon, perform a pivot with that vehicle.",
"Charge": "After you perform a move action, you may perform a free melee attack action.",
"Disciplined": "When you are issued an order, you may remove up to X suppression tokens.",
"Secret Mission": "Once per game, if you are within an enemy deployment zone, place 1 victory token on you. At the end of the game, if you have a victory token, gain that token.",
"Teamwork": "While you are at range 1-2 of X, when you or X gains an aim or dodge token, the other unit gains a token of the same type.",
"Plodding": "During your activation, you can perform only 1 standard move.",
"Poison Token": "At the end of a unit's activation, it suffers 1 wound for each poison token it has, then discards each poison token it has. Vehicles and droid trooper units cannot gain poison tokens.",
"Grounded": "You cannot climb or clamber.",
"Light Transport: Closed": "You may transport X friendly trooper units that consists of exactly 1 small base mini.",
"Calculate Odds": "Choose a friendly trooper unit at range 1 and in line of sight. It gains 1 aim, 1 dodge, and 1 suppression token",
"Bounty": "After setup, place a victory token on an enemy commander or operative. If you defeat a unit with a victory token, move that token to your. At the end of the game, if you have a victory token, gain that token.",
"Master of the Force": "During the End Phase, you may ready X of your Force upgrade cards.",
"Deflect": "While defending, if you spend a dodge token, any defense surge results are converted to block results; if it's a ranged attack, the attacker suffers 1 wound for each defense surge rolled.",
"Spray": "Add this weapon's dice to the attack pool one time for each mini in the defending unit to which line of sight is not blocked.",
"Detachment": "During army building, you may only be included if a unit that has the name or type specified by X is also included in your army. Each unit with the DETACHMENT keyword requires a corresponding unit that matches the unit name or type specified.",
"Reconfigure": "When you recover, you may flip this card.",
"Infiltrate": "You may deploy anywhere beyond range 3 of all enemy units.",
"Pierce": "While attacking, cancel up to X block results.",
"Shielded": "You have X shield tokens.",
"Sharpshooter": "While performing a ranged attack, reduce the defneder's cover by X.",
"Counterpart": "While building an army, this mini must be added to an X unit.",
"Take Cover": "Choose X friendly trooper units at range 1. That unit gains a dodge token.",
"Relentless": "After you perform a move action, you may perform 1 free attack action.",
"Impervious": "While defending, if the attack pool has PIERCE X, roll X additional defense dice.",
"Noncombatant": "This mini cannot use any weapons and wounds must be assigned to other non-unit leader minis first.",
"Transport: Open": "You may transport up to X friendly trooper units. After defending, if you suffered 1 or more wounds, each unit you are transporting suffers 1 wound.",
"High Velocity": "While attacking, if each weapon in your attack pool has HIGH VELOCITY, the defender cannot spend dodge tokens.",
"Climbing Vehicle": "You are treated as a trooper for the purposes of vertical movement.",
"Quick Thinking": "Gain 1 aim token and 1 dodge token.",
"AI": "Unless you have a faceup order token, your first action must be one of the following, if able: X",
"Light Transport: Open": "You may transport X friendly trooper units that consists of exactly 1 small base mini. After defending, if you suffered 1 or more wounds, each unit you are transporting suffers 1 wound.",
"Cumbersome": "You cannot use this weapon and move during the same activation.",
"Fire Support": "When another friendly unit performs a ranged attack, if you have a faceup order token, each mini in your unit may add an eligible weapon to the attack pool. If you do, flip your order token facedown. Limit 1 FIRE SUPPORT per attack pool. Note: Can still be used even if a unit would panic during its activation. Only the main unit attacking determines cover, LoS, and surges.",
"Beam": "After performing an attack with this weapon, you may perform up to 2 extra attacks using only this weapon. Each attack must be against an enemy unit that is in line of sight, has not already defended, and is at range 1 of the defender.",
"Cycle": "At the end of your activation, if you did not use this card, ready it."
},
"communityLinks": {
"Blogs": [
{
"url": "https://boringbloganyway.com/",
"name": "Boring Blog Anyway"
},
{
"url": "https://imperialdiscipline.blog",
"name": "Imperial Discipline"
},
{
"url": "https://www.legionacademy.net/",
"name": "Legion Academy"
},
{
"url": "http://empirelegion.com/",
"name": "New Ways to Motivate Them"
},
{
"url": "https://thefifthtrooper.com/blog/",
"name": "The Fifth Trooper"
},
{
"url": "https://thejedhajournal.home.blog/",
"name": "The Jedha Journal"
}
],
"YouTube": [
{
"url": "https://www.youtube.com/channel/UCt9cO9QooyLopZmu2XT4T0w",
"name": "Crabbok"
},
{
"url": "https://www.youtube.com/channel/UC8Qun7vCxcyDbatJN86lJfA",
"name": "MOTF"
},
{
"url": "https://www.youtube.com/channel/UCfmdCCJ9Usa686sLnlnVN6Q",
"name": "On the Table Gaming"
},
{
"url": "https://www.youtube.com/channel/UC2sw3SVD5Yj0OWyxZ6PtAUw",
"name": "Tabletop Oddity"
},
{
"url": "https://www.youtube.com/channel/UCd0GhVw1I14cjsEqPCvVb2Q",
"name": "The Fifth Trooper"
},
{
"url": "https://www.youtube.com/channel/UC_PSSkPl3uNAR1Y_QyK7VsQ",
"name": "War Corgi"
}
],
"Dice Simulators": [
{
"url": "https://thefifthtrooper.com/attack-dice-simulator/",
"name": "The Fifth Trooper Simulator"
},
{
"url": "https://swlegion.github.io/rollcrits/index.html",
"name": "RollCrits"
}
],
"Podcasts": [
{
"url": "https://podnews.net/podcast/1455435482",
"name": "Legion Academy"
},
{
"url": "http://legionoutriders.libsyn.com/",
"name": "Legion Outriders"
},
{
"url": "https://thefifthtrooper.com/notorious-scoundrels-podcast/",
"name": "Notorious Scoundrels"
},
{
"url": "http://renegadefleetcommand.libsyn.com/",
"name": "Renegade Fleet Command"
},
{
"url": "https://swstabcast.podbean.com/",
"name": "STABCast"
},
{
"url": "https://dbmsrcr1.podbean.com/",
"name": "The 82nd Legion"
},
{
"url": "https://thefifthtrooper.com/the-fifth-trooper-podcast/",
"name": "The Fifth Trooper"
}
]
},
"additionalKeywords": {
"Creature Trooper Movement": "You can move through, but not displace: friendly/enemy repulsor vehicle minis; but not: friendly/enemy ground vehicle minis. You can displace by moving through: friendly/enemy trooper minis; but not: a trooper mini that is engaged. You cannot move through or displace: emplacement or creature trooper minis. While you are engaged, you do not have to withdraw to perform moves and can displace non-creature, non-emplacement trooper units with which they are engaged while doing so.",
"Emplacement Trooper Movement": "You can move through: friendly/enemy non-creature trooper minis and repulsor vehicle minis; but not: friendly/enemy ground vehicles minis, or creature trooper minis. You can: pivot, embark, and disembark; but cannot: climb, clamber, or reverse."
},
"allCards": {
"gw": {
"cardType": "unit",
"displayName": "",
"additionalTags": [
"red defense"
],
"cardSubtype": "trooper",
"cardName": "Obi-Wan Kenobi",
"isUnique": true,
"rank": "commander",
"iconLocation": "/images/unitIcons/Obi-Wan%20Kenobi.jpeg",
"cost": 175,
"products": [],
"faction": "republic",
"imageLocation": "/images/unitCards/Obi-Wan%20Kenobi.jpeg",
"keywords": [
"Jump",
"Charge",
"Guardian",
"Immune",
"Master of the Force",
"Soresu Master",
"Critical",
"Impact",
"Pierce"
],
"upgradeBar": [
"force",
"force",
"command",
"training"
],
"id": "gw"
},
"gv": {
"cardType": "unit",
"displayName": "",
"additionalTags": [
"white defense",
"block surge",
"hit surge"
],
"links": [
{
"titles": [
"Rebel Veterans"
],
"blogName": "Legion Academy",
"urls": [
"https://www.legionacademy.net/2019/07/09/rebel-veterans/"
]
},
{
"titles": [
"Rebel Veterans - Quick and Dirty"
],
"blogName": "The Fifth Trooper",
"urls": [
"https://thefifthtrooper.com/rebel-veterans-quick-and-dirty/"
]
}
],
"cardSubtype": "trooper",
"cardName": "Rebel Veterans",
"isUnique": false,
"rank": "corps",
"iconLocation": "/images/unitIcons/Rebel%20Veterans.jpeg",
"cost": 48,
"products": [],
"faction": "rebels",
"imageLocation": "/images/unitCards/Rebel%20Veterans.jpeg",
"keywords": [
"Defend",
"Coordinate"
],
"upgradeBar": [
"heavy weapon",
"personnel",
"training",
"gear",
"grenades"
],
"id": "gv"
},
"gu": {
"displayName": "",
"cardSubtype": "personnel",
"cardName": "Rebel Veteran",
"iconLocation": "/images/upgradeIcons/Rebel%20Veteran.jpeg",
"isUnique": false,
"cardType": "upgrade",
"cost": 12,
"products": [],
"faction": "rebels",
"imageLocation": "/images/upgradeCards/Rebel%20Veteran.jpeg",
"keywords": [],
"requirements": [
"Rebel Veterans"
],
"id": "gu"
},
"gt": {
"displayName": "",
"cardSubtype": "heavy weapon",
"cardName": "Pao",
"iconLocation": "/images/upgradeIcons/Pao.jpeg",
"isUnique": true,
"cardType": "upgrade",
"cost": 22,
"products": [],
"faction": "rebels",
"imageLocation": "/images/upgradeCards/Pao.jpeg",
"keywords": [
"Inspire",
"Leader"
],
"requirements": [
"Rebel Pathfinders"
],
"id": "gt"
},
"gs": {
"displayName": "",
"cardSubtype": "heavy weapon",
"cardName": "Bistan",
"iconLocation": "/images/upgradeIcons/Bistan.jpeg",
"isUnique": true,
"cardType": "upgrade",
"cost": 32,
"products": [],
"faction": "rebels",
"imageLocation": "/images/upgradeCards/Bistan.jpeg",
"keywords": [
"Impact",
"Ion",
"Ion Token"
],
"requirements": [
"Rebel Pathfinders"
],
"id": "gs"
},
"gr": {
"displayName": "Rifle Gunner",
"cardSubtype": "crew",
"cardName": "A-300 Rifle Gunner",
"iconLocation": "/images/upgradeIcons/A-300%20Rifle%20Gunner.jpeg",
"isUnique": false,
"cardType": "upgrade",
"cost": 9,
"products": [],
"faction": "rebels",
"imageLocation": "/images/upgradeCards/A-300%20Rifle%20Gunner.jpeg",
"keywords": [],
"requirements": [
"X-34 Landspeeder"
],
"id": "gr"
},
"gq": {
"displayName": "Rocket Gunner",
"cardSubtype": "crew",
"cardName": "RPS-6 Rocket Gunner",
"iconLocation": "/images/upgradeIcons/RPS-6%20Rocket%20Gunner.jpeg",
"isUnique": false,
"cardType": "upgrade",
"cost": 36,
"products": [],
"faction": "rebels",
"imageLocation": "/images/upgradeCards/RPS-6%20Rocket%20Gunner.jpeg",
"keywords": [
"Impact"
],
"requirements": [
"X-34 Landspeeder"
],
"id": "gq"
},
"gp": {
"displayName": "",
"cardSubtype": "pilot",
"cardName": "Outer Rim Speeder Jockey",
"iconLocation": "/images/upgradeIcons/Outer%20Rim%20Speeder%20Jockey.jpeg",
"isUnique": false,
"cardType": "upgrade",
"cost": 10,
"products": [],
"faction": "rebels",
"imageLocation": "/images/upgradeCards/Outer%20Rim%20Speeder%20Jockey.jpeg",
"keywords": [
"Cover"
],
"requirements": [
"repulsor vehicle"
],
"id": "gp"
},
"gz": {
"displayName": "",
"cardSubtype": "pilot",
"cardName": "First Sergeant Arbmab",
"iconLocation": "/images/upgradeIcons/First%20Sergeant%20Arbmab.jpeg",
"isUnique": true,
"cardType": "upgrade",
"cost": 5,
"products": [],
"faction": "empire",
"imageLocation": "/images/upgradeCards/First%20Sergeant%20Arbmab.jpeg",
"keywords": [
"Tactical"
],
"requirements": [
"ground vehicle"
],
"id": "gz"
},
"gy": {
"cardType": "unit",
"displayName": "",
"additionalTags": [
"red defense"
],
"cardSubtype": "trooper",
"cardName": "Phase I Clone Troopers",
"isUnique": false,
"rank": "corps",
"iconLocation": "/images/unitIcons/Phase%20I%20Clone%20Troopers.jpeg",
"cost": 52,
"products": [],
"faction": "republic",
"imageLocation": "/images/unitCards/Phase%20I%20Clone%20Troopers.jpeg",
"keywords": [
"Fire Support"
],
"upgradeBar": [
"heavy weapon",
"personnel",
"gear",
"grenades"
],
"id": "gy"
},
"gx": {
"cardType": "unit",
"displayName": "Battle Droids",
"additionalTags": [
"white defense"
],
"cardSubtype": "droid trooper",
"cardName": "B1 Battle Droids",
"isUnique": false,
"rank": "corps",
"iconLocation": "/images/unitIcons/B1%20Battle%20Droids.jpeg",
"cost": 36,
"products": [],
"faction": "separatists",
"imageLocation": "/images/unitCards/B1%20Battle%20Droids.jpeg",
"keywords": [
"AI",
"Coordinate",
"Droid Trooper"
],
"upgradeBar": [
"heavy weapon",
"personnel",
"comms",
"gear"
],
"id": "gx"
},
"gg": {
"displayName": "",
"cardSubtype": "2",
"cardName": "Reptilian Rampage",
"cardType": "command",
"commander": "Bossk",
"iconLocation": "/images/commandIcons/Reptilian%20Rampage.jpeg",
"products": [],
"faction": "empire",
"imageLocation": "/images/commandCards/Reptilian%20Rampage.jpeg",
"keywords": [],
"id": "gg"
},
"gf": {
"displayName": "",
"cardSubtype": "1",
"cardName": "Merciless Munitions",
"cardType": "command",
"commander": "Bossk",
"iconLocation": "/images/commandIcons/Merciless%20Munitions.jpeg",
"products": [],
"faction": "empire",
"imageLocation": "/images/commandCards/Merciless%20Munitions.jpeg",
"keywords": [
"Arm",
"Detonate",
"Poison Token"
],
"id": "gf"
},
"ge": {
"displayName": "",
"cardSubtype": "2",
"cardName": "Deploy the Garrison",
"cardType": "command",
"commander": "Director Orson Krennic",
"iconLocation": "/images/commandIcons/Deploy%20the%20Garrison.jpeg",
"products": [],
"faction": "empire",
"imageLocation": "/images/commandCards/Deploy%20the%20Garrison.jpeg",
"keywords": [],
"id": "ge"
},
"gd": {
"displayName": "",
"cardSubtype": "3",
"cardName": "Annihilation Looms",
"cardType": "command",
"commander": "Director Orson Krennic",
"iconLocation": "/images/commandIcons/Annihilation%20Looms.jpeg",
"products": [],
"faction": "empire",
"imageLocation": "/images/commandCards/Annihilation%20Looms.jpeg",
"keywords": [],
"id": "gd"
},
"gc": {
"additionalTags": [],
"displayName": "AAT Battle Tank",
"iconLocation": "/images/unitIcons/AAT%20Trade%20Federation%20Battle%20Tank.jpeg",
"links": [],
"cardName": "AAT Trade Federation Battle Tank",
"cardSubtype": "repulsor vehicle",
"isUnique": false,
"rank": "heavy",
"cardType": "unit",
"cost": 170,
"products": [],
"faction": "separatists",
"imageLocation": "/images/unitCards/AAT%20Trade%20Federation%20Battle%20Tank.jpeg",
"keywords": [
"AI",
"Armor",
"Barrage",
"Hover",
"Weak Point",
"Fixed",
"Critical",
"High Velocity",
"Impact"
],
"upgradeBar": [
"pilot",
"ordnance",
"ordnance",
"comms"
],
"id": "gc"
},
"gb": {
"cardType": "unit",
"displayName": "Saber Fighter Tank",
"links": [],
"cardSubtype": "repulsor vehicle",
"faction": "republic",
"cardName": "TX-130 Saber-Class Fighter Tank",
"isUnique": false,
"rank": "heavy",
"iconLocation": "/images/unitIcons/TX-130%20Saber-Class%20Fighter%20Tank.jpeg",
"cost": 170,
"products": [],
"additionalTags": [],
"imageLocation": "/images/unitCards/TX-130%20Saber-Class%20Fighter%20Tank.jpeg",
"keywords": [
"Armor",
"Arsenal",
"Hover",
"Outmaneuver",
"Weak Point",
"Critical",
"Impact",
"Fixed"
],
"upgradeBar": [
"pilot",
"hardpoint",
"ordnance",
"comms"
],
"id": "gb"
},
"ga": {
"displayName": "Super Battle Droids",
"iconLocation": "/images/unitIcons/B2%20Super%20Battle%20Droids.jpeg",
"links": [],
"cardName": "B2 Super Battle Droids",
"faction": "separatists",
"isUnique": false,
"rank": "corps",
"upgradeBar": [
"heavy weapon",
"personnel",
"comms"
],
"cardType": "unit",
"cost": 48,
"products": [],
"additionalTags": [],
"imageLocation": "/images/unitCards/B2%20Super%20Battle%20Droids.jpeg",
"keywords": [
"AI",
"Armor"
],
"cardSubtype": "droid trooper",
"id": "ga"
},
"go": {
"displayName": "Elite Armor Pilot",
"cardSubtype": "pilot",
"cardName": "Imperial Hammers Elite Armor Pilot",
"iconLocation": "/images/upgradeIcons/Imperial%20Hammers%20Elite%20Armor%20Pilot.jpeg",
"isUnique": false,
"cardType": "upgrade",
"cost": 10,
"products": [],
"faction": "empire",
"imageLocation": "/images/upgradeCards/Imperial%20Hammers%20Elite%20Armor%20Pilot.jpeg",
"keywords": [],
"requirements": [
"ground vehicle"
],
"id": "go"
},
"gn": {
"displayName": "E-11D Config",
"cardSubtype": "armament",
"cardName": "E-11D Configuration",
"iconLocation": "/images/upgradeIcons/E-11D%20Configuration.jpeg",
"isUnique": false,
"cardType": "upgrade",
"cost": 8,
"products": [],
"faction": "empire",
"imageLocation": "/images/upgradeCards/E-11D%20Configuration.jpeg",
"keywords": [
"Blast",
"Suppressive",
"Reconfigure"
],
"requirements": [
"Imperial Death Troopers"
],
"id": "gn"
},
"gm": {
"displayName": "",
"cardSubtype": "heavy weapon",
"cardName": "DLT-19D Trooper",
"iconLocation": "/images/upgradeIcons/DLT-19D%20Trooper.jpeg",
"isUnique": false,
"cardType": "upgrade",
"cost": 34,
"products": [],
"faction": "empire",
"imageLocation": "/images/upgradeCards/DLT-19D%20Trooper.jpeg",
"keywords": [
"Impact"
],
"requirements": [
"Imperial Death Troopers"
],
"id": "gm"
},
"gl": {
"displayName": "",
"cardSubtype": "heavy weapon",
"cardName": "DT-F16",
"iconLocation": "/images/upgradeIcons/DT-F16.jpeg",
"isUnique": true,
"cardType": "upgrade",
"cost": 22,
"products": [],
"faction": "empire",
"imageLocation": "/images/upgradeCards/DT-F16.jpeg",
"keywords": [
"Compel",
"Leader"
],
"requirements": [
"Imperial Death Troopers"
],
"id": "gl"
},
"gk": {
"displayName": "",
"cardSubtype": "gear",
"cardName": "Personal Combat Shield",
"iconLocation": "/images/upgradeIcons/Personal%20Combat%20Shield.jpeg",
"isUnique": false,
"cardType": "upgrade",
"cost": 10,
"products": [],
"faction": "rebels",
"imageLocation": "/images/upgradeCards/Personal%20Combat%20Shield.jpeg",
"keywords": [
"Shield Token",
"Shielded",
"Recharge"
],
"requirements": [
"Sabine Wren"
],
"id": "gk"
},
"gj": {
"displayName": "",
"cardSubtype": "training",
"cardName": "Overwatch",
"iconLocation": "/images/upgradeIcons/Overwatch.jpeg",
"isUnique": false,
"cardType": "upgrade",
"cost": 4,
"products": [],
"faction": "",
"imageLocation": "/images/upgradeCards/Overwatch.jpeg",
"keywords": [
"Sentinel"
],
"requirements": [],
"id": "gj"
},
"gi": {
"displayName": "",
"cardSubtype": "2",
"cardName": "Symbol of Rebellion",
"cardType": "command",
"commander": "Sabine Wren",
"iconLocation": "/images/commandIcons/Symbol%20of%20Rebellion.jpeg",
"products": [],
"faction": "rebels",
"imageLocation": "/images/commandCards/Symbol%20of%20Rebellion.jpeg",
"keywords": [
"Graffiti Token"
],
"id": "gi"
},
"gh": {
"displayName": "",
"cardSubtype": "1",
"cardName": "Explosions!",
"cardType": "command",
"commander": "Sabine Wren",
"iconLocation": "/images/commandIcons/Explosions!.jpeg",
"products": [],
"faction": "rebels",
"imageLocation": "/images/commandCards/Explosions!.jpeg",
"keywords": [
"Arm",
"Detonate"
],
"id": "gh"
},
"aj": {
"cardType": "unit",
"displayName": "",
"additionalTags": [
"white defense",
"hit surge"
],
"cardSubtype": "trooper",
"cardName": "Wookiee Warriors",
"isUnique": false,
"rank": "special",
"iconLocation": "/images/unitIcons/Wookiee%20Warriors.jpeg",
"cost": 75,
"products": [],
"faction": "rebels",
"imageLocation": "/images/unitCards/Wookiee%20Warriors.jpeg",
"keywords": [
"Charge",
"Expert Climber",
"Indomitable",
"Unhindered"
],
"upgradeBar": [
"heavy weapon",
"training",
"training",
"gear",
"grenades"
],
"id": "aj"
},
"dn": {
"displayName": "",
"cardSubtype": "comms",
"cardName": "Comms Jammer",
"iconLocation": "/images/upgradeIcons/Comms%20Jammer.jpeg",
"isUnique": false,
"cardType": "upgrade",
"cost": 5,
"products": [],
"faction": "",
"imageLocation": "/images/upgradeCards/Comms%20Jammer.jpeg",
"keywords": [],
"requirements": [],
"id": "dn"
},
"do": {
"displayName": "",
"cardSubtype": "comms",
"cardName": "Long-Range Comlink",
"iconLocation": "/images/upgradeIcons/Long-Range%20Comlink.jpeg",
"isUnique": false,
"cardType": "upgrade",
"cost": 5,
"products": [],
"faction": "",
"imageLocation": "/images/upgradeCards/Long-Range%20Comlink.jpeg",
"keywords": [],
"requirements": [],
"id": "do"
},
"dl": {
"displayName": "",
"cardSubtype": "grenades",
"cardName": "Concussion Grenades",
"iconLocation": "/images/upgradeIcons/Concussion%20Grenades.jpeg",
"isUnique": false,
"cardType": "upgrade",
"cost": 5,
"products": [],
"faction": "",
"imageLocation": "/images/upgradeCards/Concussion%20Grenades.jpeg",
"keywords": [
"Blast"
],
"requirements": [],
"id": "dl"
},
"dm": {
"displayName": "",
"cardSubtype": "comms",
"cardName": "HQ Uplink",
"iconLocation": "/images/upgradeIcons/HQ%20Uplink.jpeg",
"isUnique": false,
"cardType": "upgrade",
"cost": 10,
"products": [],
"faction": "",
"imageLocation": "/images/upgradeCards/HQ%20Uplink.jpeg",
"keywords": [],
"requirements": [],
"id": "dm"
},
"dj": {
"displayName": "",
"cardSubtype": "grenades",
"cardName": "Fragmentation Grenades",
"iconLocation": "/images/upgradeIcons/Fragmentation%20Grenades.jpeg",
"isUnique": false,
"cardType": "upgrade",
"cost": 5,
"products": [],
"faction": "",
"imageLocation": "/images/upgradeCards/Fragmentation%20Grenades.jpeg",
"keywords": [],
"requirements": [],
"id": "dj"
},
"dk": {
"displayName": "",
"cardSubtype": "grenades",
"cardName": "Impact Grenades",
"iconLocation": "/images/upgradeIcons/Impact%20Grenades.jpeg",
"isUnique": false,
"cardType": "upgrade",
"cost": 5,
"products": [],
"faction": "",
"imageLocation": "/images/upgradeCards/Impact%20Grenades.jpeg",
"keywords": [
"Impact"
],
"requirements": [],
"id": "dk"
},
"dh": {
"displayName": "",
"cardSubtype": "training",
"cardName": "Duck and Cover",
"iconLocation": "/images/upgradeIcons/Duck%20and%20Cover.jpeg",
"isUnique": false,
"cardType": "upgrade",
"cost": 4,
"products": [],
"faction": "",
"imageLocation": "/images/upgradeCards/Duck%20and%20Cover.jpeg",
"keywords": [],
"requirements": [],
"id": "dh"
},
"di": {
"displayName": "",
"cardSubtype": "training",
"cardName": "Endurance",
"iconLocation": "/images/upgradeIcons/Endurance.jpeg",
"isUnique": false,
"cardType": "upgrade",
"cost": 6,
"products": [],
"faction": "",
"imageLocation": "/images/upgradeCards/Endurance.jpeg",
"keywords": [],
"requirements": [],
"id": "di"
},
"df": {
"displayName": "",
"cardSubtype": "training",
"cardName": "Tenacity",
"iconLocation": "/images/upgradeIcons/Tenacity.jpeg",
"isUnique": false,
"cardType": "upgrade",
"cost": 4,
"products": [],
"faction": "",
"imageLocation": "/images/upgradeCards/Tenacity.jpeg",
"keywords": [],
"requirements": [],
"id": "df"
},
"dg": {
"displayName": "",
"cardSubtype": "training",
"cardName": "Hunter",
"iconLocation": "/images/upgradeIcons/Hunter.jpeg",
"isUnique": false,
"cardType": "upgrade",
"cost": 6,
"products": [],
"faction": "",
"imageLocation": "/images/upgradeCards/Hunter.jpeg",
"keywords": [],
"requirements": [],
"id": "dg"
},
"dd": {
"displayName": "",
"cardSubtype": "gear",
"cardName": "Grappling Hooks",
"iconLocation": "/images/upgradeIcons/Grappling%20Hooks.jpeg",
"isUnique": false,
"cardType": "upgrade",
"cost": 3,
"products": [],
"faction": "",
"imageLocation": "/images/upgradeCards/Grappling%20Hooks.jpeg",
"keywords": [
"Expert Climber"
],
"requirements": [],
"id": "dd"
},
"Od": {
"displayName": "Recover Supplies",
"cardSubtype": "objective",
"cardName": "Recover the Supplies",
"cardType": "battle",
"products": [],
"imageLocation": "/images/battleCards/Recover%20the%20Supplies.jpeg",
"keywords": [
"Claim"
],
"id": "Od"
},
"db": {
"displayName": "",
"cardSubtype": "gear",
"cardName": "Emergency Stims",
"iconLocation": "/images/upgradeIcons/Emergency%20Stims.jpeg",
"isUnique": false,
"cardType": "upgrade",