-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcard_data.js
1692 lines (1690 loc) · 56.4 KB
/
card_data.js
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
/*
* Copyright 2015 Google Inc. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// Based entirely on articles from http://www.channelfireball.com/.
// If you disagree with a card valuation, feel free to open a ticket.
var card_data = {
// Gods: TODO
// Nyx: TODO
// Theros
'gray merchant of asphodel': 'Good',
'arbor colossus': 'Best',
'pyxis of pandemonium': 'Filler',
'akroan hoplite': 'Filler',
'omenspeaker': 'Playable',
'cavern lampad': 'Playable',
'anger of the gods': 'Playable',
'breaching hippocamp': 'Bad',
'underworld cerberus': 'Good',
'triton tactics': 'Playable',
'time to feed': 'Playable',
'scholar of athreos': 'Filler',
'aqueous form': "Playable",
'flamecast wheel': 'Filler',
"warriors' lesson": "Playable",
'asphodel wanderer': 'Bad',
'read the bones': 'Playable',
'master of waves': 'Good',
"pharika's mender": 'Filler',
'gainsay': 'Bad',
'two-headed cerberus': 'Playable',
'stymied hopes': 'Filler',
'sealock monster': 'Playable',
'lash of the whip': 'Playable',
'ink dissolver': 'Filler',
'priest of iroas': 'Filler',
'stormbreath dragon': 'Best',
'sylvan caryatid': 'Good',
"nylea's emissary": 'Good',
'hythonia the cruel': 'Good',
'demolish': 'Bad',
'loathsome catoblepas': 'Filler',
"witches' eye": 'Filler',
"titan's strength": "Playable",
'wild celebrants': 'Bad',
'lightning strike': 'Good',
'glare of heresy': 'Bad',
"viper's kiss": 'Bad',
'favored hoplite': 'Filler',
'polukranos, world eater': 'Best',
'returned phalanx': 'Filler',
'destructive revelry': 'Filler',
"messenger's speed": 'Bad',
"nylea's presence": 'Filler',
'mnemonic wall': 'Bad',
'fleecemane lion': 'Good',
'prescient chimera': 'Playable',
'battlewise hoplite': 'Playable',
'wavecrash triton': 'Playable',
'nykthos, shrine to nyx': 'Filler',
'nylea, god of the hunt': 'Playable',
'heliod, god of the sun': 'Playable',
'peak eruption': 'Bad',
'hunt the hunter': 'Bad',
'vanquish the foul': 'Bad',
'scourgemark': "Playable",
'boon of erebos': "Playable",
'horizon chimera': 'Playable',
'shipbreaker kraken': 'Good',
'lost in a labyrinth': 'Bad',
'sip of hemlock': 'Playable',
'swan song': 'Bad',
'setessan griffin': 'Filler',
"sea god's revenge": 'Great',
'phalanx leader': 'Great',
'dragon mantle': "Playable",
'griptide': 'Good',
'chosen by heliod': "Playable",
'satyr rambler': 'Bad',
'benthic giant': 'Bad',
'shipwreck singer': 'Playable',
'feral invocation': 'Playable',
'temple of triumph': 'Filler',
'agent of horizons': 'Filler',
'insatiable harpy': 'Playable',
'divine verdict': 'Playable',
"voyage's end": 'Good',
'nessian courser': 'Playable',
'decorated griffin': 'Bad',
'horizon scholar': 'Playable',
'spark jolt': 'Bad',
'psychic intrusion': 'Filler',
"hero's downfall": 'Good',
'bronze sable': 'Filler',
'voyaging satyr': 'Good',
'setessan battle priest': 'Bad',
'lagonna-band elder': 'Filler',
'triton fortune hunter': 'Playable',
"karametra's acolyte": 'Playable',
'savage surge': "Playable",
'soldier of the pantheon': 'Playable',
'ashen rider': 'Filler',
"thassa's emissary": 'Good',
'triad of fates': 'Playable',
'celestial archon': 'Best',
'chained to the rocks': 'Playable',
'fleshmad steed': 'Bad',
'satyr hedonist': 'Filler',
'thoughtseize': 'Playable',
'arena athlete': 'Playable',
'guardians of meletis': 'Filler',
'prophet of kruphix': 'Good',
'rageblood shaman': 'Playable',
'sedge scorpion': 'Playable',
"artisan's sorrow": 'Filler',
'opaline unicorn': 'Filler',
"erebos's emissary": 'Good',
'centaur battlemaster': 'Playable',
'akroan crusader': 'Bad',
'whip of erebos': 'Good',
'bow of nylea': 'Best',
'ashiok, nightmare weaver': 'Good',
'hammer of purphoros': 'Best',
'march of the returned': 'Bad',
'yoked ox': 'Bad',
'fate foretold': "Playable",
'silent artisan': 'Bad',
'nimbus naiad': 'Good',
'stoneshock giant': 'Playable',
"thassa's bounty": 'Bad',
'baleful eidolon': 'Playable',
'ordeal of erebos': 'Playable',
'hopeful eidolon': 'Playable',
'akroan horse': 'Filler',
'cutthroat maneuver': 'Bad',
'pheres-band centaurs': 'Filler',
'mistcutter hydra': 'Good',
'coordinated assault': 'Playable',
'tormented hero': 'Playable',
'unknown shores': 'Filler',
'anthousa, setessan hero': 'Playable',
'satyr piper': 'Bad',
'staunch-hearted warrior': 'Playable',
'battlewise valor': "Playable",
'commune with the gods': 'Filler',
'rage of purphoros': 'Playable',
'defend the hearth': 'Bad',
'anax and cymede': 'Good',
'ordeal of heliod': 'Playable',
"prowler's helm": 'Filler',
'triton shorethief': 'Bad',
'xenagos, the reveler': 'Good',
'temple of deceit': 'Filler',
'dark betrayal': 'Bad',
'hundred-handed one': 'Good',
'nessian asp': 'Good',
'boon satyr': 'Best',
'borderland minotaur': 'Playable',
'bident of thassa': 'Good',
'leonin snarecaster': 'Filler',
'fabled hero': 'Best',
'curse of the swine': 'Playable',
'rescue from the underworld': 'Bad',
'ill-tempered cyclops': 'Playable',
'nighthowler': 'Good',
'titan of eternal fire': 'Filler',
"traveler's amulet": 'Filler',
'fade into antiquity': 'Bad',
"elspeth, sun's champion": 'Best',
'spear of heliod': 'Best',
'medomai the ageless': 'Good',
'blood-toll harpy': 'Playable',
'colossus of akros': 'Filler',
'evangel of heliod': 'Playable',
'ordeal of nylea': 'Playable',
"ephara's warden": 'Bad',
'abhorrent overlord': 'Best',
'fanatic of mogis': 'Playable',
'felhide minotaur': 'Filler',
'ray of dissolution': 'Filler',
'leafcrown dryad': 'Good',
'agent of the fates': 'Best',
'fleetfeather sandals': 'Filler',
'temple of mystery': 'Filler',
'labyrinth champion': 'Playable',
'keepsake gorgon': 'Great',
'erebos, god of the dead': 'Playable',
'crackling triton': 'Filler',
"purphoros's emissary": 'Playable',
'nemesis of mortals': 'Playable',
'ember swallower': 'Good',
'sentry of the underworld': 'Playable',
'vulpine goliath': 'Filler',
'spellheart chimera': 'Filler',
'ordeal of thassa': 'Playable',
'flamespeaker adept': 'Playable',
'shredding winds': 'Bad',
'returned centaur': 'Filler',
'vaporkin': 'Playable',
'tymaret, the murder king': 'Filler',
'gods willing': 'Playable',
'coastline chimera': 'Filler',
'temple of abandon': 'Filler',
'disciple of phenax': 'Playable',
'anvilwrought raptor': 'Filler',
"nylea's disciple": 'Playable',
'burnished hart': 'Filler',
'traveling philosopher': 'Filler',
'spearpoint oread': 'Playable',
'kragma warcaller': 'Filler',
'magma jet': 'Playable',
'reaper of the wilds': 'Good',
'observant alseid': 'Playable',
'firedrinker satyr': 'Bad',
'cavalry pegasus': 'Filler',
'dauntless onslaught': 'Playable',
"heliod's emissary": 'Good',
'deathbellow raider': 'Filler',
'prognostic sphinx': 'Best',
'daxos of meletis': 'Good',
'gift of immortality': 'Bad',
'meletis charlatan': 'Playable',
'portent of betrayal': 'Bad',
'thassa, god of the sea': 'Playable',
'polis crusher': 'Good',
'last breath': 'Bad',
'minotaur skullcleaver': 'Filler',
'chronicler of heroes': 'Playable',
'reverent hunter': 'Playable',
'boulderfall': 'Bad',
"mogis's marauder": 'Playable',
'artisan of forms': 'Playable',
'wingsteed rider': 'Good',
'purphoros, god of the forge': 'Playable',
"pharika's cure": 'Playable',
'temple of silence': 'Filler',
'steam augury': 'Filler',
'ordeal of purphoros': 'Playable',
'annul': 'Bad',
// M15
'perilous vault': "Playable",
'siege dragon': 'Good',
'wall of limbs': "Filler",
'grindclock': "Filler",
'yavimaya coast': 'Playable',
'wall of fire': "Filler",
'ulcerate': "Good",
'resolute archangel': 'Playable',
'profane memento': 'Bad',
'ancient silverback': 'Playable',
'encrust': "Playable",
'might makes right': "Filler",
'preeminent captain': 'Playable',
'feast on the fallen': "Filler",
"brawler's plate": "Filler",
'ensoul artifact': "Playable",
'heat ray': "Good",
'forge devil': 'Playable',
'flesh to dust': 'Playable',
'peel from reality': 'Playable',
'midnight guard': "Playable",
'chord of calling': "Playable",
'paragon of open graves': 'Playable',
'crippling blight': "Playable",
'aggressive mining': "Filler",
'invisibility': 'Bad',
'into the void': 'Playable',
'kinsbaile skirmisher': 'Playable',
'triplicate spirits': 'Great',
'haunted plate mail': 'Good',
'torch fiend': "Playable",
'belligerent sliver': "Playable",
'chasm skulker': 'Good',
'titanic growth': 'Playable',
"miner's bane": "Playable",
'research assistant': "Playable",
'master of predicaments': 'Good',
'scuttling doom engine': 'Good',
'lightning strike': 'Great',
'sanctified charge': 'Playable',
'sungrace pegasus': 'Playable',
'shrapnel blast': "Filler",
'soul of shandalar': 'Best',
'welkin tern': 'Playable',
'roaring primadox': 'Playable',
'hushwing gryff': 'Playable',
'vineweft': "Filler",
'verdant haven': "Filler",
'stormtide leviathan': 'Playable',
'solemn offering': "Filler",
'seraph of the masses': 'Playable',
'congregate': "Filler",
'netcaster spider': 'Playable',
'charging rhino': "Playable",
'first response': "Playable",
'invasive species': 'Playable',
'aeronaut tinkerer': 'Playable',
'military intelligence': "Playable",
'burning anger': 'Best',
'plummet': "Playable",
'frenzied goblin': 'Playable',
'siege wurm': 'Playable',
'overwhelm': "Playable",
'wall of mulch': "Playable",
'staff of the death magus': 'Bad',
"crowd's favor": 'Playable',
'mercurial pretender': "Playable",
'diffusion sliver': "Filler",
'phyrexian revoker': "Playable",
'paragon of eternal wilds': "Playable",
'devouring light': 'Great',
'void snare': "Playable",
'scrapyard mongrel': 'Playable',
'generator servant': 'Playable',
'staff of the wild magus': 'Bad',
'aetherspouts': 'Playable',
'child of night': 'Playable',
'hammerhand': "Filler",
'blood host': "Playable",
'gravedigger': 'Playable',
'divination': "Playable",
'chandra, pyromaster': 'Good',
'warden of the beyond': "Playable",
'ob nixilis, unshackled': "Good",
'juggernaut': 'Good',
'bronze sable': "Playable",
'jace, the living guildpact': 'Playable',
'quickling': 'Playable',
'caustic tar': "Playable",
"jace's ingenuity": 'Playable',
"rogue's gloves": "Playable",
'phytotitan': 'Playable',
'amphin pathmage': "Playable",
'kurkesh, onakke ancient': 'Playable',
'constricting sliver': "Playable",
'paragon of fierce defiance': 'Playable',
'eternal thirst': "Filler",
'shadowcloak vampire': 'Playable',
'ornithopter': "Filler",
'soulmender': "Playable",
'boonweaver giant': "Filler",
'statute of denial': "Filler",
'dauntless river marshal': 'Playable',
'crucible of fire': 'Bad',
'evolving wilds': 'Playable',
'thundering giant': "Playable",
'nissa, worldwaker': 'Best',
'festergloom': "Playable",
'clear a path': 'Bad',
'darksteel citadel': "Filler",
'soul of theros': 'Best',
'oppressive rays': "Playable",
'radiant fountain': "Filler",
'indulgent tormentor': 'Best',
'staff of the sun magus': 'Bad',
'chronostutter': "Filler",
"hunter's ambush": "Playable",
'lava axe': "Filler",
'kird chieftain': 'Great',
'gargoyle sentinel': 'Good',
'hornet queen': 'Best',
'stoke the flames': 'Great',
'mind sculpt': "Filler",
'garruk, apex predator': 'Good',
'geist of the moors': 'Playable',
"krenko's enforcer": 'Playable',
'llanowar wastes': 'Playable',
'wall of frost': "Playable",
'sliver hivelord': "Filler",
'sliver hive': "Filler",
'waste not': 'Bad',
"witch's familiar": "Playable",
'liliana vess': "Good",
'urborg, tomb of yawgmoth': "Playable",
'negate': "Playable",
'coral barrier': "Playable",
'runeclaw bear': "Playable",
'tireless missionaries': "Filler",
'rotfeaster maggot': 'Playable',
'circle of flame': "Filler",
'satyr wayfinder': 'Playable',
"tormod's crypt": 'Bad',
'xathrid slyblade': 'Playable',
'meteorite': "Playable",
'cruel sadist': 'Playable',
'shaman of spring': "Playable",
'hunt the weak': 'Playable',
'ajani steadfast': 'Best',
'jorubai murk lurker': 'Playable',
'cone of flame': 'Best',
'caves of koilos': 'Playable',
'endless obedience': "Playable",
'battlefield forge': 'Playable',
'dissipate': "Playable",
"necromancer's assistant": "Playable",
'chief engineer': "Playable",
'sacred armory': "Filler",
'necrogen scudder': 'Playable',
'paragon of gathering mists': "Playable",
'fugitive wizard': "Filler",
'spectra ward': 'Best',
'leeching sliver': "Filler",
'stain the mind': 'Bad',
'rummaging goblin': 'Playable',
'pillar of light': "Playable",
'battle mastery': "Filler",
'sunblade elf': 'Playable',
'living totem': 'Playable',
'shivan reef': 'Playable',
'soul of ravnica': 'Best',
'kalonian twingrove': 'Playable',
'obelisk of urd': "Filler",
"tyrant's machine": "Filler",
'wall of essence': "Filler",
"ranger's guile": "Playable",
'restock': "Playable",
'mass calcify': "Playable",
'shield of the avatar': "Filler",
'soul of new phyrexia': 'Good',
'zof shade': 'Playable',
'divine favor': "Filler",
"nissa's expedition": "Filler",
'hydrosurge': "Filler",
'avacyn, guardian angel': 'Best',
'spirit bonds': 'Best',
'turn to frog': 'Playable',
'will-forged golem': 'Playable',
'selfless cathar': 'Playable',
'nimbus of the isles': 'Playable',
'avarice amulet': "Filler",
'black cat': "Playable",
'illusory angel': "Good",
'stab wound': 'Great',
'goblin kaboomist': 'Playable',
'borderland marauder': "Good",
'elvish mystic': "Good",
'sign in blood': "Playable",
'frost lynx': 'Playable',
'necrobite': 'Playable',
'mind rot': "Playable",
'naturalize': "Filler",
'inferno fist': 'Playable',
'foundry street denizen': "Playable",
'act on impulse': "Filler",
'staff of the mind magus': 'Bad',
'covenant of blood': 'Playable',
'hot soup': "Filler",
'reclamation sage': 'Playable',
'paragon of new dawns': 'Playable',
"ajani's pridemate": 'Playable',
'soul of innistrad': 'Good',
'altac bloodseeker': 'Playable',
"in garruk's wake": "Filler",
'goblin roughrider': 'Playable',
'unmake the graves': "Filler",
'ephemeral shields': "Playable",
"polymorphist's jest": 'Good',
'staff of the flame magus': 'Bad',
'undergrowth scavenger': 'Playable',
'typhoid rats': 'Playable',
'the chain veil': 'Bad',
'accursed spirit': 'Playable',
'genesis hydra': 'Playable',
'nightfire giant': "Good",
'hornet nest': "Good",
'carnivorous moss-beast': "Filler",
'goblin rabblemaster': "Good",
"heliod's pilgrim": 'Playable',
'carrion crow': 'Playable',
"necromancer's stockpile": "Filler",
'hoarding dragon': 'Best',
'back to nature': "Filler",
'glacial crasher': "Playable",
'marked by honor': "Playable",
'brood keeper': 'Playable',
'jalira, master polymorphist': "Playable",
'feral incarnation': "Playable",
'oreskos swiftclaw': "Playable",
'gather courage': 'Playable',
"life's legacy": "Filler",
'venom sliver': "Playable",
'blastfire bolt': "Playable",
'kapsho kitefins': "Playable",
'raise the alarm': 'Playable',
'yisan, the wanderer bard': 'Good',
'razorfoot griffin': "Playable",
'soul of zendikar': 'Best',
'return to the ranks': "Filler",
'meditation puzzle': 'Bad',
// Khans of Tarkir
'disdainful stroke': 'Filler',
'tuskguard captain': 'Good',
'dragon throne of tarkir': 'Filler',
'jeskai ascendancy': 'Filler',
'despise': 'Filler',
'temur ascendancy': 'Filler',
'trap essence': 'Filler',
'jeering instigator': 'Best',
'armament corps': 'Good',
'gurmag swiftwing': 'Filler',
'mardu blazebringer': 'Filler',
'summit prowler': 'Good',
'mer-ek nightblade': 'Playable',
'pine walker': 'Great',
'mantis rider': 'Good',
'crackling doom': 'Good',
'take up arms': 'Filler',
'rush of battle': 'Filler',
'blossoming sands': 'Playable',
'sagu archer': 'Filler',
'stubborn denial': 'Bad',
'woolly loxodon': 'Playable',
'thousand winds': 'Best',
'sultai scavenger': 'Playable',
'incremental growth': 'Playable',
'end hostilities': 'Good',
'dismal backwater': 'Playable',
'mardu skullhunter': 'Playable',
"crater's claws": 'Best',
'grim haruspex': 'Best',
'timely hordemate': 'Playable',
'dead drop': 'Filler',
'clever impersonator': 'Playable',
'rite of the serpent': 'Filler',
'shambling attendants': 'Filler',
'bloodstained mire': 'Playable',
'polluted delta': 'Playable',
'witness of the ages': 'Playable',
'blinding spray': 'Filler',
'efreet weaponmaster': 'Filler',
'shatter': 'Bad',
'dig through time': 'Playable',
'winterflame': 'Good',
'heir of the wilds': 'Great',
'hooting mandrills': 'Filler',
'heart-piercer bow': 'Filler',
'burn away': 'Good',
'ponyback brigade': 'Filler',
'debilitating injury': 'Good',
'riverwheel aerialists': 'Playable',
'bring low': 'Good',
'firehoof cavalry': 'Filler',
'ainok bond-kin': 'Good',
'temur banner': 'Filler',
'monastery flock': 'Filler',
'opulent palace': 'Playable',
'jeskai charm': 'Good',
'canyon lurkers': 'Filler',
'butcher of the horde': 'Good',
'bitter revelation': 'Filler',
'avalanche tusker': 'Good',
"dragon's eye savants": 'Good',
'kheru spellsnatcher': 'Best',
'crippling chill': 'Great',
'mardu ascendancy': 'Filler',
'sagu mauler': 'Best',
'embodiment of spring': 'Filler',
'mystic of the hidden way': 'Great',
'hooded hydra': 'Best',
"bear's companion": 'Good',
'pearl lake ancient': 'Filler',
'act of treason': 'Filler',
'erase': 'Bad',
'unyielding krumar': 'Filler',
'savage punch': 'Good',
'windstorm': 'Bad',
'scion of glaciers': 'Great',
'siegecraft': 'Filler',
"raiders' spoils": 'Playable',
'ruthless ripper': 'Good',
'mindswipe': 'Filler',
'dragon grip': 'Filler',
'tomb of the spirit dragon': 'Bad',
'become immense': 'Filler',
'abzan falconer': 'Great',
'glacial stalker': 'Good',
'alabaster kirin': 'Good',
'whirlwind adept': 'Filler',
'herald of anafenza': 'Good',
'temur charger': 'Good',
'set adrift': 'Filler',
'disowned ancestor': 'Filler',
'smite the monstrous': 'Filler',
'brave the sands': 'Bad',
'savage knuckleblade': 'Good',
'jeskai banner': 'Filler',
'wetland sambar': 'Filler',
'mardu banner': 'Filler',
'sultai banner': 'Filler',
'dragon-style twins': 'Good',
'sorin, solemn visitor': 'Good',
'ankle shanker': 'Good',
'howl of the horde': 'Bad',
'snowhorn rider': 'Good',
'retribution of the ancients': 'Filler',
'singing bell strike': 'Playable',
'tusked colossodon': 'Filler',
'murderous cut': 'Great',
'sage of the inward eye': 'Good',
'rakshasa vizier': 'Good',
'ivorytusk fortress': 'Good',
'jungle hollow': 'Playable',
'dragonscale boon': 'Playable',
'alpine grizzly': 'Filler',
'high sentinels of arashin': 'Best',
'leaping master': 'Filler',
'defiant strike': 'Filler',
'krumar bond-kin': 'Playable',
'scout the borders': 'Filler',
'kheru dreadmaw': 'Filler',
'smoke teller': 'Filler',
'weave fate': 'Filler',
'valley dasher': 'Filler',
'kin-tree invocation': 'Good',
'hordeling outburst': 'Filler',
'lens of clarity': 'Bad',
'longshot squad': 'Playable',
'altar of the brood': 'Bad',
'sultai soothsayer': 'Good',
"archers' parapet": 'Filler',
'highspire mantis': 'Good',
'frontier bivouac': 'Playable',
'bellowing saddlebrute': 'Great',
'mardu hordechief': 'Playable',
'swift kick': 'Filler',
'war behemoth': 'Playable',
'cancel': 'Filler',
"sidisi's pet": 'Filler',
'ainok tracker': 'Filler',
'kheru lich lord': 'Filler',
'zurgo helmsmasher': 'Good',
'abzan battle priest': 'Filler',
'empty the pits': 'Filler',
'mistfire weaver': 'Great',
'waterwhirl': 'Filler',
'seeker of the way': 'Great',
'jeskai elder': 'Filler',
'monastery swiftspear': 'Filler',
'bloodsoaked champion': 'Playable',
'suspension field': 'Great',
'windswept heath': 'Playable',
'dazzling ramparts': 'Filler',
'goblinslide': 'Bad',
'war-name aspirant': 'Playable',
'mardu hateblade': 'Filler',
'flying crane technique': 'Good',
'seek the horizon': 'Filler',
'thornwood falls': 'Playable',
'abzan charm': 'Good',
'force away': 'Playable',
'icy blast': 'Good',
"briber's purse": 'Filler',
'master the way': 'Good',
'secret plans': 'Filler',
'mardu heart-piercer': 'Great',
'swiftwater cliffs': 'Playable',
'watcher of the roost': 'Good',
'surrak dragonclaw': 'Good',
'treasure cruise': 'Filler',
'bloodfire expert': 'Filler',
'nomad outpost': 'Playable',
'tranquil cove': 'Playable',
'bloodfire mentor': 'Filler',
'anafenza, the foremost': 'Good',
'molting snakeskin': 'Bad',
'venerable lammasu': 'Filler',
'throttle': 'Playable',
'duneblast': 'Best',
'bloodfell caves': 'Playable',
'jeskai windscout': 'Great',
"ugin's nexus": 'Bad',
'mystic monastery': 'Playable',
'rugged highlands': 'Playable',
'mardu roughrider': 'Good',
'flooded strand': 'Playable',
'wind-scarred crag': 'Playable',
'abzan ascendancy': 'Good',
'death frenzy': 'Filler',
'sultai flayer': 'Good',
'arc lightning': 'Great',
'warden of the eye': 'Filler',
'scaldkin': 'Filler',
'naturalize': 'Bad',
'wingmate roc': 'Best',
'trail of mystery': 'Filler',
'wooded foothills': 'Playable',
'roar of challenge': 'Playable',
'sidisi, brood tyrant': 'Good',
"rakshasa's secret": 'Filler',
'icefeather aven': 'Great',
'siege rhino': 'Good',
'rakshasa deathdealer': 'Good',
'ashcloud phoenix': 'Best',
'feat of resistance': 'Good',
'meandering towershell': 'Filler',
'temur charm': 'Good',
'utter end': 'Good',
'abzan guide': 'Good',
'barrage of boulders': 'Filler',
'necropolis fiend': 'Good',
'cranial archive': 'Bad',
'jeskai student': 'Filler',
'mardu warshrieker': 'Good',
'sage-eye harrier': 'Filler',
'abomination of gudul': 'Good',
'kin-tree warden': 'Filler',
"taigam's scheming": 'Bad',
'chief of the edge': 'Good',
'sultai charm': 'Good',
'abzan banner': 'Filler',
'chief of the scale': 'Good',
'awaken the bear': 'Filler',
'rotting mastodon': 'Filler',
'scoured barrens': 'Playable',
'swarm of bloodflies': 'Filler',
'trumpet blast': 'Filler',
'deflecting palm': 'Filler',
'highland game': 'Filler',
'arrow storm': 'Good',
'ghostfire blade': 'Best',
'quiet contemplation': 'Filler',
'sultai ascendancy': 'Filler',
'kheru bloodsucker': 'Filler',
'kill shot': 'Filler',
'ride down': 'Good',
'mardu charm': 'Good',
'hardened scales': 'Filler',
'feed the clan': 'Bad',
'see the unwritten': 'Good',
'villainous wealth': 'Filler',
'rattleclaw mystic': 'Best',
'sandsteppe citadel': 'Playable',
'sarkhan, the dragonspeaker': 'Best',
'dutiful return': 'Filler',
'horde ambusher': 'Good',
'tormenting voice': 'Filler',
'salt road patrol': 'Filler',
'master of pearls': 'Best',
'narset, enlightened master': 'Filler',
// Fate reforged
'mindscour dragon': 'Playable',
'outpost siege': 'Best',
'frontier mastodon': 'Playable',
'abzan advantage': 'Bad',
'abzan skycaptain': 'Good',
'gurmag angler': 'Playable',
'hooded assassin': 'Playable',
'ainok guide': 'Playable',
'monastery siege': 'Playable',
'blossoming sands': 'Good',
'cached defenses': 'Filler',
'mistfire adept': 'Great',
'refocus': 'Filler',
'merciless executioner': 'Good',
'dismal backwater': 'Good',
'channel harm': 'Playable',
'vaultbreaker': 'Playable',
'soulflayer': 'Good',
'polluted delta': 'Good',
'torrent elemental': 'Best',
'fierce invocation': 'Filler',
'collateral damage': 'Filler',
"hero's blade": 'Filler',
'alesha, who smiles at death': 'Great',
'pressure point': 'Playable',
"honor's reward": 'Good',
'lotus path djinn': 'Good',
'grave strength': 'Bad',
'temporal trespass': 'Bad',
'palace siege': 'Great',
'jeskai sage': 'Playable',
'sibsig muckdraggers': 'Playable',
'rite of undoing': 'Playable',
'lotus-eye mystics': 'Filler',
'temur sabertooth': 'Great',
'break through the line': 'Filler',
'cunning strike': 'Good',
'battle brawler': 'Good',
'sandsteppe outcast': 'Good',
'lightning shrieker': 'Bad',
'dromoka, the eternal': 'Best',
'great-horn krushok': 'Filler',
'war flare': 'Good',
'ruthless instincts': 'Filler',
'citadel siege': 'Best',
'mardu woe-reaper': 'Good',
'feral krushok': 'Playable',
'diplomacy of the wastes': 'Bad',
'abzan runemark': 'Filler',
'warden of the first tree': 'Great',
'neutralizing blast': 'Bad',
'douse in gloom': 'Good',
'ugin, the spirit dragon': 'Good',
'ghastly conscription': 'Playable',
'atarka, world render': 'Good',
'mardu shadowspear': 'Bad',
'smoldering efreet': 'Filler',
'temur battle rage': 'Filler',
'grim contest': 'Good',
'reach of shadows': 'Good',
'sultai emissary': 'Playable',
'ojutai, soul of winter': 'Good',
'orc sureshot': 'Good',
'rageform': 'Playable',
'battlefront krushok': 'Filler',
'mardu runemark': 'Filler',
"rakshasa's disdain": 'Bad',
'sibsig host': 'Filler',
'supplant form': 'Great',
'sultai runemark': 'Filler',
"ugin's construct": 'Playable',
'mardu scout': 'Playable',
"alesha's vanguard": 'Filler',
'fearsome awakening': 'Filler',
'jungle hollow': 'Good',
'lightform': 'Great',
'friendly fire': 'Filler',
'brutal hordechief': 'Best',
'dragon bell monk': 'Playable',
'frontier siege': 'Bad',
'goblin boom keg': 'Bad',
'dragonrage': 'Filler',
'hewed stone retainers': 'Filler',
'tasigur, the golden fang': 'Great',
'shockmaw dragon': 'Playable',
'flamerush rider': 'Great',
'noxious dragon': 'Good',
'mardu strike leader': 'Great',
'defiant ogre': 'Filler',
'arcbond': 'Playable',
'jeskai barricade': 'Playable',
'yasova dragonclaw': 'Best',
'soul summons': 'Good',
'sandsteppe mastodon': 'Good',
'bloodfire enforcers': 'Filler',
'soulfire grand master': 'Great',
'pilgrim of the fires': 'Filler',
'whisk away': 'Good',
'abzan beastmaster': 'Good',
'flamewake phoenix': 'Great',
'elite scaleguard': 'Great',
'marang river prowler': 'Good',
'hunt the weak': 'Good',
'temur runemark': 'Filler',
'ancestral vengeance': 'Filler',
"sage's reverie": 'Bad',
'windswept heath': 'Good',
'shifting loyalties': 'Filler',
'shamanic revelation': 'Playable',
'archers of qarsi': 'Filler',
"tasigur's cruelty": 'Bad',
'thornwood falls': 'Good',
'fascination': 'Bad',
'humble defector': 'Playable',
'formless nurturing': 'Filler',
'sultai skullkeeper': 'Playable',
'whisperer of the wilds': 'Good',
'goblin heelcutter': 'Good',
'aven surveyor': 'Good',
'swiftwater cliffs': 'Good',
'daghatar the adamant': 'Best',
'mob rule': 'Great',
'tranquil cove': 'Good',
'dark deal': 'Bad',
'bloodstained mire': 'Good',
'ambush krotiq': 'Bad',
'bloodfell caves': 'Good',
'rally the ancestors': 'Bad',
'sandblast': 'Good',
'gore swine': 'Playable',
'rugged highlands': 'Good',
'wardscale dragon': 'Playable',
'flooded strand': 'Good',
'wind-scarred crag': 'Good',
'reality shift': 'Filler',
'enhanced awareness': 'Filler',
'sage-eye avengers': 'Best',
'scroll of the masters': 'Bad',
'wooded foothills': 'Good',
'valorous stance': 'Great',
'silumgar, the drifting death': 'Great',
'fruit of the first tree': 'Bad',
'destructor dragon': 'Good',
'bathe in dragonfire': 'Good',
'qarsi high priest': 'Filler',
'wild slash': 'Great',
'temur war shaman': 'Best',
'wildcall': 'Great',
'archfiend of depravity': 'Best',
'wandering champion': 'Good',
'crucible of the spirit dragon': 'Bad',
'sudden reclamation': 'Filler',
"kolaghan, the storm's fury": 'Best',
'renowned weaponsmith': 'Filler',
'winds of qal sisma': 'Filler',
'frost walker': 'Good',
'ethereal ambush': 'Good',
'shaman of the great hunt': 'Best',
'monastery mentor': 'Great',
'scoured barrens': 'Good',
'abzan kin-guard': 'Playable',
'arashin cleric': 'Bad',
'harsh sustenance': 'Good',
'whisperwood elemental': 'Best',
'map the wastes': 'Filler',
'write into being': 'Good',
'pyrotechnics': 'Great',
'cloudform': 'Good',
'aven skirmisher': 'Filler',
'shu yun, the silent tempest': 'Great',
'hungering yeti': 'Filler',
'dragonscale general': 'Great',
'crux of fate': 'Great',
'mastery of the unseen': 'Great',
'jeskai infiltrator': 'Best',
'return to the earth': 'Filler',
'typhoid rats': 'Good',
'will of the naga': 'Playable',
'arashin war beast': 'Filler',
'jeskai runemark': 'Good',
// Dragons of Tarkir
'press the advantage': 'Good',
'silumgar assassin': 'Great',
'dragonlord atarka': 'Best',
'lightwalker': 'Playable',
'hand of silumgar': 'Playable',
'glaring aegis': 'Filler',
'updraft elemental': 'Filler',
'deathmist raptor': 'Best',
'summit prowler': 'Playable',
"sarkhan's triumph": 'Bad',
'kolaghan forerunners': 'Playable',
'kolaghan stormsinger': 'Filler',
'sibsig icebreakers': 'Filler',
'sidisi, undead vizier': 'Best',
'icefall regent': 'Best',
'myth realized': 'Playable',
'coat with venom': 'Playable',
'enduring victory': 'Playable',
'assault formation': 'Playable',
"sunbringer's touch": 'Filler',
"butcher's glee": 'Playable',
'student of ojutai': 'Filler',
'graceblade artisan': 'Filler',
'magmatic chasm': 'Bad',
"taigam's strike": 'Filler',
'sprinting warbrute': 'Playable',
'gravepurge': 'Bad',
'hidden dragonslayer': 'Best',
'skywise teachings': 'Bad',
'deathbringer regent': 'Best',
'strongarm monk': 'Playable',
'kolaghan monument': 'Filler',
'anafenza, kin-tree spirit': 'Great',
"dragonlord's prerogative": 'Good',
"great teacher's decree": 'Filler',
'negate': 'Bad',
'virulent plague': 'Bad',
'aerie bowmasters': 'Good',
'foul-tongue invocation': 'Filler',
'risen executioner': 'Playable',
'arashin foremost': 'Great',
'reckless imp': 'Playable',
'ojutai exemplars': 'Best',
'death wind': 'Great',
'sheltered aerie': 'Bad',
'thunderbreak regent': 'Best',
'contradict': 'Bad',
'swift warkite': 'Good',
'artful maneuver': 'Playable',
'savage ventmaw': 'Playable',
'tail slash': 'Good',
'lurking arynx': 'Playable',
'roast': 'Great',
'center soul': 'Filler',
'marsh hulk': 'Playable',
'echoes of the kin tree': 'Bad',
'living lore': 'Bad',
'tapestry of the ages': 'Bad',
'tread upon': 'Filler',
"dragonlord's servant": 'Filler',
"berserkers' onslaught": 'Great',
'conifer strider': 'Filler',
'display of dominance': 'Bad',
'void squall': 'Filler',
'ainok artillerist': 'Filler',
'misthoof kirin': 'Good',