-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtracks.json
More file actions
2123 lines (2123 loc) · 44.5 KB
/
tracks.json
File metadata and controls
2123 lines (2123 loc) · 44.5 KB
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
{
"0": {
"name": "SNES Mario Circuit 1",
"author": "ZPL, Jasperr",
"version": "v2.7",
"type": "Retro",
"slot": "SNES Mario Circuit 3"
},
"1": {
"name": "Beta Donut Plains 1",
"author": "ZPL",
"version": "v1.1",
"type": "Retro",
"slot": "SNES Mario Circuit 3"
},
"2": {
"name": "SNES Ghost Valley 1",
"author": "MilanDK",
"version": "v1.1",
"type": "Retro",
"slot": "SNES Ghost Valley 2"
},
"3": {
"name": "SNES Bowser Castle 1",
"author": "ZPL",
"version": "v1.2",
"type": "Retro",
"slot": "GBA Bowser Castle 3"
},
"4": {
"name": "SNES Mario Circuit 2",
"author": "ZPL",
"version": "v1.1",
"type": "Retro",
"slot": "SNES Mario Circuit 3"
},
"5": {
"name": "SNES Choco Island 1",
"author": "SpyKid",
"version": "v1.0",
"type": "Retro",
"slot": "N64 Mario Raceway"
},
"6": {
"name": "SNES Ghost Valley 2",
"author": "Nintendo",
"version": "-",
"type": "Retro",
"slot": "SNES Ghost Valley 2"
},
"7": {
"name": "Beta Donut Plains 2",
"author": "ZPL",
"version": "v1.02",
"type": "Retro",
"slot": "N64 DK's Jungle Parkway"
},
"8": {
"name": "SNES Bowser Castle 2",
"author": "ZPL",
"version": "v1.0",
"type": "Retro",
"slot": "GBA Bowser Castle 3"
},
"9": {
"name": "SNES Mario Circuit 3",
"author": "Nintendo",
"version": "-",
"type": "Retro",
"slot": "SNES Mario Circuit 3"
},
"10": {
"name": "SNES Koopa Beach 1",
"author": "ZPL",
"version": "v1.1",
"type": "Retro",
"slot": "GCN Peach Beach"
},
"11": {
"name": "SNES Choco Island 2 DX",
"author": "Slimeserver",
"version": "v3.2",
"type": "Retro",
"slot": "N64 Mario Raceway"
},
"12": {
"name": "SNES Vanilla Lake 1",
"author": "SquireTurnbolt",
"version": "v1.8",
"type": "Retro",
"slot": "N64 Sherbet Land"
},
"13": {
"name": "Tour Bowser Castle 3",
"author": "ZPL",
"version": "v2.11",
"type": "Retro",
"slot": "GBA Bowser Castle 3"
},
"14": {
"name": "SNES Mario Circuit 4",
"author": "ZPL",
"version": "v1.3",
"type": "Retro",
"slot": "SNES Mario Circuit 3"
},
"15": {
"name": "SNES Donut Plains 3",
"author": "ZPL, Bear",
"version": "v2.11",
"type": "Retro",
"slot": "GCN Mario Circuit"
},
"16": {
"name": "SNES Koopa Beach 2",
"author": "Luca",
"version": "v1.3",
"type": "Retro",
"slot": "GCN Peach Beach"
},
"17": {
"name": "SNES Ghost Valley 3",
"author": "ZPL, Omonimo747",
"version": "v1.2.1",
"type": "Retro",
"slot": "SNES Ghost Valley 2"
},
"18": {
"name": "SNES Vanilla Lake 2",
"author": "ZPL",
"version": "v1.2",
"type": "Retro",
"slot": "N64 Sherbet Land"
},
"19": {
"name": "SNES Rainbow Road U",
"author": "ZPL, Bear",
"version": "v2.8.1",
"type": "Retro",
"slot": "Rainbow Road"
},
"20": {
"name": "N64 Luigi Raceway",
"author": "ZPL, Skipper93653",
"version": "v2.0",
"type": "Retro",
"slot": "N64 Mario Raceway"
},
"21": {
"name": "N64 Moo Moo Farm",
"author": "ZPL",
"version": "v1.12",
"type": "Retro",
"slot": "Moo Moo Meadows"
},
"22": {
"name": "Tour Koopa Troopa Beach",
"author": "Waltz",
"version": "v1.1-alt",
"type": "Retro",
"slot": "GBA Shy Guy Beach"
},
"23": {
"name": "N64 Kalimari Desert",
"author": "Sniki",
"version": "v1.0-alt2",
"type": "Retro",
"slot": "DS Desert Hills"
},
"24": {
"name": "N64 Toad's Turnpike",
"author": "AltairYoshi",
"version": "v2.3",
"type": "Retro",
"slot": "Moonview Highway"
},
"25": {
"name": "N64 Frappe Snowland",
"author": "AltairYoshi",
"version": "v1.41",
"type": "Retro",
"slot": "N64 Sherbet Land"
},
"26": {
"name": "Tour Choco Mountain",
"author": "TacoJosh",
"version": "v1.11",
"type": "Retro",
"slot": "GCN DK Mountain"
},
"27": {
"name": "N64 Mario Raceway",
"author": "Nintendo",
"version": "-",
"type": "Retro",
"slot": "N64 Mario Raceway"
},
"28": {
"name": "N64 Wario Stadium",
"author": "bugsy",
"version": "v1.2",
"type": "Retro",
"slot": "GCN Waluigi Stadium"
},
"29": {
"name": "N64 Sherbet Land",
"author": "Nintendo",
"version": "-",
"type": "Retro",
"slot": "N64 Sherbet Land"
},
"30": {
"name": "Wii U Royal Raceway",
"author": "ZPL",
"version": "v1.3",
"type": "Retro",
"slot": "N64 Mario Raceway"
},
"31": {
"name": "N64 Bowser's Castle",
"author": "Nintendo",
"version": "-",
"type": "Retro",
"slot": "N64 Bowser's Castle"
},
"32": {
"name": "N64 DK's Jungle Parkway",
"author": "Nintendo",
"version": "-",
"type": "Retro",
"slot": "N64 DK's Jungle Parkway"
},
"33": {
"name": "N64 Yoshi Valley",
"author": "ZPL",
"version": "v1.5",
"type": "Retro",
"slot": "DS Yoshi Falls"
},
"34": {
"name": "N64 Banshee Boardwalk",
"author": "ZPL",
"version": "v2.2",
"type": "Retro",
"slot": "SNES Ghost Valley 2"
},
"35": {
"name": "N64 Rainbow Road",
"author": "cpfusion",
"version": "v1.2.1",
"type": "Retro",
"slot": "Rainbow Road"
},
"36": {
"name": "Tour Peach Circuit",
"author": "Funky Racer",
"version": "v1.51",
"type": "Retro",
"slot": "N64 Mario Raceway"
},
"37": {
"name": "GBA Shy Guy Beach",
"author": "Nintendo",
"version": "-",
"type": "Retro",
"slot": "GBA Shy Guy Beach"
},
"38": {
"name": "Tour Riverside Park",
"author": "ZPL",
"version": "v2.1",
"type": "Retro",
"slot": "N64 DK's Jungle Parkway"
},
"39": {
"name": "GBA Bowser Castle 1",
"author": "ZPL",
"version": "v3.0",
"type": "Retro",
"slot": "GBA Bowser Castle 3"
},
"40": {
"name": "GBA Mario Circuit U",
"author": "MysterE99",
"version": "v1.2",
"type": "Retro",
"slot": "Daisy Circuit"
},
"41": {
"name": "Tour Boo Lake",
"author": "ZPL",
"version": "v1.0",
"type": "Retro",
"slot": "SNES Ghost Valley 2"
},
"42": {
"name": "Wii U Cheese Land",
"author": "ZPL",
"version": "v3.0",
"type": "Retro",
"slot": "DS Desert Hills"
},
"43": {
"name": "GBA Bowser Castle 2",
"author": "ZPL",
"version": "v1.1.1",
"type": "Retro",
"slot": "GBA Bowser Castle 3"
},
"44": {
"name": "GBA Luigi Circuit",
"author": "Flint",
"version": "v2.2",
"type": "Retro",
"slot": "N64 Mario Raceway"
},
"45": {
"name": "Tour Sky Garden",
"author": "Luca",
"version": "v1.0.3",
"type": "Retro",
"slot": "Mushroom Gorge"
},
"46": {
"name": "Tour Cheep-Cheep Island",
"author": "SquireTurnbolt, Kozakura",
"version": "v1.0-rr",
"type": "Retro",
"slot": "Koopa Cape"
},
"47": {
"name": "Tour Sunset Wilds",
"author": "Luca",
"version": "v1.0",
"type": "Retro",
"slot": "DS Desert Hills"
},
"48": {
"name": "Tour Snow Land",
"author": "ZPL",
"version": "v2.3",
"type": "Retro",
"slot": "DK Summit"
},
"49": {
"name": "Wii U Ribbon Road",
"author": "Gabriela_",
"version": "v2.5r",
"type": "Retro",
"slot": "SNES Mario Circuit 3"
},
"50": {
"name": "GBA Yoshi Desert",
"author": "ZPL",
"version": "v2.0.1",
"type": "Retro",
"slot": "DS Desert Hills"
},
"51": {
"name": "GBA Bowser Castle 3",
"author": "Nintendo",
"version": "-",
"type": "Retro",
"slot": "GBA Bowser Castle 3"
},
"52": {
"name": "Tour Lakeside Park",
"author": "ZPL, CyrusTheYoshi",
"version": "v3.0",
"type": "Retro",
"slot": "N64 DK's Jungle Parkway"
},
"53": {
"name": "GBA Broken Pier",
"author": "ZPL",
"version": "v1.12",
"type": "Retro",
"slot": "SNES Ghost Valley 2"
},
"54": {
"name": "GBA Bowser Castle 4",
"author": "ChaosShadow23",
"version": "v4.1-rr",
"type": "Retro",
"slot": "GBA Bowser Castle 3"
},
"55": {
"name": "GBA Rainbow Road DX",
"author": "ZPL",
"version": "v1.1",
"type": "Retro",
"slot": "Rainbow Road"
},
"56": {
"name": "GCN Luigi Circuit",
"author": "Tock",
"version": "v1.7",
"type": "Retro",
"slot": "GCN Mario Circuit"
},
"57": {
"name": "GCN Peach Beach",
"author": "Nintendo",
"version": "-",
"type": "Retro",
"slot": "GCN Peach Beach"
},
"58": {
"name": "Wii U Baby Park",
"author": "ZPL, SamanthaMK",
"version": "v1.1",
"type": "Retro",
"slot": "Mario Circuit"
},
"59": {
"name": "Wii U Dry Dry Desert",
"author": "ZPL",
"version": "v1.3",
"type": "Retro",
"slot": "Dry Dry Ruins"
},
"60": {
"name": "GCN Mushroom Bridge",
"author": "Tock",
"version": "v2.0",
"type": "Retro",
"slot": "Moonview Highway"
},
"61": {
"name": "GCN Mario Circuit",
"author": "Nintendo",
"version": "-",
"type": "Retro",
"slot": "GCN Mario Circuit"
},
"62": {
"name": "GCN Daisy Cruiser",
"author": "Tock",
"version": "v1.0",
"type": "Retro",
"slot": "GCN Peach Beach"
},
"63": {
"name": "GCN Waluigi Stadium",
"author": "Nintendo",
"version": "-",
"type": "Retro",
"slot": "GCN Waluigi Stadium"
},
"64": {
"name": "Wii U Sherbet Land",
"author": "ZPL, Brawlboxgaming",
"version": "v1.21-rr",
"type": "Retro",
"slot": "N64 Sherbet Land"
},
"65": {
"name": "GCN Mushroom City",
"author": "Torran",
"version": "v1.1-rr",
"type": "Retro",
"slot": "Moonview Highway"
},
"66": {
"name": "GCN Yoshi Circuit",
"author": "ZPL",
"version": "v2.11",
"type": "Retro",
"slot": "GCN Mario Circuit"
},
"67": {
"name": "GCN DK Mountain",
"author": "Nintendo",
"version": "-",
"type": "Retro",
"slot": "GCN DK Mountain"
},
"68": {
"name": "GCN Wario Colosseum",
"author": "MKDasher",
"version": "v1.3-alt2",
"type": "Retro",
"slot": "GCN Waluigi Stadium"
},
"69": {
"name": "GCN Dino Dino Jungle",
"author": "Tock",
"version": "v1.6",
"type": "Retro",
"slot": "GCN DK Mountain"
},
"70": {
"name": "GCN Bowser's Castle",
"author": "ZPL",
"version": "v1.2",
"type": "Retro",
"slot": "GBA Bowser Castle 3"
},
"71": {
"name": "GCN Rainbow Road",
"author": "ZPL",
"version": "v1.23",
"type": "Retro",
"slot": "Rainbow Road"
},
"72": {
"name": "DS Figure 8 Circuit",
"author": "Vanillavaquita",
"version": "v1.2",
"type": "Retro",
"slot": "GCN Mario Circuit"
},
"73": {
"name": "DS Yoshi Falls",
"author": "Nintendo",
"version": "-",
"type": "Retro",
"slot": "DS Yoshi Falls"
},
"74": {
"name": "Wii U Cheep Cheep Beach",
"author": "SquireTurnbolt",
"version": "v2.1",
"type": "Retro",
"slot": "GCN Peach Beach"
},
"75": {
"name": "DS Luigi's Mansion",
"author": "Tock",
"version": "v1.2",
"type": "Retro",
"slot": "SNES Ghost Valley 2"
},
"76": {
"name": "DS Desert Hills",
"author": "Nintendo",
"version": "-",
"type": "Retro",
"slot": "DS Desert Hills"
},
"77": {
"name": "Beta Delfino Square",
"author": "ZPL",
"version": "v1.13",
"type": "Retro",
"slot": "DS Delfino Square"
},
"78": {
"name": "Beta Waluigi Pinball",
"author": "TheBeefBai",
"version": "v1.2",
"type": "Retro",
"slot": "GCN Waluigi Stadium"
},
"79": {
"name": "SW Shroom Ridge",
"author": "SquireTurnbolt",
"version": "v1.1",
"type": "Retro",
"slot": "Moonview Highway"
},
"80": {
"name": "DS DK Pass",
"author": "ZPL",
"version": "v3.1",
"type": "Retro",
"slot": "DK Summit"
},
"81": {
"name": "Wii U Tick-Tock Clock",
"author": "ZPL",
"version": "v1.1",
"type": "Retro",
"slot": "Toad's Factory"
},
"82": {
"name": "DS Mario Circuit",
"author": "ZPL",
"version": "v7.1-rr",
"type": "Retro",
"slot": "GCN Mario Circuit"
},
"83": {
"name": "DS Airship Fortress",
"author": "ZPL",
"version": "v1.2-rr",
"type": "Retro",
"slot": "GBA Bowser Castle 3"
},
"84": {
"name": "DS Wario Stadium",
"author": "ZPL",
"version": "v1.1",
"type": "Retro",
"slot": "GCN Waluigi Stadium"
},
"85": {
"name": "DS Peach Gardens",
"author": "Nintendo",
"version": "-",
"type": "Retro",
"slot": "DS Peach Gardens"
},
"86": {
"name": "DS Bowser Castle",
"author": "Sniki",
"version": "v1.2",
"type": "Retro",
"slot": "GBA Bowser Castle 3"
},
"87": {
"name": "DS Rainbow Road",
"author": "ZPL",
"version": "v2.01",
"type": "Retro",
"slot": "Rainbow Road"
},
"88": {
"name": "Wii Luigi Circuit",
"author": "Nintendo",
"version": "-",
"type": "Retro",
"slot": "Mario Circuit"
},
"89": {
"name": "Wii Moo Moo Meadows",
"author": "Nintendo",
"version": "-",
"type": "Retro",
"slot": "Moo Moo Meadows"
},
"90": {
"name": "Wii Mushroom Gorge",
"author": "Nintendo",
"version": "-",
"type": "Retro",
"slot": "Mushroom Gorge"
},
"91": {
"name": "Wii Toad's Factory",
"author": "Nintendo",
"version": "-",
"type": "Retro",
"slot": "Toad's Factory"
},
"92": {
"name": "Wii Mario Circuit",
"author": "Nintendo",
"version": "-",
"type": "Retro",
"slot": "Mario Circuit"
},
"93": {
"name": "Wii Coconut Mall",
"author": "Nintendo",
"version": "-",
"type": "Retro",
"slot": "Coconut Mall"
},
"94": {
"name": "Tour DK Summit",
"author": "SquireTurnbolt",
"version": "v1.1-rr",
"type": "Retro",
"slot": "DK Summit"
},
"95": {
"name": "Wii Wario's Gold Mine",
"author": "Nintendo",
"version": "-",
"type": "Retro",
"slot": "Wario's Gold Mine"
},
"96": {
"name": "Wii Daisy Circuit",
"author": "Nintendo",
"version": "-",
"type": "Retro",
"slot": "Daisy Circuit"
},
"97": {
"name": "Wii Koopa Cape",
"author": "Nintendo",
"version": "-",
"type": "Retro",
"slot": "Koopa Cape"
},
"98": {
"name": "Wii Maple Treeway",
"author": "Nintendo",
"version": "-",
"type": "Retro",
"slot": "Maple Treeway"
},
"99": {
"name": "Wii Grumble Volcano",
"author": "Nintendo",
"version": "-",
"type": "Retro",
"slot": "Grumble Volcano"
},
"100": {
"name": "Beta Dry Dry Ruins",
"author": "Cats4Life",
"version": "v1.01",
"type": "Retro",
"slot": "Dry Dry Ruins"
},
"101": {
"name": "Wii Moonview Highway",
"author": "Nintendo",
"version": "-",
"type": "Retro",
"slot": "Moonview Highway"
},
"102": {
"name": "Wii Bowser's Castle",
"author": "Nintendo",
"version": "-",
"type": "Retro",
"slot": "Bowser's Castle"
},
"103": {
"name": "Wii Rainbow Road",
"author": "Nintendo",
"version": "-",
"type": "Retro",
"slot": "Rainbow Road"
},
"104": {
"name": "3DS Toad Circuit",
"author": "Torran",
"version": "v1.4",
"type": "Retro",
"slot": "Daisy Circuit"
},
"105": {
"name": "3DS Daisy Hills",
"author": "ZPL",
"version": "v1.1",
"type": "Retro",
"slot": "Moo Moo Meadows"
},
"106": {
"name": "3DS Cheep Cheep Lagoon",
"author": "ZPL",
"version": "v2.2",
"type": "Retro",
"slot": "Koopa Cape"
},
"107": {
"name": "3DS Shy Guy Bazaar",
"author": "ZPL, Skipper93653",
"version": "v1.1",
"type": "Retro",
"slot": "DS Desert Hills"
},
"108": {
"name": "3DS Wuhu Loop",
"author": "ZPL",
"version": "Beta 1.1",
"type": "Retro",
"slot": "Daisy Circuit"
},
"109": {
"name": "3DS Mario Circuit",
"author": "ZPL, Bri",
"version": "v1.12",
"type": "Retro",
"slot": "Mario Circuit"
},
"110": {
"name": "3DS Music Park",
"author": "Atlas",
"version": "v2.1",
"type": "Retro",
"slot": "Rainbow Road"
},
"111": {
"name": "3DS Rock Rock Mountain",
"author": "ZPL",
"version": "v1.0-rr",
"type": "Retro",
"slot": "Daisy Circuit"
},
"112": {
"name": "3DS Piranha Plant Slide",
"author": "ZPL",
"version": "v1.1",
"type": "Retro",
"slot": "Koopa Cape"
},
"113": {
"name": "3DS Wario's Shipyard",
"author": "ZPL, Skipper93653",
"version": "v2.1",
"type": "Retro",
"slot": "Koopa Cape"
},
"114": {
"name": "3DS Neo Bowser City",
"author": "ZPL",
"version": "v1.2",
"type": "Retro",
"slot": "Mario Circuit"
},
"115": {
"name": "3DS Maka Wuhu",
"author": "FunkyDude15, Wexos",
"version": "Beta 3",
"type": "Retro",
"slot": "Daisy Circuit"
},
"116": {
"name": "3DS DK Jungle",
"author": "ZPL",
"version": "v2.12",
"type": "Retro",
"slot": "N64 DK's Jungle Parkway"
},
"117": {
"name": "3DS Rosalina's Ice World",
"author": "SquireTurnbolt",
"version": "v1.2",
"type": "Retro",
"slot": "N64 Sherbet Land"
},
"118": {
"name": "3DS Bowser's Castle",
"author": "ZPL",
"version": "v1.2.4",
"type": "Retro",
"slot": "GBA Bowser Castle 3"
},
"119": {
"name": "3DS Rainbow Road",
"author": "ZPL",
"version": "v2.2-rr",
"type": "Retro",
"slot": "Rainbow Road"
},
"120": {
"name": "Wii U Mario Kart Stadium",
"author": "ZPL",
"version": "v1.0",
"type": "Retro",
"slot": "Mario Circuit"
},
"121": {
"name": "Wii U Sweet Sweet Canyon",
"author": "Cats4Life",
"version": "v1.12",
"type": "Retro",
"slot": "GCN Mario Circuit"
},
"122": {
"name": "Wii U Thwomp Ruins",
"author": "SquireTurnbolt",
"version": "v1.8",
"type": "Retro",
"slot": "DK Summit"
},
"123": {
"name": "Wii U Mario Circuit",
"author": "ZPL",
"version": "v1.0",
"type": "Retro",
"slot": "DS Delfino Square"
},
"124": {
"name": "Wii U Toad Harbor",
"author": "ZPL",
"version": "v1.01",
"type": "Retro",
"slot": "DS Delfino Square"
},
"125": {
"name": "Wii U Twisted Mansion",
"author": "TheGamingBram",
"version": "v2.7-rr",
"type": "Retro",
"slot": "SNES Ghost Valley 2"
},
"126": {
"name": "Wii U Shy Guy Falls",
"author": "SamanthaMK",
"version": "v1.0",
"type": "Retro",
"slot": "GCN Peach Beach"
},
"127": {
"name": "Wii U Dolphin Shoals",
"author": "MrFluffy",
"version": "v1.1.rr",
"type": "Retro",
"slot": "Koopa Cape"
},
"128": {
"name": "Wii U Electrodrome",
"author": "SquireTurnbolt",
"version": "v1.3",
"type": "Retro",
"slot": "Daisy Circuit"
},
"129": {
"name": "Wii U Mount Wario",
"author": "TheGamingBram, Cats4Life",
"version": "v1.0-rr",
"type": "Retro",
"slot": "DK Summit"
},
"130": {
"name": "Wii U Cloudtop Cruise",
"author": "ZPL",
"version": "v1.0",
"type": "Retro",
"slot": "Luigi Circuit"
},
"131": {
"name": "Wii U Bone-Dry Dunes",
"author": "Luca",
"version": "Beta 3",
"type": "Retro",
"slot": "DS Desert Hills"
},
"132": {
"name": "Wii U Bowser's Castle",
"author": "TheGamingBram, Cats4Life",
"version": "v4.11-rr",
"type": "Retro",
"slot": "N64 Bowser's Castle"
},
"133": {
"name": "Wii U Rainbow Road",
"author": "Squadaloo",
"version": "v1.2",
"type": "Retro",
"slot": "Rainbow Road"
},
"134": {
"name": "Wii U Mute City",
"author": "Cal",
"version": "v1.15",
"type": "Retro",
"slot": "Luigi Circuit"
},
"135": {
"name": "Wii U Excitebike Arena",
"author": "ZPL",
"version": "v1.0",
"type": "Retro",
"slot": "Mario Circuit"
},
"136": {
"name": "Wii U Hyrule Circuit",
"author": "Ermelber, ZPL",
"version": "v1.2",
"type": "Retro",
"slot": "Luigi Circuit"
},
"137": {
"name": "Wii U Wild Woods",
"author": "TheGamingBram",
"version": "v2.2-rr2",
"type": "Retro",
"slot": "Maple Treeway"
},
"138": {
"name": "Wii U Animal Crossing",
"author": "ZPL",
"version": "v1.0-summer-rr2",
"type": "Retro",
"slot": "GCN Mario Circuit"
},
"139": {
"name": "Wii U Super Bell Subway",
"author": "TheGamingBram",
"version": "v2.5-rr2",
"type": "Retro",
"slot": "Coconut Mall"
},
"140": {
"name": "Wii U Big Blue",
"author": "ZPL",
"version": "v1.01",
"type": "Retro",
"slot": "Koopa Cape"
},
"141": {
"name": "SW Sky-High Sundae",
"author": "ZPL",
"version": "v1.1",
"type": "Retro",
"slot": "Mario Circuit"
},
"142": {
"name": "SW Yoshi's Island",
"author": "SquireTurnbolt, TheGamingBram",
"version": "v1.31",
"type": "Retro",