-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcards.yaml
2674 lines (2672 loc) · 67.6 KB
/
cards.yaml
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
# BEGIN BOILERPLATE
henchmen: &henchmen
card_type: "HENCHMEN"
type_background: "#dcbc48"
type_color: "White"
villain: &villain
card_type: "VILLAIN"
type_background: "#623535"
type_color: "White"
mastermind: &mastermind
card_type: "MASTERMIND"
type_background: "#766f92"
type_color: "White"
player: &player
card_type: "PLAYER"
type_background: "#355e3b"
type_color: "White"
image: "player"
teams: ["shield"]
hero: &hero
name_background: "#ED1D24"
clear: &clear !!python/tuple [0, 0, 0, 0]
font: &font "resources/KOMIKAX_.ttf"
# END BOILERPLATE
grid_lines: True
grid_width: 1
grid_spacing: 18
double_sided: True
separate_docs: True
width_count: 2
height_count: 3
page_width: 1700
page_height: 2200
divider_width: ÷r_width 715
divider_height: ÷r_height 592
offset_height: 100
offset_width: 90
margin_width: 80
margin_height: 100
format:
width: *divider_width
height: *divider_height
icon_height: &icon_height 32
properties:
- position: [0, 0]
size: [*divider_width, &label_height 72]
type: "container"
spacing: 8
backwards: False
properties:
- property: "card_type"
required: False
position: [0, 0]
size: ["auto", *label_height]
type: "text"
background_property: "type_background"
background_default: "Black"
text_color_property: "type_color"
text_color_default: "White"
font: *font
font_size: 24
centered_width: True
centered_height: True
- property: "name"
required: True
position: ["auto", 0]
size: ["auto", *label_height]
type: "text"
background_property: "name_background"
background_default: "White"
text_color_property: "name_color"
text_color_default: "Black"
font: *font
font_size: 24
centered_width: False
centered_height: True
- type: "container"
position: ["auto", 0]
size: ["auto", *label_height]
spacing: 8
backwards: True
properties:
- property: "colors"
required: False
position: ["auto", 0]
size: [180, *label_height]
type: "colorbar"
- property: "teams"
required: False
position: ["auto", 0]
size: [*icon_height, *label_height]
type: "list[icons]"
centered_height: True
centered_width: True
rows: 2
columns: null
spacing: 8
orientation: "vertical"
bulleted: False
wrap: null
- property: "themes"
required: False
position: ["auto", 0]
size: ["auto", *label_height]
type: "list[iconsandtext]"
text_color_property: "themes_color"
text_color_default: "Black"
font: *font
font_size: 12
centered_width: False
centered_height: True
rows: 2
columns: null
spacing: 8
orientation: "horizontal"
bulleted: False
wrap: null
- property: "image"
position: [0, *label_height]
size: [*divider_width, &image_height 520]
type: "image"
- property: "notes"
required: False
position: [0, *label_height]
size: [*divider_width, *image_height]
type: "list[text]"
text_color_property: "notes_color"
text_color_default: "Black"
font: *font
font_size: 16
centered_width: False
centered_height: True
rows: null
columns: null
spacing: 8
orientation: "vertical"
bulleted: True
wrap: 70
populate_from_rarities:
rarities:
<<: *hero
<<: *hero
common1: 5
common2: 5
uncommon: 3
rare: 1
properties:
color: "colors"
cost: "costs"
attack: "attacks"
recruit: "recruits"
piercing: "piercings"
cards:
- name: "Rick Jones"
<<: *hero
common1:
color: "B"
cost: "3"
recruit: "3"
common2:
color: "YU"
cost: "4"
recruit: "2"
uncommon:
color: "BG"
cost: "5"
combat: "3"
rare:
color: "UR"
cost: "7"
combat: "4"
image: "rickjones"
teams: ["Shield", "Avengers"]
themes: ["tech", "shield", "transforms", "cost3+", "draw", "topcard", "Smash", "Victory Pile",]
- name: "Sentry"
<<: *hero
common1:
color: "RG"
cost: "2"
common2:
color: "G"
cost: "4"
combat: "2+"
uncommon:
color: "UR"
cost: "2"
recruit: "2"
rare:
color: "U"
cost: "8"
combat: "0+"
image: "sentry"
teams: ["Avengers"]
themes: ["transforms", "topcard", "Transform Matters", "Feast 0-Cost", "Top Hero Deck", "Turn Evil"]
- name: "Amadeus Cho"
<<: *hero
common1:
color: "Y"
cost: "2"
recruit: "1"
common2:
color: "BG"
cost: "3"
uncommon:
color: "B"
cost: "6"
combat: "0+"
rare:
color: "B"
cost: "8"
combat: "4"
image: "amadeuscho"
teams: ["champions"]
themes: ["draw", "topcard", "transforms", "Outwit", "Draw Matters", "Feast"]
- <<: *henchmen
name: "Hand Ninjas"
image: "handninjas"
themes: ["Fight: +1 Recruit"]
- <<: *villain
name: "Hydra"
image: "hydra"
themes: ["wound", "Play extra villains", "Gain shield officer", "Extra VP"]
- <<: *mastermind
name: "Red Skull"
image: "redskull"
themes: ["KO from hand", "Positive Fight"]
notes:
- "Can help you KO starting cards early game"
- "Can be painful late game if you K.O.d a lot"
- <<: *mastermind
name: "Loki"
image: "loki"
themes: ["strength", "wound", "Even Mix Fight"]
- <<: *mastermind
name: "Dr. Doom"
image: "drdoom"
themes: ["tech", "Put Cards on Top", "Positive Fight"]
notes:
- "Master strike is nearly ineffective if there's a lot of tech heroes available"
- <<: *mastermind
name: "Magneto"
image: "magneto"
themes: ["xmen", "Discard", "Mostly Positive Fight"]
- <<: *mastermind
name: "Sentry/Void"
image: "sentryvoid"
themes: ["wound", "transforms", "Cross Dimensional Rampage", "Feast", "Wounded Fury", "Mostly Negative Fight"]
- <<: *mastermind
name: "M.O.D.O.K"
image: "modok"
themes: ["wound", "transforms", "recruit", "Outwit 4", "KO non-grey", "Mostly Positive Fight"]
- <<: *mastermind
name: "General \"Thunderbolt\" Ross/Red Hulk"
image: "generalross"
themes: ["transforms", "wound", "Human Shields", "Cross Dimensional Rampage", "Wounded Fury", "Negative Fight"]
- <<: *mastermind
name: "The Red King"
image: "redking"
themes: ["transforms", "tech", "wound", "Fight Restriction", "Mostly Negative Fight"]
- <<: *mastermind
name: "King Hulk, Sakaarson"
image: "kinghulk"
themes: ["transforms", "wound", "Grows", "Wounded Fury", "KO", "Mostly Negative Fight"]
- <<: *mastermind
name: "Illuminati, Secret Society"
image: "illuminati"
themes: ["transforms", "Outwit", "Discard", "Draw is Loot"] # , "Negative Fight"]
- <<: *mastermind
name: "Zombie Green Goblin"
image: "zombiegreengoblin"
themes: ["Grows", "Discard", "Rise of the Living Dead", "Negative Fight"]
- <<: *mastermind
name: "Madelyne Pryor, Goblin Queen"
image: "goblinqueen"
themes: ["wound", "Human Shields"] #, "Negative Fight"]
- <<: *mastermind
name: "Wasteland Hulk"
image: "wastelandhulk"
themes: ["Grows", "Cross Dimensional Rampage", "Even Mix Fight"]
- <<: *mastermind
name: "Nimrod, Super Sentinel"
image: "nimrodsupersentinel"
themes: ["6recruit", "Discard", "Even Mix Fight"]
- <<: *mastermind
name: "Arcade"
image: "arcade"
themes: ["wound", "Human Shields", "Negative Fight"]
- <<: *mastermind
name: "Deathbird"
image: "deathbird"
themes: ["wound", "Grows", "Neutral Fight"]
- <<: *mastermind
name: "Shadow King"
image: "shadowking"
themes: ["Dominate from discard", "Negative Fight"]
- <<: *mastermind
name: "Mojo"
image: "mojo"
themes: ["tech", "Human Shields", "Random Discard", "Even Mix Fight"]
- <<: *mastermind
name: "Onslaught"
image: "onslaught"
themes: ["Dominate from Hand", "Reduced Hand Size", "Negative Fight"]
- <<: *mastermind
name: "Dark Pheonix"
image: "darkpheonix"
themes: ["KO all Heroes with color from Hero Deck", "Mostly Negative Fight"]
- <<: *mastermind
name: "Charles Xavier, Professor of Crime"
image: "xaviercrime"
themes: ["Grows"] #, "Hidden Witnesses", "Mostly Negative Fight"]
- <<: *mastermind
name: "The Goblin, Underworld Boss"
image: "goblinunderworld"
themes: ["wound", "Hidden Witnesses"] #, "Mostly Negative Fight"]
- <<: *mastermind
name: "Baron Heinrich Zemo"
image: "baronzemo"
themes: ["wound", "Savior", "Recruit to Rescue Bystanders"] #, "Mostly Negative Fight"]
- <<: *mastermind
name: "Arnim Zola"
image: "arnimzola"
themes: ["Abomination", "Even Mix Fight"]
- <<: *mastermind
name: "Authoritarian Iron Man"
image: "authoritarianironman"
themes: ["Fortify", "City Space", "Mostly Negative Fight"]
- <<: *mastermind
name: "Baron Helmut Zemo"
image: "baronhelmutzemo"
themes: ["wound", "Shrinks", "Victory Pile", "Mostly Negative Fight"]
- <<: *mastermind
name: "Maria Hill, Director of S.H.I.E.L.D"
image: "mariahilldirector"
#themes: ["Shield Clearance", "Extra Villains", "Mostly Negative Fight"]
- <<: *mastermind
name: "Misty Knight"
image: "mistyknight"
themes: ["wound", "MarvelKnights", "Bribe", "Mostly Negative Fight"]
- <<: *mastermind
name: "Ragnarok"
image: "ragnarok"
themes: ["Grows", "Hero Classes in HQ", "Discard", "Mostly Positive Fight"]
- <<: *mastermind
name: "Galactus"
image: "galactus"
themes: ["Cosmic Threat", "Shrinks City", "Mostly Positive Fight"]
- <<: *mastermind
name: "Mole Man"
image: "moleman"
themes: ["wound", "Grows", "Helps Villains Escape", "Even Mix Fight"]
- <<: *mastermind
name: "Evil Deadpool"
image: "evildeadpool"
themes: ["wound", "Grows", "Discard", "Negative Fight"]
- <<: *mastermind
name: "Macho Gomez"
image: "machogomez"
themes: ["wound", "Grows", "Mostly Positive Fight"]
- <<: *mastermind
name: "Ultron"
image: "ultron"
themes: ["tech", "Empowered", "Mostly Negative Fight"]
- <<: *mastermind
name: "Morgan Le Fay"
image: "morganlefay"
themes: ["wound", "covert", "Chivalrous Duel", "Gain 0-Cost", "Mostly Negative Fight"]
- <<: *mastermind
name: "Carnage"
image: "carnage"
themes: ["wound", "Feast", "0-Cost", "Mostly Positive Fight"]
- <<: *mastermind
name: "Mysterio"
image: "mysterio"
themes: ["Extra Tactics", "Even Mix Fight"]
- <<: *mastermind
name: "Adrian Toomes"
image: "adriantoomes"
themes: ["Striker", "Triggers Escape", "Mostly Positive Fight", "Epic"]
- <<: *mastermind
name: "Vulture"
image: "vulture"
themes: ["wound", "KO From HQ", "Mostly Negative Fight", "Epic"]
- <<: *mastermind
name: "Fin Fang Foom"
image: "finfangfoom"
themes: ["instinct", "ranged", "tech", "covert", "strength", "Size-Changing", "Demolish", "Mostly Negative Fight",
"Epic"]
- <<: *mastermind
name: "Pagliacci"
image: "pagliacci"
themes: ["Extra Scheme Twists", "Demolish", "Mostly Negative Fight", "Epic"]
- <<: *mastermind
name: "Uru-Enchanted Iron Man"
image: "uruenchantedironman"
themes: ["Demolish", "Uru-Enchanted", "Mostly Negative Fight"]
- <<: *mastermind
name: "Immortal Emperor Zheng-Zhu"
image: "immortalemperorzhengzhu"
themes: ["MarvelKnights", "7cost", "Discard", "7th Circle"] #, "Mostly Negative Fight"]
- <<: *mastermind
name: "King Hyperion"
image: "kinghyperion"
themes: ["wound", "Enters City", "Charge", "Can't Defeat in City", "Positive Fight"]
- <<: *mastermind
name: "Shiklah, the Demon Bride"
image: "shiklahthedemonbride"
themes: ["Dig for Twists", "Gain as Hero", "Fateful Resurrection", "Positive Fight"]
- <<: *mastermind
name: "Spider-Queen"
image: "spiderqueen"
themes: ["wound", "+ For Escaped Bystanders", "Recur Spider-Infected", "Mostly Negative Fight"]
- <<: *mastermind
name: "Supreme Intelligience of the Kree"
image: "supremeintelligience"
themes: ["Shards"] #, "Discard", "Negative Fight"]
- <<: *mastermind
name: "Thanos"
image: "thanosmastermind"
themes: ["Shrinks", "Steals Non-Grey", "Negative Fight"]
- <<: *player
name: "Player One"
- <<: *player
name: "Player Two"
- <<: *player
name: "Player Three"
- <<: *player
name: "Player Four"
- <<: *player
name: "Player Five"
- <<: *henchmen
name: "Sapien League"
image: "sapienleague"
themes: ["Fight: KO Hero then play top villain if henchman"]
- <<: *henchmen
name: "Shi'ar Patrol Craft"
image: "shiarpatrolcraft"
themes: ["Fight: Next hero has Soaring Flight"]
- <<: *henchmen
name: "Shi'ar Death Commandos"
image: "shiardeathcommandos"
themes: ["Human Shield", "Fight: KO hero"]
- <<: *henchmen
name: "Hellfire Cult"
image: "hellfirecult"
themes: ["Fight: KO top if 0 cost, or +1 recruit"]
- <<: *henchmen
name: "Thor Corps"
image: "thorcorps"
themes: ["strength", "ranged", "Fight: Gain as Hero"]
colors: ["GU"]
- <<: *henchmen
name: "Cytoplasmic Spikes"
image: "cytoplasmicspikes"
themes: ["Fight: Feast, non-grey gain 2 recruit"]
- <<: *henchmen
name: "Sentinel"
image: "sentinel"
themes: ["Fight: KO a Hero"]
- <<: *henchmen
name: "Doombot Legion"
image: "doombotlegion"
themes: ["Fight: KO one of top two cards"]
- <<: *henchmen
name: "Savage Land Mutates"
image: "savagelandmutants"
themes: ["Fight: Hand size increased by 1"]
- <<: *henchmen
name: "Death's Heads"
image: "deathsheads"
themes: ["Fight: Outwit: KO a 0 Cost Hero"]
- <<: *henchmen
name: "Sakaaran Hivelings"
image: "sakaaranhivelings"
themes: ["Fight: Scry 1, Feast"]
- <<: *henchmen
name: "The Brood"
image: "brood"
themes: ["+1 for KO'd Bystanders", "Fight: KO a Hero and Bystander"]
- <<: *henchmen
name: "M.O.D.O.K.S"
image: "modoks"
themes: ["Fight: KO a Hero from discard or HQ,", "if had recruit +1 recruit"]
- <<: *henchmen
name: "Ghost Racers"
image: "ghostracers"
themes: ["Rise of the Living Dead", "Fight: Reveal Covert or KO a hero with attack"]
- <<: *henchmen
name: "Mandroid"
image: "mandroid"
themes: ["+1 For each in VP", "Fight: KO Hero"]
- <<: *henchmen
name: "Cape-Killers"
image: "capekillers"
themes: ["Shield Clearance", "Fight: KO from Discard"]
- <<: *henchmen
name: "Khonshu Guardians"
image: "khonshuguardians"
themes: ["+2 in Sewers, Rooftops, Bridge", "Fight: KO Hero"]
- <<: *henchmen
name: "Magma Men"
image: "magmamen"
themes: ["Fateful Ressurection", "Fight: KO Hero"]
- <<: *henchmen
name: "Spider-Infected"
image: "spiderinfected"
themes: ["Captures Bystander", "Fight: Next Hero has Wall-Crawl"]
- <<: *henchmen
name: "Circus of Crime"
image: "circusofcrime"
themes: ["Fight: Reveal Top, if 0 cost KO, else draw"]
- <<: *henchmen
name: "Spider-Slayers"
image: "spiderslayer"
themes: ["Fight: Reveal top 2. Put all 2 or less cost in hand"]
- <<: *villain
name: "Shadow-X"
image: "shadowx"
themes: ["ranged", "6recruit", "Dominate", "Discard", "Gain", "Trap", "X-Gene"]
colors: ["B", "G", "G", "R", "U", "Y", "Y", "W"]
- <<: *villain
name: "Mojoverse"
image: "mojoverse"
themes: ["covert", "Human Shield", "KO a hero", "Trap", "Discard"]
- <<: *villain
name: "Shi'ar Imperial Guard"
image: "shiarimperialguard"
themes: ["draw", "wound", "Reveal Ally", "KO", "Extra Villains"]
- <<: *villain
name: "U-Foes"
image: "ufoes"
themes: ["wound", "Play extra villains", "Gain shield officer", "Extra Victory Points"]
- <<: *villain
name: "Hellfire Club"
image: "hellfireclub"
themes: ["xmen", "wound", "Dominate", "Increase Costs", "Ascend", "Trap", "+1 for Cards Played"]
- <<: *villain
name: "Sisterhood of Mutants"
image: "sisterhoodofmutants"
themes: ["instinct", "Dominate", "KO a hero", "Ascend", "Shuffle back in"] #, "Trap"]
- <<: *villain
name: "Dark Descendants"
image: "darkdescendants"
themes: ["ranged", "KO Hero", "Dominate", "Gain as Hero"] #, "X-Gene", "Trap"]
colors: ["U", "W", "W", "W"]
- <<: *villain
name: "Spider-Foes"
image: "spider-foes"
themes: ["covert", "wound", "Increase Hand Size", "City Space", "Bystander"]
- <<: *villain
name: "Radiation"
image: "radiation"
themes: ["wound", "strength", "KO a hero", "Extra Villain", "City Space", "Bystander"]
- <<: *villain
name: "Enemies of Asgard"
image: "enemiesofasgard"
themes: ["ranged", "wound", "draw", "KO Wounds"]
- <<: *villain
name: "Masters of Evil"
image: "mastersofevil"
themes: ["tech", "avengers", "wound", "City Space", "KO Hero", "Reveal can Feast", "Bystanders", "Extra VP"]
- <<: *villain
name: "Brotherhood"
image: "brotherhood"
themes: ["xmen", "wound", "Extra Twist", "KO Hero"]
- <<: *villain
name: "Murderworld"
image: "murderworld"
themes: ["wound", "Human Shield", "Extra Villain", "Trap", "Diverse Costs"]
- <<: *villain
name: "Skrulls"
image: "skrulls"
themes: ["KO Hero", "Free Acquire"]
- <<: *villain
name: "X-Men Noir"
image: "xmennoir"
themes: ["tech", "strength", "recruit", "draw", "Investigate", "KO 0-Cost", "Increase Hand Size", "HQ Manip"]
- <<: *villain
name: "Domain of Apocalypse"
image: "domainofapocalypse"
themes: ["draw", "xmen", "Teleport", "CDR", "Free Acquire", "KO Hero", "Ascend"]
- <<: *villain
name: "Sentinel Territories"
image: "sentinelterritories"
themes: ["draw", "Modify Villain Attack", "Less Villains", "Extra Recruit"]
- <<: *villain
name: "Aspects of the Void"
image: "aspectsofthevoid"
themes: ["Wounded Fury", "Bystanders", "Extra Recruit", "Pass Right", "Feast"] #, "Free Acquire", "Trap",
#"Extra Master Strike"]
- <<: *villain
name: "Code Red"
image: "codered"
themes: ["covert", "draw", "wound", "Reduce Cost", "KO Hero", "KO 0-Cost", "Wounded Fury", "Trap"]
- <<: *villain
name: "Illuminati"
image: "illuminati"
themes: ["Outwit", "Discard", "Bystander", "CDR", "Vanilla", "Matching Class"]
- <<: *villain
name: "Intelligencia"
image: "intelligencia"
themes: ["wound", "Wounded Fury", "Outwit", "KO Hero", "Extra Villain", "Discard"]
- <<: *villain
name: "Sakaar Imperial Guard"
image: "sakaarimperialguard"
themes: ["wound", "draw", "KO Hero", "KO 1 of top 3", "Single Class"]
- <<: *villain
name: "Manhattan(Earth-1610)"
image: "manhattan1610"
#themes: ["Gain as Hero", "CDR", "ranged", "covert", "Class count", "Teleport"]
colors: ["G", "U", "U", "R"]
- <<: *villain
name: "Limbo"
image: "limbo"
themes: ["Bystander", "KO hero", "Teleport"]
- <<: *villain
name: "Zola's Creations"
image: "zolascreations"
themes: ["wound", "Abomination", "KO hero", "City Space", "Prime Cost", "Discard"]
- <<: *villain
name: "Master of Evil(WWII)"
image: "mastersofevilwwii"
themes: ["draw", "wound", "Bystander", "Savior", "KO Hero", "Reveal can Feast"]
- <<: *villain
name: "Warbound"
image: "warbound"
themes: ["wound", "draw", "Wounded Fury", "Feast", "Extra Recruit", "Scry 2", "Discard"]
- <<: *villain
name: "Goblin's Freak Show"
image: "goblinsfreakshow"
themes: ["wound", "strength", "Hidden Witness", "Extra Villain", "HQ cost"]
- <<: *villain
name: "Wasteland"
image: "wasteland"
themes: ["draw", "instinct", "CDR", "Feast Cost 2 or less", "Bystander", "Ascend", "Discard"]
- <<: *villain
name: "The Deadlands"
image: "deadlands"
themes: ["avengers", "shield", "covert", "wound", "strength", "Bystanders", "Rise of the Living Dead", "KO Hero",
"Ascend", "Add tactic"] #, "Discard"]
- <<: *villain
name: "CSA Special Marshals"
image: "csaspecialmarshals"
themes: ["covert", "KO Recruit", "KO Attack 2+", "Discard", "Fortify Bystander", "Victory Pile", "Size Changing"]
- <<: *villain
name: "Great Lakes Avengers"
image: "greatlakesavengers"
themes: ["strength", "covert", "wound", "KO from Discard", "Top Villain", "Recur", "Fortify Sidekick"]
- <<: *villain
name: "Heroes for Hire"
image: "heroesforhire"
themes: ["discard", "wound", "Fortify Mastermind", "KO Hero", "Shuffle Discard", "Recur"]
- <<: *villain
name: "Registration Enforcers"
image: "registrationenforcers"
themes: ["recruit", "discard", "5cost", "City Space", "Phasing", "Size Changing", "KO Hero"]
- <<: *villain
name: "S.H.I.E.L.D Elite"
image: "shieldelite"
themes: ["wound", "Shield Clearance", "Extra Villain", "Fortify Shield Officers"]
- <<: *villain
name: "Superhuman Registration Act"
image: "superhumanregistrationact"
themes: ["strength", "tech", "wound", "Fortify Deck", "Decrease Hand Size"] #, "Fortify HQ", "Size Changing",
#"Fortify Villain", "Fortify HQ"]
- <<: *villain
name: "Thunderbolts"
image: "thunderbolts"
themes: ["tech", "wound", "KO one of top 3", "Fortify Wound"]
- <<: *villain
name: "Heralds of Galactus"
image: "heraldsofgalactus"
themes: ["ranged", "instinct", "covert", "strength", "wound", "Cosmic Threat", "Man out of Time", "Bystanders"]
- <<: *villain
name: "Suberranea"
image: "subterranea"
themes: ["Increase Hand Size", "Bystanders", "KO Hero", "Burrow"]
- <<: *villain
name: "Deadpool's \"Friends\""
image: "deadpoolsfriends"
themes: ["2cost", "wound", "Discard", "Free Acquire", "Bystanders", "Played Hero Cost", "Pass Cards"]
- <<: *villain
name: "Evil Deadpool Corpse"
image: "evildeadpoolcorpse"
themes: ["topcard", "draw", "wound", "Excessive Violence", "KO Hero", "Odd Cost"]
- <<: *villain
name: "Ultron's Legacy"
image: "ultronslegacy"
themes: ["draw", "wound", "All Classes", "Empowered", "KO Hero", "Microscopic Size-Changing", "KO Discard",
"Bystanders"]
- <<: *villain
name: "Queen's Vengeance"
image: "queensvengeance"
themes: ["ranged", "strength", "covert", "tech", "wound", "KO Hero",
"Microscopic Size-Changing", "Chivalrous Duel"] #, "Reveal can Feast", "Color Count", "KO Discard",
#"Extra Villain", "Pass Card"]
- <<: *villain
name: "Maximum Carnage"
image: "maximumcarnage"
themes: ["wound", "Feast", "Recur", "Bystanders", "Cost Matters", "0-Cost"]
- <<: *villain
name: "Sinister Six"
image: "sinistersix"
themes: ["instinct", "Clone Hero", "Bystanders", "Cost Matters", "Villain Count", "Discard", "City Space"]
- <<: *villain
name: "Salvagers"
image: "salvagers"
themes: ["ranged", "instinct", "tech", "wound", "Striker", "KO 0-Cost", "Discard", "Extra Recruit"]
- <<: *villain
name: "Vulture Tech"
image: "vulturetech"
themes: ["Striker", "KO/Discard-", "recruit", "Danger Sense", "Wall Crawl", "Bystanders", "Jump to Rooftops"]
- <<: *villain
name: "Monsters Unleashed"
image: "monstersunleashed"
themes: ["instinct", "ranged", "tech", "covert", "strength", "Bystanders", "Size-Changing", "KO Hero",
"Extra Villains"] #, "Increase Hand Size", "Restriction", "Cost Reduction", "Demolish"]
- <<: *villain
name: "Wrecking Crew"
image: "wreckingcrew"
themes: ["Charge", "Demolish", "KO Hero", "City Space"]
- <<: *villain
name: "The Mighty"
image: "themighty"
themes: ["ranged", "instinct", "wound", "draw", "Uru-Enchanted", "Bystanders", "Recur", "Extra Recruit", "Each Draw/Discard",
"KO Hero", "Extra Strike or Twist"] #, "Extra Villains"]
- <<: *villain
name: "Deadpool's Secret Wars"
image: "deadpoolssecretwars"
themes: ["Circle of Kung-Fu", "Bystanders", "Ascend", "Spectrum", "Fateful Resurrection"] #, "KO Hero"]
- <<: *villain
name: "Guardians of Knowhere"
image: "guardiansofknowhere"
themes: ["wound", "draw", "Fateful Resurrection", "Ascend", "Charge", "Patrol", "KO Hero"] #, "Reveal Can Feast"]
- <<: *villain
name: "K'un-Lun"
image: "kunlun"
themes: ["wound", "draw", "Circle of Kung-Fu", "Discard", "KO Heroes"]
- <<: *villain
name: "Monster Metropolis"
image: "monstermetropolis"
themes: ["wound", "Fateful Resurrection", "CDR", "KO-Discard", "Bystanders", "Charge", "City Space"]
- <<: *villain
name: "Utopolis"
image: "utopolis"
themes: ["wound", "Charge", "Spectrum", "KO-Discard", "City Space", "Extra Scheme Twist", "Ascend", "Patrol"]
- <<: *villain
name: "X-Men '92"
image: "xmen92"
themes: ["Charge", "Ascend", "CDR", "Gain as Hero", "tech", "instinct", "draw", "Spectrum"]
colors: ["G", "G", "U", "U", "U", "Y", "Y"]
- <<: *villain
name: "Kree Starforce"
image: "kreestarforce"
themes: ["wound", "draw", "Shards", "Pointing"]
- <<: *villain
name: "Infinity Gems"
image: "infinitygems"
themes: ["Gain as Artifact", "Shards", "Extra Villain"]
- name: "Black Panther"
<<: *hero
common1:
color: "RY"
common2:
color: "BG"
uncommon:
color: "RG"
rare:
color: "YB"
image: "blackpanther"
teams: ["illuminati"]
themes: ["illuminati", "draw", "MC Matters", "Sidekicks", "KO"]
- name: "Maximus"
<<: *hero
common1:
color: "R"
common2:
color: "B"
uncommon:
color: "BR"
rare:
color: "B"
image: "maximus"
teams: ["cabal"]
themes: ["covert", "tech", "cabal", "Henchmen", "Sidekicks"]
- name: "Proxima Midnight"
<<: *hero
common1:
color: "RY"
common2:
color: "Y"
uncommon:
color: "R"
rare:
color: "Y"
image: "proximamidnight"
teams: ["cabal"]
themes: ["instinct", "covert", "recruit", "-Icon", "attack", "-Icon"]
- name: "Superior Iron Man"
<<: *hero
common1:
color: "B"
common2:
color: "B"
uncommon:
color: "U"
rare:
color: "B"
image: "superiorironman"
teams: ["illuminati"]
themes: ["tech", "ranged", "draw", "Diverse Costs", "Victory Pile"]
- name: "Thanos"
<<: *hero
common1:
color: "GU"
common2:
color: "G"
uncommon:
color: "U"
rare:
color: "U"
image: "thanos"
teams: ["cabal"]
themes: ["cabal", "ranged", "KO Bystander", "Free Defeat"]
- name: "Lady Thor"
<<: *hero
common1:
color: "U"
common2:
color: "G"
uncommon:
color: "GU"
rare:
color: "G"
image: "ladythor"
teams: ["avengers"]
themes: ["strength", "ranged", "6recruit"]
- name: "No-Name, Brood Queen"
<<: *hero
common1:
color: "R"
common2:
color: "R"
uncommon:
color: "RG"
rare:
color: "Y"
image: "nonamebroodqueen"
teams: ["warbound"]
themes: ["draw", "topcard", "transforms", "Feast", "KO"]
- name: "Miek the Unhived"
<<: *hero
common1:
color: "Y"
common2:
color: "Y"
uncommon:
color: "Y"
rare:
color: "RG"
image: "miektheunhived"
teams: ["warbound"]
themes: ["instinct", "topcard", "transforms", "attack", "-Icon", "Feast", "KO From Deck Matters"]
- name: "Caiera"
<<: *hero
common1:
color: "R"
common2:
color: "R"
uncommon:
color: "G"
rare:
color: "GY"
image: "caiera"
teams: ["warbound"]
themes: ["covert", "draw", "transforms", "Outwit", "Smash", "KO"]
- name: "Gambit"
<<: *hero
common1:
color: "R"
common2:
color: "U"
uncommon:
color: "Y"
rare:
color: "Y"
image: "gambit"
teams: ["xmen"]
themes: ["xmen", "topcard", "draw", "Top Card Manip"]
- name: "Korg"
<<: *hero
common1:
color: "G"
common2:
color: "G"
uncommon:
color: "RG"
rare:
color: "G"
image: "korg"
teams: ["warbound"]
themes: ["strength", "transforms", "Draw", "Outwit", "Smash", "KO Wound", "attack", "in HQ"]
- name: "Joe Fixit, Grey Hulk"
<<: *hero
common1:
color: "G"
common2:
color: "R"
uncommon:
color: "GY"
rare:
color: "R"
image: "greyhulk"
teams: ["CrimeSyndicate"]
themes: ["strength", "transform", "Smash", "Bribe", "VP"]
- name: "Hulkbuster Iron Man"
<<: *hero
common1:
color: "G"
common2:
color: "B"
uncommon:
color: "B"
rare:
color: "B"
image: "hulkbusterironman"
teams: ["avengers"]
themes: ["tech", "strength", "draw", "transforms", "Smash", "Outwit"]
- name: "Thor"
<<: *hero
common1:
color: "G"
common2:
color: "U"
uncommon:
color: "U"
rare:
color: "U"
image: "thor"
teams: ["avengers"]
themes: ["strength", "ranged", "8recruit", "Bribe"]
- name: "Gladiator Hulk"
<<: *hero
common1:
color: "G"
common2:
color: "GY"
uncommon:
color: "G"
rare:
color: "G"
image: "gladiatorhulk"
teams: ["warbound"]
themes: ["strength", "draw", "transforms", "Smash", "Discard Matters", "Discard Replace"]
- name: "Agent X-13"
<<: *hero
common1:
color: "U"
common2:
color: "B"
uncommon:
color: "R"
rare:
color: "Y"
image: "agentx13"
teams: ["shield"]
themes: ["covert", "shield", "Man out of Time", "Shield Officer", "KO-", "shield", "Savior"]
- name: "Hulk"
<<: *hero
common1:
color: "Y"
common2:
color: "G"
uncommon:
color: "G"
rare:
color: "G"
image: "hulk"
teams: ["avengers"]
themes: ["strength", "Give Wounds", "KO Wounds"]
- name: "Wolverine"
<<: *hero
common1:
color: "Y"
common2:
color: "Y"
uncommon:
color: "Y"
rare:
color: "Y"
image: "wolverine"
teams: ["xmen"]
themes: ["instinct", "draw", "KO Wound", "Draw Matters"]
- name: "Cyclops"
<<: *hero
common1:
color: "G"
common2: