-
Notifications
You must be signed in to change notification settings - Fork 44
/
DuelMastersCards.json
25321 lines (25321 loc) · 778 KB
/
DuelMastersCards.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": [
{
"civilizations": [
"Water"
],
"cost": 7,
"name": "Abduction Charger",
"printings": [
{
"set": "DM-09 Fatal Brood of Infinite Ruin",
"id": "16/55",
"rarity": "Rare",
"illustrator": "Akifumi Yamamoto",
"flavor": "\"We have learned all we can about these specimens. But just to be sure, let's probe them again.\""
}
],
"text": "Choose up to 2 creatures in the battle zone and return them to their owners' hands.\nCharger (After you cast this spell, put it into your mana zone instead of your graveyard.)",
"type": "Spell"
},
{
"civilizations": [
"Darkness"
],
"cost": 5,
"name": "Acid Reflux, the Fleshboiler",
"power": "3000",
"printings": [
{
"set": "DM-09 Fatal Brood of Infinite Ruin",
"id": "26/55",
"rarity": "Common",
"illustrator": "Takesi Kuno"
}
],
"subtypes": [
"Devil Mask"
],
"text": "Blocker (Whenever an opponent's creature attacks, you may tap this creature to stop the attack. Then the 2 creatures battle.)\nThis creature can't attack.\nSlayer (Whenever this creature battles, destroy the other creature after the battle.)",
"type": "Creature"
},
{
"civilizations": [
"Water"
],
"cost": 6,
"name": "Admiral Queen",
"power": "4000",
"printings": [
{
"set": "DM-15 Secret of Hidden Gear",
"id": "S2/55",
"rarity": "Super Rare",
"illustrator": "Masaki Hirooka",
"flavor": "The creation of the world now begins again! Exclusively for our race!"
}
],
"subtypes": [
"Splash Queen"
],
"supertypes": [
"Evolution"
],
"text": "Evolution\u00e2\u20ac\u201dPut on one of your Splash Queens.\nInstead of having this creature attack, you may tap it to use its $tap ability.\n$tap Choose a player. That player chooses 2 cards in his mana zone and returns them to his hand.",
"type": "Creature"
},
{
"civilizations": [
"Light"
],
"cost": 3,
"name": "Adomis, the Oracle",
"power": "2000",
"printings": [
{
"set": "DM-06 Stomp-A-Trons of Invincible Wrath",
"id": "11/110",
"rarity": "Uncommon",
"illustrator": "Naoki Saito",
"flavor": "\"Aw, man-I got a speck of asteroid in my eye.\""
}
],
"subtypes": [
"Light Bringer"
],
"text": "Instead of having this creature attack, you may tap it to use its $tap ability.\n$tap Choose a shield and look at it. Then put it back where it was.",
"type": "Creature"
},
{
"civilizations": [
"Nature"
],
"cost": 2,
"name": "Adventure Boar",
"power": "1000+",
"printings": [
{
"set": "DM-10 Shockwaves of the Shattered Rainbow",
"id": "79/110",
"rarity": "Common",
"illustrator": "sgr",
"flavor": "Adventure Boar was about to regret the midlife crisis that led him to change his name from Caution Boar. Caution Boar always used a net. Caution Boar always took out vine insurance. Caution Boar always avoided massive head trauma."
}
],
"subtypes": [
"Beast Folk"
],
"text": "Power attacker +2000 (While attacking, this creature gets +2000 power.)",
"type": "Creature"
},
{
"civilizations": [
"Light",
"Fire"
],
"cost": 4,
"name": "Aegis, Sage of Fire and Lightning",
"power": "5000",
"printings": [
{
"set": "DM-13 Eternal Phoenix",
"id": "2/55",
"rarity": "Very Rare",
"illustrator": "Takesi Kuno"
}
],
"subtypes": [
"Gladiator",
"Armored Wyvern"
],
"text": "Blocker\n(This creature is put into your mana zone tapped.)\nThis creature can't attack players.\nWhenever this creature blocks and wins the battle, destroy all creatures that have the same race as the destroyed creature.",
"type": "Creature"
},
{
"civilizations": [
"Light"
],
"cost": 5,
"name": "Aeris, Flight Elemental",
"power": "9000",
"printings": [
{
"set": "DM-04 Shadowclash of Blinding Night",
"id": "6/55",
"rarity": "Rare",
"illustrator": "Sansyu",
"flavor": "\"All armies, move out! It's time to make Photocide see the light!\""
}
],
"subtypes": [
"Angel Command"
],
"text": "This creature can't attack players.\nThis creature can attack untapped darkness creatures.",
"type": "Creature"
},
{
"civilizations": [
"Fire"
],
"cost": 3,
"name": "Aerodactyl Kooza",
"power": "1000+",
"printings": [
{
"set": "DM-09 Fatal Brood of Infinite Ruin",
"id": "36/55",
"rarity": "Common",
"illustrator": "Hisashi Momose",
"flavor": "Never say anything an aerodactyl is likely to agree with. Having it nod at you can be fatal."
}
],
"subtypes": [
"Armorloid"
],
"text": "While attacking a creature, this creature can't be blocked.\nPower attacker +3000 (While attacking, this creature gets +3000 power.)",
"type": "Creature"
},
{
"civilizations": [
"Water"
],
"cost": 7,
"name": "Aeropica",
"power": "4000",
"printings": [
{
"set": "DM-06 Stomp-A-Trons of Invincible Wrath",
"id": "3/110",
"rarity": "Very Rare",
"illustrator": "Hisashi Momose",
"flavor": "\"I'm the garbage collector. You're the garbage.\""
}
],
"subtypes": [
"Sea Hacker"
],
"text": "Instead of having this creature attack, you may tap it to use its $tap ability.\n$tap Choose a creature in the battle zone and return it to its owner's hand.",
"type": "Creature"
},
{
"civilizations": [
"Light",
"Water"
],
"cost": 4,
"name": "Agira, the Warlord Crawler",
"power": "5500",
"printings": [
{
"set": "DM-12 Thrash of the Hybrid Megacreatures",
"id": "16/55",
"rarity": "Rare",
"illustrator": "Naoki Saito"
}
],
"subtypes": [
"Gladiator",
"Earth Eater"
],
"supertypes": [
"Evolution"
],
"text": "(This creature is put into your mana zone tapped.)\nEvolution\u00e2\u20ac\u201dPut on one of your Gladiators or Earth Eaters.\nEach of your other Gladiators and Earth Eaters in the battle zone gets +2000 power.\nWhenever one of your Gladiators or Earth Eaters blocks, you may draw a card.",
"type": "Creature"
},
{
"civilizations": [
"Water",
"Fire"
],
"cost": 7,
"name": "Akashic First, Electro-Dragon",
"power": "6000",
"printings": [
{
"set": "DM-13 Eternal Phoenix",
"id": "3/55",
"rarity": "Very Rare",
"illustrator": "Seki"
}
],
"subtypes": [
"Cyber Lord",
"Volcano Dragon"
],
"text": "(This creature is put into your mana zone tapped.)\nSympathy: Cyber Virus and Dragonoid (This creature costs 1 less to summon for each of your Cyber Virus and Dragonoid creatures in the battle zone. It can't cost less than 2.)\nThis creature can attack untapped creatures.\nWhen this creature would be destroyed, return it to your hand instead.",
"type": "Creature"
},
{
"civilizations": [
"Water",
"Nature"
],
"cost": 5,
"name": "Akashic Second, Electro-Spirit",
"power": "3000",
"printings": [
{
"set": "DM-13 Eternal Phoenix",
"id": "54/55",
"rarity": "Common",
"illustrator": "Eiji Kaneda",
"flavor": "If you bundle virtues together, their value grows."
}
],
"subtypes": [
"Cyber Lord",
"Mystery Totem"
],
"text": "(This creature is put into your mana zone tapped.)\r\nWhen you put this creature into the battle zone, you may draw a card.\r\nWhen this creature would be destroyed, put it into your mana zone instead.",
"type": "Creature"
},
{
"civilizations": [
"Water",
"Nature"
],
"cost": 2,
"name": "Akashic Third, the Electro-Bandit",
"power": "1000",
"printings": [
{
"set": "DM-13 Eternal Phoenix",
"id": "19/55",
"rarity": "Rare",
"illustrator": "Norikatsu Miyoshi"
}
],
"subtypes": [
"Cyber Lord",
"Beast Folk"
],
"text": "(This creature is put into your mana zone tapped.)\nWhenever this creature battles, reveal cards from the top of your deck until you reveal a creature. This creature becomes the revealed creature until the end of the turn. Put all cards revealed this way into your graveyard.",
"type": "Creature"
},
{
"civilizations": [
"Light"
],
"cost": 6,
"name": "Alcadeias, Lord of Spirits",
"power": "12500",
"printings": [
{
"set": "DM-04 Shadowclash of Blinding Night",
"id": "1/55",
"rarity": "Very Rare",
"illustrator": "Seki",
"flavor": "We have watched and we have waited. Now we act."
}
],
"subtypes": [
"Angel Command"
],
"supertypes": [
"Evolution"
],
"text": "Evolution\u00e2\u20ac\u201dPut on one of your Angel Commands.\nDouble breaker (This creature breaks 2 shields.)\nPlayers can't cast spells other than light spells.",
"type": "Creature"
},
{
"civilizations": [
"Light"
],
"cost": 7,
"name": "Alek, Solidity Enforcer",
"power": "4000+",
"printings": [
{
"set": "DM-03 Rampage of the Super Warriors",
"id": "1/55",
"rarity": "Rare",
"illustrator": "Takesi Kuno",
"flavor": "\"Hey, you! Get solid!\""
}
],
"subtypes": [
"Berserker"
],
"text": "Blocker (Whenever an opponent's creature attacks, you may tap this creature to stop the attack. Then the 2 creatures battle.)\nThis creature gets +1000 power for each other light creature you have in the battle zone.",
"type": "Creature"
},
{
"civilizations": [
"Light"
],
"cost": 6,
"name": "Aless, the Oracle",
"power": "1000",
"printings": [
{
"set": "DM-03 Rampage of the Super Warriors",
"id": "2/55",
"rarity": "Common",
"illustrator": "Norikatsu Miyoshi",
"flavor": "\"Will someone tell Dawn Giant that I'm not a toy?\""
}
],
"subtypes": [
"Light Bringer"
],
"text": "When this creature would be put into your graveyard from the battle zone, add it to your shields face down instead.",
"type": "Creature"
},
{
"civilizations": [
"Light"
],
"cost": 10,
"name": "Alphadios, Lord of Spirits",
"power": "15500",
"printings": [
{
"set": "DM-15 Secret of Hidden Gear",
"id": "S1/55",
"rarity": "Super Rare",
"illustrator": "Seki",
"flavor": "The entire universe has been enveloped in the melody of the shining spirits! Now, the door to heaven has been opened!"
}
],
"subtypes": [
"Angel Command"
],
"text": "Evolution\u00e2\u20ac\u201dPut on one of your Angel Commands.\nPlayers can't summon creatures other than light creatures or cast spells other than light spells.\nTriple breaker (This creature breaks 3 shields.)",
"type": "Creature"
},
{
"civilizations": [
"Light"
],
"cost": 4,
"name": "Amber Grass",
"power": "3000",
"printings": [
{
"set": "DM-04 Shadowclash of Blinding Night",
"id": "7/55",
"rarity": "Common",
"illustrator": "Akifumi Yamamoto",
"flavor": "Each surge of electricity triggers a growth spurt."
}
],
"subtypes": [
"Starlight Tree"
],
"text": "Shield trigger (When this creature is put into your hand from your shield zone, you may summon it immediately for no cost.)",
"type": "Creature"
},
{
"civilizations": [
"Darkness"
],
"cost": 4,
"name": "Amber Piercer",
"power": "2000",
"printings": [
{
"set": "DM-02 Evo-Crushinators of Doom",
"id": "23/55",
"rarity": "Rare",
"illustrator": "Daisuke Izuka",
"flavor": "\"Let's see what we can dig up.\""
},
{
"set": "Promotional",
"id": "23a/55",
"rarity": "Rare",
"illustrator": "Daisuke Izuka",
"flavor": "\"Let's see what we can dig up.\""
}
],
"subtypes": [
"Brain Jacker"
],
"text": "Whenever this creature attacks, you may return a creature from your graveyard to your hand.",
"type": "Creature"
},
{
"civilizations": [
"Nature"
],
"cost": 5,
"name": "Ambush Scorpion",
"power": "3000+",
"printings": [
{
"set": "DM-05 Survivors of the Megapocalypse",
"id": "46/55",
"rarity": "Common",
"illustrator": "Tomofumi Ogasawara",
"flavor": "Its hard outer shell covers up an even harder inner core."
}
],
"subtypes": [
"Giant Insect"
],
"text": "Power attacker +3000 (While attacking, this creature gets +3000 power.)\nWhen this creature is destroyed, you may choose an Ambush Scorpion in your mana zone and put it into the battle zone.",
"type": "Creature"
},
{
"civilizations": [
"Light"
],
"cost": 7,
"name": "Amnis, Holy Elemental",
"power": "5000",
"printings": [
{
"set": "Promotional",
"id": "L3/6 Y1",
"rarity": "Super Rare",
"illustrator": "Kou1",
"flavor": "Light is an eternal sword, its flame unquenchable."
}
],
"subtypes": [
"Angel Command"
],
"text": "Darkness blocker (Whenever an opponent's darkness creature attacks, you may tap this creature to stop the attack. Then the 2 creatures battle.)\nWhen this creature loses a battle against a darkness creature, this creature isn't destroyed.",
"type": "Creature"
},
{
"civilizations": [
"Nature"
],
"cost": 8,
"name": "Ancient Giant",
"power": "9000",
"printings": [
{
"set": "DM-04 Shadowclash of Blinding Night",
"id": "48/55",
"rarity": "Rare",
"illustrator": "Jason",
"flavor": "\"I don't care how hugely, massively, gigantically big it is! Stop it before it gets to General Trox!\" \u00e2\u20ac\u201dZagaan, Knight of Darkness"
}
],
"subtypes": [
"Giant"
],
"text": "This creature can't be blocked by darkness creatures.\nDouble breaker (This creature breaks 2 shields.)",
"type": "Creature"
},
{
"civilizations": [
"Nature"
],
"cost": 5,
"name": "Ancient Horn, the Watcher",
"power": "5000",
"printings": [
{
"set": "DM-10 Shockwaves of the Shattered Rainbow",
"id": "80/110",
"rarity": "Uncommon",
"illustrator": "Yarunoca",
"flavor": "It's revered as one of the strongest creatures of the forest simply because it's able to stand without collapsing under its own weight."
}
],
"subtypes": [
"Horned Beast"
],
"text": "When you put this creature into the battle zone, if you have 5 or more shields, untap all the cards in your mana zone.",
"type": "Creature"
},
{
"civilizations": [
"Water"
],
"cost": 3,
"name": "Angler Cluster",
"power": "3000+",
"printings": [
{
"set": "DM-03 Rampage of the Super Warriors",
"id": "12/55",
"rarity": "Common",
"illustrator": "Kou1"
}
],
"subtypes": [
"Cyber Cluster"
],
"text": "Blocker (Whenever an opponent's creature attacks, you may tap this creature to stop the attack. Then the 2 creatures battle.)\nThis creature can't attack.\nWhile all the cards in your mana zone are water cards, this creature gets +3000 power.",
"type": "Creature"
},
{
"civilizations": [
"Nature"
],
"cost": 3,
"name": "Angry Maple",
"power": "1000+",
"printings": [
{
"set": "Promotional",
"id": "M5/Y1",
"rarity": "No Rarity",
"illustrator": "Haccan",
"flavor": "\"I always want to look my best for a big battle. I trim my branches. I comb my leaves, I'm looking sharp\u00e2\u20ac\u201dand then wham! Bird's nest. Every time.\""
}
],
"subtypes": [
"Tree Folk"
],
"text": "Power attacker +4000 (While attacking, this creature gets +4000 power.)",
"type": "Creature"
},
{
"civilizations": [
"Darkness",
"Nature"
],
"cost": 2,
"name": "Animatrain, the Daring Beast",
"power": "4000",
"printings": [
{
"set": "DM-13 Eternal Phoenix",
"id": "55/55",
"rarity": "Common",
"illustrator": "Atsushi Kawasaki"
}
],
"subtypes": [
"Hedrian",
"Horned Beast"
],
"text": "(This creature is put into your mana zone tapped.)\r\nThis creature can't attack if you have more shields than your opponent.",
"type": "Creature"
},
{
"civilizations": [
"Light"
],
"cost": 6,
"name": "Apocalypse Day",
"printings": [
{
"set": "DM-14 Generate Gear",
"id": "15/110",
"rarity": "Rare",
"illustrator": "Ken Sugawara"
}
],
"text": "Shield trigger (When this spell is put into your hand from your shield zone, you may cast it immediately for no cost.)\nIf there are 6 or more creatures in the battle zone, destroy all of them.",
"type": "Spell"
},
{
"civilizations": [
"Fire"
],
"cost": 7,
"name": "Apocalypse Vise",
"printings": [
{
"set": "DM-07 Thundercharge of Ultra Destruction",
"id": "36/55",
"rarity": "Rare",
"illustrator": "Hisashi Momose",
"flavor": "\"I've invented a fun new weight-loss machine! It's guaranteed to make you thinner, or your money back!\" \u00e2\u20ac\u201dRikabu, the Dismantler"
},
{
"set": "Promotional",
"id": "L7 Y2",
"rarity": "Rare",
"illustrator": "Hisashi Momose",
"flavor": "\"I've invented a fun new weight-loss machine! It's guaranteed to make you thinner, or your money back!\" \u00e2\u20ac\u201dRikabu, the Dismantler"
}
],
"text": "Destroy any number of your opponent's creatures that have total power 8000 or less.",
"type": "Spell"
},
{
"civilizations": [
"Water"
],
"cost": 6,
"name": "Aqua Agent",
"power": "2000",
"printings": [
{
"set": "DM-07 Thundercharge of Ultra Destruction",
"id": "16/55",
"rarity": "Common",
"illustrator": "Syuichi Obata",
"flavor": "Atop the towers of Light, the rogue spy was given the target of his next mission: home."
}
],
"subtypes": [
"Liquid People"
],
"text": "Water stealth (This creature can't be blocked while your opponent has any water cards in his mana zone.)\nWhen this creature would be destroyed, you may return it to your hand instead.",
"type": "Creature"
},
{
"civilizations": [
"Water"
],
"cost": 6,
"name": "Aqua Bouncer",
"power": "1000",
"printings": [
{
"set": "DM-02 Evo-Crushinators of Doom",
"id": "12/55",
"rarity": "Rare",
"illustrator": "Ryoya Yuki"
}
],
"subtypes": [
"Liquid People"
],
"text": "Blocker (When an opponent's creature attacks, you may tap this creature to stop the attack. Then the 2 creatures battle.)\nWhen you put this creature into the battle zone, you may choose a creature in the battle zone and return it to its owner's hand.",
"type": "Creature"
},
{
"civilizations": [
"Water"
],
"cost": 8,
"name": "Aqua Deformer",
"power": "3000",
"printings": [
{
"set": "DM-03 Rampage of the Super Warriors",
"id": "13/55",
"rarity": "Rare",
"illustrator": "Dustmoss",
"flavor": "Nothing is quite what it seems."
}
],
"subtypes": [
"Liquid People"
],
"text": "When you put this creature into the battle zone, return 2 cards from your mana zone to your hand. Then your opponent chooses 2 cards in his mana zone and returns them to his hand.",
"type": "Creature"
},
{
"civilizations": [
"Water"
],
"cost": 7,
"name": "Aqua Fencer",
"power": "3000",
"printings": [
{
"set": "DM-07 Thundercharge of Ultra Destruction",
"id": "17/55",
"rarity": "Rare",
"illustrator": "Yoshio Sugiura",
"flavor": "His opponents end up beside themselves in anger."
}
],
"subtypes": [
"Liquid People"
],
"text": "Instead of having this creature attack, you may tap it to use its $tap ability.\n$tap Choose a card in your opponent's mana zone and return it to his hand.",
"type": "Creature"
},
{
"civilizations": [
"Water"
],
"cost": 5,
"name": "Aqua Grappler",
"power": "3000",
"printings": [
{
"set": "DM-08 Epic Dragons of Hyperchaos",
"id": "16/55",
"rarity": "Rare",
"illustrator": "Hisashi Momose",
"flavor": "\"I specialize in kicking! And jumping! And sometimes spinning and whirling! I know my mom spent all that money on grappling lessons, but that's just not what I'm into anymore.\""
}
],
"subtypes": [
"Liquid People"
],
"text": "Whenever this creature attacks, you may draw a card for each other tapped creature you have in the battle zone.",
"type": "Creature"
},
{
"civilizations": [
"Water"
],
"cost": 1,
"name": "Aqua Guard",
"power": "2000",
"printings": [
{
"set": "DM-04 Shadowclash of Blinding Night",
"id": "19/55",
"rarity": "Common",
"illustrator": "Akifumi Yamamoto",
"flavor": "This ocean ain't big enough for the two of us!"
}
],
"subtypes": [
"Liquid People"
],
"text": "Blocker (Whenever an opponent's creature attacks, you may tap this creature to stop the attack. Then the 2 creatures battle.)\nThis creature can't attack.",
"type": "Creature"
},
{
"civilizations": [
"Water"
],
"cost": 3,
"name": "Aqua Hulcus",
"power": "2000",
"printings": [
{
"set": "DM-01 Base Set",
"id": "23/110",
"rarity": "Common",
"illustrator": "Eiji Kaneda",
"flavor": "Liquid People freely control liquid. For them, water is armor and shield."
},
{
"set": "Promotional",
"id": "M9/Y1",
"rarity": "Common",
"illustrator": "Eiji Kaneda",
"flavor": "Liquid People freely control liquid. For them, water is armor and shield."
},
{
"set": "Promotional",
"id": "T5 Y1",
"rarity": "Common",
"illustrator": "Eiji Kaneda",
"flavor": "Liquid People freely control liquid. For them, water is armor and shield."
}
],
"subtypes": [
"Liquid People"
],
"text": "When you put this creature into the battle zone, you may draw a card.",
"type": "Creature"
},
{
"civilizations": [
"Water"
],
"cost": 3,
"name": "Aqua Jolter",
"power": "2000",
"printings": [
{
"set": "DM-04 Shadowclash of Blinding Night",
"id": "20/55",
"rarity": "Common",
"illustrator": "Daisuke Izuka",
"flavor": "Saltwater makes me thirsty."
},
{
"set": "Promotional",
"id": "M8/Y1",
"rarity": "Common",
"illustrator": "Daisuke Izuka",
"flavor": "Saltwater makes me thirsty."
}
],
"subtypes": [
"Liquid People"
],
"text": "Shield trigger (When this creature is put into your hand from your shield zone, you may summon it immediately for no cost.)",
"type": "Creature"
},
{
"civilizations": [
"Water"
],
"cost": 5,
"name": "Aqua Knight",
"power": "4000",
"printings": [
{
"set": "DM-01 Base Set",
"id": "24/110",
"rarity": "Rare",
"illustrator": "D-Suzuki",
"flavor": "Like a whirlpool, it never seems to end."
},
{
"set": "Promotional",
"id": "B4/7 Y1",
"rarity": "Rare",
"illustrator": "D-Suzuki",
"flavor": "Like a whirlpool, it never seems to end."
}
],
"subtypes": [
"Liquid People"
],
"text": "When this creature would be destroyed, return it to your hand instead.",
"type": "Creature"
},
{
"civilizations": [
"Water"
],
"cost": 6,
"name": "Aqua Master",
"power": "4000",
"printings": [
{
"set": "DM-09 Fatal Brood of Infinite Ruin",
"id": "S2/55",
"rarity": "Super Rare",
"illustrator": "Toshiaki Takayama",
"flavor": "\"You can't hide information from the Cyber Lords. Haven't you figured it out yet? Your brain's been wired into the Ultracomputer!\""
}
],
"subtypes": [
"Liquid People"
],
"text": "Whenever this creature is attacking your opponent and isn't blocked, choose one of your opponent's shields and turn it face up. (It stays face up while it's in the shield zone.)",
"type": "Creature"
},
{
"civilizations": [
"Water"
],
"cost": 3,
"name": "Aqua Moon Edge",
"power": "2000+",
"printings": [
{
"set": "DM-15 Secret of Hidden Gear",
"id": "41/55",
"rarity": "Common",
"illustrator": "Akira Hamada",
"flavor": "Its fine to lose yourself in rage just once. Reflection will call forth the calm."
}
],
"subtypes": [
"Liquid People"
],
"text": "Accelerator (While this creature is crossed with a cross gear, this creature gets the following Accelerator ability.) : This creature gets +3000 power and the Cyber Moon race. ",
"type": "Creature"
},
{
"civilizations": [
"Water"
],
"cost": 6,
"name": "Aqua Officer",
"power": "2000",
"printings": [
{
"set": "DM-14 Generate Gear",
"id": "17/110",
"rarity": "Rare",
"illustrator": "Akifumi Yamamoto",
"flavor": "If you got past the impossible, you will only tire logic."
}
],
"subtypes": [
"Liquid People"
],
"text": "When you draw cards at the start of your turn, draw up to 2 additional cards.\nAt the end of each of your turns, tap 2 of your creatures in the battle zone.",
"type": "Creature"
},
{
"civilizations": [
"Water"
],
"cost": 4,
"name": "Aqua Patrol",
"power": "2000",
"printings": [
{
"set": "DM-15 Secret of Hidden Gear",
"id": "2/55",
"rarity": "Very Rare",
"illustrator": "Haccan",
"flavor": "\"The time is now! With this chance I'll fix the shields better than new!\" \u00e2\u20ac\u201dAqua Patrol"
}
],
"subtypes": [
"Liquid People"
],
"text": "When you put this creature into the battle zone, choose a player. That player shuffles all of his shields back into his deck, then adds the same number of cards from the top of his deck into his shields face down.",
"type": "Creature"
},
{
"civilizations": [
"Water"
],
"cost": 6,
"name": "Aqua Ranger",
"power": "3000",
"printings": [
{
"set": "DM-08 Epic Dragons of Hyperchaos",
"id": "2/55",
"rarity": "Very Rare",
"illustrator": "Atsushi Kawasaki",
"flavor": "\"I'm on a special mission to the surface to bring back secret computer codes, enemy troop movements, and a case of metal polish.\""
}
],
"subtypes": [
"Liquid People"
],
"text": "This creature can't be blocked.\nWhen this creature would be destroyed, put it into your hand instead.",
"type": "Creature"
},
{
"civilizations": [
"Water"
],
"cost": 4,
"name": "Aqua Rider",
"power": "2000",
"printings": [
{
"set": "DM-06 Stomp-A-Trons of Invincible Wrath",
"id": "31/110",
"rarity": "Common",
"illustrator": "Kou1",
"flavor": "\"Hey, pal-watch where you stick that fin!\""
}
],
"subtypes": [
"Liquid People"
],
"text": "Whenever your opponent summons a creature or casts a spell, this creature gets \"blocker\" until the end of the turn. (Whenever an opponent's creature attacks, you may tap a creature that has \"blocker\" to stop the attack. Then the 2 creatures battle.)",
"type": "Creature"
},
{
"civilizations": [
"Water"
],
"cost": 4,
"name": "Aqua Shooter",
"power": "2000",
"printings": [
{
"set": "DM-02 Evo-Crushinators of Doom",