-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathid_to_card_name.txt
4308 lines (4308 loc) · 110 KB
/
id_to_card_name.txt
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
0D48 => Speed World 2
0D49 => Speed Spell - Soul Release
0D4A => Speed Spell - Confiscation
0D4B => Speed Spell - The Forceful Sentry
0D4C => Speed Spell - Insect Imitation
0D4D => Speed Spell - Reinforcement of the Army
0D4E => Speed Spell - The Warrior Returning Alive
0D4F => Speed Spell - A Wingbeat of Giant Dragon
0D50 => Speed Spell - Stamping Destruction
0D51 => Speed Spell - Book of Life
0D52 => Speed Spell - Diffusion Wave-Motion
0D53 => Speed Spell - Wild Nature's Release
0D54 => Speed Spell - Salvage
0D55 => Speed Spell - Dark Factory of Mass Production
0D56 => Speed Spell - Monster Reincarnation
0D57 => Speed Spell - Overload Fusion
0D58 => Speed Spell - Tail Swipe
0D59 => Speed Spell - Instant Fusion
0D5A => Speed Spell - Burial from a Different Dimension
0D5B => Speed Spell - Destiny Draw
0D5C => Speed Spell - Trade-In
0D5D => Speed Spell - Swing of Memories
0D5E => Speed Spell - Fires of Doomsday
0D5F => Speed Spell - Gladiator Proving Ground
0D60 => Speed Spell - Allure of Darkness
0D61 => Speed Spell - Solar Recharge
0D62 => Speed Spell - Emergency Teleport
0D63 => Speed Spell - Charge of the Light Brigade
0D64 => Speed Spell - One for One
0D65 => Speed Spell - Forbidden Chalice
0D66 => Speed Spell - Saber Slash
0D67 => Speed Spell - Ancient Leaf
0D68 => Speed Spell - Earthbound Whirlwind
0D69 => Speed Spell - Moray of Greed
0D6A => Speed Spell - Faustian Bargain
0D6B => Speed Spell - Deceased Synchron
0D6C => Speed Spell - Tyrant Force
0D6D => Speed Spell - Ignition
0D6E => Speed Spell - Speed Force
0D6F => Speed Spell - Star Force
0D70 => Speed Spell - Overtune
0D71 => Speed Spell - Contract with the Abyss
0D72 => Speed Spell - Final Countdown
0D73 => Speed Spell - Earth Chant
0D74 => Speed Spell - Advanced Ritual Art
0D75 => Speed Spell - Recycling Batteries
0D76 => Speed Spell - Psychokinesis
0D77 => Speed Spell - Telekinetic Power Well
0D78 => Speed Spell - Rekindling
0D79 => Speed Spell - Swallow's Nest
0D7A => Speed Spell - Preparation of Rites
0D7B => Speed Spell - Cards of Consonance
0D7C => Speed Spell - Dawn of the Herald
0D7D => Speed Spell - Scrapstorm
0D7E => Speed Spell - Miracle Synchro Fusion
0D7F => Speed Spell - Pot of Duality
0D80 => Speed Spell - Tuning
0D81 => Speed Spell - Stardust Shimmer
0D82 => Speed Spell - Forbidden Lance
0DAC => Speed World
0DAD => Speed Spell - Vision Wind
0DAE => Speed Spell - Angel Baton
0DAF => Speed Spell - Gap Storm
0DB0 => Speed Spell - Shift Down
0DB1 => Speed Spell - Silver Contrails
0DB2 => Speed Spell - Synchro Return
0DB3 => Speed Spell - Speed Energy
0DB4 => Speed Spell - Zero Reverse
0DB5 => Speed Spell - Dash Pilfer
0DB6 => Speed Spell - Final Attack
0DB7 => Speed Spell - Reactor Pod
0DB8 => Speed Spell - Overboost
0DB9 => Speed Spell - The End of the Storm
0DBA => Speed Spell - Speed Fusion
0DBB => Speed Spell - Sonic Buster
0DBC => Speed Spell - Rapid Shotwing
0DBD => Speed Spell - Accelerator Draw
0DBE => Speed Spell - Summon Speeder
0DBF => Speed Spell - Power Baton
0DC0 => Slip Stream
0DC1 => Speed Booster
0DC2 => Acceleration Zone
0DC3 => Des Accelerator
0DC4 => Speed Spell - Speed Jammer
0DC5 => Speed Spell - Acceleration Limiter
0DC6 => Speed Spell - Slowdown Machine
0DC7 => Speed Spell - Wheelie Breaker
0DC8 => Speed Spell - Raigeki
0DC9 => Speed Spell - Tremendous Fire
0DCA => Speed Spell - Harpie's Feather Duster
0DCB => Speed Spell - Brain Control
0DCC => Speed Spell - Mind Control
0DCD => Speed Spell - Scapegoat
0DCE => Speed Spell - Card Destruction
0DCF => Speed Spell - Fissure
0DD0 => Speed Spell - Monster Reborn
0DD1 => Speed Spell - Tribute to The Doomed
0DD2 => Speed Spell - Last Will
0DD3 => Speed Spell - Heavy Storm
0DD4 => Speed Spell - Upstart Goblin
0DD5 => Speed Spell - Final Destiny
0DD6 => Speed Spell - Delinquent Duo
0DD7 => Speed Spell - Mystical Space Typhoon
0DD8 => Speed Spell - Giant Trunade
0DD9 => Speed Spell - Painful Choice
0DDA => Speed Spell - Nobleman of Crossout
0DDB => Speed Spell - Nobleman of Extermination
0DDC => Speed Spell - The Shallow Grave
0DDD => Speed Spell - Riryoku
0DDE => Speed Spell - Soul Exchange
0DDF => Speed Spell - De-Fusion
0DE0 => Speed Spell - Cold Wave
0DE1 => Speed Spell - Limiter Removal
0DE2 => Speed Spell - Creature Swap
0DE3 => Speed Spell - Mystic Box
0DE4 => Speed Spell - Offerings to the Doomed
0DE5 => Speed Spell - Foolish Burial
0DE6 => Speed Spell - Bait Doll
0DE7 => Speed Spell - Shrink
0DE8 => Speed Spell - Book of Moon
0DE9 => Speed Spell - Enemy Controller
0DEA => Speed Spell - Metamorphosis
0DEB => Speed Spell - Dark Core
0DEC => Speed Spell - Fiend's Sanctuary
0DED => Speed Spell - My Body as a Shield
0DEE => Speed Spell - Soul Taker
0DEF => Speed Spell - Chaos End
0DF0 => Speed Spell - Reload
0DF1 => Speed Spell - Stray Lambs
0DF2 => Speed Spell - Smashing Ground
0DF3 => Speed Spell - Shield Crush
0DF4 => Speed Spell - Special Hurricane
0DF5 => Speed Spell - Hammer Shot
0DF6 => Speed Spell - Gold Sarcophagus
0DF7 => Speed Spell - Back to Square One
0DF8 => Speed Spell - Miracle Fusion
0DF9 => Speed Spell - Pot of Avarice
0DFA => Speed Spell - Magical Mallet
0DFB => Speed Spell - Inferno Reckless Summon
0DFC => Speed Spell - Chain Strike
0DFD => Speed Spell - Ancient Rules
0DFE => Speed Spell - Twister
0DFF => Speed Spell - Tornado
0E00 => Speed Spell - Double Summon
0E01 => Speed Spell - Summoner's Art
0E02 => Speed Spell - Battle Tuned
0E03 => Speed Spell - Curse of Fate
0E04 => Speed Spell - Half Seize
0E05 => Speed Spell - Tune Up 123
0E06 => Speed Spell - Count Up
0E07 => Speed Spell - High Speed Crash
0E08 => Speed Spell - Synchro Defuse
0E09 => Speed Spell - Speed Storm
0E0A => Speed Spell - Summon Close
0E0B => Speed Edge
0E0C => Full Throttle
0E0D => Slowdown Trap
0ED9 => Blue-Eyes White Dragon
0EE0 => Dark Magician
0EE9 => Red-Eyes B. Dragon
0EF9 => Dark Magician Girl
0EFE => Gilford the Lightning
0F06 => Winged Kuriboh
0F07 => Cyber Dragon
0F08 => Cyber End Dragon
0F09 => Blue-Eyes White Dragon
0F0A => Summoned Skull
0F0B => Dark Magician
0F0D => Red-Eyes B. Dragon
0F11 => Buster Blader
0F12 => Obelisk the Tormentor
0F13 => The Winged Dragon of Ra
0F3C => Insect Monster Token
0F3D => Kuriboh Token
0F3E => Sheep Token
0F3F => Sheep Token
0F40 => Sheep Token
0F41 => Sheep Token
0F42 => Army Ant Token
0F43 => Slime Token
0F44 => Wicked Token
0F45 => Poisonous Snake Token
0F46 => Lekunga Token
0F47 => Clone Token
0F48 => Wicked Plant Token
0F49 => Mirage Token
0F4A => Metal Fiend Token
0F4B => Ojama Token
0F4C => Ojama Token
0F4D => Ojama Token
0F4E => Lamb Token
0F4F => Lamb Token
0F50 => Tricky Token
0F51 => Block Token
0F52 => Emissary of Darkness Token
0F53 => Phantasm Token
0F54 => Phantasmal Martyr Token
0F55 => Fluff Token
0F56 => Fluff Token
0F57 => Option Token
0F59 => Double Dude Token
0F5B => Fireball Token
0F5D => Cloudian Token
0F5E => Engine Token
0F5F => Skyblaster Token
0F60 => Grinder Token
0F61 => Regenerating Rose Token
0F62 => Thunder Option Token
0F63 => Evil Token
0F64 => Doomsday Token
0F65 => Sinister Seed Token
0F66 => Moon Token
0F67 => Metabo Token
0F68 => Oyster Token
0F69 => Ice Coffin Token
0F6A => Ivy Token
0F6B => Horseytail Token
0F6C => Rose Token
0F6D => Gift Fiend Token
0F6E => Plant Token
0F6F => Seed Token
0F70 => Needle Token
0F71 => Nightmare Archfiend Token
0F72 => Spinos Token
0F73 => Rockstone Token
0F74 => Asmo Token
0F75 => Deus Token
0F76 => Ghost Token
0F77 => Jurrac Token
0F78 => Worm Token
0F79 => Multi Token
0F7A => Reptilianne Token
0F7B => Spider Token
0F7C => Soul Token
0F7D => Ceremonial Token
0F7E => Grain Corn Token
0F7F => Laval Token
0F81 => Siphon Token
0F82 => Waltz Token
0F83 => Compass Token
0F84 => Doppel Token
0F85 => Nordic Beast Token
0F86 => Einherjar Token
0F87 => Malus Token
0FA7 => Blue-Eyes White Dragon
0FA8 => Mystical Elf
0FA9 => Hitotsu-Me Giant
0FAA => Baby Dragon
0FAB => Ryu-Kishin
0FAC => Feral Imp
0FAD => Winged Dragon, Guardian of the Fortress #1
0FAE => Mushroom Man
0FB0 => Blackland Fire Dragon
0FB1 => Sword Arm of Dragon
0FB2 => Swamp Battleguard
0FB3 => Tyhone
0FB4 => Battle Steer
0FB5 => Flame Swordsman
0FB6 => Time Wizard
0FB7 => Right Leg of the Forbidden One
0FB8 => Left Leg of the Forbidden One
0FB9 => Right Arm of the Forbidden One
0FBA => Left Arm of the Forbidden One
0FBB => Exodia the Forbidden One
0FBC => Summoned Skull
0FBD => The Wicked Worm Beast
0FBE => Skull Servant
0FBF => Horn Imp
0FC0 => Battle Ox
0FC1 => Beaver Warrior
0FC2 => Rock Ogre Grotto #1
0FC4 => Zombie Warrior
0FC5 => Koumori Dragon
0FC6 => Two-Headed King Rex
0FC7 => Judge Man
0FC8 => Saggi the Dark Clown
0FC9 => Dark Magician
0FCA => The Snake Hair
0FCB => Gaia the Dragon Champion
0FCC => Gaia The Fierce Knight
0FCD => Curse of Dragon
0FCE => Dragon Piper
0FCF => Celtic Guardian
0FD0 => Illusionist Faceless Mage
0FD1 => Karbonala Warrior
0FD2 => Rogue Doll
0FD3 => Wattkid
0FD4 => Griffore
0FD5 => Torike
0FD6 => Sangan
0FD7 => Big Insect
0FD8 => Basic Insect
0FD9 => Armored Lizard
0FDA => Hercules Beetle
0FDB => Killer Needle
0FDC => Gokibore
0FDD => Giant Flea
0FDE => Larvae Moth
0FDF => Great Moth
0FE0 => Kuriboh
0FE1 => Mammoth Graveyard
0FE2 => Great White
0FE3 => Wolf
0FE4 => Harpie Lady
0FE5 => Harpie Lady Sisters
0FE6 => Tiger Axe
0FE7 => Silver Fang
0FE8 => Kojikocy
0FE9 => Perfectly Ultimate Great Moth
0FEA => Garoozis
0FEB => Thousand Dragon
0FEC => Fiend Kraken
0FED => Jellyfish
0FEE => Cocoon of Evolution
0FEF => Kairyu-Shin
0FF0 => Giant Soldier of Stone
0FF2 => Krokodilus
0FF3 => Grappler
0FF4 => Axe Raider
0FF5 => Megazowler
0FF6 => Uraby
0FF7 => Crawling Dragon #2
0FF8 => Red-Eyes B. Dragon
0FF9 => Castle of Dark Illusions
0FFA => Reaper of the Cards
0FFB => King of Yamimakai
0FFC => Barox
0FFD => Dark Chimera
0FFE => Metal Guardian
0FFF => Catapult Turtle
1000 => Gyakutenno Megami
1001 => Mystic Horseman
1002 => Rabid Horseman
1003 => Zanki
1004 => Crawling Dragon
1005 => Crass Clown
1006 => Armored Zombie
1007 => Dragon Zombie
1008 => Clown Zombie
1009 => Pumpking the King of Ghosts
100A => Battle Warrior
100C => Mask of Darkness
1013 => Goddess with the Third Eye
1018 => White Magical Hat
1019 => Kamionwizard
101E => Dream Clown
1023 => Faith Bird
102B => Charubin the Fire Knight
1034 => Flame Manipulator
104C => Mysterious Puppeteer
104E => Darkfire Dragon
1050 => Spirit of the Harp
1051 => Big Eye
1063 => Fusionist
106C => Happy Lover
106D => Penguin Knight
106E => Petit Dragon
1070 => Archfiend Marmot of Nefariousness
107B => Aqua Madoor
107D => Flame Ghost
107F => B. Skull Dragon
1082 => Masked Sorcerer
1086 => Trap Master
108C => Rare Fish
1090 => Beautiful Headhuntress
10A5 => Prevent Rat
10A6 => D.D. Warrior
10A8 => Beastking of the Swamps
10AC => The Little Swordsman of Aile
10B0 => Princess of Tsurugi
10B3 => Versago the Destroyer
10B6 => Mavelus
10BC => Petit Moth
10BE => Protector of the Throne
10C6 => Dark Artist
10CB => Masaki the Legendary Swordsman
10CC => Dragoness the Wicked Knight
10D3 => Legendary Sword
10D4 => Sword of Dark Destruction
10D5 => Dark Energy
10D6 => Axe of Despair
10D7 => Laser Cannon Armor
10D8 => Insect Armor with Laser Cannon
10D9 => Elf's Light
10DA => Beast Fangs
10DB => Steel Shell
10DC => Vile Germs
10DD => Black Pendant
10DE => Silver Bow and Arrow
10DF => Horn of Light
10E0 => Horn of the Unicorn
10E1 => Dragon Treasure
10E2 => Electro-Whip
10E3 => Cyber Shield
10E4 => Elegant Egotist
10E5 => Mystical Moon
10E6 => Stop Defense
10E7 => Malevolent Nuzzler
10E8 => Violet Crystal
10E9 => Book of Secret Arts
10EA => Invigoration
10EB => Machine Conversion Factory
10EC => Raise Body Heat
10ED => Follow Wind
10EE => Power of Kaishin
10EF => Dragon Capture Jar
10F0 => Forest
10F1 => Wasteland
10F2 => Mountain
10F3 => Sogen
10F4 => Umi
10F5 => Yami
10F6 => Dark Hole
10F7 => Raigeki
10F8 => Mooyan Curry
10F9 => Red Medicine
10FA => Goblin's Secret Remedy
10FB => Soul of the Pure
10FC => Dian Keto the Cure Master
10FD => Sparks
10FE => Hinotama
10FF => Final Flame
1100 => Ookazi
1101 => Tremendous Fire
1102 => Swords of Revealing Light
1103 => Spellbinding Circle
1104 => Dark-Piercing Light
1106 => Kanan the Swordmistress
110E => Zera the Mant
1110 => Millennium Shield
1112 => Black Luster Soldier
1113 => Fiend's Mirror
1114 => Labyrinth Wall
1115 => Jirai Gumo
1116 => Shadow Ghoul
1117 => Wall Shadow
1118 => Labyrinth Tank
1119 => Sanga of the Thunder
111A => Kazejin
111B => Suijin
111C => Gate Guardian
111D => Dungeon Worm
111E => Monster Tamer
111F => Ryu-Kishin Powered
1120 => Swordstalker
1121 => La Jinn the Mystical Genie of the Lamp
1122 => Blue-Eyes Ultimate Dragon
1123 => Toon Alligator
1124 => Rude Kaiser
1125 => Parrot Dragon
1126 => Dark Rabbit
1127 => Bickuribox
1128 => Harpie's Pet Dragon
112A => Pendulum Machine
112B => Giltia the D. Knight
112C => Launcher Spider
112D => Zoa
112E => Metalzoa
1130 => Steel Scorpion
1137 => Ushi Oni
113D => Machine King
1145 => Mechanicalchaser
114A => Cyber-Stein
114C => Jinzo #7
114F => Thunder Dragon
1152 => Magician of Faith
1153 => Goddess of Whim
115B => Deepsea Shark
115E => 7 Colored Fish
115F => Mech Bass
1160 => Aqua Dragon
1165 => Giant Red Seasnake
1170 => Kaminari Attack
1174 => The Immortal of Thunder
1179 => Crimson Sunbird
117B => Armed Ninja
117F => Vermillion Sparrow
1181 => Sinister Serpent
1185 => Cockroach Knight
1188 => Pragtical
118A => Ameba
118D => Flower Wolf
1192 => Hoshiningen
1193 => Maha Vailo
1195 => Musician King
119A => Dragon Seeker
119B => Man-Eater Bug
11A0 => Gale Dogra
11A2 => Cyber Saurus
11A3 => Bracchio-raidus
11A6 => Cannon Soldier
11A9 => The Statue of Easter Island
11AA => Muka Muka
11B1 => The Bistro Butcher
11B2 => Star Boy
11B5 => Milus Radiant
11B7 => Flame Cerebrus
11BA => Gemini Elf
11BC => Minar
11C2 => Skelengel
11C3 => Hane-Hane
11CD => Dark Elf
11D0 => Lava Battleguard
11D8 => Needle Worm
11DB => Man-eating Black Shark
11E4 => Witch of the Black Forest
11ED => Weather Report
11F0 => Greenkappa
11F5 => Morphing Jar
11FC => Little Chimera
1200 => Penguin Soldier
1207 => Bladefly
1209 => Hiro's Shadow Scout
120B => Twin-Headed Thunder Dragon
120F => Marine Beast
1218 => Amazon of the Seas
121A => Witch's Apprentice
1225 => Amphibious Bugroth
1227 => Invader of the Throne
1228 => Mystical Sheep #1
122C => Gruesome Goo
1230 => Whiptail Crow
1231 => Kunai with Chain
1232 => Magical Labyrinth
1233 => Warrior Elimination
1234 => Salamandra
1236 => Eternal Rest
1237 => Megamorph
1238 => Metalmorph
123A => Acid Rain
123B => Crush Card Virus
123C => Eradicating Aerosol
123D => Breath of Light
123E => Eternal Draught
1242 => Shine Palace
1243 => Shadow Spell
1244 => Black Luster Ritual
1245 => Zera Ritual
1246 => Harpie's Feather Duster
1248 => Beastly Mirror Ritual
124B => Hamburger Recipe
124F => House of Adhesive Tape
1250 => Eatgaboon
1253 => Acid Trap Hole
1254 => Widespread Ruin
1255 => Goblin Fan
1256 => Bad Reaction to Simochi
1257 => Reverse Trap
1258 => Fake Trap
125C => Resurrection of Chakra
125F => Garma Sword Oath
1261 => Revival of Dokurorider
1262 => Fortress Whale's Oath
1264 => Hungry Burger
1265 => Sengenjin
1267 => Tri-Horned Dragon
126A => Cosmo Queen
126B => Chakra
126E => Meteor Dragon
126F => Meteor B. Dragon
1270 => Firewing Pegasus
1272 => Garma Sword
1274 => Fortress Whale
1275 => Dokurorider
1277 => Black Magic Ritual
1278 => Magician of Black Chaos
1279 => Slot Machine
127B => Red Archery Girl
127C => Ryu-Ran
127D => Manga Ryu-Ran
127E => Toon Mermaid
127F => Toon Summoned Skull
1281 => Relinquished
1282 => Jigen Bakudan
1283 => Thousand-Eyes Idol
1284 => Thousand-Eyes Restrict
1285 => Steel Ogre Grotto #2
1286 => Blast Sphere
1288 => Alpha The Magnet Warrior
128A => Invitation to a Dark Sleep
128B => Lord of D.
128C => Red-Eyes Black Metal Dragon
128D => Barrel Dragon
128E => Hannibal Necromancer
128F => Panther Warrior
1290 => Three-Headed Geedo
1291 => Gazelle the King of Mythical Beasts
1292 => Stone Statue of the Aztecs
1293 => Berfomet
1294 => Chimera the Flying Mythical Beast
1295 => Gear Golem the Moving Fortress
1296 => Jinzo
1297 => Swordsman of Landstar
1298 => Cyber Raider
1299 => The Fiend Megacyber
129A => Reflect Bounder
129B => Beta The Magnet Warrior
129C => Big Shield Gardna
129E => Dark Magician Girl
129F => Alligator's Sword
12A0 => Insect Queen
12A1 => Parasite Paracide
12A2 => Skull-Mark Ladybug
12A3 => Little-Winguard
12A4 => Pinch Hopper
12A5 => Blue-Eyes Toon Dragon
12A7 => Drill Bug
12AC => Satellite Cannon
12B1 => The Last Warrior from Another Planet
12B2 => Dunames Dark Witch
12B6 => Cyber-Tech Alligator
12B8 => Gamma The Magnet Warrior
12BA => Time Machine
12BB => Copycat
12BE => Toon World
12BF => Gorgon's Eye
12C2 => Black Illusion Ritual
12C3 => Brain Control
12C4 => Negate Attack
12C5 => Multiply
12C6 => 7 Completed
12C8 => Lightforce Sword
12CA => The Flute of Summoning Dragon
12CB => Shield & Sword
12CC => Graceful Charity
12CD => Chain Destruction
12CE => Mesmeric Control
12CF => Graceful Dice
12D0 => Skull Dice
12D1 => Mind Control
12D2 => Scapegoat
12D3 => Amplifier
12D5 => Card Destruction
12D7 => Tragedy
12DA => Mystical Refpanel
12DC => Ectoplasmer
12DE => Dark Magic Curtain
12E0 => Insect Barrier
12E2 => Magical Arm Shield
12E3 => Fissure
12E4 => Trap Hole
12E5 => Polymerization
12E6 => Remove Trap
12E7 => Two-Pronged Attack
12E8 => Blue Medicine
12E9 => Raimei
12EA => Monster Reborn
12EB => De-Spell
12EC => Pot of Greed
12ED => Gravedigger Ghoul
12EE => Burning Spear
12EF => Gust Fan
12F0 => The Inexperienced Spy
12F1 => Reinforcements
12F2 => Castle Walls
12F3 => Ultimate Offering
12F4 => Ancient Telescope
12F5 => White Hole
12F6 => Call of the Grave
12F7 => Anti Raigeki
12F8 => Tribute to The Doomed
12F9 => Soul Release
12FA => The Cheerful Coffin
12FB => Call of Darkness
12FC => Change of Heart
12FD => Solemn Judgment
12FE => Magic Jammer
12FF => Seven Tools of the Bandit
1300 => Horn of Heaven
1301 => Just Desserts
1302 => Royal Decree
1304 => Last Day of Witch
1305 => Exile of the Wicked
1306 => Magical Thorn
1307 => Restructer Revolution
1308 => Fusion Sage
1309 => Sword of Deep-Seated
130A => Block Attack
130B => The Unhappy Maiden
130C => Robbin' Goblin
130D => Germ Infection
130E => Paralyzing Potion
1310 => Wall of Illusion
1311 => Neo the Magic Swordsman
1312 => Baron of the Fiend Sword
1313 => Man-Eating Treasure Chest
1314 => Sorcerer of the Doomed
1315 => Last Will
1316 => Waboku
1317 => Mirror Force
1318 => Ring of Magnetism
1319 => Share the Pain
131A => Stim-Pack
131B => Heavy Storm
131C => Gryphon Wing
131D => Gravekeeper's Servant
131E => Curse of Fiend
131F => Upstart Goblin
1320 => Toll
1321 => Final Destiny
1322 => Snatch Steal
1323 => Chorus of Sanctuary
1324 => Confiscation
1325 => Delinquent Duo
1326 => Darkness Approaches
1327 => Fairy's Hand Mirror
1328 => Tailor of the Fickle
1329 => Rush Recklessly
132A => The Reliable Guardian
132B => The Forceful Sentry
132C => Chain Energy
132D => Mystical Space Typhoon
132E => Giant Trunade
132F => Painful Choice
1330 => Snake Fang
1331 => Cyber Jar
1332 => Banisher of the Light
1333 => Giant Rat
1334 => Senju of the Thousand Hands
1335 => UFO Turtle
1336 => Flash Assailant
1339 => Giant Germ
133A => Nimble Momonga
133B => Spear Cretin
133C => Shining Angel
133E => Mother Grizzly
133F => Flying Kamakiri #1
1340 => Ceremonial Bell
1341 => Sonic Bird
1342 => Mystic Tomato
1343 => Kotodama
1344 => Gaia Power
1345 => Umiiruka
1346 => Molten Destruction
1347 => Rising Air Current
1348 => Luminous Spark
1349 => Mystic Plasma Zone
134A => Messenger of Peace
134B => Michizure
134C => Gust
134D => Driving Snow
134E => Armored Glass
134F => World Suppression
1350 => Mystic Probe
1351 => Metal Detector
1352 => Numinous Healer
1353 => Appropriate
1354 => Forced Requisition
1355 => Minor Goblin Official
1356 => Gamble
1357 => DNA Surgery
1358 => The Regulation of Tribe
1359 => Backup Soldier
135A => Attack and Receive
135B => Major Riot
135C => Ceasefire
135D => Light of Intervention
135E => Respect Play
1360 => Imperial Order
1361 => Skull Invitation
1362 => Magical Hats
1363 => Nobleman of Crossout
1364 => Nobleman of Extermination
1365 => The Shallow Grave
1366 => Premature Burial
1367 => Inspection
1368 => Prohibition
1369 => Morphing Jar #2
136A => Bubonic Vermin
1377 => Buster Blader
1378 => Time Seal
1379 => Graverobber
137A => Gift of The Mystical Elf
137B => The Eye of Truth
137C => Dust Tornado
137D => Call of the Haunted
137E => Solomon's Lawbook
137F => Earthshaker
1380 => Enchanted Javelin
1381 => Mirror Wall
1386 => Obelisk the Tormentor
1387 => Slifer the Sky Dragon
1388 => The Winged Dragon of Ra
1389 => Windstorm of Etaqua
138A => Valkyrion the Magna Warrior
138B => Alligator's Sword Dragon
138C => Vorse Raider
138D => Ring of Destruction
138E => Aqua Chorus
138F => Sebek's Blessing
1390 => Anti-Spell Fragrance
1391 => Riryoku
1392 => Sword of Dragon's Soul
1393 => Seal of the Ancients
1397 => Luminous Soldier
1398 => King Tiger Wanghu
1399 => Command Knight
139A => Wolf Axwielder
139B => The Illusory Gentleman
139C => Patrician of Darkness
139D => Birdface
139E => Kryuel
139F => Airknight Parshath
13A0 => Fairy King Truesdale
13A1 => Serpentine Princess
13A2 => Maiden of the Aqua
13A3 => Robotic Knight
13A4 => Thunder Nyan Nyan
13A5 => Molten Behemoth
13A6 => Twin-Headed Behemoth
13A7 => Injection Fairy Lily
13A8 => Woodland Sprite
13A9 => Arsenal Bug
13AA => Kinetic Soldier
13AB => Jowls of Dark Demise
13AC => Souleater
13AD => Slate Warrior
13AE => Shapesnatch
13B0 => Electromagnetic Bagworm
13B1 => Timeater
13B2 => Mucus Yolk
13B3 => Servant of Catabolism
13B4 => Rigorous Reaver
13B5 => Moisture Creature
13B6 => Boneheimer
13B8 => Flame Dancer
13BD => Sonic Jammer
13C3 => Gearfried the Iron Knight
13C4 => Humanoid Slime
13C5 => Worm Drake
13C6 => Humanoid Worm Drake
13C7 => Revival Jam
13CA => Amphibian Beast
13CB => Rocket Warrior
13CD => The Legendary Fisherman
13E2 => Shining Abyss
13E3 => Archfiend of Gilfer
13E4 => Gadget Soldier
13E5 => Grand Tiki Elder
13E6 => The Masked Beast
13E7 => Melchid the Four-Face Beast
13E8 => Nuvia the Wicked
13E9 => Masked Beast Des Gardius
13EA => The Mask of Remnants
13EB => Soul Exchange
13ED => Chosen One
13EE => Mask of Weakness
13EF => Curse of the Masked Beast
13F0 => Mask of Dispel
13F2 => Mask of Restrict
13F3 => Mask of the Accursed
13F4 => Mask of Brutality
13F5 => Return of the Doomed
13F6 => Lightning Blade
13F7 => Tornado Wall
13F8 => Infinite Dismissal
13F9 => Fairy Box
13FA => Torrential Tribute
13FC => Multiplication of Ants
13FE => De-Fusion
13FF => Jam Breeding Machine
1400 => Nightmare's Steelcage
1401 => Infinite Cards
1402 => Jam Defender
1403 => Card of Safe Return
1404 => Magic Cylinder
1405 => Solemn Wishes
1406 => Burning Land
1407 => Cold Wave
1408 => Fairy Meteor Crush
1409 => Limiter Removal
140A => Shift
140B => Insect Imitation
140C => Dimensionhole
140D => Magic Drain
140E => Gravity Bind
140F => Shadow of Eyes
1411 => Hayabusa Knight
1412 => Bombardment Beetle
1413 => 4-Starred Ladybug of Doom
1414 => Gradius
1415 => Red-Moon Baby
1416 => Mad Sword Beast
1419 => Goblin Attack Force
141F => Rain of Mercy
1420 => Monster Recovery
1421 => Type Zero Magic Crusher
1429 => Yellow Luster Shield
142A => Creature Swap
142C => Spring of Rebirth
142D => Dark Magician
142E => Thousand Knives
1430 => Mystic Box
1432 => Ground Collapse
144A => The Unfriendly Amazon
144B => Amazoness Archer
144D => Fire Princess
144E => Lady Assailant of Flames
1450 => Spirit of the Breeze
1451 => Dancing Fairy
1454 => Cure Mermaid
1455 => Hysteric Fairy
1457 => The Forgiving Maiden
1458 => St. Joan
1459 => Marie the Fallen One
145A => Jar of Greed
145B => Scroll of Bewitchment
145C => United We Stand
145D => Mage Power
145E => Offerings to the Doomed
1460 => Meteor of Destruction
1461 => Lightning Vortex
1462 => Exchange
1463 => The Portrait's Secret
1464 => The Gross Ghost of Fled Dreams
1465 => Headless Knight
1466 => Dark Necrofear
1467 => Magic Formula
1468 => Destiny Board
1469 => The Dark Door
146B => Dark Spirit of the Silent
146D => The Earl of Demise
146E => Dark Sage
146F => Temple of the Kings
1470 => Judgment of Anubis
1472 => Embodiment of Apophis
1474 => Foolish Burial
1475 => Makiu, the Magical Mist
1476 => Ancient Lamp
1477 => Cyber Harpie Lady
147A => Mystical Beast of Serket
147B => Swift Gaia the Fierce Knight
147C => Obnoxious Celtic Guard
147D => Zombyra the Dark
147E => Spiritualism
147F => Jowgen the Spiritualist
1480 => Kycoo the Ghost Destroyer
1481 => Summoner of Illusions
1482 => Bazoo the Soul-Eater
1483 => Soul of Purity and Light
1484 => Spirit of Flames
1485 => Aqua Spirit
1486 => The Rock Spirit
1487 => Garuda the Wind Spirit
1488 => Gilasaurus
1489 => Tornado Bird
148A => Dreamsprite
148B => Supply
148C => Maryokutai
148D => Collected Power
148E => Royal Command
148F => Riryoku Field
1490 => Skull Lair
1491 => Graverobber's Retribution
1492 => Deal of Phantom
1493 => Destruction Punch
1494 => Blind Destruction
1495 => The Emperor's Holiday
1496 => Cyclon Laser
1497 => Spirit Message "I"
1498 => Spirit Message "N"
1499 => Spirit Message "A"
149A => Spirit Message "L"
149B => Bait Doll
149C => Fusion Gate
149D => Ekibyo Drakmord
149E => Miracle Dig
149F => Dragonic Attack
14A1 => Vengeful Bog Spirit
14A4 => Amazoness Swords Woman
14A5 => Makyura the Destructor
14A6 => Amazoness Archers
14A7 => Rope of Life
14AA => Spell Shattering Arrow
14AB => Amazoness Chain Master
14AC => Viser Des
14AF => Amazoness Fighter
14B0 => Amazoness Spellcaster
14B2 => Nightmare Wheel
14B3 => Dramatic Rescue
14B4 => Byser Shock
14B5 => Dark Ruler Ha Des
14B6 => Dark Balter the Terrible
14BE => Bark of Dark Ruler
14BF => Fatal Abacus
14C0 => Life Absorbing Machine
14C1 => The Puppet Magic of Dark Ruler
14C2 => Soul Demolition
14C3 => Double Snare
14C4 => Freed the Matchless General
14C6 => Marauding Captain
14C7 => Ryu Senshi
14C9 => Mysterious Guard
14CB => Exiled Force
14CD => Shadow Tamer
14CE => Dragon Manipulator
14CF => The A. Forces
14D0 => Reinforcement of the Army
14D1 => Array of Revealing Light
14D2 => The Warrior Returning Alive