-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtrinity.lflist.conf
1544 lines (1539 loc) · 44.5 KB
/
trinity.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
#[2024.11 Trinity]
!2024.11 Trinity
#forbidden
21848500 0
2463794 0
34909328 0
77313225 0
5380979 0
55154344 0
6798031 0
46247282 0
28803166 0
71222868 0
97453744 0
90590303 0
3828844 0
38229962 0
2772337 0
29301450 0
22850702 0
47172959 0
8540986 0
39552584 0
324483 0
70636044 0
44405066 0
34001672 0
90809975 0
96402918 0
86682165 0
14307929 0
12381100 0
83257450 0
19652159 0
51788412 0
46186135 0
82135803 0
83793721 0
6855503 0
27541563 0
18634367 0
50056656 0
92266279 0
83962752 0
65898344 0
51650038 0
99989863 0
71948047 0
39733924 0
5168381 0
98173209 0
61650133 0
16528181 0
65956182 0
16240772 0
53194323 0
65384188 0
41371602 0
15635751 0
36890111 0
79613121 0
4779091 0
53765052 0
66431519 0
2333466 0
92962242 0
48452496 0
72270339 0
90000652 0
41165831 0
83061014 0
65193366 0
32181268 0
62991792 0
57346400 0
93730409 0
1980574 0
90241276 0
90681088 0
25801745 0
53404966 0
24094258 0
71791814 0
33113958 0
8841431 0
46815301 0
74659582 0
69601012 0
77693536 0
89812483 0
83326048 0
31548814 0
66328392 0
31562086 0
37104630 0
73421698 0
9396662 0
87462901 0
80570228 0
15005145 0
88307361 0
13959634 0
62968263 0
59369430 0
28865322 0 --Aether, the Evil Empowering Dragon
1966438 0 --Abominable Unchained Soul
45154513 0 --Alghoul Mazera
89538537 0 --Altergeist Silquitous
62962630 0 --Aluber the Jester of Despia
82791472 0 --Ancient Warriors - Rebellious Lu Feng
75730490 0 --Ariane the Labrynth Servant
64591429 0 --Astral Kuriboh
9929398 0 --Blackwing - Gofu the Vague Shadow
30576089 0 --Blue-Eyes Jet Dragon
33854624 0 --Bystial Magnamhut
15341821 0 --Dandylion
51993760 0 --Dark Spirit of Banishment
82385847 0 --Dinowrestler Pankratops
82103466 0 --Divine Serpent Geh
95679145 0 --Dogmatika Maximus
39185163 0 --Doomking Balerdroch
95440946 0 --Eldlich the Golden Lord
95440947 0 --Eldlich the Golden Lord
14124483 0 --Elemental HERO Honest Neos
13256226 0 --Elemental HERO Spirit of Neos
3611830 0 --Endymion, the Mighty Master of Magic
86937530 0 --Fairy Tail - Luna
55623480 0 --Fairy Tail - Snow
68468459 0 --Fallen of Albaz
54334420 0 --Floowandereeze & Eglen
71197066 0 --Gizmek Orochi, the Serpentron Sky Slasher
18377261 0 --Ha-Re the Sword Mikanko
6327734 0 --Hu-Li the Jewel Mikanko
56347375 0 --Ignis Phoenix, the Dracoslayer
22091647 0 --Immortal Phoenix Gearfried
58346901 0 --Infernoble Knight Oliver
81570454 0 --Infernoble Knight - Roland
32909498 0 --Kashtira Fenrir
68304193 0 --Kashtira Unicorn
48745395 0 --Labrynth Archfiend
81497285 0 --Lady Labrynth of the Silver Castle
9822220 0 --Lord of the Heavenly Prison
2347656 0 --Lovely Labrynth of the Silver Castle
87074380 0 --Machina Citadel
34206604 0 --Magical Scientist
28692962 0 --Mekk-Knight Purple Nightfall
98416533 0 --Melffy Wally
28954097 0 --Mirror Swordknight
29587993 0 --Mist Valley Apex Avian
27354732 0 --Mythical Beast Jackal King
8200556 0 --Myutant ST-46
54862960 0 --Ni-Ni the Mirror Mikanko
47120245 0 --Noble Knight Borz
44009443 0 --Orbital Hydralander --Performapal Monkeyboard
41443249 0 --Rescue-ACE Preventer
37495766 0 --Rescue-ACE Turbulence
11845050 0 --Right-Hand Shark
13533678 0 --Spright Jet
35699 0 --SPYRAL Sleeper
61257789 0 --Stardust Dragon/Assault Mode
16428514 0 --Subterror Guru
56495147 0 --Swordsoul of Taia
37961969 0 --Tearlaments Havnis
74078255 0 --Tearlaments Merrli
572850 0 --Tearlaments Scheiren
10604644 0 --Therion "King" Regulus
21727231 0 --Therion "Reaper" Fum
18940556 0 --Ultimate Conductor Tyranno
91073013 0 --Vanquish Soul Caesar Valius
92895501 0 --Vanquish Soul Heavy Borger
31772684 0 --Vendread Revenants
27780618 0 --Vision HERO Vyon
21522601 0 --Witchcrafter Madame Verre
86066372 0 --Accesscode Talker
65711558 0 --Ancient Warriors Oath - Double Dragon Lords
36320744 0 --Angelica, Princess of Noble Arms
34755994 0 --Artemis, the Magistus Moon Maiden
64276752 0 --Arc Rebellion Xyz Dragon
79656239 0 --Aromaseraphy Sweet Marjoram
88890658 0 --Baelgrill de Nouvelles
440556 0 --Bahamut Shark
84815190 0 --Baronne de Fleur
11443677 0 --Blue-Eyes Tyrant Dragon
98630720 0 --Borrelend Dragon
50588353 0 --Crystron Halqifibrax
37542782 0 --Cyberdark End Dragon
61245672 0 --Decode Talker Heatsoul
60461804 0 --Destiny HERO - Destroyer Phoenix Enforcer
46593546 0 --D/D/D Deviser King Deus Machinex
15939229 0 --D/D/D Duo-Dawn King Kali Yuga
90448279 0 --Divine Arsenal AA-ZEUS - Sky Thunder
94977269 0 --El Shaddoll Winda
94977270 0 --El Shaddoll Winda
56733747 0 --Elemental HERO Shining Neos Wingman
86165817 0 --Evil HERO Malicious Bane
83827392 0 --Expurrely Noir --Fossil Dragon Skullgios
30741503 0 --Galatea, the Orcust Automaton
72309040 0 --Ghoti of the Deep Beyond
11132674 0 --Gigantic "Champion" Sargas
49161188 0 --Gilti-Gearfried the Magical Steel Knight
28497830 0 --Gold Pride - Pin Baller
11516241 0 --Gouki The Powerload Ogre
24915933 0 --Granguignol the Dusk Dragon
11321089 0 --Guardian Chimera
24361622 0 --Hieratic Seal of the Heavenly Spheres
41232647 0 --House Dragonmaid
41232648 0 --House Dragonmaid
77656797 0 --Infernoble Knight Emperor Charles
59934749 0 --Isolde, Two Tales of the Noble Knights
48626373 0 --Kashtira Arise-Heart
73542331 0 --Kashtira Shangri-Ira
74615388 0 --Laevatein, Generaider Boss of Shadows
69522668 0 --Magikey Fiend - Transfurlmine
99628747 0 --Megalith Bethor
11825276 0 --Meizen the Battle Ninja
44146295 0 --Mirrorjade the Iceblade Dragon
67557908 0 --Number 4: Stealth Kragen
54719828 0 --Number 16: Shock Master
8387138 0 --Number 27: Dreadnought Dreadnoid
62517849 0 --Number 39: Utopia Double
57314798 0 --Number 100: Numeron Dragon
53262004 0 --Odd-Eyes Vortex Dragon
63265554 0 --Power Tool Braver Dragon
69946549 0 --Predaplant Dragostapelia
42932862 0 --Prediction Princess Tarotreith
86346643 0 --Rainbow Neos
59120809 0 --Scareclaw Tri-Heart
27381364 0 --Spright Elf
43387895 0 --Supreme King Dragon Starving Venom
69248256 0 --Swordsoul Grandmaster - Chixiao
96633955 0 --Swordsoul Supreme Sovereign - Chengying
18326736 0 --Tellarknight Ptolemaeus
15291624 0 --Thunder Dragon Colossus
41685633 0 --Thunder Dragon Titan
55285840 0 --Time Thief Redoer
94130731 0 --Transcendosaurus Glaciasaurus
6511113 0 --Traptrix Rafflesia
73639099 0 --Traptrix Sera
99726621 0 --Tri-Brigade Shuraig the Ominous Omen
29479265 0 --Unchained Abomination --Unchained Soul of Rage
65815684 0 --Vicious Astraloud
40352445 0 --White Knight of Dogmatika
9603252 0 --Witchcrafter Vice-Madame
48905153 0 --Zoodiac Drident
14220547 0 --Branded in Central Dogmatika
34090915 0 --Branded Regained
17375316 0 --Confiscation
75190122 0 --Dark Burning Magic
70485614 0 --Decisive Battle of Golgonda
44763025 0 --Delinquent Duo
35569555 0 --Dogmatikamatrix
44133040 0 --Evil Eye of Selene
39568067 0 --Fateful Adventure
39730727 0 --Flawless Perfection of the Tenyi
52947044 0 --Fusion Destiny
38053381 0 --Generaider Boss Stage
58012707 0 --Giant Ballpark
79571449 0 --Graceful Charity
18144506 0 --Harpie's Feather Duster
18144507 0 --Harpie's Feather Duster
74063034 0 --Invocation
74063035 0 --Invocation
33407125 0 --Labrynth Labyrinth
69895264 0 --Labrynth Set-Up --Lair of Darkness --Lost World
22398665 0 --Meteonis Drytron
1984618 0 --Nadir Servant
14088859 0 --Neos Fusion
25807544 0 --Noble Arms Museum
95545183 0 --Ninjitsu Art Notebook of Mystery
74191942 0 --Painful Choice
49370016 0 --P.U.N.K. JAM Extreme Session
76869711 0 --Rikka Konkon
96661780 0 --Riryoku Guardian
92107604 0 --Runick Fountain
63789924 0 --Smoke Grenade of the Thief
45986603 0 --Snatch Steal
98338152 0 --Sky Striker Mecha - Widow Anchor
63166095 0 --Sky Striker Mobilize - Engage!
63166096 0 --Sky Striker Mobilize - Engage!
44394295 0 --Shaddoll Fusion
46448938 0 --Spellbook of Judgment
86449372 0 --TA.I. Strike
6589707 0 --Terrors in the Hidden City
11110587 0 --That Grass Looks Greener
42829885 0 --The Forceful Sentry
18720257 0 --The Weather Forecast
84792926 0 --Therion Discolosseum
6763530 0 --Branded Banishment
32756828 0 --Branded Beast
37209439 0 --Dark Contract with Errors
9765723 0 --Dark Contract with the Witch
82956214 0 --Dogmatika Punishment
57416183 0 --Dragonmaid Tidying
82162616 0 --Eternal Galaxy
15693423 0 --Evenly Matched
74100225 0 --Evo-Singularity
17484499 0 --Exchange of the Spirit
197042 0 --Exosister Returnia
32785578 0 --Farewelcome Labrynth
87639778 0 --Harpie's Feather Storm
44889144 0 --Libromancer Intervention --Mathmech Induction
69711728 0 --Metalfoes Combination
33327029 0 --Metalfoes Counter
57831349 0 --Nine Pillars of Yang Zing
68038375 0 --Ninjitsu Art of Dancing Leaves
25542642 0 --Phantom Knights' Fog Blade
5376159 0 --Red Reign
95245571 0 --Scareclaw Twinsaw
21011044 0 --Shaddoll Schism
3280747 0 --Sixth Sense
92428405 0 --Soul of the Supreme King
1344018 0 --Time Pendulumgraph
21076084 0 --Trickstar Reincarnation
53330789 0 --Vanquish Soul Trinity Burst
30650147 0 --Vendread Reorigin
10813327 0 --Waking the Dragon
36458063 0 --Witch's Strike
35561352 0 --Zefra Divine Strike
33300669 0 --Amorphage Envy
34522216 0 --Amorphage Gluttony
69072185 0 --Amorphage Goliath
7305060 0 --Amorphage Greed
70917315 0 --Amorphage Lechery
6283472 0 --Amorphage Pride
79794767 0 --Amorphage Wrath
32687071 0 --Amorphage Sloth
56784842 0 --Angel O7
58844135 0 --Antihuman Intelligence ME-PSY-YA
59509952 0 --Archlord Kristya
33212663 0 --Archnemeses Eschatos
6728559 0 --Archnemeses Protos
40502912 0 --Aria the Melodious Diva
40061558 0 --Apoqliphort Skybase
27279764 0 --Apoqliphort Towers
84478195 0 --Barrier Statue of the Abyss
19740112 0 --Barrier Statue of the Drought
46145256 0 --Barrier Statue of the Heavens
47961808 0 --Barrier Statue of the Inferno
73356503 0 --Barrier Statue of the Stormwinds
10963799 0 --Barrier Statue of the Torrent
31615285 0 --Cactus Bouncer
2980764 0 --Consecrated Light
97940434 0 --Chaos Hunter
11366199 0 --Dark Simorgh
13974207 0 --Denko Sekka
62587693 0 --Deus X-Krawler
3549275 0 --Dice Jar
76218313 0 --Dragon Buster Destruction Sword
8903700 0 --Djinn Releaser of Rituals
65403020 0 --The End of Anubis
33396948 0 --Exodia the Forbidden One
93449450 0 --F.A. Hang On Mach
78706415 0 --Fiber Jar
6614221 0 --Fog King
42009836 0 --Fossil Dyna Pachycephalo
34137269 0 --Hailon, the Timelord
15397015 0 --Inspector Boarder
77585513 0 --Jinzo
77585514 0 --Jinzo
41855169 0 --Jowgen the Spiritualist
12435193 0 --Koa'ki Meiru Drago
23931679 0 --Ocean Dragon Lord - Kairyu-Shin
31178212 0 --Majespecter Unicorn - Kirin
33746252 0 --Majesty's Fiend
21377582 0 --Master Peace, the True Dracoslaying King
22512237 0 --Mechanical Hound
57761191 0 --Metaltron XII, the True Dracombatant
7733560 0 --Michion, the Timelord
20174189 0 --Naturia Bamboo Shoot
93454062 0 --Naturia Mole Cricket
33015627 0 --Sandaion, the Timelord
74841885 0 --Sky Scourge Invicil
84636823 0 --Spell Canceller
58604027 0 --The Legendary Exodia Incarnate
71564252 0 --Thunder King Rai-Oh
47084486 0 --Vanity's Fiend
72634965 0 --Vanity's Ruler
44910027 0 --Victory Dragon
2602411 0 --Wizard Buster Destruction Sword
55787576 0 --World Legacy - "World Shield"
97466438 0 --Zany Zebra
86240887 0 --Buster Blader, the Dragon Destroyer Swordsman
54082269 0 --Blackwing Full Armor Master
49202162 0 --Black Luster Soldier - Soldier of Chaos
43228023 0 --Blue-Eyes Alternative Ultimate Dragon
20654247 0 --Blue-Eyes Chaos Dragon
55410871 0 --Blue-Eyes Chaos MAX Dragon
82315403 0 --Cyber Eternity Dragon
92798873 0 --Dinomorphia Rexterm
91279700 0 --Evilswarm Ophion
24882256 0 --Fire Phoenix @Ignister
42632209 0 --Geomathmech Final Sigma
47946130 0 --Gouki The Giant Ogre
44665365 0 --Herald of Perfection
48546368 0 --Herald of Ultimateness
24550676 0 --Lunalight Leo Dancer
58481572 0 --Masked HERO Dark Law
21887175 0 --Mekk-Knight Crusadia Avramax
38502358 0 --Mekk-Knight Spectrum Supreme
33198837 0 --Naturia Beast
99916754 0 --Naturia Exterio
87054946 0 --Nephthys, the Sacred Flame
49032236 0 --Number 81: Superdreadnought Rail Cannon Super Dora
63504681 0 --Number 86: Heroic Champion - Rhongomyniad
26973555 0 --Number F0: Utopic Draco Future
52653092 0 --Number S0: Utopic ZEXAL
49820233 0 --Performapal Gatlinghoul
65029288 0 --Performapal Odd-Eyes Metal Claw
60465049 0 --Psychic End Punisher
43047672 0 --Raidraptor - Final Fortress Falcon
86221741 0 --Raidraptor - Ultimate Falcon
37818794 0 --Red-Eyes Dark Dragoon
11738489 0 --The Arrival Cyberse @Ignister
4167084 0 --The First Darklord
86099788 0 --The Last Warrior from Another Planet
67508932 0 --Timelord Progenitor Vorpgate
88581108 0 --True King of All Calamities
68679595 0 --Ultimate Leo Utopia Ray
43575579 0 --Afterglow
91623717 0 --Chain Strike
81674782 0 --Dimensional Fissure
84171830 0 --Domain of the True Monarchs
60514625 0 --Ecole de Zone
95308449 0 --Final Countdown
83670388 0 --Icejade Curse
35059553 0 --Kaiser Colosseum
76375976 0 --Mystic Mine
47355498 0 --Necrovalley
95561280 0 --Poisonous Winds
19844995 0 --Power Filter
68462976 0 --Secret Village of the Spellcasters
16165939 0 --Supernatural Danger Zone
18895832 0 --System Down
81613061 0 --War Rock Medium
4064256 0 --Zombie World
58921041 0 --Anti-Spell Fragrance
96699830 0 --Born from Draconis
36468556 0 --Ceasefire
35027493 0 --Deck Devastation Virus
46480475 0 --Discord
16278116 0 --Dragon's Bind
54974237 0 --Eradicator Epidemic Virus
4931121 0 --Full Force Virus
53334471 0 --Gozen Match
83266092 0 --Grave of the Super Ancient Organism
30459350 0 --Imperial Iron Wall
61740673 0 --Imperial Order
24068492 0 --Just Desserts
28566710 0 --Last Turn
24348804 0 --Lose 1 Turn
53341729 0 --Light-Imprisoning Mirror
30241314 0 --Macro Cosmos
32723153 0 --Magical Explosion
29549364 0 --Mask of Restrict
59305593 0 --Mistake
27581098 0 --Non-Fusion Area
67234805 0 --Powersink Stone
90846359 0 --Rivalry of Warlords
33950246 0 --Royal Command
51452091 0 --Royal Decree
93016201 0 --Royal Oppression
26586849 0 --Royal Prison
27053506 0 --Secret Barrel
18252559 0 --Secret Blast
57585212 0 --Self-Destruct Button
99735427 0 --Shadow-Imprisoning Mirror
82732705 0 --Skill Drain
73599290 0 --Soul Drain
65107325 0 --Sour Scheduling - Red Vinegar Vamoose
81489939 0 --Stygian Dirge
48716527 0 --The Monarchs Erupt
24207889 0 --There Can Be Only One
55271628 0 --Tyrant's Throes
76721030 0 --Tyrant's Tirade
48357738 0 --Tyrant's Tummyache
69452756 0 --Unending Nightmare
5851097 0 --Vanity's Emptiness
#limited
97223101 1
27868563 1
93039339 1
34876719 1
84433295 1
28143384 1
26334139 1
82105704 1
23557835 1
35371948 1
73304257 1
72656408 1
71768839 1
35622739 1
65734501 1
82041999 1
96305350 1
52126602 1
25131968 1
93018428 1
69750546 1
23434538 1
31699677 1
62318994 1
93717133 1 --Succumbing-Song Morganite
81756619 1 --Alpha, the Master of Beasts
25533642 1 --Altergeist Meluseek --Amazement Administrator Arlekino --Ancient Warriors - Masterful Sun Mou
72989439 1 --Black Luster Soldier - Envoy of the Beginning --Blackwing - Sharnga the Waning Moon
6637331 1 --Bystial Druiswurm
63845230 1 --Eater of Millions
39078434 1 --Infinite Antlion --Kozmo Dark Destroyer
46033517 1 --Machina Ruinforce --Sauge de Fleur --The Iris Swordsoul
91812341 1 --Traptrix Myrmeleo
9464441 1 --Adamancipator Risen - Dragite
3410461 1 --Alba-Lenatus the Abyss Dragon
27548199 1 --Borreload Savage Dragon --Borrelsword Dragon
85289966 1 --Borrelsword Dragon
79229522 1 --Chimeratech Fortress Dragon
5041348 1 --Draco Berserker of the Tenyi --Egyptian God Slime
46772449 1 --Evilswarm Exciton Knight
65741786 1 --I:P Masquerena
65741787 1 --I:P Masquerena --Ohime the Manifested Mikanko --Springans Merrymaker
83152482 1 --Union Carrier
7394770 1 --Brilliant Fusion
59750328 1 --Card of Demise
53129443 1 --Dark Hole
19613556 1 --Heavy Storm
34773082 1 --Frightfur Patchwork
42703248 1 --Giant Trunade
37478723 1 --"Infernoble Arms - Durendal" --Joker's Straight
85602018 1 --Last Will
1845204 1 --Instant Fusion
37520316 1 --Mind Control
53208660 1 --Pendulum Call
49238328 1 --Pot of Extravagance
73915051 1 --Scapegoat --Soul Charge
48130397 1 --Super Polymerization
73628505 1 --Terraforming
70508653 1 --Tool Box
48800175 1 --The Melody of Awakening Dragon
19403423 1 --Time-Tearing Morganite --Archfiend's Ghastly Glitch
92714517 1 --Big Welcome Labrynth
36975314 1 --Crackdown
9070454 1 --Draco-Utopian Aura
23924608 1 --Heavy Storm Duster
95602345 1 --Kairyu-Shin's Dark Reef
18158393 1 --Mannadium Reframing --Return from the Different Dimension
4333086 1 --Shiranui Style Swallow's Slash
41420027 1 --Solemn Judgment
40605147 1 --Solemn Strike
67037924 1 --Titanocider
53582587 1 --Torrential Tribute
64697231 1 --Trap Dustshoot
70825459 1 --Trap Tracks
80101899 1 --Trap Trick
87800375 1 --Until Noble Arms are Needed Once Again
#semi-limited
21225115 2
33787730 2
67680512 1
65910922 1
72578374 1
14393464 1
62995268 1
56506740 1
63136489 1
92501449 1
17228908 1
86809440 1
97639441 1
1528054 2
65892585 2
80453041 2
92892239 2
45716579 2
17330916 2
30336082 2
59160188 2
59829423 2
90829280 2
27134209 2
70155677 2
1225009 2 --Arianna the Labrynth Servant
55878038 2 --Chaos Dragon Levianeer
55878039 2 --Chaos Dragon Levianeer
4538826 2 --Chaos Emperor, the Dragon of Armageddon
87988305 2 --Dark Spirit of Malice
50383626 2 --Darkest Diabolos, Lord of the Lair --Joruri-P.U.N.K. Madame Spider
63542003 2 --Keldo the Sacred Protector --Iron Dragon Tiamaton --Magikuriboh
99937011 2 --Mudora the Sword Oracle
40318957 2 --Performapal Skullcrobat Joker
1855886 2 --Scar of the Vendread --Unchained Soul of Sharvara
31374201 2 --Whitebeard, the Plunder Patroll Helm
71074418 2 --Witchcrafter Golem Aruru --Artifact Dagda
22125101 2 --Beyond the Pendulum --Chaos Angel
3040496 2 --Chaos Ruler, the Chaotic Magical Dragon --Grapha, Dragon Overlord of Dark World --Heavymetalfoes Electrumite --Heroic Champion - Claivesolish --Icejade Gymir Aegirine --N.As.H. Knight --Number 41: Bagooska the Terribly Tired Tapir
90590304 2 --Number 41: Bagooska the Terribly Tired Tapir --Quintet Magician
47710198 2 --Swordsoul Sinister Sovereign - Qixing Longyuan --Toadally Awesome
92519087 2 --Virtual World Kyubi - Shenshen --Visas Amritara
4031928 2 --Change of Heart
60682203 2 --Cold Wave --Dimension Fusion --Dragonic Diagram
14532163 2 --Lightning Storm
55144522 2 --Pot of Greed
84211599 2 --Pot of Prosperity
12580477 2 --Raigeki --Rite of Aramesir --Trickstar Light Stage --Altergeist Protocol
34047456 2 --Gigantic Thundercross
20899496 2 --Ice Dragon's Prison
74003290 2 --Lost Wind
#unlimited
11590299 3
86988864 3 --3-Hump Lacooda
31557782 3 --Ancient Gear
78447174 3 --Appliancer Socketroll
72714226 3 --Assault Dog
55705473 3 --Baobaboon
63142001 3 --Batteryman AA
47346845 3 --Batteryman AAA
19733961 3 --Batteryman C
65899613 3 --Battlewasp - Pin the Bullseye
46924949 3 --Beatraptor
2656842 3 --Beetrooper Scout Buggy
79636594 3 --Block Spider
6104968 3 --Bubonic Vermin
47346782 3 --Centerfrog
88190453 3 --Chain Thrasher
8662794 3 --Codebreaker Zero Day
64268668 3 --Cyber Ogre
35050257 3 --Cyber Larva
99357565 3 --D Cubed
79279397 3 --D-Boyz
29116732 3 --Daybreaker
84451804 3 --Des Frog
9411399 3 --Destiny HERO - Malicious
29996433 3 --Dinowrestler Capoeiraptor
15595052 3 --Disciple of the Forbidden Spell
10032958 3 --Divine Dragon - Excelion
32975247 3 --Divine Dragon Titanomakhia
3493978 3 --Don Turtle
43017476 3 --Duoterion
61173621 3 --Edge Imp Chain
85431040 3 --Evil Thorn
68226653 3 --Flamvell Dragnov
6142488 3 --Fluffal Mouse
25273572 3 --G Golem Pebble Dog
65758454 3 --Ganbara Lancer
95178994 3 --Giant Germ
55204071 3 --Gimmick Puppet Nightmare
90764875 3 --Gorgonic Ghoul
41249545 3 --Grass Phantom
60316373 3 --Heraldic Beast Aberconway
32679370 3 --Hero Kid
89774530 3 --Heroic Challenger - Double Lance
22587018 3 --Hydrogeddon
22873798 3 --Hyena
49080532 3 --Infernity Beetle
36021814 3 --King of the Skull Servants
40817915 3 --Kurivolt
14255590 3 --Malice Ascendant
17272964 3 --Mannadium Fearless
44760562 3 --Mannadium Meek
93749093 3 --Marshmacaron
10110717 3 --Mecha Bunny
60668166 3 --Naturia Cherries
46384403 3 --Nimble Manta
22567609 3 --Nimble Momonga
57844634 3 --Nimble Musasabi
2843014 3 --Nimble Sunfish
79663524 3 --Oily Cicada
71278040 3 --Parallel eXceed
52624755 3 --Peten the Dark Clown
13492423 3 --Photon Caesar
80495985 3 --Photon Sabre Tiger
8175346 3 --Poki Draco
74875003 3 --Ra's Disciple
70856343 3 --Radiant Vouirescence
5929801 3 --Raidraptor - Fuzzy Lanius
10028593 3 --Reborn Tengu
15653824 3 --Skull Knight #2
84650463 3 --Slushy
27877771 3 --Sniffer Dragon
44717069 3 --Starfish
10456559 3 --T.A.D.P.O.L.E.
31786629 3 --Thunder Dragon
56713174 3 --Thunder Dragondark
20318029 3 --Thunder Dragonmatrix
1826676 3 --Toy Knight
58132856 3 --Toy Magician
55013285 3 --Troop Dragon --Volcanic Scattershot
33365932 3 --Volcanic Shell
22339232 3 --Wightmare
86559484 3 --Xyz-Raypierce
78872731 3 --Zoodiac Ratpier
16313112 3 --Salamangreat Emerald Eagle
9608555 3 --Salamangreat Blaze Dragon
31313405 3 --Salamangreat Pyro Phoenix
37261776 3 --Salamangreat Violet Chimera
58901502 3 --Goyo Defender
53389254 3 --Assault Blackwing - Sohaya the Rain Storm
41463181 3 --Salamangreat Heatleo
41463182 3 --Salamangreat Heatleo
87871125 3 --Salamangreat Sunlight Wolf
67048711 3 --7
52518793 3 --Colosseum - Cage of the Gladiator Beasts
9547962 3 --Euler's Circuit
38532954 3 --F.A. Pit Stop
32887445 3 --Flourishing Frolic
7512044 3 --Gather Your Mind
81171949 3 --Jackpot 7
48356796 3 --Mystical Cards of Light
63053267 3 --Nagel's Protection --Purrely Happy Memory
80831721 3 --Sabatiel - The Philosopher's Stone
38943357 3 --Spell Power Mastery
75014062 3 --Spell Power Grasp
63689843 3 --Attack and Receive
81782376 3 --Dig of Destiny
9744376 3 --Good Goblin Housekeeping
2130625 3 --Numinous Healer
8608979 3 --Super Team Buddy Force Unite!
76812113 3 --Harpie Lady
80316585 3 --Cyber Harpie Lady
91932350 3 --Harpie Lady 1
27927359 3 --Harpie Lady 2
54415063 3 --Harpie Lady 3
17955766 3 --Neo-Spacian Aqua Dolphin
17732278 3 --Neo-Spacian Glow Moss
78734254 3 --Neo-Spacian Marine Dolphin
13857930 3 --Neo-Spacian Twinkle Moss
56840427 3 --Number C39: Utopia Ray
75402014 3 --Ultimate Dragonic Utopia Ray
22702055 3 --Umi
295517 3 --A Legendary Ocean
34103656 3 --Lemuria, the Forgotten City
26534688 3 --Magellanica, the Deep Sea City
2819435 3 --Pacifis, the Phantasm City
24094653 3 --Polymerization
27847700 3 --Polymerization
74335036 3 --Fusion Substitute
32864 3 --The 13th Grave
487395 3 --Water Spirit
549481 3 --Prevent Rat
732302 3 --Temple of Skulls
756652 3 --Doron
1184620 3 --Kojikocy
1641882 3 --Fusionist
1761063 3 --Nekogal #1
1784619 3 --Uraby
1929294 3 --Key Mace
2118022 3 --Hyosube
2311603 3 --Overdrive
2468169 3 --Sealmaster Meisei
2483611 3 --Water Omotics
2504891 3 --Skull Knight
2830619 3 --Flame Viper
2863439 3 --Fiend Reflection #2
2906250 3 --Grappler
2957055 3 --Wicked Dragon with the Ersatz Head
2964201 3 --Ryu-Ran
2971090 3 --Orion the Battle King
3134241 3 --Flying Kamakiri #2
3170832 3 --Takuhee
3544583 3 --Allvain the Essence of Vanity
3557275 3 --White Duston
3573512 3 --Swordsman of Landstar
3606209 3 --One Who Hunts Souls
3627449 3 --Skull Guardian
3732747 3 --Water Element
3797883 3 --Slot Machine
3985011 3 --Lucky Trinket
4035199 3 --Shapesnatch
4042268 3 --Island Turtle
4148264 3 --Shiny Black "C" Squadder
4179849 3 --Queen of Autumn Leaves
4392470 3 --Leo Wizard
4849037 3 --Performance of Sword
4920010 3 --Souls of the Forgotten
4931562 3 --Mountain Warrior
5053103 3 --Battle Ox
5265750 3 --Skull Mariner
5368615 3 --Steam Gyroid
5388481 3 --Darkfire Soldier #1
5402805 3 --Berserker of the Tenyi
5405694 3 --Black Luster Soldier
5434080 3 --Headless Knight
5464695 3 --Blazing Inpachi
5600127 3 --Humanoid Worm Drake
5628232 3 --Flying Penguin
5818798 3 --Gazelle the King of Mythical Beasts
6103114 3 --Beaked Snake
6297941 3 --Burglar
6367785 3 --Eldeen
6368038 3 --Gaia The Fierce Knight
6368039 3 --Gaia The Fierce Knight
6400512 3 --Cyber Commander
6631034 3 --Frostosaurus
6740720 3 --Seiyaryu
6840573 3 --Barox
7225792 3 --Mon Larvas
7359741 3 --Mechanicalchaser
7459013 3 --Zure, Knight of Dark World
7526150 3 --Golgoil
7562372 3 --Megasonic Eye
7670542 3 --Bio Plant
7805359 3 --Niwatori
7892180 3 --Psychic Kappa
7902349 3 --Left Arm of the Forbidden One
8058240 3 --Binding Chain
8124921 3 --Right Leg of the Forbidden One
8327462 3 --Skullbird
8353769 3 --Air Eater
8471389 3 --Giga-Tech Wolf
8508055 3 --Chu-Ske the Mouse Fighter
8692301 3 --Gem-Knight Zirconia
8715625 3 --Bokoichi the Freightening Car
8783685 3 --Hourglass of Life
8944575 3 --The Drdek
9053187 3 --Gagagigo the Risen
9159938 3 --Dark Gray
9197735 3 --Dragon Statue
9293977 3 --Metal Dragon
9430387 3 --LaLa Li-oon
9540040 3 --Boulder Tortoise
9653271 3 --Kaminari Attack
10071456 3 --Protector of the Throne
10202894 3 --Skull Red Bird
10262698 3 --The Statue of Easter Island
10315429 3 --Yaiba Robo
10476868 3 --Barrel Rock
10538007 3 --Leogun
10598400 3 --Zarigun
10859908 3 --Holograh
10992251 3 --Gradius
11012154 3 --Guardragon Justicia
11066358 3 --Galaxy Serpent
11091375 3 --Luster Dragon
11250655 3 --Emperor of the Land and Sea
11321183 3 --Dark Blade
11549357 3 --Gamma The Magnet Warrior
11714098 3 --30,000-Year White Turtle
11761845 3 --Beast of Talwar
11793047 3 --Gorgon Egg
11813953 3 --Great Angus
11901678 3 --Black Skull Dragon
11987744 3 --Nin-Ken Dog
12057781 3 --Goblin Calligrapher
12143771 3 --People Running About
12146024 3 --Bolt Escargot
12436646 3 --Aqua Snake
12482652 3 --Ojama Green
12493482 3 --Dunames Dark Witch
12829151 3 --Kanan the Swordmistress
12883044 3 --Flame Dancer
13039848 3 --Giant Soldier of Stone
13069066 3 --Sword Arm of Dragon
13140300 3 --Hieratic Seal of the Sun Dragon Overlord
13179332 3 --Charcoal Inpachi
13193642 3 --Dark Plant
13429800 3 --Great White
13676474 3 --Grand Tiki Elder
13723605 3 --Man-Eating Treasure Chest
14015067 3 --Ancient One of the Deep Forest
14037717 3 --Spirit of the Books
14181608 3 --Mushroom Man
14214060 3 --Trance the Magic Swordsman
14531242 3 --Opticlops
14575467 3 --Zombino
14708569 3 --Arlownay
14851496 3 --Jellyfish
14898066 3 --Vorse Raider
14898067 3 --Vorse Raider
14977074 3 --Garoozis
15023985 3 --Stone Ogre Grotto
15025844 3 --Mystical Elf
15042735 3 --Hurricail
15150371 3 --Archfiend Mirror
15237615 3 --Empress Judge
15303296 3 --Ryu-Kishin
15367030 3 --Gokibore
15401633 3 --Kagemusha of the Blue Flame
15480588 3 --Armored Lizard
15507080 3 --Sectarian of Secrets
15510988 3 --Thunder Kid
15734813 3 --Soul Tiger
15820147 3 --Monsturtle
16246527 3 --Armored Rat
16353197 3 --Drooling Lizard
16507828 3 --Bracchio-raidus
16527176 3 --Naturia Leodrake
16587243 3 --Neo Bug
16899564 3 --Beautiful Headhuntress
16972957 3 --Doma The Angel of Silence
17115745 3 --Yormungarde
17192817 3 --Molten Behemoth
17238333 3 --Wretched Ghost of the Attic
17358176 3 --Lady of Faith
17441953 3 --Turtle Raccoon
17511156 3 --Wood Clown
17535588 3 --Armored Starfish
17658803 3 --Luster Dragon #2
17733394 3 --Wood Remains
17881964 3 --Darkfire Dragon
17968114 3 --Amazon of the Seas
18106132 3 --Doll Monster Bear-Bear
18108166 3 --Mystery Shell Dragon
18180762 3 --The Thing That Hides in the Mud
18246479 3 --Battle Steer
18710707 3 --The Furious Sea King
18914778 3 --Change Slime
19066538 3 --Roaring Ocean Snake
19737320 3 --Gatekeeper
20060230 3 --Hard Armor
20129614 3 --Melffy Rabby
20277860 3 --Armored Zombie
20315854 3 --Fairy Dragon
20541432 3 --Key Mace #2
20624263 3 --Peacock
20721928 3 --Elemental HERO Sparkman
20721929 3 --Elemental HERO Sparkman
20831168 3 --Lizard Soldier
20848593 3 --Ice Water
21175632 3 --St. Joan
21239280 3 --Bone Mouse
21251800 3 --Light Bringer Lucifer
21263083 3 --Pale Beast
21615956 3 --Flamvell Guard
21817254 3 --Mega Thunderball
21844576 3 --Elemental HERO Avian
21844577 3 --Elemental HERO Avian
22026707 3 --Curtain of the Dark Ones
22499463 3 --Venom Cobra
22855882 3 --Fiend Sword
22910685 3 --Green Phantom King
22916281 3 --Chosen by the World Chalice
23032273 3 --Megirus Light
23115241 3 --X-Saber Anu Piranha
23635815 3 --Jerry Beans Man
23659124 3 --Sea King Dragon
23771716 3 --7 Colored Fish
23923758 3 --Steam Knight - Hamburk
23995346 3 --Blue-Eyes Ultimate Dragon
23995347 3 --Blue-Eyes Ultimate Dragon
23995348 3 --Blue-Eyes Ultimate Dragon
24154052 3 --Protron
24194033 3 --Dorover
24311372 3 --Zoa
24348204 3 --The Bewitching Phantom Thief
24433920 3 --Pendulum Machine
24433921 3 --Pendulum Machine
24530661 3 --Master Kyonshee
24611934 3 --Ryu-Kishin Powered
24639891 3 --Gunkan Suship Shari
25652259 3 --Queen's Knight
25655502 3 --Bickuribox
25882881 3 --Dokuroizo the Grim Reaper
26378150 3 --Rude Kaiser
26566878 3 --Fiend Scorpion
26932788 3 --Javelin Beetle
26976414 3 --Atlantean Pikeman
27054370 3 --Firewing Pegasus
27094595 3 --Graveyard and the Hand of Invitation
27125110 3 --Thousand-Eyes Idol
27126980 3 --Gem-Knight Sapphire
27134689 3 --Master of Oz
27288416 3 --Mokey Mokey
27324313 3 --Wattkid
27520594 3 --Sunseed Genius Loci
27553701 3 --Absolute King - Megaplunder
27671321 3 --Lightning Conger
28003512 3 --The Judgement Hand
28279543 3 --Curse of Dragon
28450915 3 --Invader from Another Dimension
28546905 3 --Illusionist Faceless Mage
28593363 3 --Deepsea Shark
29054481 3 --Mist Valley Watcher
29172562 3 --Steel Ogre Grotto #1
29402771 3 --Rainbow Marine Mermaid
29491031 3 --The Snake Hair
29616941 3 --Beautiful Beast Trainer
29692206 3 --Twin Long Rods #2
29802344 3 --Snakeyashi
29929832 3 --Marine Beast
29948642 3 --Dig Beak
30090452 3 --Zanki
30113682 3 --Judge Man
30208479 3 --Magician of Black Chaos
30243636 3 --Hungry Burger
30325729 3 --Dokuroyaiba
30532390 3 --Sky Scout
30655537 3 --Cyber Falcon
31122090 3 --Gyakutenno Megami
31122091 3 --Gyakutenno Megami
31242786 3 --Souleater
31339260 3 --Zombie Warrior
31447217 3 --Wingweaver
31477025 3 --Mr. Volcano
31890399 3 --Fiend's Mirror
31987274 3 --Flying Fish
32012841 3 --Millennium Shield