-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathRush.lflist.conf
2559 lines (2559 loc) · 88.4 KB
/
Rush.lflist.conf
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
#[2025.01.01 Rush Duel]
!2025.01.01 Rush Duel
$whitelist
160001001 3 --Lizard Soldier (Rush)
160001002 3 --Lesser Dragon (Rush)
160001003 3 --Ancient Turtle Protector
160001004 3 --Binding Chain (Rush)
160001005 3 --Tang the Noodle Ninja
160001006 3 --Little D (Rush)
160001007 3 --Arma Knight (Rush)
160001008 3 --Petit Moth (Rush)
160001009 3 --Skull Servant (Rush)
160001010 3 --Silver Fang (Rush)
160001011 3 --Feral Imp (Rush)
160001012 3 --Faith Bird (Rush)
160001013 3 --LaMoon (Rush)
160001014 3 --Machine Attacker (Rush)
160001015 3 --Crawling Dragon (Rush)
160001016 3 --Max Raider
160001017 3 --Kuribot
160001018 3 --Whispering Fairy
160001019 3 --Fire Golem
160001020 3 --Hilt, the Bearer of Noble Arms
160001022 3 --Raidacross, Hero of the Dawn
160001024 3 --Sportsdragon Pitcher
160001025 3 --Sportsdragon Slugger
160001026 3 --Dragonic Slayer
160001028 3 --Prima Guitarna the Shining Superstar
160001029 3 --Yamiruler the Dark Delayer
160001030 3 --Spice the Elite Noodle Ninja
160001031 3 --Defender of Dragon Sorcerers
160001032 3 --Thunder the Thunder
160001033 3 --Sonic Attacker
160001034 3 --Mask of Volos
160001035 3 --Diabolic King Beetle
160001036 3 --Battle Shark Samegalon
160001037 3 --Pierce!
160001038 3 --Recovery Force
160001039 3 --Road Magic - Tempest
160001040 3 --Seal of the Ancients (Rush)
160001041 3 --Hammer Crush
160001042 3 --Sparks (Rush)
160001043 3 --Darkness Approaches (Rush)
160001044 3 --One-Side Reverse
160001045 3 --Mountain (Rush)
160001046 3 --Counter Cannonball
160001047 3 --Call of the Earthbound (Rush)
160001048 3 --Gust (Rush)
160001049 3 --Brutal Retribution
160001050 3 --1-Up
160002001 3 --Sportsdragon Keeper
160002002 3 --Wattkiss
160002003 3 --Watangel
160002004 3 --Mammoth Graveyard (Rush)
160002005 3 --Megazowler (Rush)
160002006 3 --Bubbly Elf
160002007 3 --LaMoon the Party Princess
160002008 3 --Kanan the Sword Diva
160002009 3 --Beast Gear Gyro Jackal
160002010 3 --Beast Gear Buggy Dog
160002011 3 --Beast Gear Moto Wolf
160002012 3 --Jet Barracuda
160002013 3 --Heat Dartfish
160002014 3 --Harpie Girl (Rush)
160002015 3 --Vishwar Randi (Rush)
160002016 3 --Sevens Road Mage
160002017 3 --Lightning Voltcondor
160002018 3 --Full Meteor Impact
160002019 3 --Sportsdragon Defender
160002020 3 --Sportsdragon Striker
160002021 3 --Shock Dragon
160002022 3 --Piercing Dragon Bunker Strike
160002023 3 --Romanpick
160002024 3 --Romic n' Roller
160002025 3 --Esperade the Smashing Superstar
160002026 3 --Nandes the Fire Awakener
160002027 3 --Dian Keto the Boogie Master
160002028 3 --Beast Gear Emperor Catapult Kong
160002029 3 --Super King Rex
160002030 3 --Wicked Shadow Dark Lurker
160002031 3 --Royal Rebel's Heavy Metal
160002032 3 --Hydro Cannon Big Bluefin
160002033 3 --Archfiend's Summoning Flute
160002034 3 --Shaman Octopus
160002035 3 --Innocent Lancer
160002036 3 --Road Magic - Tectonic Shift
160002037 3 --Lullabind
160002038 3 --Party Party Party
160002039 3 --Apocalypse - Beast Gear World
160002040 3 --Thousand Knives (Rush)
160002041 3 --Dark Magic Attack (Rush)
160002042 3 --Blades of Divine Wind
160002043 3 --Attribute Shift Bomb
160002044 3 --Blue Medicine (Rush)
160002045 3 --Party Time - Disco Ball
160002046 3 --Rage and Conspiracy
160002047 3 --Siesta Hold
160002048 3 --Phantom Bind
160002049 3 --Double Block
160002050 3 --Driving Snow (Rush)
160003001 3 --Light Sorcerer
160003002 3 --Scoop Scooter
160003003 3 --Stock the Noodle Ninja
160003004 3 --Mushroom Man (Rush)
160003005 3 --Niwatori (Rush)
160003006 3 --Chu-Ske the Mouse Fighter (Rush)
160003007 3 --Baby Dragon (Rush)
160003008 3 --Hitotsu-Me Giant (Rush)
160003009 3 --Doriado (Rush)
160003010 3 --Water Magician (Rush)
160003011 3 --Gazelle the King of Mythical Beasts (Rush)
160003012 3 --Ojisan
160003013 3 --Echeclus the Star Knight
160003014 3 --Sparkhearts Girl
160003015 3 --Silver Wolf
160003016 3 --Beast Summoner
160003017 3 --Sieth, the Scabbard of Noble Arms
160003018 3 --Bendorbreak the Conqueror
160003019 3 --Savage Claw Tiger
160003020 3 --Treasure Dragon
160003021 3 --Dragon Merchant
160003022 3 --Clear Ice Dragon
160003023 3 --Burning Blaze Dragon
160003024 3 --Ancient Arise Dragon
160003025 3 --Illusion Strike Dragon Miragias
160003026 3 --Kesshin the Dark Decimator
160003027 3 --Seahorse Server
160003028 3 --Seahorse Carrier
160003029 3 --Vishwar Lambadi
160003030 3 --Beast Gear Trike Fox
160003031 3 --Beast Gear King Convoy Liogon
160003032 3 --Printing Presser
160003033 3 --Extra Spice the Elite Noodle Ninja
160003034 3 --Anchor Moray
160003035 3 --Trick Pigeon
160003036 3 --Luminous Parrot
160003037 3 --Long Shield Gardna
160003038 3 --Eldign Patrol Ship
160003039 3 --Survival Swordfish
160003040 3 --Darkness Crested Hawk
160003041 3 --Sea Dragon King Granganus
160003042 3 --Rightful Magic
160003043 3 --Dragon's Return
160003044 3 --Blazing Chestnut
160003045 3 --The Noodle Art of Spicery
160003046 3 --The Noodle Art of Savory
160003047 3 --Triple Threat Thunder
160003048 3 --Shining City Nights
160003049 3 --Aqua Boost
160003050 3 --Big Umi
160003051 3 --Thousand Attack Rocket
160003052 3 --Umi (Rush)
160003053 3 --Forest (Rush)
160003054 3 --Soul of a Reporter
160003055 3 --Bait Bite Ball
160003056 3 --Counter Shield
160003057 3 --Counter Pigeons
160003058 3 --Giant Tortoise of Greed
160003059 3 --Triple Trio
160003060 3 --Faulty Fire
160004001 3 --Constructor Soldier Drillzard
160004002 3 --Constructor Warrior Shovelon
160004003 3 --Constructor Battler Big Roller
160004004 3 --Brassaxophone the Music Princess
160004005 3 --Flutomahawk the Music Princess
160004006 3 --Bull Breaker
160004007 3 --Oppressed Ant
160004008 3 --United Ants
160004009 3 --Ants Running About
160004010 3 --Tsuvolcano
160004011 3 --Enchanting Mermaid (Rush)
160004012 3 --Descendant of Titans
160004013 3 --Grace Princess Kana
160004014 3 --Silent Assailant
160004015 3 --Steel Mech Lord Mirror Innovator
160004016 3 --Insurrection Dragon
160004017 3 --Chemical Cure Blue
160004018 3 --Tama the Mancer Cat
160004019 3 --Modorina the Light Retriever
160004020 3 --Semeruler the Dark Summoner
160004021 3 --Wyrm Excavator the Heavy Cavalry Draco [L]
160004022 3 --Wyrm Excavator the Heavy Cavalry Draco
160004023 3 --Wyrm Excavator the Heavy Cavalry Draco [R]
160004024 3 --Constructor Wyrm Buildragon
160004025 3 --Picklon the Constructor Fairy
160004026 3 --Nuncharinet the Music Princess
160004027 3 --Trumpetonfa the Music Princess
160004028 3 --Ensembullfighter the Music Fiend
160004029 3 --Digisoon the Music Fiend
160004030 3 --Gingangel, the Deluxe Sushi Fairy
160004031 3 --Drilling Mandrill
160004032 3 --Shield Boring Kong
160004033 3 --Antrebellion of the Rebellion
160004034 3 --Anmagmabear
160004035 3 --Aromagmabear
160004036 3 --Magmassage
160004037 3 --Magmax Mantleveda
160004038 3 --Sakakaze the Talismanic Warrior
160004039 3 --Type Change Beam
160004040 3 --Ancient Barrier
160004041 3 --Evil Star Beacon
160004042 3 --Peaks of Blisstopia
160004043 3 --Geological Survey
160004044 3 --Primal Howling
160004045 3 --Music Princess's Breath
160004046 3 --Heavy Cavalry Tactics
160004047 3 --Apocalypse - Legend of the Warrior
160004048 3 --Fiery Blaze
160004049 3 --Grand Extreme
160004050 3 --Sogen (Rush)
160004051 3 --Triangle Reborn
160004052 3 --Sword & Shield
160004053 3 --Constructor Ambush
160004054 3 --Constructor Blockade
160004055 3 --Heavy Cavalry Starter
160004056 3 --Gi-ant Revolution
160004057 3 --Antiberty Flag
160004058 3 --Earth Pressure Explosion
160004059 3 --Jewelry Trap Hole
160004060 3 --Beast Gear Secret Art - Primal Fist
160005001 3 --The Fire Dragon
160005002 3 --CAN:D
160005003 3 --Royal Rebel's No Wave
160005004 3 --Guarding Mermaid
160005005 3 --Kanan the Security Guard
160005006 3 --Kurobana the Shadow Flower Wolf
160005007 3 --Lindo the Shadow Flower Warrior
160005008 3 --Bombing Bird
160005009 3 --Grass
160005010 3 --Surge Bolt Lizard
160005011 3 --Baked Bean Soldier
160005012 3 --Metal Armored Ant
160005013 3 --Ice Age Catapult
160005014 3 --Hyper Engine Vast Vulcan [L]
160005015 3 --Hyper Engine Vast Vulcan
160005016 3 --Hyper Engine Vast Vulcan [R]
160005017 3 --Fortitude Dragon
160005018 3 --Endoll
160005019 3 --CAN - Re:D
160005020 3 --Takegumi the Ruler's Squad
160005021 3 --Wondering Warrior
160005022 3 --Icezark the Unequaled
160005023 3 --Royal Rebel's Phaser
160005024 3 --Royal Rebel's Doom Metal
160005025 3 --Vice Jacker
160005026 3 --Dian Keto the Security Master
160005027 3 --Acacia the Shadow Flower Priestess
160005028 3 --Gekka the Shadow Flower Beauty
160005029 3 --Etraynze the Shadow Flower Ninja
160005030 3 --Gajumaru the Shadow Flower Lion
160005031 3 --Garland the True Shadow Flower Ninja
160005032 3 --Gatling the Shadow Flower Shinobi
160005033 3 --Blasting Bird
160005034 3 --Night Vision the Phantom Pigeon
160005035 3 --Siesta Torero
160005036 3 --Maginical Miracle
160005037 3 --Coiled Dragon of Fertility
160005038 3 --Cheron the Star Knight
160005039 3 --JAM:P Up!
160005040 3 --JAM:P Start!
160005041 3 --Royal Rebel's Command
160005042 3 --Royal Rebel's Arena
160005043 3 --Transmigration of Curiosity
160005044 3 --Mighty Gaze of the Sky Emperor
160005045 3 --Prison Island - Cell Block 5 & 6
160005046 3 --Last Day of the Pretty☆Witch
160005047 3 --Hydration
160005048 3 --Shadow Flower Spore
160005049 3 --Apocalypse - The Unstoppable Beast-Warrior
160005050 3 --Majinrai, the Striking Storm
160005051 3 --Invading Nature
160005052 3 --Judgment of the Rising Light
160005053 3 --Avian Spell Tactics
160005054 3 --Wasteland (Rush)
160005055 3 --Pretty☆Witch Imprisonment
160005056 3 --All For Naught - Bubble Burst
160005057 3 --Shadow Flower Stance
160005058 3 --Shadow Flower Return
160005059 3 --Brocoohearted Pigeon
160005060 3 --Clowning Cookoo Clock
160005061 3 --Music Princess's Recital
160005062 3 --Archfiend's Revival
160005063 3 --Maraimei, the Igniting Inferno
160005064 3 --Cheering Grass
160005065 3 --Acetic Acid Trap Hole
160006001 3 --Sunny Fairy Spinangel
160006002 3 --Worker Warrior - New Recruit
160006003 3 --Worker Warrior - Bad Boss
160006004 3 --Barbeque Ox
160006005 3 --Mystic Roastman
160006006 3 --Archfiend Marmot of Deliciousness
160006007 3 --Hampering Hippo
160006008 3 --Dogulce Jomont Blanc
160006009 3 --Pangoflame
160006010 3 --Flying Kamakiri #2 (Rush)
160006011 3 --Northern Dumplina
160006012 3 --Fazuzu the King of Mythical Wind Beasts
160006013 3 --Handy Lady
160006014 3 --Sevens Road Wiz
160006015 3 --Thunderbold, the Blazing Thunder
160006016 3 --Stock Buster Dragon
160006017 3 --Steel Strike Dragon Metagias
160006018 3 --Speedy Performer
160006019 3 --Future Diviner
160006020 3 --Betrayer of Peace
160006021 3 --Karchizark the Unequaled
160006022 3 --Air Formula Eagle
160006023 3 --Secret Service Shine Guard
160006024 3 --Worker Warrior - Sinister CEO
160006025 3 --Shichirin Samurai - Kushiro the Skewer Master
160006026 3 --Beast Drive Mega Elephant
160006027 3 --Dogulce Langue de Shakoki
160006028 3 --Doki Doki Hexenhaus
160006029 3 --Jasmine the Shadow Flower Festival
160006030 3 --Crafter Drone
160006031 3 --Assault Cannon
160006032 3 --Heat Hyena
160006033 3 --Reset Runner
160006034 3 --Lindmühle
160006035 3 --Gate Gargoyle
160006036 3 --Vietor the Prevailing Wind
160006037 3 --Bladesaurus
160006038 3 --Arzareth the Sweeping Wind
160006039 3 --Road Magic - Uplifter
160006040 3 --Hypernova
160006041 3 --JAM:P Set!
160006042 3 --Ruler's Current
160006043 3 --Against Buster
160006044 3 --Storm Sonic
160006045 3 --Following World
160006046 3 --Business Card Barrage
160006047 3 --Nutrient Zero
160006048 3 --Best Bite
160006049 3 --B・B・Q
160006050 3 --Wild Kitchen
160006051 3 --Beast Battlefield Barrier
160006052 3 --Dekorelic Dessert
160006053 3 --Talismanic Seal Array
160006054 3 --Barrage of Steel
160006055 3 --Rage of the Beasts
160006056 3 --Berserker Colosseum
160006057 3 --Mismatched Rivalry
160006058 3 --7 Chance
160006059 3 --Psychicounter
160006060 3 --Dark Ruler Battle Slash
160006061 3 --Covering Barrage
160006062 3 --Salary Slash
160006063 3 --Battle Demotion
160006064 3 --Forever Freeze
160006065 3 --Scaredy Cats
160007001 3 --Needlkyrie the Celestial Seamstress
160007002 3 --Takriminos (Rush)
160007003 3 --Dolphin King Iruqua
160007004 3 --Gagaga Outfielder
160007005 3 --Achacha Catcher
160007006 3 --Zubaba Batter
160007007 3 --ExPress Train
160007008 3 --Flavor Inspector
160007009 3 --Cross Promotion the Elite Noodle Ninja
160007010 3 --Unidentified Mysterious Urchin
160007011 3 --Necroman the Third
160007012 3 --Daybreak Warrior
160007013 3 --Porcupine Dragon
160007014 3 --Psypickupper
160007015 3 --Mezame the Ringing Alarm
160007016 3 --Piercing Samurai
160007017 3 --Kimeluna the Dark Shifter
160007018 3 --Royal Rebel's Break
160007019 3 --Viscom Nanotron
160007020 3 --Constructor Sky Wyrm Gantry Dragon
160007021 3 --Light Dolphin
160007022 3 --Sea Star Trooper
160007023 3 --Kataomoiruka
160007024 3 --Headbutt Cachalot
160007025 3 --Dododo Second
160007026 3 --Gogogo Umpire
160007027 3 --Player #99: Grand Slam Dragon
160007028 3 --Player #39: Home Run Hitter
160007029 3 --Reporter Raccoon
160007030 3 --Clean Machine Newsweeper
160007031 3 --Sea Dragon Cranedross
160007032 3 --Sea Dragon Knight
160007033 3 --Dosodon
160007034 3 --Raidacross Ash, Hero of Chaos
160007035 3 --CAN:D LIVE
160007036 3 --Yamiterasu the Divine Ruler
160007037 3 --Newsflash the Journalistic Juggernaut
160007038 3 --Meat Spice the Special Noodle Ninja
160007039 3 --Miso Instant the Special Noodle Ninja
160007040 3 --Hunter of Titans
160007041 3 --Fenrirewritter Sol
160007042 3 --Supreme Marine Fortress Magnum Overbase
160007043 3 --Five Types of Assistance
160007044 3 --Bizarrmor
160007045 3 --Shape of Aqua
160007046 3 --Vanishing Torrent
160007047 3 --Feverous Spirit Stadium
160007048 3 --Hot Off the Press
160007049 3 --Reprinter
160007050 3 --The Noodle Art of Roastery
160007051 3 --The Noodle Art of Saucery
160007052 3 --Ship of Seven Treasures
160007053 3 --Back Beat
160007054 3 --Stream
160007055 3 --Card Devastation
160007056 3 --Shocking Comeback!!
160007057 3 --Pair Collision
160007058 3 --Dolphin Counterattack
160007059 3 --Seastorm of Iruqua
160007060 3 --Gagagaguts
160007061 3 --Requesting 9
160007062 3 --Reporting from the Scene!
160007063 3 --Breaking News!
160007064 3 --Spiral Geyser
160007065 3 --Hardefense Mission
160008001 3 --Dark Femtron
160008002 3 --Snake Clown
160008003 3 --Ancient Lizard Warrior (Rush)
160008004 3 --Armored Lizard (Rush)
160008005 3 --Boosturtle
160008006 3 --Pluggyfish
160008007 3 --Anglercoilfish
160008008 3 --Antsgiving
160008009 3 --Lauan Adventurers
160008010 3 --Germalewe
160008011 3 --Sevens Road Sorcerer
160008012 3 --Rhythmical Performer
160008013 3 --Excutie Feena
160008014 3 --Shearkyrie the Celestial Seamstress
160008015 3 --Mecha Ambulator
160008016 3 --Captain #39: Home Plate Pinch Hitter
160008017 3 --Kamaleon
160008018 3 --Clawmeleon
160008019 3 --Fiery Infernleon
160008020 3 --Metal Megaleon
160008021 3 --Predator Gunleon
160008022 3 --Ecdysis Caesarleon
160008023 3 --Spyturtle
160008024 3 --Rocketortoise Modularchelon
160008025 3 --Zap Zap Octospark
160008026 3 --Lightning Bringer Spirit
160008027 3 --Sensor Duckbill
160008028 3 --Emitter Stag
160008029 3 --Blast Jaws
160008030 3 --Stormbolt Destroyer
160008031 3 --Thunder Cavalry Triggerdrago
160008032 3 --Master of the Sevens Road
160008033 3 --Hazy Strike Dragon Miragiastar F
160008034 3 --Endless Romance Blitz
160008035 3 --Hero of the Assist
160008036 3 --Semeterasu the Divine Ruler
160008037 3 --Meika Etraynze the Shadow Flower Venus
160008038 3 --Durga the Shadow Flower Submarine
160008039 3 --Metarion King Cobrastar
160008040 3 --Poseigyon Advencharger
160008041 3 --Showering Seaferno
160008042 3 --Prime Roast Beef Horseman
160008043 3 --Hormone GunMcQueen, the Magnificent Shichirin
160008044 3 --Ether Fast Striker
160008045 3 --Vulcan Ignite Hyperdrive
160008046 3 --Royal Rebel's Echo
160008047 3 --Shadow Flower Flurry
160008048 3 --Shadow Flower Wish
160008049 3 --Tag-Up-Magic Sacrifice Force
160008050 3 --Bobble Header
160008051 3 --Release Wrath
160008052 3 --Fire Wrath
160008053 3 --Spy Observation
160008054 3 --Destructurtle Meteor
160008055 3 --Clapping Thunder
160008056 3 --Trailblitzing Thunderblast
160008057 3 --Parallel Birth Gate
160008058 3 --Makiu, the Magical Mist (Rush)
160008059 3 --Jurassic Oasis
160008060 3 --Buried Shield
160008061 3 --Wrath of Light
160008062 3 --Ultimate Fighting Spirit
160008063 3 --Sakuretsu Force
160008064 3 --Electrical Discharge
160008065 3 --Maid's Baneful Gift
160009001 3 --Milky Wave Neo
160009002 3 --Galactica Oblivion
160009003 3 --Ewekai Grounmouton
160009004 3 --Ewekai Pyrowool
160009005 3 --Ewekai Nightmutton
160009006 3 --Magical Sheep Girl Meeeg-chan
160009007 3 --One Year Broom
160009008 3 --Decennium Mystic Sword
160009009 3 --Centennial Wooden Blade
160009010 3 --Atlas Combat Beetle
160009011 3 --Protector of the Throne (Rush)
160009012 3 --Griffore (Rush)
160009013 3 --Black Handshaker
160009014 3 --Astrorescue
160009015 3 --Ozone Layer
160009016 3 --Transamu Ephyrai
160009017 3 --Satellite Pegasus
160009018 3 --Great Cosmonarch
160009019 3 --Jointech Rex
160009020 3 --Ewekai Planeau
160009021 3 --Poet Fairy
160009022 3 --Swordfish Vanguard Gaju
160009023 3 --Princess Ladybug White
160009024 3 --Pakupakuchu
160009025 3 --Swapling Silkworm Fibron
160009026 3 --Therappi
160009027 3 --Rapid Carriearth
160009028 3 --Dramoth Caterpillar
160009029 3 --Shitotsu the Talismanic Warrior
160009030 3 --Bio Mechamantis
160009031 3 --Crusher Drone
160009032 3 --Ravenous Insect Matiless
160009033 3 --Excutie Fermi
160009034 3 --Anglered Digra
160009035 3 --Ground Cerberus
160009036 3 --Bladearmor King Dynas Dorcus
160009037 3 --Sevensgias the Magical Dragon Knight
160009038 3 --Constructor Ridge Wyrm Handtoolon
160009039 3 --Meika Etraynzeyes the Shadow Flower Lunatic
160009040 3 --Hero of the Sweep
160009041 3 --Samurai of the Wooden Sword
160009042 3 --Surge Vortex Dragoon
160009043 3 --Meteor Charge
160009044 3 --Meet and Greed
160009045 3 --Future Mining
160009046 3 --Sword Skill - Ruler's Slash
160009047 3 --Defense Destroying Sword
160009048 3 --Telegraphed Strike
160009049 3 --Sunny Forest
160009050 3 --Insect Rampage
160009051 3 --Intruding Beetles
160009052 3 --Excutie Up!
160009053 3 --Ghost Cyclone
160009054 3 --Strange Wall
160009055 3 --Ewekai - Grudges from the Grave
160009056 3 --Lucky Mask of Omens
160009057 3 --Card Reprinting
160009058 3 --Security Hole
160009059 3 --Demolisher Wyrm Roar
160009060 3 --Climax Clash
160009061 3 --Engage and Strike!
160009062 3 --Anciant Barrier
160009063 3 --Ignoring Insect
160009064 3 --Hunting Strawberries
160009065 3 --Crisis at the Sacred Tower
160010001 3 --Ewekai Aquasheep
160010002 3 --Ewekai Thunderlambda
160010003 3 --Ewekai Airaries
160010004 3 --Hyosube (Rush)
160010005 3 --Tutumes Dark Witch
160010006 3 --Heartless Hound Blaster Gundog
160010007 3 --Heartless Hound Blade Bulldosu
160010008 3 --Heartless Hound Striking Kai Ken Knuckle
160010009 3 --Heartless Hound Blaster Chaka Chow Chow
160010010 3 --Heartless Hound Apex Katana Danbiramatian
160010011 3 --Sannomiya Golden G Robo MK-III
160010012 3 --Alien 33
160010013 3 --The Three Warp-Granny Sisters
160010014 3 --Alien Count of the White Dwarf, St. Germain
160010015 3 --Ichtyosterguard
160010016 3 --Nekogal #2 (Rush)
160010018 3 --Cremation Dog Nitro
160010019 3 --Dynamo Might
160010020 3 --Chemicalize Salamander
160010021 3 --Parashroom Colony
160010022 3 --Burstray Gunman
160010023 3 --Star Trancer
160010024 3 --Ultra Violady
160010025 3 --Voidvelg Requiem
160010026 3 --Ewekai Waveschaf
160010027 3 --Infernal Kappa Diwet
160010029 3 --Nuvia the Wicked Mischief Maker
160010030 3 --Dian Keto the Cure Maiden
160010031 3 --Heartless Hound Thunder Emperor Drainu
160010032 3 --Heartless Hound Martial Master Shiba
160010033 3 --Beast Gear Sage Roller Stag
160010034 3 --Berry Fresh Happiness
160010035 3 --Delirium Papillon
160010036 3 --Splitter Slime
160010037 3 --Miginagi the Talismanic Warrior
160010038 3 --Rice Terrace Ripple
160010039 3 --Headhunters' Digmole
160010040 3 --Thunder Gazelle
160010041 3 --Man-Thro' Tro' (Rush)
160010042 3 --Abare Ushioni (Rush)
160010043 3 --Diabearical Lilith
160010044 3 --Splendid Floor Master
160010045 3 --Eclipse
160010046 3 --Melo Melo Meeeg☆Uuultra Beam
160010047 3 --Caught in the Rain
160010048 3 --Rainy Megalopolis
160010049 3 --Bubble Kingdom
160010050 3 --Woofderful Heartless Hound
160010051 3 --300 Light-Year Red Cloak
160010052 3 --Third Coming of the Reptilian Count
160010053 3 --Area 33
160010054 3 --Dolphin's Treasure Chest
160010055 3 --Strange Seas
160010056 3 --Yamata no Tsurugi
160010057 3 --Yokai Tiger Orient Strike
160010058 3 --Power Shock
160010059 3 --Paxcyclinder
160010060 3 --Kappa's River Flow
160010061 3 --Sunbathing Kappa
160010062 3 --Kappa's Gas
160010063 3 --The Three Moonlit Mystery Geckos
160010064 3 --Trap Lid
160010065 3 --Boost Rescue
160010101 3 --Blue Tooth Burst Dragon
160010102 3 --Kappa Emperor River Slider
160011001 3 --Police Scoop
160011002 3 --Arts Angel Guard Dolby
160011003 3 --Arts Angel Glyco Razer
160011004 3 --Arts Angel CD Fender
160011005 3 --Bean Soljersey
160011006 3 --Black Luster Soljersey
160011007 3 --Blanc de Blanc the Snow Shadow Flower
160011008 3 --Robbarim
160011009 3 --Ampler Glee
160011010 3 --Astrosoldier
160011011 3 --Galactica Tabula Rasa
160011012 3 --Alco the Flame Emperor of the Lamp
160011013 3 --Arts Angel Dia Needle
160011014 3 --Arts Angel Metal Position
160011015 3 --Penguin Soljersey
160011016 3 --Cannon Soljersey
160011017 3 --Black Luster Soljersey - Envoy of the Drying
160011018 3 --Iris the Rare Shadow Flower
160011019 3 --Alpiris the Sower
160011020 3 --Radrogue Mael
160011021 3 --Taiban Bluemai
160011022 3 --Bluegrass Stealer
160011023 3 --Heel Healer
160011024 3 --Prophecy Phrase of the Colors of the Wind
160011025 3 --Asport Pirate the Wind Crusher
160011026 3 --Bandijo of the Battle Ballad
160011027 3 --Beast Gear Side Fennec
160011028 3 --Shariel, the Novice Sushi Fairy
160011029 3 --Brain Harvester
160011030 3 --Seraph of Darkness
160011031 3 --Philan Dwarf
160011032 3 --Shadow Buyer
160011033 3 --Ghost Vicious
160011034 3 --Watchman of the Apocalypse
160011035 3 --Neo Plandish
160011036 3 --Salvage Wolfish
160011037 3 --Doushin Kaika the Shadow Flower Full Moon
160011038 3 --Javelin Dux the Shadow Flower Piercer
160011039 3 --Kuzuha the Talismanic Supreme Sage
160011040 3 --Galactica Xiphos
160011041 3 --Jointech Rushhorn
160011042 3 --QWERTY Keyblade
160011043 3 --Chemicalizer Red
160011044 3 --Voidvelg Tyrfing
160011045 3 --Auto Reverse
160011046 3 --Black Luster Jersey Ritual
160011047 3 --Preparation of Jersey Rites
160011048 3 --Shadow Flower Sewing
160011049 3 --Shadow Flower Duplication
160011050 3 --Road Arms - Sevens Lance
160011051 3 --Flame Arms - Fretberge
160011052 3 --Heavy Arms - Double Nexcalibur
160011053 3 --Sacred Arms - Strabishop
160011054 3 --JAM:P Check!
160011055 3 --Music Princess's Prelude
160011056 3 --Atrium's Wind
160011057 3 --Descent of the Sweeping Spirit
160011058 3 --Beast Swords - Tiger Sabre
160011059 3 --Armaments of Ascension
160011060 3 --Site Preview
160011061 3 --Indigo Prison
160011062 3 --Slash Halo
160011063 3 --Back Jersey
160011064 3 --Force of Thief
160011065 3 --Revenge MAX
160012001 3 --Chromatographagas
160012002 3 --Ray Dragon
160012003 3 --The Dragias
160012004 3 --Silver-Eyes Star Cat
160012005 3 --Golden-Eyes Star Cat
160012006 3 --Jointech Tinplatesaurus
160012007 3 --Red Riser
160012008 3 --Voidvelg Kataphraktos
160012009 3 --Voidvelg Black Dwarf
160012010 3 --Machvio of the Ultimate Aria
160012011 3 --Double-Doom Dragon
160012012 3 --The Clone
160012013 3 --Mirroring Wyvern
160012014 3 --Purple-Eyes Star Cat
160012015 3 --Green-Eyes Star Cat
160012016 3 --Cat Claw Girl
160012017 3 --Dark-Eyes Breakstar Cat
160012018 3 --Cyber Coatl
160012019 3 --Excutie Flame
160012020 3 --Soleil the Skysavior Angel
160012021 3 --Lua the Skysavior Angel
160012022 3 --Ranga the Skysavior Knight
160012023 3 --Seir the Skysavior Knight
160012024 3 --Ciela the Skysavior Knight
160012025 3 --Dunkes the Skysavior Knight
160012026 3 --Astrobio Drake
160012027 3 --Engine Reviver
160012028 3 --Gilford the Rising
160012029 3 --Gilford the Legend (Rush)
160012030 3 --Transamuroad Rainac
160012031 3 --Melel the Beautiful Flame Spirit of the Lamp
160012032 3 --Alchemicalize Salamandra
160012033 3 --Voidvelg Protostar
160012034 3 --Double Ray Dragons
160012035 3 --The Dragiastar
160012036 3 --Star Cat Straynya
160012037 3 --Star Cat Destronya
160012038 3 --Solcier the Skysavior Lightflash
160012039 3 --Altierra the Skysavior Transience
160012040 3 --Digrace the Skysavior Radiance
160012041 3 --Drukmoor the Skysavior Phantom
160012042 3 --Stemagic
160012043 3 --Cracking Claw
160012044 3 --Voidvelg Phalanx
160012045 3 --Road Arms - Sword Breaker
160012046 3 --The Copy
160012047 3 --Back to The Fusion
160012048 3 --Vice Slasher
160012049 3 --Meowonderful Rush
160012050 3 --Rising Luna Radiant Luster
160012051 3 --Blaze Fiend Assault
160012052 3 --Skysavior Prayer
160012053 3 --Skysavior Watch
160012054 3 --Skysavior Symbol
160012055 3 --Ring of Storms
160012056 3 --Transamu Lightning
160012057 3 --Jointech Great Wall
160012058 3 --Tribute Block
160012059 3 --Dark Nebula
160012060 3 --Dragon Double-Doom
160012061 3 --Stray Force
160012062 3 --Ether Escape
160012063 3 --Traditional Tax
160012064 3 --Buffered Slime
160012065 3 --Phantom Roar
160012066 3 --Multistrike Dragon Dragias
160013000 3 --Sevens Road Witch
160013001 3 --Earth Sorcerer
160013002 3 --Aero Sorcerer
160013003 3 --Galactica Deja Vu
160013004 3 --Booster Wyvern
160013005 3 --DBF Rebuildra
160013006 3 --Voidvelg Kyrie
160013007 3 --Voidvelg Logistikos
160013008 3 --Voidvelg Chrysaor
160013009 3 --Celeb Rose Mage
160013010 3 --Celeb Rose Sorcerer
160013011 3 --Celeb Rose Witch
160013012 3 --Celeb Rose Magician
160013013 3 --Magiarms Beast Gearpard
160013014 3 --Zuse the Wisdom Vassal
160013015 3 --Hebe the Star Vassal
160013016 3 --Wilhel the Wisdom Monarch
160013017 3 --Estrome the Star Monarch
160013018 3 --Wilhel the Mega Monarch
160013019 3 --Estrome the Mega Monarch
160013021 3 --Cyber Processor
160013022 3 --Star Replacer
160013023 3 --Don A. Corn of the Verdant Vast
160013024 3 --Braid Blade Reader
160013025 3 --Skyporter Max
160013026 3 --Devil Foolish
160013027 3 --Splame
160013028 3 --Elegant Aurum Avian
160013029 3 --Plaster Scout
160013030 3 --Mad Rare Aquila
160013031 3 --EXTRAplorer
160013032 3 --Summoning Sorcerer Doretheo
160013033 3 --Pureglass Spears
160013034 3 --Galactiara Fuse Eve
160013035 3 --Eternal Galactica Oblivion
160013036 3 --Tamabot Burst Dragon
160013037 3 --Blue Tooth Enhanced Burst Dragon
160013038 3 --Red Boot Enhanced Boost Dragon
160013039 3 --Voidvelg Theogonia
160013040 3 --Voidvelg Gigantomachia
160013041 3 --Celeb Rose Fabulous Magician
160013042 3 --Celeb Rose Luxury Magicians
160013043 3 --Sevens Chariot the Magical Knight
160013044 3 --Cyber Tactical Dragon
160013045 3 --Space Fusion - EXTRAplasmer
160013046 3 --Advance Impact
160013047 3 --Galactica Addergatling
160013048 3 --Dragon's Burst Fusion
160013049 3 --Dragon's Boost Fusion
160013050 3 --Voidvelg Gullinbursti
160013051 3 --Voidvelg Shroud
160013052 3 --Charis Magic - Elegant Change
160013053 3 --Charis Magic Scepter - Death Wand
160013054 3 --Sevens Wonder Fusion
160013055 3 --Magical Lance - Grace Spear
160013056 3 --Emperor Realm
160013057 3 --Protection of Arthenée
160013058 3 --Dead or Arainac
160013059 3 --Recombination Galactica
160013060 3 --Nobody Scat Thief
160013061 3 --Rose Chain Salvage
160013062 3 --Machinations of the Monarchs
160013063 3 --Nativity of the Monarchs
160013064 3 --Shared Sentiments
160013065 3 --Vortex of Shattered Light
160013066 3 --Rice Terrace Crisis
160013122 3 --Star Replacer
160013130 3 --Mad Rare Aquila
160013157 3 --Protection of Arthenée
160013166 3 --Rice Terrace Crisis
160014000 3 --Gaia The Fierce Knight (Rush)
160014001 3 --Worm Drake (Rush)
160014002 3 --Jointech Cobra
160014003 3 --Mega Jointech Fortrex [L]
160014004 3 --Mega Jointech Fortrex
160014005 3 --Mega Jointech Fortrex [R]
160014006 3 --Jointech Arc Scorpio
160014007 3 --Jointech Spike Centipede
160014008 3 --Jointech Hero
160014009 3 --Chemispet Nyanko
160014010 3 --Chemispet Wanko
160014011 3 --Melt the Aqueous Spirit
160014012 3 --Bolt the Conduction Spirit
160014013 3 --Hot the Combustion Spirit
160014014 3 --Hyper Assistant Achi
160014015 3 --Blazebolt Chemistorm Fenghuang Volcalize Phoenix [L]
160014016 3 --Blazebolt Chemistorm Fenghuang Volcalize Phoenix
160014017 3 --Blazebolt Chemistorm Fenghuang Volcalize Phoenix [R]
160014018 3 --Secret Investigator Miscast
160014019 3 --Secret Investigator Mistake
160014020 3 --Secret Investigator Mismatch
160014021 3 --Secret Investigator Mislead
160014022 3 --Elite Secret Investigator Mystery
160014023 3 --Abysslayer Leviaknight
160014024 3 --Abysskite Ange
160014025 3 --Abysskite Liem
160014026 3 --Abysskite Karen
160014027 3 --Constructor Driver Soldier Trailon
160014028 3 --Change Slime - Dragon Champion Mode
160014029 3 --Dragoncurse Magician
160014030 3 --Launcher Catapult Turtle
160014031 3 --Veteran Curse of Dragon
160014032 3 --Veteran Gaia the Fierce Knight
160014033 3 --Polygon Butterfly
160014034 3 --Negatwor Dragon
160014035 3 --Specter of Heaven's Beginning
160014036 3 --Steel Soldier Gale Vinary
160014037 3 --Rising Light Angel Essel
160014038 3 --Galacterial Ore
160014039 3 --Dino Skeleton Pushcera
160014040 3 --All-Seeing Harvey
160014041 3 --Landporter MAX
160014042 3 --Snake Princess of Purity
160014043 3 --Jointech Fighter
160014044 3 --Jointech Killer Stinger
160014045 3 --Jointech Burst Dragon
160014046 3 --Gaia the Battle Ruler
160014047 3 --Jointech Dig Up
160014048 3 --Volcalize Compound
160014049 3 --Chemicalize Structure Force
160014050 3 --Dark Hole Device
160014051 3 --Aura Buster
160014052 3 --Monster Convocation
160014053 3 --Dark Battle Grounds
160014054 3 --Gameboard Ablaze and Alight
160014055 3 --Cat-trois Choice
160014056 3 --Psymprinting
160014057 3 --Legend Strike
160014058 3 --Jointech Ignition
160014059 3 --Chemicalize Despise
160014060 3 --Secret File 33 - Noble Death of Resentment
160014061 3 --Intercepting Gaia
160014062 3 --Dragonic Escape
160014063 3 --Amusi Annoyance
160014064 3 --Excutie Riding!
160014066 3 --Automatic Accident Prevention
160014135 3 --Specter of Heaven's Beginning
160014136 3 --Steel Soldier Gale Vinary
160014137 3 --Rising Light Angel Essel
160014163 3 --Amusi Annoyance
160015000 3 --Esperade the Smashing Superstar
160015001 3 --Darkness Drake
160015002 3 --Surging-Wave Swordsman Yoshimitsu Shark
160015003 3 --Darkness Dwarf
160015004 3 --Darkness Transamu Craisis
160015005 3 --Striping Wyvern
160015006 3 --Flap Dragon
160015007 3 --Flip Dragon
160015008 3 --Celeb Rose Wiz
160015009 3 --Darkness Paparazzi
160015010 3 --Darkness Phantomite
160015011 3 --Demolition Soldier Ashiba Bikke
160015012 3 --Fiddlebadour
160015013 3 --Vibra Brigand
160015014 3 --Plandolin
160015015 3 --Star's Hand Camera Lady
160015016 3 --Surging-Wave Swordsman Tanegashima Tuna
160015017 3 --Hydro Gun Mini Bluefin
160015018 3 --Charge Remora
160015019 3 --Carrier Manta Ray
160015020 3 --Cyber Fish
160015021 3 --Cyber Shark (Rush)
160015022 3 --Surging-Wave Swordsman Onimaru Kunituna
160015023 3 --Infernal Kappa River Sprinter
160015024 3 --Meteorite Dragon's Chick
160015025 3 --Red-Eyes Moon Dragon
160015026 3 --Alligator's Black Knight
160015027 3 --Rocket Satellite Medic
160015028 3 --Meteor Drake
160015029 3 --Planting Pixie
160015030 3 --Pure Love Angel
160015031 3 --Owlchannel
160015032 3 --Dark Effigy (Rush)
160015033 3 --Dead End the Mad Fiend of Despair
160015034 3 --Glacies the Snowmeister of Sacred Splendor
160015035 3 --Darkness Doom Giant
160015036 3 --Darkness Galactica Oblivion
160015037 3 --Red Reboot Enhanced Boost Dragon
160015038 3 --Celeb Rose Gossip Witch
160015039 3 --Celeb Rose Gossip Magician
160015040 3 --Demolition Meltdown Dragon Darkness Blasthamut
160015041 3 --Bluegrass High Stealer
160015042 3 --Bandiva the Ballistic Battle Ballad
160015043 3 --Plectclive the Dynamauve Deadly Dirge
160015044 3 --Dark Hydro Cannon Neutron Bluefin
160015045 3 --Pitch-Dark Surging-Wave Swordsman Onimaru Kunituna
160015046 3 --Meteor Swarm Dragon
160015047 3 --Meteor Black Drake
160015048 3 --Meteor Black Mars Dragon
160015049 3 --Galflare the Skysavior Shine
160015050 3 --Dragonic Progress
160015051 3 --Psyquip Fusion
160015052 3 --Miracle Pick
160015053 3 --Autumn Leaves of Blisstopia
160015054 3 --Wave Fusion
160015055 3 --Raging Waves
160015057 3 --Meteor Flare Fusion
160015058 3 --Meteorite Dragon Nails
160015059 3 --Companions!
160015060 3 --Maid's Mischief
160015061 3 --Peace & Rock n' Roll
160015062 3 --Fish Depth Charge (Rush)
160015063 3 --Meteorite Fall
160015064 3 --Skysavior Wish
160015065 3 --Star Salvation Shield
160015066 3 --Fusion Cancel
160015121 3 --Cyber Shark (Rush)
160015130 3 --Pure Love Angel
160015160 3 --Maid's Mischief
160015166 3 --Fusion Cancel
160016000 3 --Black Skull Dragon (Rush)
160016001 3 --Praime Dwarf
160016002 3 --Praime Phantomite
160016003 3 --Interspraime
160016004 3 --Praime Claw Girl
160016005 3 --Praime Tractiger
160016006 3 --Praime Bandijo
160016007 3 --Praime Dian Keto
160016008 3 --Transamu Praime Armor Nova
160016009 3 --Dice Angel
160016010 3 --Dice Demon
160016011 3 --Dice Archswordsman
160016012 3 --Dice Archangel
160016013 3 --Dice Archdemon
160016014 3 --Dice Key Caramail
160016015 3 --Dice Key Minna
160016016 3 --Dicemite Girl Chirori
160016017 3 --Jointech Nesstrydar Tank
160016018 3 --Darkness Jointech Tyrant
160016019 3 --Electro-Lion Bande
160016020 3 --Steam Swallow Gem-zz
160016021 3 --Abysslayer Quintiamat
160016022 3 --Secret Investigator Misfire
160016023 3 --Secret Base Guardian Misshot
160016024 3 --Sevens Fear Magician
160016025 3 --CAN - St:D
160016026 3 --Jinzo #7.7
160016027 3 --Jinzo - Returner (Rush)
160016028 3 --Jinzo the Machine Menace (Rush)
160016029 3 --Jinzo - Amplified
160016030 3 --Catapult Baby Turtle
160016031 3 --Animagica Witch
160016032 3 --Obnoxious Celtic Guard (Rush)
160016035 3 --Mist Assassin
160016036 3 --Deity of Seven Treasures - Ryozai
160016037 3 --Praime Pierce Giant
160016038 3 --Praime Cat Straynya
160016039 3 --Transamu Praime Full Armor Nova
160016040 3 --Transamuvelg Rainac
160016041 3 --Jointech Tridynabase
160016042 3 --Super Graphagas Archer
160016043 3 --Prophecy Flail of the Colors of the Wind, Butterflies and Flowers
160016044 3 --Celeb Rose Influencers
160016045 3 --Murin Duke the Shadow Flower Wave
160016046 3 --Nelkrita the Skysavior Hadal
160016047 3 --Swift Gaia the Dragon Champion
160016048 3 --Praime Call
160016049 3 --Graceful Dice (Rush)
160016050 3 --Dice of Greed