-
Notifications
You must be signed in to change notification settings - Fork 11
/
DarkPreErrata.json
1488 lines (1488 loc) · 56.7 KB
/
DarkPreErrata.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
{
"cards": [
{
"abbr": [
"ADTFTR&TO",
"A Dark Time combo"
],
"cancels": [
"It Could Be Worse",
"Projection Of A Skywalker (sometimes)",
"Force retrieval from General Leia Organa, Rey With Lightsaber, Rey All Of The Jedi, and Rose Tico."
],
"front": {
"destiny": "5",
"gametext": "For remainder of turn, opponent's Force retrieval using Resistance characters' game text is canceled. OR For remainder of turn, opponent may not cancel your battle destiny draws. OR Search opponent's Lost Pile; place one device you find there out of play. OR Cancel It Could Be Worse. OR Cancel Projection Of A Skywalker at an opponent's planet site.",
"icons": [
"Set 18"
],
"imageUrl": "https://res.starwarsccg.org/cards/Virtual18-Dark/large/adarktimefortherebelliontarkinsorders.gif",
"subType": "Used",
"title": "•A Dark Time For The Rebellion & •Tarkin's Orders",
"type": "Interrupt",
"uniqueness": "*"
},
"gempId": "218_7",
"id": 20000,
"legacy": false,
"nextId": 7047,
"printings": [
{
"set": "218"
}
],
"rarity": "C1",
"rulings": [
"First function: Rey, All Of The Jedi may perform her action that places a card out of play. Only the retrieval is canceled.",
"Second function: The number of battle destiny draws may still be limited."
],
"set": "218",
"side": "Dark"
},
{
"abbr": [
"AGTCP/TRIOR",
"Thrawn"
],
"back": {
"destiny": "7",
"gametext": "A Great Tactician Creates Plans: Deploy Lothal system, Advanced Projects Laboratory, Imperial Complex, and Thrawn’s Art Collection. For remainder of game, you may not deploy [Episode I] (or [Episode VII]) cards with ability or [Presence], or any admiral (except Thrawn). While this side up, Imperial Star Destroyers deploy -1 (-3 if Chimaera). Once per turn, may deploy a battleground system (or a site to Lothal) from Reserve Deck; reshuffle. Flip this card during any deploy phase if Thrawn at a battleground and two or more artwork cards on table. The Result Is Often Resentment: While this side up, if a battle was just initiated involving an Imperial leader or piloted TIE defender, may ‘study’ one artwork card. If it is a weapon, cancel the battle. Otherwise, if possible, if its printed destiny number is: (0-2) opponent’s immunity to attrition is canceled; (3-4) opponent excludes their character from battle; (5+) add 3 to your total power. Place artwork card in owner's Lost Pile. Flip this card if Thrawn not on table or (except during battle) if no artwork cards on table.",
"icons": [
"Set 19"
],
"imageUrl": "https://res.starwarsccg.org/cards/Virtual19-Dark/large/theresultisoftenresentment.gif",
"title": "A Great Tactician Creates Plans / The Result Is Often Resentment",
"type": "Objective"
},
"front": {
"destiny": "0",
"gametext": "A Great Tactician Creates Plans: Deploy Lothal system, Advanced Projects Laboratory, Imperial Complex, and Thrawn’s Art Collection. For remainder of game, you may not deploy [Episode I] (or [Episode VII]) cards with ability or [Presence], or any admiral (except Thrawn). While this side up, Imperial Star Destroyers deploy -1 (-3 if Chimaera). Once per turn, may deploy a battleground system (or a site to Lothal) from Reserve Deck; reshuffle. Flip this card during any deploy phase if Thrawn at a battleground and two or more artwork cards on table. The Result Is Often Resentment: While this side up, if a battle was just initiated involving an Imperial leader or piloted TIE defender, may ‘study’ one artwork card. If it is a weapon, cancel the battle. Otherwise, if possible, if its printed destiny number is: (0-2) opponent’s immunity to attrition is canceled; (3-4) opponent excludes their character from battle; (5+) add 3 to your total power. Place artwork card in owner's Lost Pile. Flip this card if Thrawn not on table or (except during battle) if no artwork cards on table.",
"icons": [
"Set 19"
],
"imageUrl": "https://res.starwarsccg.org/cards/Virtual19-Dark/large/agreattacticiancreatesplans.gif",
"title": "A Great Tactician Creates Plans / The Result Is Often Resentment",
"type": "Objective"
},
"gempId": "219_1",
"id": 20001,
"legacy": false,
"nextId": 7073,
"printings": [
{
"set": "219"
}
],
"rarity": "U",
"rulings": [
"(Both sides) This Objective must flip as an automatic action as soon as the flip conditions are met.",
"(0-side) 'Flip this card during any deploy phase' means it will flip during either player's deploy phase.",
"(0-side) 'Imperial Star Destroyers' refers to Imperial affiliation (not First Order, Rebel, Independent, etc). It does not refer to Imperial-class. Thus Dominator and Executor are deploy -1.",
"(7-side) After studying an artwork card, place it in Lost Pile even if it was not possible to perform the specified action (e.g., even if there was no character to exclude from battle or no immunity to attrition to cancel).",
"(7-side) For a multi-destiny artwork card such as R2-D2, the destiny value is chosen by the card owner (typically Light) <u>after</u> Dark chooses it to be studied."
],
"set": "219",
"side": "Dark"
},
{
"abbr": [
"AED"
],
"front": {
"destiny": "2",
"gametext": "Deploy on table. Attempts to 'blow away' Alderaan are +5. If Alderaan has been 'blown away,' adds one [Light Side] icon at Death Star system and opponent's total battle destiny is -1. Once per game, may take Superlaser into hand from Reserve Deck; reshuffle. (Immune to Alter.)",
"icons": [
"Set 17"
],
"imageUrl": "https://res.starwarsccg.org/cards/Virtual17-Dark/large/aneffectivedemonstration.gif",
"lore": "Blank.",
"title": "•An Effective Demonstration",
"type": "Effect",
"uniqueness": "*"
},
"gempId": "217_1",
"id": 20002,
"legacy": false,
"nextId": 6953,
"printings": [
{
"set": "217"
}
],
"pulledBy": [
"Twi'lek Advisor",
"We Must Accelerate Our Plans"
],
"pulls": [
"Superlaser",
"Superlaser (V)"
],
"rarity": "U",
"rulings": [
"The opponent's total battle destiny -1 applies everywhere.",
"Cannot pull Superlaser Mark II."
],
"set": "217",
"side": "Dark"
},
{
"front": {
"deploy": "2",
"destiny": "½ or 5½",
"destinyValues": [
0.5,
5.5
],
"errataSymbol": "E1",
"extraText": [
"Astromech Droid"
],
"forfeit": "4",
"gametext": "Deploys -1 to same site as BB-8. Cancels game text of BB-8 and/or Rose at same site. During your move phase, may place in Used Pile; 'break cover' of all Undercover spies here (if any). Immune to Restraining Bolt and Sorry About The Mess.",
"icons": [
"Nav Computer",
"Episode VII",
"Set 17"
],
"imageUrl": "https://res.starwarsccg.org/cards/Virtual17-Dark/large/bb9e.gif",
"lore": "Blank.",
"power": "2",
"subType": "Droid",
"title": "•BB-9E",
"type": "Character",
"uniqueness": "*"
},
"gempId": "217_2",
"id": 20003,
"legacy": false,
"nextId": 6954,
"printings": [
{
"set": "217"
}
],
"rarity": "C2",
"rulings": [
"BB-9E cannot cancel game text if BB-9E is at a system or sector.",
"BB-9E does not cancel the game text of captives.",
"BB-9E automatically cancels game text whenever applicable (it is not optional).",
"BB-9E may be placed in Used Pile even if there are no Undercover spies there.",
"'Immune to Sorry About The Mess' prevents the control phase firing function and prevents the place in Lost Pile function of the combo card. It does not prevent the 3 being added to weapon destiny function of the combo card."
],
"set": "217",
"side": "Dark"
},
{
"front": {
"destiny": "5",
"gametext": "Deploy on table. Lost if your non-Imperial character (or starship) on table. Unless you occupy fewer locations than opponent: if you win a battle, retrieve an Imperial; and, during battle, may take an Imperial just drawn for destiny into hand to cancel and redraw that destiny. [Immune to Alter.]",
"icons": [
"Set 1"
],
"imageUrl": "https://res.starwarsccg.org/cards/Virtual1-Dark/large/imperialenforcement.gif",
"lore": "When Vader's forces impose the New Order upon a region, Rebel resources and lifelines are quickly eliminated.",
"title": "•Imperial Enforcement",
"type": "Effect",
"uniqueness": "*"
},
"gempId": "201_30",
"id": 20004,
"legacy": false,
"nextId": 1271,
"printings": [
{
"set": "201"
}
],
"pulledBy": [
"Twi'lek Advisor",
"We Must Accelerate Our Plans"
],
"rarity": "U1",
"rulings": [
"Mara Jade, The Emperor's Hand (for example) does not make this Effect lost.",
"Imperial starships (Dark starships with no allegiance icon such as Independent, Republic, etc) do not make this Effect lost.",
"<u>Both</u> of the bonuses (Dark retrieving an Imperial, and Dark taking a just drawn Imperial into hand) require Dark to occupy at least as many locations as opponent."
],
"set": "201",
"side": "Dark"
},
{
"front": {
"destiny": "4",
"gametext": "If Ralltiir Operations on table, deploy on table. Forfeit values are not modified by Do They Have A Code Clearance?. Once per battle, when you draw battle destiny, may exchange a card in hand with a card of same card type in Lost Pile. [Immune to Alter.]",
"icons": [
"Death Star II",
"Set 10"
],
"imageUrl": "https://res.starwarsccg.org/cards/Virtual10-Dark/large/insignificantrebellion.gif",
"lore": "'Your fleet is lost. And your friends on the Endor moon will not survive. There is no escape, my young apprentice.'",
"title": "•Insignificant Rebellion (V)",
"type": "Effect",
"uniqueness": "*"
},
"gempId": "210_47",
"id": 20005,
"legacy": false,
"nextId": 6788,
"printings": [
{
"set": "210"
}
],
"pulledBy": [
"Moment Of Triumph (V)"
],
"rarity": "U",
"set": "210",
"side": "Dark"
},
{
"front": {
"darkSideIcons": 2,
"destiny": "0",
"gametext": "Dark: While you control, at related battleground sites you control with an Imperial leader, your Force drains are +1. Light: If Ghost and Phantom piloted here, Force drain +1 here. If no Rebel starships piloted here, Force drain -1 here.",
"icons": [
"Planet",
"Set 19"
],
"imageUrl": "https://res.starwarsccg.org/cards/Virtual19-Dark/large/lothal.gif",
"lightSideIcons": 1,
"parsec": "6",
"subType": "System",
"title": "•Lothal",
"type": "Location",
"uniqueness": "*"
},
"gempId": "219_10",
"id": 20006,
"legacy": false,
"nextId": 20014,
"printings": [
{
"set": "219"
}
],
"rarity": "U2",
"set": "219",
"side": "Dark"
},
{
"abbr": [
"LAPL"
],
"front": {
"darkSideIcons": 1,
"destiny": "0",
"gametext": "Dark: Once per game, may deploy TIE Defender Project or Thrawn here from Reserve Deck; reshuffle. Light: If you control with a Rebel, Force drain +1 here.",
"icons": [
"Exterior",
"Planet",
"Scomp Link",
"Set 19"
],
"imageUrl": "https://res.starwarsccg.org/cards/Virtual19-Dark/large/lothaladvancedprojectslaboratory.gif",
"lightSideIcons": 1,
"subType": "Site",
"title": "•Lothal: Advanced Projects Laboratory",
"type": "Location",
"uniqueness": "*"
},
"gempId": "219_11",
"id": 20007,
"legacy": false,
"nextId": 7083,
"printings": [
{
"set": "219"
}
],
"rarity": "U",
"set": "219",
"side": "Dark"
},
{
"front": {
"ability": "6",
"characteristics": [
"Crimson Dawn",
"leader",
"gangster"
],
"deploy": "4",
"destiny": "½",
"destinyValues": [
0.5
],
"extraText": [
"Dark Jedi"
],
"forfeit": "8",
"gametext": "Never deploys to a battleground. Opponent may not cancel your destiny draws. Once per turn, may add 1 to a just drawn battle or weapon destiny. Once per turn, may subtract 1 from a just drawn battle or weapon destiny. Immune to attrition < 5.",
"icons": [
"Warrior",
"Set 13"
],
"imageUrl": "https://res.starwarsccg.org/cards/Virtual13-Dark/large/maul.gif",
"lore": "Crimson Dawn leader. Gangster.",
"power": "4",
"subType": "Sith",
"title": "•Maul",
"type": "Character",
"uniqueness": "*"
},
"gempId": "213_10",
"id": 20008,
"legacy": false,
"nextId": 6800,
"printings": [
{
"set": "213"
}
],
"rarity": "C",
"rulings": [
"Does not need to be at the battle location to add or subtract 1 from a just drawn destiny.",
"However, if Maul does happen to be at the battle location, then he must be participating in the battle (not excluded) in order to add or subtract 1."
],
"set": "213",
"side": "Dark"
},
{
"abbr": [
"PER"
],
"front": {
"ability": "7",
"characteristics": [
"Leader",
"Dark Jedi Master"
],
"deploy": "4",
"destiny": "4",
"forfeit": "9",
"gametext": "Never deploys or moves (even if carried) to a location with a [Light Side] icon. Once per turn, may draw bottom card of your Force Pile. Once per game, if about to be lost, may take him into hand. Immune to attrition.",
"icons": [
"Episode VII",
"Set 14"
],
"imageUrl": "https://res.starwarsccg.org/cards/Virtual14-Dark/large/palpatineemperorreturned.gif",
"lore": "Leader.",
"power": "2",
"subType": "Dark Jedi Master/First Order",
"title": "•Palpatine, Emperor Returned",
"type": "Character",
"uniqueness": "*"
},
"gempId": "214_8",
"id": 20009,
"legacy": false,
"nextId": 6851,
"printings": [
{
"set": "214"
}
],
"rarity": "U1",
"rulings": [
"This card qualifies as Emperor, as Palpatine, and as Sidious.",
"If his game text is canceled, the text cannot be used to take him into hand when about to be lost.",
"If he is hit during battle and then excluded from the battle (e.g. by Clash Of Sabers) he is inactive and so cannot use his text to be taken into hand. He is immediately lost due to being hit while outside of a battle.",
"A Light Side Force icon could be added to the same location as Palpatine, Emperor Returned (e.g. due to Presence Of The Force). This does not violate Palpatine's text or cause him to be removed from table."
],
"set": "214",
"side": "Dark"
},
{
"abbr": [
"RO/ITHOTEV",
"ROPSV"
],
"back": {
"destiny": "7",
"errataSymbol": "E1",
"gametext": "Ralltiir Operations:Deploy Ralltiir system.{For} remainder of game, spaceport sites are immune to Always Thinking With Your Stomach, He Hasn't Come Back Yet, and Ounee Ta. Your Force generation is +1 at each Ralltiir location. {While} this side up, once per turn, may deploy a site (or non-unique Imperial) to Ralltiir from Reserve Deck; reshuffle.{Flip} this card if Imperials control at least three Ralltiir sites and opponent controls no Ralltiir locations.In The Hands Of The Empire:{While} this side up, opponent's Force drains are -1 at their locations. Your total battle destiny is +X, where X = number of Ralltiir locations your Imperials occupy. {Flip} this card if opponent controls at least two Ralltiir locations.",
"icons": [
"Set 10"
],
"imageUrl": "https://res.starwarsccg.org/cards/Virtual10-Dark/large/inthehandsoftheempire.gif",
"title": "Ralltiir Operations / In The Hands Of The Empire (V)",
"type": "Objective"
},
"front": {
"destiny": "0",
"errataSymbol": "E1",
"gametext": "Ralltiir Operations:Deploy Ralltiir system.{For} remainder of game, spaceport sites are immune to Always Thinking With Your Stomach, He Hasn't Come Back Yet, and Ounee Ta. Your Force generation is +1 at each Ralltiir location. {While} this side up, once per turn, may deploy a site (or non-unique Imperial) to Ralltiir from Reserve Deck; reshuffle.{Flip} this card if Imperials control at least three Ralltiir sites and opponent controls no Ralltiir locations.In The Hands Of The Empire:{While} this side up, opponent's Force drains are -1 at their locations. Your total battle destiny is +X, where X = number of Ralltiir locations your Imperials occupy. {Flip} this card if opponent controls at least two Ralltiir locations.",
"icons": [
"Set 10"
],
"imageUrl": "https://res.starwarsccg.org/cards/Virtual10-Dark/large/ralltiiroperations.gif",
"title": "Ralltiir Operations / In The Hands Of The Empire (V)",
"type": "Objective"
},
"gempId": "210_42",
"id": 20010,
"legacy": false,
"nextId": 6590,
"printings": [
{
"set": "210"
}
],
"rarity": "R",
"set": "210",
"side": "Dark"
},
{
"front": {
"destiny": "3",
"gametext": "Deploy on table. Your droids are destiny +1. Once per turn, if you just drew a non-[Presence] droid for destiny, may take that droid into hand. Once per turn, may deploy Droid Workshop, Forced Servitude, Incinerator, or Wuher from Reserve Deck; reshuffle. (Immune to Alter.)",
"icons": [
"Set 10"
],
"imageUrl": "https://res.starwarsccg.org/cards/Virtual10-Dark/large/silenceisgolden.gif",
"lore": "'Excuse me, sir, might I in--'",
"title": "Silence Is Golden (V)",
"type": "Effect"
},
"gempId": "210_45",
"id": 20011,
"legacy": false,
"nextId": 6642,
"printings": [
{
"set": "210"
}
],
"pulls": [
"Cloud City: Incinerator",
"Forced Servitude",
"Jabba's Palace: Droid Workshop",
"Wuher"
],
"rarity": "U2",
"set": "210",
"side": "Dark"
},
{
"counterpart": "Jedi Levitation (V)",
"front": {
"destiny": "4",
"errataSymbol": "E1",
"gametext": "USED: If you just drew a character for destiny, take that card into hand to cancel and redraw that destiny. LOST: Once per game, exchange a Dark Jedi in hand with a Dark Jedi in Lost Pile.",
"icons": [
"Tatooine",
"Set 0"
],
"imageUrl": "https://res.starwarsccg.org/cards/Virtual0-Dark/large/sithfury.gif",
"lore": "At his peak, no one could stand up to the Dark Lord of the Sith. His superior tactics devastated those who opposed him.",
"subType": "Used Or Lost",
"title": "•Sith Fury (V)",
"type": "Interrupt",
"uniqueness": "*"
},
"gempId": "200_123",
"id": 20012,
"legacy": false,
"nextId": 4003,
"printings": [
{
"set": "200"
}
],
"pulls": [
"Count Dooku",
"Darth Maul",
"Darth Maul With Lightsaber",
"Darth Maul, Lone Hunter",
"Darth Maul, Young Apprentice",
"Darth Sidious",
"Darth Vader",
"Darth Vader (V)",
"Darth Vader With Lightsaber",
"Darth Vader, Dark Lord Of The Sith",
"Darth Vader, Emperor's Enforcer",
"Emperor Palpatine",
"Emperor Palpatine, Foreseer",
"Lord Maul",
"Lord Maul With Lightsaber",
"Lord Sidious",
"Lord Vader",
"The Emperor",
"Vader"
],
"rarity": "C",
"set": "200",
"side": "Dark"
},
{
"abbr": [
"TSOT/WTITJA",
"DS Demo Deck"
],
"back": {
"destiny": "7",
"gametext": "Twin Suns Of Tatooine:Deploy Tatooine system and a non-Jabba's Palace Tatooine battleground site. {For} remainder of game, you may not deploy Jabba's Palace sites or Sandwhirl. {While} this side up, once per turn, may use 1 Force to deploy a Tatooine battleground site from Reserve Deck; reshuffle. {Flip} this card if you control two Tatooine battleground sites (at least one with a Dark Jedi) and occupy Tatooine system, and opponent controls no Tatooine sites.Well Trained In The Jedi Arts:{While} this side up, once per game, may deploy Tatooine Occupation from Reserve Deck; reshuffle. Once during your control phase, may peek at the top two cards of your Reserve Deck; take one into hand and shuffle Reserve Deck. For opponent to move a character or vehicle from same site as your Dark Jedi requires +1 Force. {Flip} this card if opponent controls more Tatooine sites than you.",
"icons": [
"Premium",
"Set P"
],
"imageUrl": "https://res.starwarsccg.org/cards/DemoDeck-Dark/large/welltrainedinthejediarts.gif",
"title": "Twin Suns Of Tatooine / Well Trained In The Jedi Arts",
"type": "Objective"
},
"front": {
"destiny": "0",
"gametext": "Twin Suns Of Tatooine:Deploy Tatooine system and a non-Jabba's Palace Tatooine battleground site. {For} remainder of game, you may not deploy Jabba's Palace sites or Sandwhirl. {While} this side up, once per turn, may use 1 Force to deploy a Tatooine battleground site from Reserve Deck; reshuffle. {Flip} this card if you control two Tatooine battleground sites (at least one with a Dark Jedi) and occupy Tatooine system, and opponent controls no Tatooine sites.Well Trained In The Jedi Arts:{While} this side up, once per game, may deploy Tatooine Occupation from Reserve Deck; reshuffle. Once during your control phase, may peek at the top two cards of your Reserve Deck; take one into hand and shuffle Reserve Deck. For opponent to move a character or vehicle from same site as your Dark Jedi requires +1 Force. {Flip} this card if opponent controls more Tatooine sites than you.",
"icons": [
"Premium",
"Set P"
],
"imageUrl": "https://res.starwarsccg.org/cards/DemoDeck-Dark/large/twinsunsoftatooine.gif",
"title": "Twin Suns Of Tatooine / Well Trained In The Jedi Arts",
"type": "Objective"
},
"gempId": "301_4",
"id": 20013,
"legacy": false,
"nextId": 6716,
"printings": [
{
"set": "301"
}
],
"rarity": "R",
"set": "301",
"side": "Dark"
},
{
"front": {
"darkSideIcons": 2,
"destiny": "0",
"errataDate": "2022-12-12",
"errataNotes": "Original was a 2/1 system instead of 2/0. Original Text: Dark: While you control, at related battleground sites you control with an Imperial leader, your Force drains are +1. Light: If Ghost and Phantom piloted here, Force drain +1 here. If no Rebel starships piloted here, Force drain -1 here.",
"errataSymbol": "E1",
"gametext": "Dark: While you occupy with an admiral, gains one [Dark Side] icon. Light: While you control, opponent occupies with an admiral, or Lothal converted, gains one [Light Side] icon.",
"icons": [
"Planet",
"Set 19"
],
"imageUrl": "https://res.starwarsccg.org/cards/Virtual19-Dark/large/lothal.gif",
"lightSideIcons": 0,
"parsec": "6",
"subType": "System",
"title": "•Lothal",
"type": "Location",
"uniqueness": "*"
},
"gempId": "219_10",
"id": 20014,
"legacy": false,
"previousId": 20006,
"nextId": 7082,
"printings": [
{
"set": "219"
}
],
"rarity": "U2",
"rulings": [
"Only follow the 'While Lothal converted' text of the topmost (active) Lothal system card. It is applicable if there exists one (or more) converted copies of Lothal underneath.",
"Disregard the text of the copies of Lothal underneath."
],
"set": "219",
"side": "Dark"
},
{
"cancels": [
"Cantina Brawl",
"Fallen Portal"
],
"counterpart": "Ellorrs Madak, Pilot Instructor",
"front": {
"ability": "3",
"characteristics": [
"Black Sun agent",
"Duros",
"Female",
"information broker",
"scout",
"smuggler"
],
"deploy": "3",
"destiny": "2",
"extraText": [
"Force-Attuned"
],
"forfeit": "5",
"gametext": "Adds 3 to power and 1 to hyperspeed of anything she pilots. Once per turn, if you just deployed a Black Sun agent to same system, may draw top card of Reserve Deck. Your characters here are immune to Cantina Brawl and Fallen Portal.",
"icons": [
"Pilot",
"Set 3"
],
"imageUrl": "https://res.starwarsccg.org/cards/Virtual3-Dark/large/banisskeegpilotinstructor.gif",
"lore": "Duros information broker, scout, and smuggler.",
"power": "2",
"subType": "Alien",
"title": "•Baniss Keeg, Pilot Instructor",
"type": "Character",
"uniqueness": "*"
},
"gempId": "203_23",
"id": 20015,
"legacy": false,
"nextId": 5020,
"printings": [
{
"set": "203"
}
],
"pulledBy": [
"Elis In Hinthra",
"Murttoc Yine"
],
"rarity": "C2",
"rulings": [
"Her game text does not make him a member of Black Squadron."
],
"set": "203",
"side": "Dark"
},
{
"counterpart": "Double Agent",
"front": {
"destiny": "6",
"errataSymbol": "E1",
"gametext": "If both players have a spy at same site, draw destiny. Add 2 if opponent's spy is Undercover. Opponent's spy is lost if destiny > 2.",
"imageUrl": "https://res.starwarsccg.org/cards/Premiere-Dark/large/nevaryalnal.gif",
"lore": "Immense Ranat scavenger from Aralia. Slyly spies for anyone willing to pay his price. Outcast. Works as a laborer for Hrchek, the Saurin droid trader.",
"subType": "Lost",
"title": "Nevar Yalnal",
"type": "Interrupt"
},
"gempId": "1_261",
"id": 20016,
"legacy": false,
"nextId": 1767,
"printings": [
{
"set": "1"
}
],
"rarity": "R2",
"set": "1",
"side": "Dark"
},
{
"front": {
"characteristics": [
"cannon",
"laser cannon"
],
"destiny": "5",
"errataSymbol": "E1",
"gametext": "Use 1 Force to deploy on your TIE. May target a starship using 1 Force. Draw destiny. Subtract 2 if targeting a capital starship. Target hit if destiny > defense value.",
"icons": [
"A New Hope"
],
"imageUrl": "https://res.starwarsccg.org/cards/ANewHope-Dark/large/enhancedtielasercannon.gif",
"lore": "Sienar Fleet Systems' latest laser cannon prototype increases the firepower most Imperial TIEs - but many Moffs consider the weapon too expensive for widespread use.",
"subType": "Starship",
"title": "Enhanced TIE Laser Cannon",
"type": "Weapon"
},
"gempId": "2_158",
"id": 20017,
"legacy": false,
"nextId": 872,
"printings": [
{
"set": "2"
}
],
"pulledBy": [
"Colonel Jendon In Onyx 1 (V)",
"I Can't Shake Him!"
],
"rarity": "C2",
"set": "2",
"side": "Dark",
"underlyingCardFor": [
"Black 6"
]
},
{
"abbr": [
"EPP Aurra"
],
"front": {
"ability": "4",
"characteristics": [
"bounty hunter",
"assassin"
],
"deploy": "4",
"destiny": "2",
"extraText": [
"Force-Sensitive"
],
"forfeit": "5",
"gametext": "Permanent weapon is •Aurra Sing's Blaster Rifle (may target a character for free; if targeting a Jedi, draw two destiny, otherwise draw destiny; target hit, and its forfeit = 0, if total destiny +1 > defense value).",
"icons": [
"Warrior",
"Permanent Weapon",
"Episode I",
"Set 12"
],
"imageUrl": "https://res.starwarsccg.org/cards/Virtual12-Dark/large/aurrasingwithblasterrifle.gif",
"lore": "Bounty hunter. Assassin.",
"power": "4",
"subType": "Alien",
"title": "•Aurra Sing With Blaster Rifle",
"type": "Character",
"uniqueness": "*"
},
"gempId": "212_3",
"id": 20018,
"legacy": false,
"nextId": 6783,
"printings": [
{
"set": "212"
}
],
"rarity": "R",
"set": "212",
"side": "Dark"
},
{
"front": {
"ability": "4",
"characteristics": [
"bounty hunter",
"assassin"
],
"deploy": "4",
"destiny": "2",
"extraText": [
"Force-Sensitive"
],
"forfeit": "5",
"gametext": "Permanent weapon is •Aurra Sing's Blaster Rifle (may target a character for free; if targeting a Jedi, draw two destiny, otherwise draw destiny; target hit, and its forfeit = 0, if total destiny +1 > defense value).",
"icons": [
"Warrior",
"Permanent Weapon",
"Episode I",
"Set 12"
],
"imageUrl": "https://res.starwarsccg.org/cards/Virtual12-Dark/large/aurrasingwithblasterrifle_ai.gif",
"lore": "Bounty hunter. Assassin.",
"power": "4",
"subType": "Alien",
"title": "•Aurra Sing With Blaster Rifle (AI)",
"type": "Character",
"uniqueness": "*"
},
"gempId": "212_3",
"id": 20019,
"legacy": false,
"nextId": 6874,
"printings": [
{
"set": "212"
}
],
"rarity": "R",
"set": "212",
"side": "Dark"
},
{
"front": {
"ability": "3",
"characteristics": [
"leader"
],
"deploy": "3",
"destiny": "1",
"errataSymbol": "E1",
"extraText": [
"Force-Attuned"
],
"forfeit": "5",
"gametext": "Adds 2 to power of anything he pilots. When piloting Avenger, that starship is also immune to attrition < 4. You may re-target applicable Utinni Effects to Needa. If in a battle where you choose to forfeit characters, you must forfeit Needa first.",
"icons": [
"Pilot",
"Warrior",
"Dagobah"
],
"imageUrl": "https://res.starwarsccg.org/cards/Dagobah-Dark/large/captainneeda.gif",
"lore": "Able leader and captain of the Avenger. Was given his command by Admiral Ozzel. Treated with suspicion by Darth Vader and the Emperor, who distrust Ozzel's close advisors.",
"power": "3",
"subType": "Imperial",
"title": "•Captain Needa",
"type": "Character",
"uniqueness": "*"
},
"gempId": "4_93",
"id": 20020,
"legacy": false,
"nextId": 366,
"matching": [
"Avenger"
],
"printings": [
{
"set": "4"
}
],
"pulledBy": [
"Blizzard 4"
],
"rarity": "R",
"rulings": [
"Characters hit by weapons may be forfeited before forfeiting Needa."
],
"set": "4",
"side": "Dark",
"underlyingCardFor": [
"Captain Needa (V)"
]
},
{
"front": {
"destiny": "4",
"gametext": "If opponent's starship has just begun to move through hyperspace, draw destiny. If destiny > pilot's ability, starship must return to original location and may not move this turn. If destiny = pilot's ability, starship is lost.",
"icons": [
"Premium"
],
"imageUrl": "https://res.starwarsccg.org/cards/JediPack-Dark/large/gravityshadow.gif",
"lore": "'Traveling through hyperspace ain't like dustin' crops, boy!' Gravitational phenomena cast shadows in hyperspace, posing a serious threat to lightspeed navigation.",
"subType": "Lost",
"title": "•Gravity Shadow",
"type": "Interrupt",
"uniqueness": "*"
},
"gempId": "102_8",
"id": 20021,
"legacy": false,
"nextId": 1065,
"printings": [
{
"set": "102"
}
],
"rarity": "PM",
"rulings": [
"Can be played as a response to any hyperspace movement, including (for example) Hyper Escape.",
"Targets both the starship and the highest ability pilot (either a permanent pilot or a character who is piloting).",
"If multiple permanent pilots and/or character pilots are tied for highest ability, Dark chooses one to target.",
"For Han, Chewie, And The Falcon, targets Han's 3 ability."
],
"set": "102",
"side": "Dark"
},
{
"combo": [
"U-3PO (Yoo-Threepio) + Program Trap",
"U-3PO (Yoo-Threepio) + Nevar Yalnal",
"U-3PO (Yoo-Threepio) + E Chu Ta"
],
"front": {
"characteristics": [
"spy"
],
"deploy": "3",
"destiny": "3",
"extraText": [
"Protocol Droid"
],
"forfeit": "3",
"gametext": "Deploy on opponent's side as an Undercover spy (except that if present during a battle at a site, adds its power to Light Side). If spy's 'cover is broken,' the above game text is canceled and Light Side may use as if stolen.",
"icons": [
"A New Hope"
],
"imageUrl": "https://res.starwarsccg.org/cards/ANewHope-Dark/large/u3po.gif",
"lore": "This protocol droid served in the House of Alderaan's Diplomatic Corps. Imperials altered its programming for espionage, making the droid an unwitting spy for the Empire.",
"power": "1",
"subType": "Droid",
"title": "•U-3PO (Yoo-Threepio)",
"type": "Character",
"uniqueness": "*"
},
"gempId": "2_107",
"id": 20022,
"legacy": false,
"nextId": 2659,
"printings": [
{
"set": "2"
}
],
"rarity": "R1",
"set": "2",
"side": "Dark"
},
{
"counterpart": "Goldenrod",
"front": {
"destiny": "0",
"gametext": "Plays on table. For opponent to deploy a character, starship, or vehicle for free (except by that card's own game text), opponent must first use 2 Force.",
"icons": [
"Reflections 3",
"Set D"
],
"imageUrl": "https://res.starwarsccg.org/cards/ResetDS-Dark/large/imperialdetention.gif",
"lore": "Blank.",
"title": "•Imperial Detention",
"type": "Defensive Shield",
"uniqueness": "*"
},
"gempId": "200_98",
"id": 20023,
"legacy": false,
"nextId": 6394,
"printings": [
{
"set": "200"
},
{
"set": "200d"
}
],
"rarity": "C",
"rulings": [
"A card that deploys for 0 such as Kal'Falnl C'ndros is not the same as 'free' and thus doesn't trigger this card."
],
"set": "200d",
"side": "Dark",
"sourceType": "effect"
},
{
"abbr": [
"RO/ITHOTEV",
"ROPSV"
],
"back": {
"destiny": "7",
"errataSymbol": "E1",
"gametext": "Ralltiir Operations:Deploy [Set 20] Ralltiir system.{For} remainder of game, spaceport sites are immune to Always Thinking With Your Stomach, He Hasn't Come Back Yet, and non-[Set 18] Ounee Ta. You may not play [Coruscant] Do They Have A Code Clearance?. Your Force generation is +1 at each Ralltiir site. {While} this side up, once per turn, may deploy a site (or non-unique Imperial) to Ralltiir from Reserve Deck; reshuffle.{Flip} this card if Imperials control at least three Ralltiir sites and opponent controls no Ralltiir locations.In The Hands Of The Empire:{While} this side up, opponent's Force drains are -1 at their locations. Your total battle destiny is +X, where X = number of Ralltiir locations your Imperials occupy. {Flip} this card if opponent controls at least two Ralltiir locations.",
"icons": [
"Set 10"
],
"imageUrl": "https://res.starwarsccg.org/cards/Virtual10-Dark/large/inthehandsoftheempire.gif",
"title": "Ralltiir Operations / In The Hands Of The Empire (V)",
"type": "Objective"
},
"front": {
"destiny": "0",
"errataDate": "2022-12-12",
"errataNotes": "This card was blanked (removed from the game) on July 15, 2023. Original card deployed any Ralltiir system, affected all versions of Ounee Ta, gave Force generations +1 at all Ralltiir locations, and did not mention Code Clearance. Note that Insignificant Rebellion (V) used to negate Code Clearance instead.",
"errataSymbol": "E1",
"gametext": "Ralltiir Operations:Deploy [Set 20] Ralltiir system.{For} remainder of game, spaceport sites are immune to Always Thinking With Your Stomach, He Hasn't Come Back Yet, and non-[Set 18] Ounee Ta. You may not play [Coruscant] Do They Have A Code Clearance?. Your Force generation is +1 at each Ralltiir site. {While} this side up, once per turn, may deploy a site (or non-unique Imperial) to Ralltiir from Reserve Deck; reshuffle.{Flip} this card if Imperials control at least three Ralltiir sites and opponent controls no Ralltiir locations.In The Hands Of The Empire:{While} this side up, opponent's Force drains are -1 at their locations. Your total battle destiny is +X, where X = number of Ralltiir locations your Imperials occupy. {Flip} this card if opponent controls at least two Ralltiir locations.",
"icons": [
"Set 10"
],
"imageUrl": "https://res.starwarsccg.org/cards/Virtual10-Dark/large/ralltiiroperations.gif",
"title": "Ralltiir Operations / In The Hands Of The Empire (V)",
"type": "Objective"
},
"gempId": "210_42",
"id": 6590,
"legacy": false,
"previousId": 20010,
"printings": [
{
"set": "210"
}
],
"rarity": "R",
"set": "210",
"side": "Dark"