-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample_data.json
More file actions
2013 lines (2013 loc) · 73.7 KB
/
sample_data.json
File metadata and controls
2013 lines (2013 loc) · 73.7 KB
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
{
"LEA": {
"name": "Limited Edition Alpha",
"code": "LEA",
"gathererCode": "1E",
"releaseDate": "1993-08-05",
"border": "black",
"type": "core",
"booster": [
"rare",
"uncommon",
"uncommon",
"uncommon",
"common",
"common",
"common",
"common",
"common",
"common",
"common",
"common",
"common",
"common",
"common"
],
"cards": [
{
"layout": "normal",
"type": "Creature - Elemental",
"types": [
"Creature"
],
"colors": [
"Blue"
],
"multiverseid": 94,
"name": "Air Elemental",
"subtypes": [
"Elemental"
],
"cmc": 5,
"rarity": "Uncommon",
"artist": "Richard Thomas",
"power": "4",
"toughness": "4",
"manaCost": "{3}{U}{U}",
"text": "Flying",
"flavor": "These spirits of the air are winsome and wild and cannot be truly contained. Only marginally intelligent, they often substitute whimsy for strategy, delighting in mischief and mayhem.",
"imageName": "air elemental"
},
{
"layout": "normal",
"type": "Instant",
"types": [
"Instant"
],
"colors": [
"Blue"
],
"multiverseid": 95,
"name": "Ancestral Recall",
"cmc": 1,
"rarity": "Rare",
"artist": "Mark Poole",
"manaCost": "{U}",
"text": "Target player draws three cards.",
"imageName": "ancestral recall"
},
{
"layout": "normal",
"type": "Enchantment - Aura",
"types": [
"Enchantment"
],
"colors": [
"Blue"
],
"multiverseid": 96,
"name": "Animate Artifact",
"subtypes": [
"Aura"
],
"cmc": 4,
"rarity": "Uncommon",
"artist": "Douglas Schuler",
"manaCost": "{3}{U}",
"text": "Enchant artifact\n\nAs long as enchanted artifact isn't a creature, it's an artifact creature with power and toughness each equal to its converted mana cost.",
"imageName": "animate artifact"
},
{
"layout": "normal",
"type": "Enchantment - Aura",
"types": [
"Enchantment"
],
"colors": [
"Black"
],
"multiverseid": 48,
"name": "Animate Dead",
"subtypes": [
"Aura"
],
"cmc": 2,
"rarity": "Uncommon",
"artist": "Anson Maddocks",
"manaCost": "{1}{B}",
"text": "Enchant creature card in a graveyard\n\nWhen Animate Dead enters the battlefield, if it's on the battlefield, it loses \"enchant creature card in a graveyard\" and gains \"enchant creature put onto the battlefield with Animate Dead.\" Return enchanted creature card to the battlefield under your control and attach Animate Dead to it. When Animate Dead leaves the battlefield, that creature's controller sacrifices it.\n\nEnchanted creature gets -1/-0.",
"imageName": "animate dead"
},
{
"layout": "normal",
"type": "Enchantment - Aura",
"types": [
"Enchantment"
],
"colors": [
"White"
],
"multiverseid": 232,
"name": "Animate Wall",
"subtypes": [
"Aura"
],
"cmc": 1,
"rarity": "Rare",
"artist": "Dan Frazier",
"manaCost": "{W}",
"text": "Enchant Wall\n\nEnchanted Wall can attack as though it didn't have defender.",
"imageName": "animate wall"
},
{
"layout": "normal",
"type": "Artifact",
"types": [
"Artifact"
],
"multiverseid": 1,
"name": "Ankh of Mishra",
"cmc": 2,
"rarity": "Rare",
"artist": "Amy Weber",
"manaCost": "{2}",
"text": "Whenever a land enters the battlefield, Ankh of Mishra deals 2 damage to that land's controller.",
"imageName": "ankh of mishra"
},
{
"layout": "normal",
"type": "Sorcery",
"types": [
"Sorcery"
],
"colors": [
"White"
],
"multiverseid": 233,
"name": "Armageddon",
"cmc": 4,
"rarity": "Rare",
"artist": "Jesper Myrfors",
"manaCost": "{3}{W}",
"text": "Destroy all lands.",
"imageName": "armageddon"
},
{
"layout": "normal",
"type": "Enchantment - Aura",
"types": [
"Enchantment"
],
"colors": [
"Green"
],
"multiverseid": 140,
"name": "Aspect of Wolf",
"subtypes": [
"Aura"
],
"cmc": 2,
"rarity": "Rare",
"artist": "Jeff A. Menges",
"manaCost": "{1}{G}",
"text": "Enchant creature\n\nEnchanted creature gets +X/+Y, where X is half the number of Forests you control, rounded down, and Y is half the number of Forests you control, rounded up.",
"imageName": "aspect of wolf"
},
{
"layout": "normal",
"type": "Enchantment",
"types": [
"Enchantment"
],
"colors": [
"Black"
],
"multiverseid": 49,
"name": "Bad Moon",
"cmc": 2,
"rarity": "Rare",
"artist": "Jesper Myrfors",
"manaCost": "{1}{B}",
"text": "Black creatures get +1/+1.",
"imageName": "bad moon"
},
{
"layout": "normal",
"type": "Land - Swamp Mountain",
"types": [
"Land"
],
"multiverseid": 279,
"name": "Badlands",
"subtypes": [
"Swamp",
"Mountain"
],
"rarity": "Rare",
"artist": "Rob Alexander",
"imageName": "badlands"
},
{
"layout": "normal",
"type": "Sorcery",
"types": [
"Sorcery"
],
"colors": [
"White"
],
"multiverseid": 234,
"name": "Balance",
"cmc": 2,
"rarity": "Rare",
"artist": "Mark Poole",
"manaCost": "{1}{W}",
"text": "Each player chooses a number of lands he or she controls equal to the number of lands controlled by the player who controls the fewest, then sacrifices the rest. Players discard cards and sacrifice creatures the same way.",
"imageName": "balance"
},
{
"layout": "normal",
"type": "Artifact",
"types": [
"Artifact"
],
"multiverseid": 2,
"name": "Basalt Monolith",
"cmc": 3,
"rarity": "Uncommon",
"artist": "Jesper Myrfors",
"manaCost": "{3}",
"text": "Basalt Monolith doesn't untap during your untap step.\n\n{T}: Add {3} to your mana pool.\n\n{3}: Untap Basalt Monolith.",
"imageName": "basalt monolith"
},
{
"layout": "normal",
"type": "Land - Swamp Forest",
"types": [
"Land"
],
"multiverseid": 280,
"name": "Bayou",
"subtypes": [
"Swamp",
"Forest"
],
"rarity": "Rare",
"artist": "Jesper Myrfors",
"imageName": "bayou"
},
{
"layout": "normal",
"type": "Creature - Human Soldier",
"types": [
"Creature"
],
"colors": [
"White"
],
"multiverseid": 235,
"name": "Benalish Hero",
"subtypes": [
"Human",
"Soldier"
],
"cmc": 1,
"rarity": "Common",
"artist": "Douglas Schuler",
"power": "1",
"toughness": "1",
"manaCost": "{W}",
"text": "Banding (Any creatures with banding, and up to one without, can attack in a band. Bands are blocked as a group. If any creatures with banding you control are blocking or being blocked by a creature, you divide that creature's combat damage, not its controller, among any of the creatures it's being blocked by or is blocking.)",
"flavor": "Benalia has a complex caste system that changes with the lunar year. No matter what the season, the only caste that cannot be attained by either heredity or money is that of the hero.",
"imageName": "benalish hero"
},
{
"layout": "normal",
"type": "Instant",
"types": [
"Instant"
],
"colors": [
"Green"
],
"multiverseid": 141,
"name": "Berserk",
"cmc": 1,
"rarity": "Uncommon",
"artist": "Dan Frazier",
"manaCost": "{G}",
"text": "Cast Berserk only before the combat damage step.\n\nTarget creature gains trample and gets +X/+0 until end of turn, where X is its power. At the beginning of the next end step, destroy that creature if it attacked this turn.",
"imageName": "berserk"
},
{
"layout": "normal",
"type": "Creature - Bird",
"types": [
"Creature"
],
"colors": [
"Green"
],
"multiverseid": 142,
"name": "Birds of Paradise",
"subtypes": [
"Bird"
],
"cmc": 1,
"rarity": "Rare",
"artist": "Mark Poole",
"power": "0",
"toughness": "1",
"manaCost": "{G}",
"text": "Flying\n\n{T}: Add one mana of any color to your mana pool.",
"imageName": "birds of paradise"
},
{
"layout": "normal",
"type": "Creature - Human Knight",
"types": [
"Creature"
],
"colors": [
"Black"
],
"multiverseid": 50,
"name": "Black Knight",
"subtypes": [
"Human",
"Knight"
],
"cmc": 2,
"rarity": "Uncommon",
"artist": "Jeff A. Menges",
"power": "2",
"toughness": "2",
"manaCost": "{B}{B}",
"text": "First strike (This creature deals combat damage before creatures without first strike.)\n\nProtection from white (This creature can't be blocked, targeted, dealt damage, or enchanted by anything white.)",
"flavor": "Battle doesn't need a purpose; the battle is its own purpose. You don't ask why a plague spreads or a field burns. Don't ask why I fight.",
"imageName": "black knight"
},
{
"layout": "normal",
"type": "Artifact",
"types": [
"Artifact"
],
"multiverseid": 3,
"name": "Black Lotus",
"cmc": 0,
"rarity": "Rare",
"artist": "Christopher Rush",
"manaCost": "{0}",
"text": "{T}, Sacrifice Black Lotus: Add three mana of any one color to your mana pool.",
"imageName": "black lotus"
},
{
"layout": "normal",
"type": "Artifact",
"types": [
"Artifact"
],
"multiverseid": 4,
"name": "Black Vise",
"cmc": 1,
"rarity": "Uncommon",
"artist": "Richard Thomas",
"manaCost": "{1}",
"text": "As Black Vise enters the battlefield, choose an opponent.\n\nAt the beginning of the chosen player's upkeep, Black Vise deals X damage to that player, where X is the number of cards in his or her hand minus 4.",
"imageName": "black vise"
},
{
"layout": "normal",
"type": "Enchantment - Aura",
"types": [
"Enchantment"
],
"colors": [
"White"
],
"multiverseid": 236,
"name": "Black Ward",
"subtypes": [
"Aura"
],
"cmc": 1,
"rarity": "Uncommon",
"artist": "Dan Frazier",
"manaCost": "{W}",
"text": "Enchant creature\n\nEnchanted creature has protection from black. This effect doesn't remove Black Ward.",
"imageName": "black ward"
},
{
"layout": "normal",
"type": "Instant",
"types": [
"Instant"
],
"colors": [
"White"
],
"multiverseid": 237,
"name": "Blaze of Glory",
"cmc": 1,
"rarity": "Rare",
"artist": "Richard Thomas",
"manaCost": "{W}",
"text": "Cast Blaze of Glory only during combat before blockers are declared.\n\nTarget creature defending player controls can block any number of creatures this turn. It blocks each attacking creature this turn if able.",
"imageName": "blaze of glory"
},
{
"layout": "normal",
"type": "Enchantment - Aura",
"types": [
"Enchantment"
],
"colors": [
"White"
],
"multiverseid": 238,
"name": "Blessing",
"subtypes": [
"Aura"
],
"cmc": 2,
"rarity": "Rare",
"artist": "Julie Baroh",
"manaCost": "{W}{W}",
"text": "Enchant creature\n\n{W}: Enchanted creature gets +1/+1 until end of turn.",
"imageName": "blessing"
},
{
"layout": "normal",
"type": "Instant",
"types": [
"Instant"
],
"colors": [
"Blue"
],
"multiverseid": 97,
"name": "Blue Elemental Blast",
"cmc": 1,
"rarity": "Common",
"artist": "Richard Thomas",
"manaCost": "{U}",
"text": "Choose one - Counter target red spell; or destroy target red permanent.",
"imageName": "blue elemental blast"
},
{
"layout": "normal",
"type": "Enchantment - Aura",
"types": [
"Enchantment"
],
"colors": [
"White"
],
"multiverseid": 239,
"name": "Blue Ward",
"subtypes": [
"Aura"
],
"cmc": 1,
"rarity": "Uncommon",
"artist": "Dan Frazier",
"manaCost": "{W}",
"text": "Enchant creature\n\nEnchanted creature has protection from blue. This effect doesn't remove Blue Ward.",
"imageName": "blue ward"
},
{
"layout": "normal",
"type": "Creature - Wraith",
"types": [
"Creature"
],
"colors": [
"Black"
],
"multiverseid": 51,
"name": "Bog Wraith",
"subtypes": [
"Wraith"
],
"cmc": 4,
"rarity": "Uncommon",
"artist": "Jeff A. Menges",
"power": "3",
"toughness": "3",
"manaCost": "{3}{B}",
"text": "Swampwalk (This creature can't be blocked as long as defending player controls a Swamp.)",
"flavor": "'Twas in the bogs of Cannelbrae\n\nMy mate did meet an early grave\n\n'Twas nothing left for us to save\n\nIn the peat-filled bogs of Cannelbrae.",
"imageName": "bog wraith"
},
{
"layout": "normal",
"type": "Sorcery",
"types": [
"Sorcery"
],
"colors": [
"Blue"
],
"multiverseid": 98,
"name": "Braingeyser",
"cmc": 2,
"rarity": "Rare",
"artist": "Mark Tedin",
"manaCost": "{X}{U}{U}",
"text": "Target player draws X cards.",
"imageName": "braingeyser"
},
{
"layout": "normal",
"type": "Enchantment - Aura",
"types": [
"Enchantment"
],
"colors": [
"Red"
],
"multiverseid": 186,
"name": "Burrowing",
"subtypes": [
"Aura"
],
"cmc": 1,
"rarity": "Uncommon",
"artist": "Mark Poole",
"manaCost": "{R}",
"text": "Enchant creature\n\nEnchanted creature has mountainwalk.",
"imageName": "burrowing"
},
{
"layout": "normal",
"type": "Instant",
"types": [
"Instant"
],
"colors": [
"Green"
],
"multiverseid": 143,
"name": "Camouflage",
"cmc": 1,
"rarity": "Uncommon",
"artist": "Jesper Myrfors",
"manaCost": "{G}",
"text": "Cast Camouflage only during your declare attackers step.\n\nThis turn, instead of declaring blockers, each defending player chooses any number of creatures he or she controls and divides them into a number of piles equal to the number of attacking creatures for whom that player is the defending player. Creatures he or she controls that can block additional creatures may likewise be put into additional piles. Assign each pile to a different one of those attacking creatures at random. Each creature in a pile that can block the creature that pile is assigned to does so. (Piles can be empty.)",
"imageName": "camouflage"
},
{
"layout": "normal",
"type": "Enchantment",
"types": [
"Enchantment"
],
"colors": [
"White"
],
"multiverseid": 240,
"name": "Castle",
"cmc": 4,
"rarity": "Uncommon",
"artist": "Dameon Willich",
"manaCost": "{3}{W}",
"text": "Untapped creatures you control get +0/+2.",
"imageName": "castle"
},
{
"layout": "normal",
"type": "Artifact",
"types": [
"Artifact"
],
"multiverseid": 5,
"name": "Celestial Prism",
"cmc": 3,
"rarity": "Uncommon",
"artist": "Amy Weber",
"manaCost": "{3}",
"text": "{2}, {T}: Add one mana of any color to your mana pool.",
"imageName": "celestial prism"
},
{
"layout": "normal",
"type": "Sorcery",
"types": [
"Sorcery"
],
"colors": [
"Green"
],
"multiverseid": 144,
"name": "Channel",
"cmc": 2,
"rarity": "Uncommon",
"artist": "Richard Thomas",
"manaCost": "{G}{G}",
"text": "Until end of turn, any time you could activate a mana ability, you may pay 1 life. If you do, add {1} to your mana pool.",
"imageName": "channel"
},
{
"layout": "normal",
"type": "Artifact",
"types": [
"Artifact"
],
"multiverseid": 6,
"name": "Chaos Orb",
"cmc": 2,
"rarity": "Rare",
"artist": "Mark Tedin",
"manaCost": "{2}",
"text": "{1}, {T}: If Chaos Orb is on the battlefield, flip Chaos Orb onto the battlefield from a height of at least one foot. If Chaos Orb turns over completely at least once during the flip, destroy all nontoken permanents it touches. Then destroy Chaos Orb.",
"imageName": "chaos orb"
},
{
"layout": "normal",
"type": "Instant",
"types": [
"Instant"
],
"colors": [
"Red"
],
"multiverseid": 187,
"name": "Chaoslace",
"cmc": 1,
"rarity": "Rare",
"artist": "Dameon Willich",
"manaCost": "{R}",
"text": "Target spell or permanent becomes red. (Its mana symbols remain unchanged.)",
"imageName": "chaoslace"
},
{
"layout": "normal",
"type": "Enchantment",
"types": [
"Enchantment"
],
"colors": [
"White"
],
"multiverseid": 241,
"name": "Circle of Protection: Blue",
"cmc": 2,
"rarity": "Common",
"artist": "Dameon Willich",
"manaCost": "{1}{W}",
"text": "{1}: The next time a blue source of your choice would deal damage to you this turn, prevent that damage.",
"imageName": "circle of protection blue"
},
{
"layout": "normal",
"type": "Enchantment",
"types": [
"Enchantment"
],
"colors": [
"White"
],
"multiverseid": 242,
"name": "Circle of Protection: Green",
"cmc": 2,
"rarity": "Common",
"artist": "Sandra Everingham",
"manaCost": "{1}{W}",
"text": "{1}: The next time a green source of your choice would deal damage to you this turn, prevent that damage.",
"imageName": "circle of protection green"
},
{
"layout": "normal",
"type": "Enchantment",
"types": [
"Enchantment"
],
"colors": [
"White"
],
"multiverseid": 243,
"name": "Circle of Protection: Red",
"cmc": 2,
"rarity": "Common",
"artist": "Anson Maddocks",
"manaCost": "{1}{W}",
"text": "{1}: The next time a red source of your choice would deal damage to you this turn, prevent that damage.",
"imageName": "circle of protection red"
},
{
"layout": "normal",
"type": "Enchantment",
"types": [
"Enchantment"
],
"colors": [
"White"
],
"multiverseid": 244,
"name": "Circle of Protection: White",
"cmc": 2,
"rarity": "Common",
"artist": "Douglas Schuler",
"manaCost": "{1}{W}",
"text": "{1}: The next time a white source of your choice would deal damage to you this turn, prevent that damage.",
"imageName": "circle of protection white"
},
{
"layout": "normal",
"type": "Artifact Creature - Beast",
"types": [
"Artifact",
"Creature"
],
"multiverseid": 7,
"name": "Clockwork Beast",
"subtypes": [
"Beast"
],
"cmc": 6,
"rarity": "Rare",
"artist": "Drew Tucker",
"power": "0",
"toughness": "4",
"manaCost": "{6}",
"text": "Clockwork Beast enters the battlefield with seven +1/+0 counters on it.\n\nAt end of combat, if Clockwork Beast attacked or blocked this combat, remove a +1/+0 counter from it.\n\n{X}, {T}: Put up to X +1/+0 counters on Clockwork Beast. This ability can't cause the total number of +1/+0 counters on Clockwork Beast to be greater than seven. Activate this ability only during your upkeep.",
"imageName": "clockwork beast"
},
{
"layout": "normal",
"type": "Creature - Shapeshifter",
"types": [
"Creature"
],
"colors": [
"Blue"
],
"multiverseid": 99,
"name": "Clone",
"subtypes": [
"Shapeshifter"
],
"cmc": 4,
"rarity": "Uncommon",
"artist": "Julie Baroh",
"power": "0",
"toughness": "0",
"manaCost": "{3}{U}",
"text": "You may have Clone enter the battlefield as a copy of any creature on the battlefield.",
"imageName": "clone"
},
{
"layout": "normal",
"type": "Creature - Cockatrice",
"types": [
"Creature"
],
"colors": [
"Green"
],
"multiverseid": 145,
"name": "Cockatrice",
"subtypes": [
"Cockatrice"
],
"cmc": 5,
"rarity": "Rare",
"artist": "Dan Frazier",
"power": "2",
"toughness": "4",
"manaCost": "{3}{G}{G}",
"text": "Flying\n\nWhenever Cockatrice blocks or becomes blocked by a non-Wall creature, destroy that creature at end of combat.",
"imageName": "cockatrice"
},
{
"layout": "normal",
"type": "Enchantment - Aura",
"types": [
"Enchantment"
],
"colors": [
"White"
],
"multiverseid": 245,
"name": "Consecrate Land",
"subtypes": [
"Aura"
],
"cmc": 1,
"rarity": "Uncommon",
"artist": "Jeff A. Menges",
"manaCost": "{W}",
"text": "Enchant land\n\nEnchanted land has indestructible and can't be enchanted by other Auras.",
"imageName": "consecrate land"
},
{
"layout": "normal",
"type": "Artifact",
"types": [
"Artifact"
],
"multiverseid": 8,
"name": "Conservator",
"cmc": 4,
"rarity": "Uncommon",
"artist": "Amy Weber",
"manaCost": "{4}",
"text": "{3}, {T}: Prevent the next 2 damage that would be dealt to you this turn.",
"imageName": "conservator"
},
{
"layout": "normal",
"type": "Sorcery",
"types": [
"Sorcery"
],
"colors": [
"Black"
],
"multiverseid": 52,
"name": "Contract from Below",
"cmc": 1,
"rarity": "Rare",
"artist": "Douglas Schuler",
"manaCost": "{B}",
"text": "Remove Contract from Below from your deck before playing if you're not playing for ante.\n\nDiscard your hand, add the top card of your library to the ante, then draw seven cards.",
"imageName": "contract from below"
},
{
"layout": "normal",
"type": "Enchantment - Aura",
"types": [
"Enchantment"
],
"colors": [
"Blue"
],
"multiverseid": 100,
"name": "Control Magic",
"subtypes": [
"Aura"
],
"cmc": 4,
"rarity": "Uncommon",
"artist": "Dameon Willich",
"manaCost": "{2}{U}{U}",
"text": "Enchant creature\n\nYou control enchanted creature.",
"imageName": "control magic"
},
{
"layout": "normal",
"type": "Enchantment",
"types": [
"Enchantment"
],
"colors": [
"White"
],
"multiverseid": 246,
"name": "Conversion",
"cmc": 4,
"rarity": "Uncommon",
"artist": "Jesper Myrfors",
"manaCost": "{2}{W}{W}",
"text": "At the beginning of your upkeep, sacrifice Conversion unless you pay {W}{W}.\n\nAll Mountains are Plains.",
"imageName": "conversion"
},
{
"layout": "normal",
"type": "Artifact",
"types": [
"Artifact"
],
"multiverseid": 9,
"name": "Copper Tablet",
"cmc": 2,
"rarity": "Uncommon",
"artist": "Amy Weber",
"manaCost": "{2}",
"text": "At the beginning of each player's upkeep, Copper Tablet deals 1 damage to that player.",
"imageName": "copper tablet"
},
{
"layout": "normal",
"type": "Enchantment",
"types": [
"Enchantment"
],
"colors": [
"Blue"
],
"multiverseid": 101,
"name": "Copy Artifact",
"cmc": 2,
"rarity": "Rare",
"artist": "Amy Weber",
"manaCost": "{1}{U}",
"text": "You may have Copy Artifact enter the battlefield as a copy of any artifact on the battlefield, except it's an enchantment in addition to its other types.",
"imageName": "copy artifact"
},
{
"layout": "normal",
"type": "Instant",
"types": [
"Instant"
],
"colors": [
"Blue"
],
"multiverseid": 102,
"name": "Counterspell",
"cmc": 2,
"rarity": "Uncommon",
"artist": "Mark Poole",
"manaCost": "{U}{U}",
"text": "Counter target spell.",
"imageName": "counterspell"
},
{
"layout": "normal",
"type": "Creature - Wurm",
"types": [
"Creature"
],
"colors": [
"Green"
],
"multiverseid": 146,
"name": "Craw Wurm",
"subtypes": [
"Wurm"
],
"cmc": 6,
"rarity": "Common",
"artist": "Daniel Gelon",
"power": "6",
"toughness": "4",
"manaCost": "{4}{G}{G}",
"flavor": "The most terrifying thing about the Craw Wurm is probably the horrible crashing sound it makes as it speeds through the forest. This noise is so loud it echoes through the trees and seems to come from all directions at once.",
"imageName": "craw wurm"
},
{
"layout": "normal",
"type": "Enchantment - Aura",
"types": [
"Enchantment"
],
"colors": [
"Blue"
],
"multiverseid": 103,
"name": "Creature Bond",
"subtypes": [
"Aura"
],
"cmc": 2,
"rarity": "Common",
"artist": "Anson Maddocks",
"manaCost": "{1}{U}",
"text": "Enchant creature\n\nWhen enchanted creature dies, Creature Bond deals damage equal to that creature's toughness to the creature's controller.",
"imageName": "creature bond"
},
{
"layout": "normal",
"type": "Enchantment",
"types": [
"Enchantment"
],
"colors": [
"White"
],
"multiverseid": 247,
"name": "Crusade",
"cmc": 2,
"rarity": "Rare",
"artist": "Mark Poole",
"manaCost": "{W}{W}",
"text": "White creatures get +1/+1.",
"imageName": "crusade"
},
{
"layout": "normal",