-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathMP2K.yaml
1703 lines (1703 loc) · 46.5 KB
/
MP2K.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
A2UJ_00:
Name: "Mother 1 + 2 (Japan)"
SongTableOffsets: 0x10B530
SongTableSizes: 451
SampleRate: 2
ReverbType: "Normal"
Reverb: 0
Volume: 15
HasGoldenSunSynths: False
HasPokemonCompression: False
A3UJ_00:
Name: "Mother 3 (Japan)"
SongTableOffsets: 0x120E94
SongTableSizes: 1968
SampleRate: 4
ReverbType: "Normal"
Reverb: 0
Volume: 15
HasGoldenSunSynths: False
HasPokemonCompression: False
A4AE_00:
Name: "The Simpson's Road Rage (USA)"
SongTableOffsets: 0x125FD8
SongTableSizes: 112
SampleRate: 2
ReverbType: "Normal"
Reverb: 0
Volume: 11
HasGoldenSunSynths: False
HasPokemonCompression: False
A4AX_00:
Name: "The Simpson's Road Rage (Europe)"
SongTableOffsets: 0x1281D0
SongTableSizes: 113
Copy: "A4AE_00"
A7KE_00:
Name: "Kirby: Nightmare in Dream Land (USA)"
SongTableOffsets: 0x60B460
SongTableSizes: 579
SampleRate: 4
ReverbType: "Normal"
Reverb: 0
Volume: 15
HasGoldenSunSynths: False
HasPokemonCompression: False
Playlists:
Sound Test (Music):
26: "0 - Title Screen"
40: "1 - File Select"
0: "2 - Vegetable Valley"
21: "3 - Ice Cream Island"
11: "4 - Butter Building"
17: "5 - Grape Garden"
22: "6 - Yogurt Yard"
12: "7 - Orange Ocean"
18: "8 - Rainbow Resort"
15: "9 - Fortified Fronts"
2: "10 - Sky Stages"
37: "11 - Mini-Boss Fight"
30: "12 - Boss Fight"
1: "13 - Boss Defeated!"
14: "14 - Victory Dance 1"
13: "15 - Victory Dance 2"
39: "16 - Arena"
25: "17 - Museum"
38: "18 - King Dedede's Theme"
20: "19 - Green Greens Theme"
27: "20 - Fountain of Dreams"
31: "21 - Returning the Star Rod!"
32: "22 - Nightmare's Power Orb"
33: "23 - Nightmare's Pursuit"
34: "24 - Fighting the Nightmare!"
24: "25 - The End!"
3: "26 - Down!"
4: "27 - Level 1: Vegetable Valley"
5: "28 - Level 2: Ice Cream Island"
6: "29 - Level 3: Butter Building"
7: "30 - Level 4: Grape Garden"
8: "31 - Level 5: Yogurt Yard"
9: "32 - Level 6: Orange Ocean"
10: "33 - Level 7: Rainbow Resort"
35: "34 - Minigame: Quick Draw"
46: "35 - Minigame: Bomb Rally"
42: "36 - Minigame: Kirby's Air Grind"
43: "37 - Minigame: Kirby's Air Grind (Goal!)"
44: "38 - Minigame: Kirby's Air Grind (Results)"
23: "39 - Minigame Result: Bad!"
28: "40 - Minigame Result: Good!"
29: "41 - Minigame Result: Perfect!"
19: "42 - Invincible Candy"
16: "43 - Game Over"
Other Music:
47: "Vegetable Valley (No Intro)"
53: "Ice Cream Island (No Intro)"
48: "Butter Building (No Intro)"
50: "Grape Garden (No Intro)"
54: "Yogurt Yard (No Intro)"
49: "Orange Ocean (No Intro)"
51: "Rainbow Resort (No Intro)"
55: "Fortified Fronts (No Intro)"
52: "Green Greens (No Intro)"
41: "Building of Battles (Outside)"
56: "Nightmare Appears!"
A7KJ_00:
Name: "Kirby: Nightmare in Dream Land (Japan)"
SongTableOffsets: 0x60F36C
Copy: "A7KE_00"
A7KP_00:
Name: "Kirby: Nightmare in Dream Land (Europe)"
SongTableOffsets: 0x843B50
Copy: "A7KE_00"
A88E_00:
Name: "Mario & Luigi - Superstar Saga (USA)"
SongTableOffsets: 0xFB5DA4
SongTableSizes: 323
SampleRate: 2
ReverbType: "Normal"
Reverb: 0
Volume: 15
HasGoldenSunSynths: False
HasPokemonCompression: False
A88J_00:
Name: "Mario & Luigi - Superstar Saga (Japan)"
SongTableOffsets: 0xFB5E00
Copy: "A88E_00"
A88P_00:
Name: "Mario & Luigi - Superstar Saga (Europe)"
Copy: "A88E_00"
AE7E_00:
Name: "Fire Emblem: The Blazing Blade (USA)"
SongTableOffsets: 0x69D6D8
SongTableSizes: 1001
SampleRate: 3
ReverbType: "Normal"
Reverb: 0
Volume: 13
HasGoldenSunSynths: False
HasPokemonCompression: False
AE7J_00:
Name: "Fire Emblem: The Blazing Blade (Japan)"
SongTableOffsets: 0x6EA8C8
Copy: "AE7E_00"
AE7X_00:
Name: "Fire Emblem: The Blazing Blade (Europe)"
SongTableOffsets: 0x6805F4
Copy: "AE7E_00"
AE7Y_00:
SongTableOffsets: 0x67F1F4
Copy: "AE7X_00"
AEFJ_00:
Name: "Fire Emblem: The Binding Blade (Japan)"
SongTableOffsets: 0x3994D8
SongTableSizes: 621
SampleRate: 3
ReverbType: "Normal"
Reverb: 0
Volume: 13
HasGoldenSunSynths: False
HasPokemonCompression: False
AFXE_00:
Name: "Final Fantasy Tactics Advance (USA)"
SongTableOffsets: 0x14BB48
SongTableSizes: 640
SampleRate: 4
ReverbType: "Normal"
Reverb: 0
Volume: 15
HasGoldenSunSynths: False
HasPokemonCompression: False
Playlists:
Music (OST Order):
42: "Main Theme"
24: "Snow Dancing in the Schoolyard"
33: "Companions That Surpassed Their Tribe"
20: "Magic Beast Farm"
17: "Crystal"
25: "Undeniable Anxiety"
36: "Amber Valley"
6: "Bell of Victory (Fanfare)"
15: "At the Bar"
12: "Different World Ivalice"
10: "Engange (Fanfare)"
0: "Gathering Allies"
11: "Walking in Ivalice"
4: "Wind of Hope (Fanfare)"
14: "Teach Me, Mont Blanc"
9: "Wounded Comrades (Fanfare)"
39: "Undefeated Heart"
2: "Gained Fruit (Fanfare)"
28: "Marche"
37: "Painful Battle"
5: "Notice of Retreat (Fanfare)"
7: "Sleep of Defeat (Fanfare)"
21: "Prison"
40: "Surpassing The Wall"
3: "Exhausted Ones (Fanfare)"
29: "Mewt"
35: "Battle Of Hope"
8: "Level Up (Fanfare)"
22: "Law Card"
30: "Ritz"
19: "Mysterious Shop"
34: "The Road We Both Aim For"
16: "Wind of Liberation (Fanfare)"
27: "Confusion"
23: "Judge (Fanfare)"
38: "Beyond The Wasteland"
26: "The World Starting To Move"
41: "Unavoidable Destiny"
45: "Incarnation"
31: "Vanishing World"
32: "A Place We Should Return To"
47: "Fulfilled Dream Segment"
Music (Bonus):
13: "Main Theme (Beta Version)"
48: "St Ivalice Turns Into Ivalice"
49: "Save Menu Theme"
AFXJ_00:
Name: "Final Fantasy Tactics Advance (Japan)"
SongTableOffsets: 0x1401A8
Copy: "AFXE_00"
AFXP_00:
Name: "Final Fantasy Tactics Advance (Europe)"
SongTableOffsets: 0x14F540
Copy: "AFXE_00"
AFZE_00:
Name: "F-Zero: Maximum Velocity (USA)"
SongTableOffsets: 0x54BF8
SongTableSizes: 72
SampleRate: 2
ReverbType: "Normal"
Reverb: 0
Volume: 10
HasGoldenSunSynths: False
HasPokemonCompression: False
AFZJ_00:
Name: "F-Zero: Maximum Velocity (Japan)"
SongTableOffsets: 0x58324
Copy: "AFZE_00"
AGFD_00:
Name: "Golden Sun: The Lost Age (Germany)"
Copy: "AGFE_00"
AGFE_00:
Name: "Golden Sun: The Lost Age (USA)"
SongTableOffsets: 0x1C4530
SongTableSizes: 800
SampleRate: 8
ReverbType: "Camelot2"
Reverb: 0
Volume: 15
HasGoldenSunSynths: True
HasPokemonCompression: False
AGFF_00:
Name: "Golden Sun: The Lost Age (France)"
Copy: "AGFE_00"
AGFI_00:
Name: "Golden Sun: The Lost Age (Italy)"
Copy: "AGFE_00"
AGFJ_00:
Name: "Golden Sun: The Lost Age (Japan)"
Copy: "AGFE_00"
AGFS_00:
Name: "Golden Sun: The Lost Age (Spain)"
Copy: "AGFE_00"
AGLJ_00:
Name: "Tomato Adventure (Japan)"
SongTableOffsets: 0x4B11A4
SongTableSizes: 244
SampleRate: 4
ReverbType: "Normal"
Reverb: 0
Volume: 15
HasGoldenSunSynths: False
HasPokemonCompression: False
AGSD_00:
Name: "Golden Sun (Germany)"
SongTableOffsets: 0xFD484
Copy: "AGSE_00"
AGSE_00:
Name: "Golden Sun (USA)"
SongTableOffsets: 0xFC684
SongTableSizes: 312
SampleRate: 6
ReverbType: "Camelot1"
Reverb: 0
Volume: 15
HasGoldenSunSynths: True
HasPokemonCompression: False
AGSF_00:
Name: "Golden Sun (France)"
SongTableOffsets: 0xFEE84
Copy: "AGSE_00"
AGSI_00:
Name: "Golden Sun (Italy)"
Copy: "AGSE_00"
AGSJ_00:
Name: "Golden Sun (Japan)"
SongTableOffsets: 0xF3684
Copy: "AGSE_00"
AGSS_00:
Name: "Golden Sun (Spain)"
SongTableOffsets: 0xFEE84
Copy: "AGSE_00"
AINJ_00:
Name: "Initial D: Another Stage (Japan)"
SongTableOffsets: 0x648B38
SongTableSizes: 88
SampleRate: 2
ReverbType: "Normal"
Reverb: 0
Volume: 13
HasGoldenSunSynths: False
HasPokemonCompression: False
AMAC_00:
Name: "Super Mario Advance (China)"
SongTableOffsets: 0xF64C4
Copy: "AMZE_00"
AMAE_00:
Name: "Super Mario Advance (Europe)"
SongTableOffsets: 0xF4368
Copy: "AMZE_00"
AMAJ_00:
Name: "Super Mario Advance (Japan)"
SongTableOffsets: 0xF3F18
Copy: "AMZE_00"
AMKE_00:
Name: "Mario Kart: Super Circuit (USA)"
SongTableOffsets: 0x102498
SongTableSizes: 403
SampleRate: 2
ReverbType: "Normal"
Reverb: 0
Volume: 15
HasGoldenSunSynths: False
HasPokemonCompression: False
Playlists:
Music:
2: "Main Menu"
3: "Race Intro (Grand Prix)"
4: "Race Intro (Time Trial / Quick Race)"
5: "1st Place"
6: "2nd-4th Place"
7: "5th Place and Under"
10: "Starman"
11: "Lightning"
12: "Ghost"
13: "Double Ghost"
14: "1st Place Results"
15: "2nd-4th Place Results"
16: "5th Place and Under Results"
17: "Quick Race Results"
18: "Battle Mode"
19: "Final Lap"
20: "20"
21: "Shy Guy Beach / Cheep-Cheep Island"
22: "Bowser's Castles"
23: "Cheese Land"
24: "Riverside Park"
25: "Mario/Peach/Luigi Circuit"
26: "Sunset Wilds"
27: "Boo Lake / Broken Pier"
28: "Rainbow Road"
29: "Yoshi Desert"
30: "Ribbon Road"
31: "Snow Land"
32: "Lakeside Park"
33: "Battle Mode Win"
34: "Battle Mode Lose"
35: "Sky Garden"
36: "Rainbow Road (Intro)"
37: "Ghost Data Trading"
40: "Connection Screen"
41: "SNES Mario Circuit"
42: "SNES Donut Plains"
43: "SNES Choco Island"
44: "SNES Vanilla Lake"
45: "SNES Ghost Valley"
46: "SNES Rainbow Road"
47: "SNES Bowser's Castle"
48: "SNES Koopa Beach"
51: "Night Opening"
52: "Title Screen"
53: "Opening"
54: "Credits"
55: "Award Ceremony (Intro)"
56: "Award Ceremony"
57: "Award Ceremony Lose"
59: "59"
60: "60"
AMKJ_00:
Name: "Mario Kart: Super Circuit (Japan)"
SongTableOffsets: 0x1245C8
Copy: "AMKE_00"
AMKP_00:
Name: "Mario Kart: Super Circuit (Europe)"
Copy: "AMKE_00"
AMTC_00:
Name: "Metroid Fusion (China)"
SongTableOffsets: 0xAB0E4
Copy: "AMTE_00"
AMTE_00:
Name: "Metroid Fusion (USA)"
SongTableOffsets: 0xA8D3C
SongTableSizes: 745
SampleRate: 2
ReverbType: "Normal"
Reverb: 0
Volume: 15
HasGoldenSunSynths: False
HasPokemonCompression: False
Playlists:
Music:
96: "Opening"
73: "Opening Ending"
74: "Title"
4: "Sector 1 (SRX)"
42: "Environmental Silence w/Ambience"
30: "BSL Ambience"
17: "Samus Fanfare"
43: "Environmental Tension"
88: "Environmental Shock"
44: "Heading to the Huge Bio-Readings"
46: "Observation Deck"
47: "Power Down"
24: "Tension Before a Confrontation"
25: "VS. Arachnus"
16: "Item Acquisition Fanfare"
48: "X Invasion Detected"
49: "SA-X Appears (First Time)"
11: "Navigation Room"
67: "VS. Charge Core-X/Nettori Core-X"
59: "Objective Complete"
52: "After Sector 1"
170: "Surprise!"
95: "Environmental Disquiet"
6: "Sector 2 (TRO)"
15: "Data Room"
26: "VS. Zazabi"
21: "SA-X Appears"
23: "SA-X Chase"
89: "Environmental Silence"
9: "Sector 4 (AQA)"
63: "VS. Serris/Yakuza"
7: "Sector 3 (PYR)"
27: "VS. B.O.X."
45: "Trust In Samus"
92: "Environmental Mystery"
10: "Sector 6 (NOC)"
64: "VS. Varia Core-X"
8: "Sector 5 (ARC)"
90: "Sector 3 Emergency Situation"
53: "Sector 3 Restore the Cooling Unit Timer Mission"
93: "Environmental Intrigue"
68: "VS. Nettori"
65: "VS. Nightmare"
60: "Sector 4 (AQA) Underwater Area"
39: "Environmental Shock - Restricted Lab"
50: "Sector 1 Before Ridley/VS. Omega Metroid"
66: "VS. Neo Ridley"
91: "Final Mission"
81: "VS. SA-X"
56: "Station Escape Timer Mission"
86: "Epilogue"
83: "Epilogue Ending"
85: "Ending"
3: "Game Over"
Unused Music:
31: "Environmental Tension w/Ambience (Unused)"
87: "Environmental Disquiet (Unused Duplicate)"
54: "SA-X Chase (Unused Duplicate)"
62: "Sector 4 (AQA) Underwater Area (Unused)"
94: "Unused 1"
32: "Unused 2"
Others:
51: "Power Down (SFX Only)"
20: "Item Acquisition"
77: "Suit Upgrade"
AMTJ_00:
Name: "Metroid Fusion (Japan)"
SongTableOffsets: 0xAB0A0
Copy: "AMTE_00"
AMTP_00:
Name: "Metroid Fusion (Europe)"
SongTableOffsets: 0xA9398
Copy: "AMTE_00"
AMZE_00:
Name: "Super Mario Advance (USA)"
SongTableOffsets: 0xF40D4
SongTableSizes: 447
SampleRate: 2
ReverbType: "Normal"
Reverb: 0
Volume: 15
HasGoldenSunSynths: False
HasPokemonCompression: False
AWAC_00:
Name: "Wario Land 4 (China)"
SongTableOffsets: 0x98CB8
Copy: "AWAE_00"
AWAE_00:
Name: "Wario Land 4 (USA)"
SongTableOffsets: 0x98028
SongTableSizes: 819
SampleRate: 3
ReverbType: "Normal"
Reverb: 0
Volume: 15
HasGoldenSunSynths: False
HasPokemonCompression: False
Playlists:
Music:
635: "Intro"
636: "Work It!"
638: "Enter the Pyramid"
639: "Map"
672: "Hall of Hieroglyphs"
651: "Palm Tree Paradise"
652: "Palm Tree Paradise (Caves)"
653: "Palm Tree Paradise (Back From Caves)"
654: "Wildflower Fields"
655: "Mystic Lake (Lakeside)"
656: "Mystic Lake (Inside Jungle)"
657: "Mystic Lake (Back to Lakeside)"
658: "Monsoon Jungle"
659: "The Curious Factory"
660: "The Toxic Landfill"
662: "40 Below Fridge"
661: "Pinball Zone"
663: "Toy Block Tower"
664: "The Big Board"
665: "Doodle Woods"
666: "Domino Row"
667: "Crescent Moon Village"
668: "Arabian Night"
670: "Fiery Cavern"
669: "Hotel Horror"
671: "Golden Passage"
617: "Wario's Workout"
673: "Puzzle Room"
674: "Puzzle Room (2)"
217: "Hurry Up Time Limit"
681: "Hurry Up!!!"
450: "Only a Few Seconds Left!!!"
452: "Coin Loss..."
642: "Inside the Void"
342: "Four Pieces"
594: "High Score"
448: "Door to Next Stage Opens"
457: "Door to Next Stage Opens (2)"
421: "Stage Already Clear"
447: "Stage Already Clear (2)"
475: "Can't Enter Boss Room"
425: "Boss Room Opens"
473: "Enter Boss Room"
474: "Track 37"
640: "Boss Room"
682: "Item Shop"
493: "Boss's Presence"
683: "Here Comes the Mystery Man"
684: "Here Comes the Mystery Man (Shorter Version)"
508: "Bugle"
511: "Large Lips"
512: "Large Lips (Longer Version)"
513: "Random Damage Sound"
124: "Boss is Ready"
207: "Boss is Ready (Shorter Version)"
687: "Boss"
429: "Treasures (Part 1)"
430: "Treasures (Part 2)"
431: "Treasures (Part 3)"
422: "Victory"
432: "Victory (2)"
701: "Mini Game Shop"
709: "Wario's Homerun Derby"
710: "Homerun!"
715: "Cheerleaders (Part 1)"
716: "Cheerleaders (Part 2)"
702: "The Wario Hop Begins"
707: "The Wario Hop Begins (No Loop)"
703: "The Wario Hop 1"
704: "The Wario Hop 2"
705: "The Wario Hop 3"
706: "The Wario Hop 4"
708: "Wario's Roulette"
711: "Failure 1"
712: "Failure 2"
713: "Failure 3"
714: "Failure 4"
593: "Mini Game High Score"
191: "Golden Diva Appears"
183: "Golden Diva is Ready"
688: "Golden Diva"
689: "Golden Diva's Lip is Left"
489: "All of my Treasures!"
800: "Escape from the Pyramid"
801: "Track 68"
802: "Thank You Wario"
803: "Japanese Ending Song"
806: "Japanese Ending Song (2)"
809: "Japanese Ending Song (3)"
812: "Japanese Ending Song (4)"
815: "English Ending Song"
816: "English Ending Song (2)"
817: "English Ending Song (3)"
818: "English Engind Song (4)"
814: "The Big Board (Ending Mix)"
813: "Mystic Lake (Ending Mix)"
811: "Wildflower Fields (Ending Mix)"
810: "Hall of Hieroglyphs (Ending Mix)"
808: "Doodle Woods (Ending Mix)"
807: "Crescent Moon Village (Ending Mix)"
805: "Monsoon Jungle (Ending Mix)"
804: "Toy Blick Tower (Ending Mix)"
618: "Sound Room"
619: "About That Shepherd"
620: "Things That Never Change"
621: "Tomorrow's Blood Pressure"
622: "Beyond the Headrush"
623: "Driftwood & The Island Dog"
624: "The Judge's Feet"
625: "The Moon's Lamppost"
626: "Soft Shell"
627: "So Sleepy"
628: "The Short Futon"
629: "Avocado Song"
630: "Mr. Fly"
631: "Yesterday's Words"
632: "The Errand"
633: "You and Your Shoes"
634: "Mr. Ether and Planaria"
727: "Medamayaki (Karaoke)"
728: "Medamayaki (Karaoke) (2)"
729: "Medamayaki (Voice)"
AWAJ_00:
Name: "Wario Land 4 (Japan)"
Copy: "AWAE_00"
AXPD_00:
Name: "Pokémon Sapphire Version (Germany)"
SongTableOffsets: 0x463394
Copy: "AXVD_00"
AXPD_01:
Copy: "AXPD_00"
AXPE_00:
Name: "Pokémon Sapphire Version (USA)"
SongTableOffsets: 0x4554E8
Copy: "AXVE_00"
AXPE_01:
SongTableOffsets: 0x455500
Copy: "AXPE_00"
AXPE_02:
Copy: "AXPE_01"
AXPF_00:
Name: "Pokémon Sapphire Version (France)"
SongTableOffsets: 0x45E094
Copy: "AXVF_00"
AXPF_01:
Copy: "AXPF_00"
AXPI_00:
Name: "Pokémon Sapphire Version (Italy)"
SongTableOffsets: 0x4574B4
Copy: "AXVI_00"
AXPI_01:
Copy: "AXPI_00"
AXPJ_00:
Name: "Pokémon Sapphire Version (Japan)"
SongTableOffsets: 0x416ECC
Copy: "AXVJ_00"
AXPS_00:
Name: "Pokémon Sapphire Version (Spain)"
SongTableOffsets: 0x45A660
Copy: "AXVS_00"
AXPS_01:
Copy: "AXPS_00"
AXVD_00:
Name: "Pokémon Ruby Version (Germany)"
SongTableOffsets: 0x463428
Copy: "AXVE_00"
AXVD_01:
Copy: "AXVD_00"
AXVE_00:
Name: "Pokémon Ruby Version (USA)"
SongTableOffsets: 0x45548C
SongTableSizes: 468
SampleRate: 3
ReverbType: "Normal"
Reverb: 0
Volume: 12
HasGoldenSunSynths: False
HasPokemonCompression: True
Playlists:
Disc 1:
414: "Opening Movie: Setting out on a Journey in the Hoenn Region"
442: "Opening Movie: Double Battles"
413: "Title Screen"
374: "Introductions"
405: "Littleroot Town"
383: "Birch Pokémon Lab"
415: "May"
410: "H-Help Me!"
457: "Battle! (Wild Pokémon)"
353: "Victory! (Wild Pokémon)"
359: "Route 101"
363: "Oldale Town"
400: "Pokémon Center"
368: "Pokémon Healed"
380: "Trainers' Eyes Meet (Youngster)"
407: "Trainers' Eyes Meet (Lass)"
459: "Battle! (Trainer Battle)"
412: "Victory! (Trainer Battle)"
367: "Level Up!"
362: "Petalburg City"
420: "Hurry Along"
401: "Route 104"
366: "Petalburg Woods"
441: "Team Magma Appears!"
458: "Battle! (Team Aqua / Team Magma)"
424: "Victory! (Team Aqua / Team Magma)"
399: "Rustboro City"
435: "Trainers' School"
431: "Crossing the Sea"
427: "Dewford Town"
379: "Trainers' Eyes Meet (Tuber♀)"
433: "Slateport City"
375: "Oceanic Museum"
360: "Route 110"
403: "Cycling"
426: "Game Corner"
390: "Win"
391: "Lose"
392: "Reel Time"
389: "Jackpot"
398: "Verdanturf Town"
418: "Route 113"
449: "Twins"
437: "Fallarbor Town"
425: "Cable Car"
406: "Mt. Chimney"
451: "Trainers' Eyes Meet (Hiker)"
409: "Route 111"
364: "Pokémon Gym"
460: "Battle! (Gym Leader)"
354: "Victory! (Gym Leader)"
369: "Obtained a Badge!"
372: "Obtained a TM!"
365: "Surf"
Disc 2:
402: "Route 119"
382: "Fortree City"
361: "Route 120"
453: "Interviewers"
428: "Safari Zone"
397: "Trainers' Eyes Meet (Gentleman)"
408: "Lilycove City"
373: "Museum"
378: "Move Deleted"
421: "Brendan"
464: "Battle! (Brendan/May)"
376: "Evolution (Intro)"
377: "Evolution"
371: "Congratulations! Your Pokémon Evolved!"
404: "Poké Mart"
432: "Mt. Pyre"
416: "Trainers' Eyes Meet (Psychic)"
423: "Trainers' Eyes Meet (Hex Maniac)"
434: "Mt. Pyre Exterior"
430: "Hideout"
370: "Obtained an Item!"
419: "Team Aqua Appears!"
466: "Battle! (Team Aqua/Team Magma Leaders)"
388: "The Super-Ancient Pokémon Awaken!"
444: "Drought"
443: "Heavy Rain"
411: "Dive"
445: "Sootopolis City"
386: "Cave of Origin"
463: "Battle! (Super-Ancient Pokémon)"
385: "Trainers' Eyes Meet (Swimmer♀)"
422: "Evergrande City"
387: "Obtained a Berry!"
452: "Contest Lobby"
440: "Pokémon Contest!"
446: "Results Announcement"
439: "Contest Winner"
438: "Sealed Chamber"
462: "Battle! (Regirock/Regice/Registeel)"
448: "The Trick House"
381: "Abandoned Ship"
384: "Battle Tower"
429: "Victory Road"
417: "Trainers' Eyes Meet (Cooltrainer)"
450: "The Elite Four Appear!"
465: "Battle! (Elite Four)"
454: "Champion Steven"
461: "Battle! (Steven)"
355: "Victory! (Steven)"
447: "Room of Glory"
436: "The Hall of Fame"
455: "Ending Theme"
456: "The End"
Other Music:
350: "Unused - TETSUJI"
351: "Unused - Route 38"
352: "Victory! (Wild Pokémon) (No Intro)"
356: "Unused - Pokémon Center (2)"
357: "Unused - Viridian City"
358: "Unused - Battle! (Entei/Raikou/Suicune)"
393: "Pokémon Contest! (Multiplayer - Player 1)"
394: "Pokémon Contest! (Multiplayer - Player 2)"
395: "Pokémon Contest! (Multiplayer - Player 3)"
396: "Pokémon Contest! (Multiplayer - Player 4)"
467: "Unused - Team Rocket Appears!"
AXVE_01:
SongTableOffsets: 0x4554A0
Copy: "AXVE_00"
AXVE_02:
Copy: "AXVE_01"
AXVF_00:
Name: "Pokémon Ruby Version (France)"
SongTableOffsets: 0x45E564
Copy: "AXVE_00"
AXVF_01:
Copy: "AXVF_00"
AXVI_00:
Name: "Pokémon Ruby Version (Italy)"
SongTableOffsets: 0x457810
Copy: "AXVE_00"
AXVI_01:
Copy: "AXVI_00"
AXVJ_00:
Name: "Pokémon Ruby Version (Japan)"
SongTableOffsets: 0x416EE4
Copy: "AXVE_00"
AXVS_00:
Name: "Pokémon Ruby Version (Spain)"
SongTableOffsets: 0x45A924
Copy: "AXVE_00"
AXVS_01:
Copy: "AXVS_00"
AZLE_00:
Name: "The Legend of Zelda: A Link to the Past and Four Swords (USA)"
SongTableOffsets: 0x3C3BBC
SongTableSizes: 545
SampleRate: 3
ReverbType: "Normal"
Reverb: 0
Volume: 15
HasGoldenSunSynths: False
HasPokemonCompression: False
AZLJ_00:
Name: "The Legend of Zelda: A Link to the Past and Four Swords (Japan)"
SongTableOffsets: 0x3E7A54
Copy: "AZLE_00"
AZLP_00:
Name: "The Legend of Zelda: A Link to the Past and Four Swords (Europe)"
SongTableOffsets: 0x43F8AC
Copy: "AZLE_00"
B24E_00:
Name: "Pokémon Mystery Dungeon: Red Rescue Team (USA)"
SongTableOffsets: 0x1E866BC
SongTableSizes: 940
SampleRate: 5
ReverbType: "Normal"
Reverb: 0
Volume: 14
HasGoldenSunSynths: False
HasPokemonCompression: False
Playlists:
Disc 1:
40: "Intro"
43: "Title"
8: "File Select"
4: "Personality Test"
101: "Awakening"
10: "There's Trouble!"
125: "Tiny Woods"
114: "At the End of the Road"
103: "Happiness"
1: "Rescue Team Base"
46: "Insert Title"
14: "Thunderwave Cave"
12: "Dream"
7: "Pokémon Plaza"
107: "Friend Area ~ Field"
105: "Friend Area ~ Steppe"
121: "Friend Area ~ Forest"
116: "Friend Area ~ Wilds"
2: "Friend Area ~ Swamp"
16: "Friend Area ~ Pond"
120: "Mt. Steel"
11: "Versus Boss"
112: "Friend Area ~ Lab"
110: "Makuhita Dojo"
15: "Sinister Woods"
9: "Danger"
113: "Silent Chasm"
111: "Mt. Thunder"
126: "Mt. Thunder Peak"
20: "Great Canyon"
6: "The Legend of Ninetales"
24: "Run Away"
Disc 2:
102: "Lapis Cave"
38: "The Mountain of Fire"
25: "Mt. Blaze"
17: "Kecleon Shop"
18: "Stop! Thief!"
33: "Mt. Blaze Peak"
36: "Escape Through the Snow"
104: "Frosty Forest"
39: "Frosty Grotto"
5: "Benevolent Spirit"
115: "Mt. Freeze"
123: "Mt. Freeze Peak"
108: "Magma Cavern"
128: "Monster House!"
124: "Magma Cavern Pit"
19: "World Calamity"
29: "Dream Eater"
22: "Sky Tower"
23: "Sky Tower Summit"
26: "Rayquaza's Domain"
32: "Versus Legendary"
37: "The Other Side"
42: "Farewell"
44: "Staff Roll"
45: "Time of Reunion"
106: "Friend Area ~ Oceanic"
28: "Friend Area ~ Rainbow Peak"
3: "Friend Area ~ Caves"
35: "Friend Area ~ Cryptic Cave"
118: "Friend Area ~ Southern Island"
122: "Friend Area ~ Final Island"
21: "Stormy Sea"
13: "Buried Relic"
117: "Friend Area ~ Legendary Island"
30: "Friend Area ~ Deep-Sea Current"
127: "Friend Area ~ Healing Forest"
31: "Friend Area ~ Seafloor Cave"
34: "Friend Area ~ Volcanic Pit"
27: "Friend Area ~ Stratos Lookout"
119: "Friend Area ~ Enclosed Island"
100: "Unused 1"
109: "Unused 2"
Other Music:
41: "41"
51: "Exploration Failed"
52: "Exploration Complete!"
Dungeon Music:
125: "Tiny Woods"
14: "Thunderwave Cave"
120: "Mt. Steel"
110: "Makuhita Dojo"
15: "Sinister Woods"
113: "Silent Chasm"
111: "Mt. Thunder"
126: "Mt. Thunder Peak"
20: "Great Canyon"
102: "Lapis Cave"
25: "Mt. Blaze"
33: "Mt. Blaze Peak"
104: "Frosty Forest"
39: "Frosty Grotto"
115: "Mt. Freeze"
123: "Mt. Freeze Peak"
108: "Magma Cavern"
124: "Magma Cavern Pit"
22: "Sky Tower"
23: "Sky Tower Summit"
21: "Stormy Sea"
13: "Buried Relic"
B24J_00:
Name: "Pokémon Mystery Dungeon: Red Rescue Team (Japan)"
SongTableOffsets: 0x1DC66BC
Copy: "B24E_00"
B24P_00:
Name: "Pokémon Mystery Dungeon: Red Rescue Team (Europe)"
Copy: "B24E_00"
BE8E_00:
Name: "Fire Emblem: The Sacred Stones (USA)"
SongTableOffsets: 0x224470
SongTableSizes: 1000
SampleRate: 3
ReverbType: "Normal"
Reverb: 0
Volume: 13
HasGoldenSunSynths: False
HasPokemonCompression: False
BE8J_00:
Name: "Fire Emblem: The Sacred Stones (Japan)"
SongTableOffsets: 0x214120
Copy: "BE8E_00"
BE8P_00:
Name: "Fire Emblem: The Sacred Stones (Europe)"
SongTableOffsets: 0x42FFB0
Copy: "BE8E_00"
BFFE_00:
Name: "Final Fantasy I & II - Dawn of Souls (USA)"
SongTableOffsets: 0x8D3058
SongTableSizes: 717
SampleRate: 5