-
Notifications
You must be signed in to change notification settings - Fork 40
/
series-tvdb.en.yaml
3251 lines (2998 loc) · 95.2 KB
/
series-tvdb.en.yaml
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
# PlexAniSync: TheTVDB Series Mappings in English
entries:
- title: "86: Eighty Six"
guid: plex://show/5e7362fb4a62f90040e89827
# imdb: https://www.imdb.com/title/tt13718450/
# tmdb: https://www.themoviedb.org/tv/100565
# tvdb: https://www.thetvdb.com/dereferrer/series/378609
seasons:
- season: 1
anilist-id: 116589
- season: 1
anilist-id: 131586
start: 12
- title: "A Certain Scientific Railgun"
guid: plex://show/5d9c07fdec357c001f9a8ac5
# imdb: https://www.imdb.com/title/tt1515996/
# tmdb: https://www.themoviedb.org/tv/30977
# tvdb: https://www.thetvdb.com/dereferrer/series/114921
seasons:
- season: 1
anilist-id: 6213
- season: 2
anilist-id: 16049
- season: 3
anilist-id: 104462
- title: "A Couple of Cuckoos"
guid: plex://show/606dda0b1e9ff70037d05c31
# imdb: https://www.imdb.com/title/tt14400866/
# tmdb: https://www.themoviedb.org/tv/122587
# tvdb: https://www.thetvdb.com/dereferrer/series/400585
seasons:
- season: 1
anilist-id: 132052
- title: "Ace of Diamond"
guid: plex://show/5d9c083c2df347001e3ae2f6
# imdb: https://www.imdb.com/title/tt3105422/
# tmdb: https://www.themoviedb.org/tv/60761
# tvdb: https://www.thetvdb.com/dereferrer/series/273005
seasons:
- season: 1
anilist-id: 18689
- season: 2
anilist-id: 21085
- season: 3
anilist-id: 105749
- title: "Aldnoah.Zero"
guid: plex://show/5d9c0845ffd9ef001e990bb2
# imdb: https://www.imdb.com/title/tt3544556/
# tmdb: https://www.themoviedb.org/tv/61259
# tvdb: https://www.thetvdb.com/dereferrer/series/279827
seasons:
# AniList treats this as two seasons
- season: 1
anilist-id: 20632
- season: 1
anilist-id: 20853
start: 13
- title: "Anti-Magic Academy: The 35th Test Platoon"
guid: plex://show/5d9c08b808fddd001f2a0369
# imdb: https://www.imdb.com/title/tt5236254/
# tmdb: https://www.themoviedb.org/tv/70296
# tvdb: https://www.thetvdb.com/dereferrer/series/299511
seasons:
- season: 1
anilist-id: 20704
- title: "Arifureta: From Commonplace to World's Strongest"
guid: plex://show/5d9c09161cae62001f750e5c
# imdb: https://www.imdb.com/title/tt10431290/
# tmdb: https://www.themoviedb.org/tv/86034
# tvdb: https://www.thetvdb.com/dereferrer/series/357019
seasons:
- season: 1
anilist-id: 100668
- season: 2
anilist-id: 112323
- season: 3
anilist-id: 154473
- title: "Arknights"
guid: plex://show/61781a32afc7938b2e668da8
# imdb: https://www.imdb.com/title/tt22443832/
# tmdb: https://www.themoviedb.org/tv/137065
# tvdb: https://www.thetvdb.com/dereferrer/series/411800
seasons:
- season: 1
anilist-id: 140660
- season: 2
anilist-id: 158895
- title: "Ascendance of a Bookworm"
guid: plex://show/5df5b931bc7a03001de20d25
# imdb: https://www.imdb.com/title/tt10885406/
# tmdb: https://www.themoviedb.org/tv/91768
# tvdb: https://www.thetvdb.com/dereferrer/series/366263
seasons:
- season: 1
anilist-id: 108268
- season: 1
anilist-id: 113693
start: 15
- season: 1
anilist-id: 121176
start: 27
- title: "Assassination Classroom"
guid: plex://show/5d9c0850ba6eb9001fba0c60
# imdb: https://www.imdb.com/title/tt3837246/
# tmdb: https://www.themoviedb.org/tv/62110
# tvdb: https://www.thetvdb.com/dereferrer/series/283947
seasons:
- season: 1
anilist-id: 20755
- season: 2
anilist-id: 21170
- title: "Attack on Titan"
guid: plex://show/5d9c086c3c3f87001f34f63c
# imdb: https://www.imdb.com/title/tt2560140/
# tmdb: https://www.themoviedb.org/tv/1429
# tvdb: https://www.thetvdb.com/dereferrer/series/267440
seasons:
- season: 1
anilist-id: 16498
- season: 2
anilist-id: 20958
- season: 3
anilist-id: 99147
- season: 3
anilist-id: 104578
start: 13
- season: 4
anilist-id: 110277
- season: 4
anilist-id: 131681
start: 17
- season: 4
anilist-id: 146984
start: 29
- season: 4
anilist-id: 162314
start: 30
- title: "B: The Beginning"
guid: plex://show/5d9c08eeba6eb9001fbace50
# imdb: https://www.imdb.com/title/tt7944664/
# tmdb: https://www.themoviedb.org/tv/77529
# tvdb: https://www.thetvdb.com/dereferrer/series/339353
seasons:
- season: 1
anilist-id: 21665
- season: 2
anilist-id: 102498
- title: "Bakuman"
guid: plex://show/5d9c081bba2e21001f18df7d
# imdb: https://www.imdb.com/title/tt1738419/
# tmdb: https://www.themoviedb.org/tv/36041
# tvdb: https://www.thetvdb.com/dereferrer/series/193811
seasons:
- season: 1
anilist-id: 7674
- season: 2
anilist-id: 10030
- season: 3
anilist-id: 12365
- title: "Beast Tamer"
guid: plex://show/62a324e005d7ca8cd1da84c7
# imdb: https://www.imdb.com/title/tt21345944/
# tmdb: https://www.themoviedb.org/tv/203780
# tvdb: https://www.thetvdb.com/dereferrer/series/421092
seasons:
- season: 1
anilist-id: 150695
- title: "Beastars"
guid: plex://show/5d9c091c2df347001e3bd0c1
# imdb: https://www.imdb.com/title/tt11043632/
# tmdb: https://www.themoviedb.org/tv/90937
# tvdb: https://www.thetvdb.com/dereferrer/series/361013
seasons:
- season: 1
anilist-id: 107660
- season: 2
anilist-id: 114194
- season: 3
anilist-id: 136880
- title: "Birdie Wing -Golf Girls' Story-"
guid: plex://show/61b181f1c2629c42c5055543
# tmdb: https://www.themoviedb.org/tv/137390-birdie-wing-golf-girls-story
# tvdb: https://www.thetvdb.com/dereferrer/series/411914
seasons:
- season: 1
anilist-id: 140830
- season: 2
anilist-id: 151606
- title: "Black Butler"
guid: plex://show/5d9c0825e98e47001eb08cd7
# imdb: https://www.imdb.com/title/tt1316554/
# tmdb: https://www.themoviedb.org/tv/50712
# tvdb: https://www.thetvdb.com/dereferrer/series/83996
seasons:
- season: 1
anilist-id: 4898
- season: 2
anilist-id: 6707
- season: 3
anilist-id: 20606
- season: 4
anilist-id: 166715
- title: "Black Lagoon"
guid: plex://show/5d9c080802391c001f57f614
# imdb: https://www.imdb.com/title/tt0962826/
# tmdb: https://www.themoviedb.org/tv/12598
# tvdb: https://www.thetvdb.com/dereferrer/series/79604
seasons:
- season: 1
anilist-id: 889
- season: 1
anilist-id: 1519
start: 13
- title: "Black Rock Shooter"
guid: plex://show/5d9c07f3ba2e21001f18c9ac
# imdb: https://www.imdb.com/title/tt2198397/
# tmdb: https://www.themoviedb.org/tv/43079
# tvdb: https://www.thetvdb.com/dereferrer/series/162711
seasons:
- season: 1
anilist-id: 11285
- title: "Black Rock Shooter: Dawn Fall"
guid: plex://show/6144a821781dd3ba26493db3
# imdb: https://www.imdb.com/title/tt15582422/
# tmdb: https://www.themoviedb.org/tv/133733
# tvdb: https://www.thetvdb.com/dereferrer/series/410063
seasons:
- season: 1
anilist-id: 139303
- title: "Blast of Tempest"
guid: plex://show/5d9c0833e264b7001fc3eb94
# imdb: https://www.imdb.com/title/tt2294048/
# tmdb: https://www.themoviedb.org/tv/46283
# tvdb: https://www.thetvdb.com/dereferrer/series/262109
seasons:
- season: 1
anilist-id: 14075
- title: "Bleach"
guid: plex://show/5d9c084902391c001f58594b
# imdb: https://www.imdb.com/title/tt0434665/
# tmdb: https://www.themoviedb.org/tv/30984
# tvdb: https://www.thetvdb.com/dereferrer/series/74796
seasons:
- season: 1
anilist-id: 269
- season: 2
anilist-id: 269
- season: 3
anilist-id: 269
- season: 4
anilist-id: 269
- season: 5
anilist-id: 269
- season: 6
anilist-id: 269
- season: 7
anilist-id: 269
- season: 8
anilist-id: 269
- season: 9
anilist-id: 269
- season: 10
anilist-id: 269
- season: 11
anilist-id: 269
- season: 12
anilist-id: 269
- season: 13
anilist-id: 269
- season: 14
anilist-id: 269
- season: 15
anilist-id: 269
- season: 16
anilist-id: 269
- season: 17
anilist-id: 116674
- season: 17
anilist-id: 159322
start: 14
- season: 17
anilist-id: 169755
start: 27
- title: "Blood Blockade Battlefront"
guid: plex://show/5d9c0852e264b7001fc413eb
# imdb: https://www.imdb.com/title/tt4379632/
# tmdb: https://www.themoviedb.org/tv/62327
# tvdb: https://www.thetvdb.com/dereferrer/series/289886
seasons:
- season: 1
anilist-id: 20727
- season: 2
anilist-id: 97886
- title: "Blood+"
guid: plex://show/5d9c08451cae62001f74afa0
# imdb: https://www.imdb.com/title/tt0482855/
# tmdb: https://www.themoviedb.org/tv/19849
# tvdb: https://www.thetvdb.com/dereferrer/series/78960
seasons:
- season: 1
anilist-id: 150
- season: 2
anilist-id: 150
start: 14
- season: 3
anilist-id: 150
start: 26
- season: 4
anilist-id: 150
start: 39
- title: "Blue Exorcist"
guid: plex://show/5d9c081c3c3f87001f347a27
# imdb: https://www.imdb.com/title/tt1799631/
# tmdb: https://www.themoviedb.org/tv/38464
# tvdb: https://www.thetvdb.com/dereferrer/series/248035
seasons:
- season: 1
anilist-id: 9919
- season: 2
anilist-id: 21861
- season: 3
anilist-id: 158931
- title: "Blue Lock"
guid: plex://show/6117a7257843e7002c680b60
# imdb: https://www.imdb.com/title/tt15222080/
# tmdb: https://www.themoviedb.org/tv/131041
# tvdb: https://www.thetvdb.com/dereferrer/series/408629
seasons:
- season: 1
anilist-id: 137822
- season: 2
anilist-id: 163146
- title: "Blue Miburo"
guid: plex://show/650297fd614d568c2cdca0c9
# imdb: https://www.imdb.com/title/tt30523856/
# tmdb: https://www.themoviedb.org/tv/234776
# tvdb: https://www.thetvdb.com/dereferrer/series/439531
seasons:
- season: 1
anilist-id: 169258
- title: "Bofuri: I Don't Want to Get Hurt, so I'll Max Out My Defense"
guid: plex://show/5df5b93281e1a7001f946b48
# imdb: https://www.imdb.com/title/tt11428630/
# tmdb: https://www.themoviedb.org/tv/96402
# tvdb: https://www.thetvdb.com/dereferrer/series/373679
seasons:
- season: 1
anilist-id: 106479
- season: 2
anilist-id: 116867
- title: "Boruto: Naruto Next Generations"
guid: plex://show/5d9f410b68e4c8001fb6c916
# imdb: https://www.imdb.com/title/tt6342474/
# tmdb: https://www.themoviedb.org/tv/70881
# tvdb: https://www.thetvdb.com/dereferrer/series/321285
seasons:
- season: 1
anilist-id: 97938
- title: "Bungo Stray Dogs"
guid: plex://show/5d9c081702391c001f580ca8
# imdb: https://www.imdb.com/title/tt5679720/
# tmdb: https://www.themoviedb.org/tv/65931
# tvdb: https://www.thetvdb.com/dereferrer/series/305075
seasons:
- season: 1
anilist-id: 21311
- season: 1
anilist-id: 21679
start: 13
- season: 2
anilist-id: 103223
- season: 3
anilist-id: 141249
- season: 3
anilist-id: 163263
start: 14
- title: "Cells at Work!"
guid: plex://show/5d9c0905cb3ffa001f1b8ccb
# imdb: https://www.imdb.com/title/tt8673610/
# tmdb: https://www.themoviedb.org/tv/80671
# tvdb: https://www.thetvdb.com/dereferrer/series/346931
seasons:
- season: 1
anilist-id: 100977
- season: 2
anilist-id: 108631
- title: "Cells at Work! Code Black"
guid: plex://show/5ea395620f75ff0042793113
# imdb: https://www.imdb.com/title/tt12150836/
# tmdb: https://www.themoviedb.org/tv/101873
# tvdb: https://www.thetvdb.com/dereferrer/series/380402
seasons:
- season: 1
anilist-id: 117533
- title: "Chaika the Coffin Princess"
guid: plex://show/5d9c083c4eefaa001f5d8c63
# imdb: https://www.imdb.com/title/tt3517016/
# tmdb: https://www.themoviedb.org/tv/60825
# tvdb: https://www.thetvdb.com/dereferrer/series/278127
seasons:
- season: 1
anilist-id: 20462
- season: 2
anilist-id: 20719
- title: "Chained Soldier"
guid: plex://show/6198def0046272df6573266f
# imdb: https://www.imdb.com/title/tt16156736/
# tmdb: https://www.themoviedb.org/tv/139060
# tvdb: https://www.thetvdb.com/dereferrer/series/412656
seasons:
- season: 1
anilist-id: 141821
- title: "Chainsaw Man"
guid: plex://show/5fd256ee866352002d84b886
# imdb: https://www.imdb.com/title/tt13616990/
# tmdb: https://www.themoviedb.org/tv/114410
# tvdb: https://www.thetvdb.com/dereferrer/series/397934
seasons:
- season: 1
anilist-id: 127230
- title: "Chi: Regarding the Movement of the Earth"
guid: "plex://show/62b4889a67e0436e644eaafa"
# imdb: https://www.imdb.com/title/tt33044444/
# tmdb: https://www.themoviedb.org/tv/204635
# tvdb: https://www.thetvdb.com/dereferrer/series/421583
seasons:
- season: 1
anilist-id: 151514
- title: "Chivalry of a Failed Knight"
guid: plex://show/5d9c0805ec357c001f9a92bc
# imdb: https://www.imdb.com/title/tt5100366/
# tmdb: https://www.themoviedb.org/tv/67154
# tvdb: https://www.thetvdb.com/dereferrer/series/299506
seasons:
- season: 1
anilist-id: 21092
- title: "Clannad"
guid: plex://show/5d9c081fba2e21001f18e114
# imdb: https://www.imdb.com/title/tt1118804/
# tmdb: https://www.themoviedb.org/tv/24835
# tvdb: https://www.thetvdb.com/dereferrer/series/80644
seasons:
- season: 1
anilist-id: 2167
- season: 2
anilist-id: 4181
- title: "Classroom of the Elite"
guid: plex://show/5d9c08d37b5c2e001e6622a5
# imdb: https://www.imdb.com/title/tt7263328/
# tmdb: https://www.themoviedb.org/tv/72517
# tvdb: https://www.thetvdb.com/dereferrer/series/329822
seasons:
- season: 1
anilist-id: 98659
- season: 2
anilist-id: 145545
- season: 3
anilist-id: 146066
- title: "Code Geass: Lelouch of the Rebellion"
guid: plex://show/5d9c0826e9d5a1001f4d7ee3
# imdb: https://www.imdb.com/title/tt0994314/
# tmdb: https://www.themoviedb.org/tv/31724
# tvdb: https://www.thetvdb.com/dereferrer/series/79525
seasons:
- season: 1
anilist-id: 1575
- season: 2
anilist-id: 2904
- title: "Crest of the Stars"
guid: plex://show/5d9c0855705e7a001e6d93e6
# imdb: https://www.imdb.com/title/tt0286390/
# tmdb: https://www.themoviedb.org/tv/26209
# tvdb: https://www.thetvdb.com/dereferrer/series/72025
seasons:
# - season: 0
# anilist-id: 398
# start: 5
# PlexAniSync does not support mapping of Specials (season 4 is specials 5 and 6)
- season: 1
anilist-id: 290
- season: 2
anilist-id: 396
- season: 3
anilist-id: 397
- title: "D.Gray-man"
guid: plex://show/5d9c0865e9d5a1001f4d96d5
# imdb: https://www.imdb.com/title/tt0899258/
# tmdb: https://www.themoviedb.org/tv/34141
# tvdb: https://www.thetvdb.com/dereferrer/series/79635
seasons:
- season: 1
anilist-id: 1482
- season: 2
anilist-id: 1482
- title: "D.Gray-man Hallow"
guid: plex://show/5d9c0805e9d5a1001f4d6a6c
# imdb: https://www.imdb.com/title/tt5954268/
# tmdb: https://www.themoviedb.org/tv/67145
# tvdb: https://www.thetvdb.com/dereferrer/series/312878
seasons:
- season: 1
anilist-id: 21558
- title: "Danganronpa: The Animation"
guid: plex://show/5d9c07f5705e7a001e6cd8b6
# imdb: https://www.imdb.com/title/tt2902582/
# tmdb: https://www.themoviedb.org/tv/49471
# tvdb: https://www.thetvdb.com/dereferrer/series/270058
seasons:
- season: 1
anilist-id: 16592
- season: 2
anilist-id: 21509
- title: "Darker Than Black"
guid: plex://show/5d9c08262df347001e3ac11d
# imdb: https://www.imdb.com/title/tt0995941/
# tmdb: https://www.themoviedb.org/tv/31718
# tvdb: https://www.thetvdb.com/dereferrer/series/80042
seasons:
# PlexAniSync does not support mapping of Specials (Gaiden, 4 episodes)
- season: 1
anilist-id: 2025
- season: 2
anilist-id: 6573
- title: "Date A Live"
guid: "plex://show/5d9c08282192ba001f308d89"
# imdb: https://www.imdb.com/title/tt2575684/
# tmdb: https://www.themoviedb.org/tv/46004
# tvdb: https://www.thetvdb.com/dereferrer/series/264663
seasons:
- season: 1
anilist-id: 15583
- season: 2
anilist-id: 19163
- season: 3
anilist-id: 100722
- season: 4
anilist-id: 116605
- season: 5
anilist-id: 151380
- title: "Dead Mount Death Play"
guid: plex://show/6376957e253ed1065f95ac14
# imdb: https://www.imdb.com/title/tt27489241/
# tmdb: https://www.themoviedb.org/tv/214540
# tvdb: https://www.thetvdb.com/dereferrer/series/427239
seasons:
- season: 1
anilist-id: 157198
- season: 1
anilist-id: 162803
start: 13
- title: "Delicious in Dungeon"
guid: plex://show/62f321f36da0054963a50a70
# imdb: https://www.imdb.com/title/tt21621494/
# tmdb: https://www.themoviedb.org/tv/207784
# tvdb: https://www.thetvdb.com/dereferrer/series/423257
seasons:
- season: 1
anilist-id: 153518
- title: "Demon Slayer: Kimetsu no Yaiba"
guid: plex://show/5d9c090246115600200ae731
# imdb: https://www.imdb.com/title/tt9335498/
# tmdb: https://www.themoviedb.org/tv/85937
# tvdb: https://www.thetvdb.com/dereferrer/series/348545
seasons:
- season: 1
anilist-id: 101922
- season: 2
anilist-id: 129874
- season: 3
anilist-id: 142329
- season: 4
anilist-id: 145139
- season: 5
anilist-id: 166240
- title: "Don't Toy With Me, Miss Nagatoro"
guid: plex://show/5eff8efd374eea003c1d1c98
# imdb: https://www.imdb.com/title/tt12635162/
# tmdb: https://www.themoviedb.org/tv/105556
# tvdb: https://www.thetvdb.com/dereferrer/series/385278
seasons:
- season: 1
anilist-id: 120697
- season: 2
anilist-id: 140596
- title: "Dr. Stone"
guid: plex://show/5d9c0913ba6eb9001fbaf6ff
# imdb: https://www.imdb.com/title/tt9679542/
# tmdb: https://www.themoviedb.org/tv/86031
# tvdb: https://www.thetvdb.com/dereferrer/series/355774
seasons:
- season: 1
anilist-id: 105333
- season: 2
anilist-id: 113936
- season: 3
anilist-id: 131518
- season: 3
anilist-id: 162670
start: 12
- season: 4
anilist-id: 172019
- title: "Dragon Ball"
guid: plex://show/5d9c0808ffd9ef001e98b2cc
# imdb: https://www.imdb.com/title/tt0088509/
# tmdb: https://www.themoviedb.org/tv/12609
# tvdb: https://www.thetvdb.com/dereferrer/series/76666
seasons:
- season: 1
anilist-id: 223
- season: 2
anilist-id: 223
- season: 3
anilist-id: 223
- season: 4
anilist-id: 223
- season: 5
anilist-id: 223
- season: 6
anilist-id: 223
- title: "Dragon Ball GT"
guid: plex://show/5d9c080a02391c001f57f8f9
# imdb: https://www.imdb.com/title/tt0139774/
# tmdb: https://www.themoviedb.org/tv/12697
# tvdb: https://www.thetvdb.com/dereferrer/series/79275
seasons:
- season: 1
anilist-id: 225
- season: 2
anilist-id: 225
- season: 3
anilist-id: 225
- title: "Dragon Ball Kai"
guid: plex://show/5d9c08376c3e37001ecd57da
# imdb: https://www.imdb.com/title/tt1409055/
# tmdb: https://www.themoviedb.org/tv/61709
# tvdb: https://www.thetvdb.com/dereferrer/series/88031
seasons:
# Anilist includes Bluray specials in its episode count
- season: 1
anilist-id: 6033
start: 2
- season: 2
anilist-id: 20635
start: -7
- title: "Dragon Ball Super"
guid: plex://show/5d9c08683c3f87001f34ebd8
# imdb: https://www.imdb.com/title/tt4644488/
# tmdb: https://www.themoviedb.org/tv/62715
# tvdb: https://www.thetvdb.com/dereferrer/series/295068
seasons:
- season: 1
anilist-id: 21175
- season: 2
anilist-id: 21175
- season: 3
anilist-id: 21175
- season: 4
anilist-id: 21175
- season: 5
anilist-id: 21175
- title: "Dragon Ball Z"
guid: plex://show/5d9c080fba6eb9001fb9aa70
# imdb: https://www.imdb.com/title/tt0121220/
# tmdb: https://www.themoviedb.org/tv/12971
# tvdb: https://www.thetvdb.com/dereferrer/series/81472
seasons:
- season: 1
anilist-id: 813
- season: 2
anilist-id: 813
- season: 3
anilist-id: 813
- season: 4
anilist-id: 813
- season: 5
anilist-id: 813
- season: 6
anilist-id: 813
- season: 7
anilist-id: 813
- season: 8
anilist-id: 813
- season: 9
anilist-id: 813
- title: "Drop Kick on My Devil!!"
guid: plex://show/5d9c090502391c001f59412a
seasons:
- season: 1
anilist-id: 100714
- season: 2
anilist-id: 107294
- season: 3
anilist-id: 124641
- title: "Durarara!!"
guid: plex://show/5d9c07f3ba6eb9001fb97be1
# imdb: https://www.imdb.com/title/tt1584000/
# tmdb: https://www.themoviedb.org/tv/42410
# tvdb: https://www.thetvdb.com/dereferrer/series/133341
seasons:
- season: 1
anilist-id: 6746
- season: 2
anilist-id: 20652
- season: 2
anilist-id: 20879
start: 13
- season: 2
anilist-id: 20880
start: 25
- title: "Eat-Man"
guid: plex://show/5d9c08652192ba001f30edfd
# imdb: https://www.imdb.com/title/tt0239361/
# tmdb: https://www.themoviedb.org/tv/34209
# tvdb: https://www.thetvdb.com/dereferrer/series/87941
seasons:
- season: 1
anilist-id: 1704
- season: 2
anilist-id: 1599
- title: "Elfen Lied"
guid: plex://show/5d9c082a7b5c2e001e65609e
# imdb: https://www.imdb.com/title/tt0480489/
# tmdb: https://www.themoviedb.org/tv/42671
# tvdb: https://www.thetvdb.com/dereferrer/series/75941
seasons:
- season: 1
anilist-id: 226
- title: "Ergo Proxy"
guid: plex://show/5d9c086b705e7a001e6dbd9f
# imdb: https://www.imdb.com/title/tt0791205/
# tmdb: https://www.themoviedb.org/tv/1097
# tvdb: https://www.thetvdb.com/dereferrer/series/79228
seasons:
- season: 1
anilist-id: 790
- title: "F-Zero: GP Legend"
guid: plex://show/5d9c082c2192ba001f3095c5
# imdb: https://www.imdb.com/title/tt3476730/
# tmdb: https://www.themoviedb.org/tv/25408
# tvdb: https://www.thetvdb.com/dereferrer/series/258124
seasons:
- season: 1
anilist-id: 3101
- title: "Fairy Tail"
guid: plex://show/5d9c07fb705e7a001e6ce24a
# imdb: https://www.imdb.com/title/tt1528406/
# tmdb: https://www.themoviedb.org/tv/46261
# tvdb: https://www.thetvdb.com/dereferrer/series/114801
seasons:
- season: 1
anilist-id: 6702
- season: 2
anilist-id: 6702
- season: 3
anilist-id: 6702
- season: 4
anilist-id: 6702
- season: 5
anilist-id: 20626
- season: 6
anilist-id: 20626
- season: 7
anilist-id: 20626
- season: 8
anilist-id: 99749
- title: "Fate/kaleid liner Prisma Illya"
guid: plex://show/5d9c08067b5c2e001e652467
# imdb: https://www.imdb.com/title/tt2904426/
# tmdb: https://www.themoviedb.org/tv/63576
# tvdb: https://www.thetvdb.com/dereferrer/series/269319
seasons:
- season: 1
anilist-id: 14829
- season: 2
anilist-id: 20467
- season: 3
anilist-id: 20845
- season: 4
anilist-id: 21379
- title: "Fate/Stay Night"
guid: plex://show/5d9c08507b5c2e001e658e9f
# imdb: https://www.imdb.com/title/tt0774809/
# tmdb: https://www.themoviedb.org/tv/37858
# tvdb: https://www.thetvdb.com/dereferrer/series/79151
seasons:
- season: 1
anilist-id: 356
- title: "Fate/Stay Night: Unlimited Blade Works"
guid: plex://show/5d9c0849ba6eb9001fb9ffe5
# imdb: https://www.imdb.com/title/tt3621796/
# tmdb: https://www.themoviedb.org/tv/61415
# tvdb: https://www.thetvdb.com/dereferrer/series/278626
seasons:
- season: 1
anilist-id: 19603
start: 0 # Anilist has 26 Episodes (includes Special EP) while TVDB has 25 Episodes (excludes Special EP)
- season: 1
anilist-id: 20792
start: 13
- title: "Fate/Zero"
guid: plex://show/5d9c0821e264b7001fc3ccd0
# imdb: https://www.imdb.com/title/tt2051178/
# tmdb: https://www.themoviedb.org/tv/45845
# tvdb: https://www.thetvdb.com/dereferrer/series/275798
seasons:
- season: 1
anilist-id: 10087
- season: 1
anilist-id: 11741
start: 14
- title: "Fena: Pirate Princess"
guid: plex://show/5f1e6cdf4de80e004280f759
# imdb: https://www.imdb.com/title/tt12779780/
# tmdb: https://www.themoviedb.org/tv/106480
# tvdb: https://www.thetvdb.com/dereferrer/series/386570
seasons:
- season: 1
anilist-id: 122052
- title: "Fire Force"
guid: plex://show/5d9c09127b5c2e001e6663fd
# imdb: https://www.imdb.com/title/tt9307686/
# tmdb: https://www.themoviedb.org/tv/88046
# tvdb: https://www.thetvdb.com/dereferrer/series/355480
seasons:
- season: 1
anilist-id: 105310
- season: 2
anilist-id: 114236
- title: "FLCL"
guid: "plex://show/5d9c0876cb3ffa001f1b5ab6"
# imdb: https://www.imdb.com/title/tt0279077/
# tmdb: https://www.themoviedb.org/tv/5895
# tvdb: https://www.thetvdb.com/dereferrer/series/78878
seasons:
- season: 1
anilist-id: 227
- season: 2
anilist-id: 21746
- season: 3
anilist-id: 21748
- season: 4
anilist-id: 146472
- season: 5
anilist-id: 146473
- title: "Food Wars!"
guid: plex://show/5d9c085202391c001f586b24
# imdb: https://www.imdb.com/title/tt4731072/
# tmdb: https://www.themoviedb.org/tv/62273
# tvdb: https://www.thetvdb.com/dereferrer/series/289909
seasons:
- season: 1
anilist-id: 20923
- season: 2
anilist-id: 21518
- season: 3
anilist-id: 99255
- season: 3
anilist-id: 100773
start: 13
- season: 4
anilist-id: 109963
- season: 5
anilist-id: 114043
- title: "Frieren: Beyond Journey's End"
guid: plex://show/631ccdfccbff4464978f9d53
# imdb: https://www.imdb.com/title/tt22248376/
# tmdb: https://www.themoviedb.org/tv/209867
# tvdb: https://www.thetvdb.com/dereferrer/series/424536
seasons:
- season: 1
anilist-id: 154587
- title: "Fruits Basket"
guid: "plex://show/5d9c084602391c001f58531b"
# imdb: https://www.imdb.com/title/tt0328738/
# tmdb: https://www.themoviedb.org/tv/36941
# tvdb: https://www.thetvdb.com/dereferrer/series/78900
seasons:
- season: 1
anilist-id: 120
- title: "Fruits Basket (2019)"
guid: plex://show/5d9c091708fddd001f2a75c8
# imdb: https://www.imdb.com/title/tt9304350/
# tmdb: https://www.themoviedb.org/tv/85991
# tvdb: https://www.thetvdb.com/dereferrer/series/357488
seasons:
- season: 1
anilist-id: 105334
- season: 2
anilist-id: 111762
- season: 3
anilist-id: 124194
- title: "Full Metal Panic!"
guid: plex://show/5d9c086fcb3ffa001f1b5059
# imdb: https://www.imdb.com/title/tt0328739/
# tmdb: https://www.themoviedb.org/tv/39379 `
# tvdb: https://www.thetvdb.com/dereferrer/series/78914`
seasons:
- season: 1
anilist-id: 71
- season: 2
anilist-id: 72
- season: 3
anilist-id: 73
- season: 4
anilist-id: 21451
- title: "Full-Time Magister"
guid: plex://show/5d9c08ccba6eb9001fbaa50b
# imdb: https://www.imdb.com/title/tt11317074/
# tmdb: https://www.themoviedb.org/tv/70311
# tvdb: https://www.thetvdb.com/dereferrer/series/328670
seasons:
- season: 1
anilist-id: 99200
- season: 2
anilist-id: 100294
- season: 3
anilist-id: 104745
- season: 4
anilist-id: 115800
- season: 5
anilist-id: 122671
- season: 6
anilist-id: 137726
- title: "Fullmetal Alchemist"
guid: plex://show/5d9c0850e264b7001fc41055