-
Notifications
You must be signed in to change notification settings - Fork 0
/
appeared_musics.json
2628 lines (2628 loc) · 96.7 KB
/
appeared_musics.json
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
[
{
"title": "Order of Heroes",
"titleJPJA": "ヴァイスブレイヴ",
"filename": "bgm_event_plain1.ogg",
"notes": "Played during cutscenes.",
"titleId": "MID_MUSIC_NAME_BGM_EVENT_PLAIN_01",
"appearances": [
"S0001_MID_SCENARIO_OPENING_BGM",
"S0002_MID_SCENARIO_OPENING_BGM",
"S0101_MID_SCENARIO_OPENING_BGM",
"S0201_MID_SCENARIO_OPENING_BGM",
"S0301_MID_SCENARIO_MAP_BEGIN_BGM",
"S0401_MID_SCENARIO_MAP_BEGIN_BGM",
"S0501_MID_SCENARIO_MAP_BEGIN_BGM",
"S0601_MID_SCENARIO_MAP_BEGIN_BGM",
"S0701_MID_SCENARIO_MAP_BEGIN_BGM",
"S0801_MID_SCENARIO_MAP_BEGIN_BGM",
"S0901_MID_SCENARIO_MAP_BEGIN_BGM",
"S1101_MID_SCENARIO_OPENING_BGM",
"S1201_MID_SCENARIO_OPENING_BGM",
"S1301_MID_SCENARIO_OPENING_BGM",
"S1501_MID_SCENARIO_OPENING_BGM",
"S2031_MID_SCENARIO_MAP_BEGIN_BGM",
"S2034_MID_SCENARIO_MAP_BEGIN_BGM",
"S2041_MID_SCENARIO_MAP_BEGIN_BGM",
"S2043_MID_SCENARIO_MAP_BEGIN_BGM",
"S2044_MID_SCENARIO_MAP_BEGIN_BGM",
"S2051_MID_SCENARIO_OPENING_BGM",
"S2061_MID_SCENARIO_MAP_BEGIN_BGM",
"S2062_MID_SCENARIO_MAP_BEGIN_BGM",
"S2063_MID_SCENARIO_MAP_BEGIN_BGM",
"S2064_MID_SCENARIO_MAP_BEGIN_BGM",
"S2071_MID_SCENARIO_MAP_BEGIN_BGM",
"S2072_MID_SCENARIO_MAP_BEGIN_BGM",
"S2073_MID_SCENARIO_MAP_BEGIN_BGM",
"S2074_MID_SCENARIO_MAP_BEGIN_BGM",
"S2081_MID_SCENARIO_MAP_BEGIN_BGM",
"S2082_MID_SCENARIO_MAP_BEGIN_BGM",
"S2083_MID_SCENARIO_MAP_BEGIN_BGM",
"S2084_MID_SCENARIO_MAP_BEGIN_BGM",
"S2091_MID_SCENARIO_OPENING_BGM",
"S2092_MID_SCENARIO_MAP_BEGIN_BGM",
"S2094_MID_SCENARIO_MAP_BEGIN_BGM",
"S2101_MID_SCENARIO_OPENING_BGM",
"S2102_MID_SCENARIO_MAP_BEGIN_BGM",
"S2103_MID_SCENARIO_MAP_BEGIN_BGM",
"S2104_MID_SCENARIO_MAP_BEGIN_BGM",
"S2111_MID_SCENARIO_OPENING_BGM",
"S2112_MID_SCENARIO_MAP_BEGIN_BGM",
"S2114_MID_SCENARIO_MAP_BEGIN_BGM",
"S2121_MID_SCENARIO_OPENING_BGM",
"S2122_MID_SCENARIO_MAP_BEGIN_BGM",
"S2124_MID_SCENARIO_MAP_BEGIN_BGM",
"S2132_MID_SCENARIO_MAP_BEGIN_BGM",
"S2133_MID_SCENARIO_MAP_BEGIN_BGM",
"S3021_MID_SCENARIO_OPENING_BGM",
"S3025_MID_SCENARIO_OPENING_BGM",
"S3032_MID_SCENARIO_MAP_BEGIN_BGM",
"S3033_MID_SCENARIO_MAP_BEGIN_BGM",
"S3034_MID_SCENARIO_MAP_BEGIN_BGM",
"S3042_MID_SCENARIO_MAP_BEGIN_BGM",
"S3043_MID_SCENARIO_MAP_BEGIN_BGM",
"S3044_MID_SCENARIO_MAP_BEGIN_BGM",
"S3045_MID_SCENARIO_MAP_BEGIN_BGM",
"S3051_MID_SCENARIO_MAP_BEGIN_BGM",
"S3052_MID_SCENARIO_MAP_BEGIN_BGM",
"S3053_MID_SCENARIO_MAP_BEGIN_BGM",
"S3054_MID_SCENARIO_MAP_BEGIN_BGM",
"S3062_MID_SCENARIO_MAP_BEGIN_BGM",
"S3064_MID_SCENARIO_MAP_BEGIN_BGM",
"S3082_MID_SCENARIO_MAP_BEGIN_BGM",
"S3083_MID_SCENARIO_MAP_BEGIN_BGM",
"S3084_MID_SCENARIO_MAP_BEGIN_BGM",
"S3091_MID_SCENARIO_OPENING_BGM",
"S3092_MID_SCENARIO_MAP_BEGIN_BGM",
"S3093_MID_SCENARIO_MAP_BEGIN_BGM",
"S3102_MID_SCENARIO_MAP_BEGIN_BGM",
"S3103_MID_SCENARIO_MAP_BEGIN_BGM",
"S3112_MID_SCENARIO_MAP_BEGIN_BGM",
"S3113_MID_SCENARIO_MAP_BEGIN_BGM",
"S3114_MID_SCENARIO_MAP_BEGIN_BGM",
"S3122_MID_SCENARIO_MAP_BEGIN_BGM",
"S3123_MID_SCENARIO_MAP_BEGIN_BGM",
"S3124_MID_SCENARIO_MAP_BEGIN_BGM",
"S3132_MID_SCENARIO_MAP_BEGIN_BGM",
"S4015_MID_SCENARIO_OPENING_BGM",
"S4021_MID_SCENARIO_OPENING_BGM",
"S4022_MID_SCENARIO_MAP_BEGIN_BGM",
"S4023_MID_SCENARIO_MAP_BEGIN_BGM",
"S4024_MID_SCENARIO_MAP_BEGIN_BGM",
"S4032_MID_SCENARIO_MAP_BEGIN_BGM",
"S4033_MID_SCENARIO_MAP_BEGIN_BGM",
"S4034_MID_SCENARIO_MAP_BEGIN_BGM",
"S4042_MID_SCENARIO_MAP_BEGIN_BGM",
"S4043_MID_SCENARIO_MAP_BEGIN_BGM",
"S4044_MID_SCENARIO_MAP_BEGIN_BGM",
"S4052_MID_SCENARIO_MAP_BEGIN_BGM",
"S4053_MID_SCENARIO_MAP_BEGIN_BGM",
"S4054_MID_SCENARIO_MAP_BEGIN_BGM",
"S4062_MID_SCENARIO_MAP_BEGIN_BGM",
"S4063_MID_SCENARIO_MAP_BEGIN_BGM",
"S4064_MID_SCENARIO_MAP_BEGIN_BGM",
"S4072_MID_SCENARIO_MAP_BEGIN_BGM",
"S4073_MID_SCENARIO_MAP_BEGIN_BGM",
"S4074_MID_SCENARIO_MAP_BEGIN_BGM",
"S4082_MID_SCENARIO_MAP_BEGIN_BGM",
"S4083_MID_SCENARIO_MAP_BEGIN_BGM",
"S4084_MID_SCENARIO_MAP_BEGIN_BGM",
"S4092_MID_SCENARIO_MAP_BEGIN_BGM",
"S4093_MID_SCENARIO_MAP_BEGIN_BGM",
"S4102_MID_SCENARIO_MAP_BEGIN_BGM",
"S4103_MID_SCENARIO_MAP_BEGIN_BGM",
"S4104_MID_SCENARIO_MAP_BEGIN_BGM",
"S4122_MID_SCENARIO_MAP_BEGIN_BGM",
"S4123_MID_SCENARIO_MAP_BEGIN_BGM",
"S5022_MID_SCENARIO_MAP_BEGIN_BGM",
"S5023_MID_SCENARIO_MAP_BEGIN_BGM",
"S5024_MID_SCENARIO_MAP_BEGIN_BGM",
"S5031_MID_SCENARIO_MAP_BEGIN_BGM",
"S5032_MID_SCENARIO_MAP_BEGIN_BGM",
"S5033_MID_SCENARIO_MAP_BEGIN_BGM",
"S5034_MID_SCENARIO_MAP_BEGIN_BGM",
"S5042_MID_SCENARIO_MAP_BEGIN_BGM",
"S5043_MID_SCENARIO_MAP_BEGIN_BGM",
"S5044_MID_SCENARIO_MAP_BEGIN_BGM",
"S5052_MID_SCENARIO_MAP_BEGIN_BGM",
"S5053_MID_SCENARIO_MAP_BEGIN_BGM",
"S5054_MID_SCENARIO_MAP_BEGIN_BGM",
"S5061_MID_SCENARIO_MAP_BEGIN_BGM",
"S5062_MID_SCENARIO_MAP_BEGIN_BGM",
"S5064_MID_SCENARIO_MAP_BEGIN_BGM",
"S5072_MID_SCENARIO_MAP_BEGIN_BGM",
"S5073_MID_SCENARIO_MAP_BEGIN_BGM",
"S5074_MID_SCENARIO_MAP_BEGIN_BGM",
"S5082_MID_SCENARIO_MAP_BEGIN_BGM",
"S5083_MID_SCENARIO_MAP_BEGIN_BGM",
"S5084_MID_SCENARIO_MAP_BEGIN_BGM",
"S5085_MID_SCENARIO_MAP_BEGIN_BGM",
"S5092_MID_SCENARIO_MAP_BEGIN_BGM",
"S5093_MID_SCENARIO_MAP_BEGIN_BGM",
"S5094_MID_SCENARIO_MAP_BEGIN_BGM",
"S5095_MID_SCENARIO_MAP_BEGIN_BGM",
"S5102_MID_SCENARIO_MAP_BEGIN_BGM",
"S5103_MID_SCENARIO_MAP_BEGIN_BGM",
"S5104_MID_SCENARIO_MAP_BEGIN_BGM",
"S5105_MID_SCENARIO_MAP_BEGIN_BGM",
"S5113_MID_SCENARIO_MAP_BEGIN_BGM",
"S5114_MID_SCENARIO_MAP_BEGIN_BGM",
"S5121_MID_SCENARIO_MAP_BEGIN_BGM",
"S5124_MID_SCENARIO_MAP_BEGIN_BGM",
"S5131_MID_SCENARIO_MAP_BEGIN_BGM",
"S5133_MID_SCENARIO_MAP_BEGIN_BGM",
"S5134_MID_SCENARIO_MAP_BEGIN_BGM",
"S6022_MID_SCENARIO_MAP_BEGIN_BGM",
"S6023_MID_SCENARIO_MAP_BEGIN_BGM",
"S6024_MID_SCENARIO_MAP_BEGIN_BGM",
"S6032_MID_SCENARIO_MAP_BEGIN_BGM",
"S6033_MID_SCENARIO_MAP_BEGIN_BGM",
"S6034_MID_SCENARIO_MAP_BEGIN_BGM",
"S6042_MID_SCENARIO_MAP_BEGIN_BGM",
"S6044_MID_SCENARIO_MAP_BEGIN_BGM",
"S6051_MID_SCENARIO_MAP_BEGIN_BGM",
"S6052_MID_SCENARIO_MAP_BEGIN_BGM",
"S6053_MID_SCENARIO_MAP_BEGIN_BGM",
"S6054_MID_SCENARIO_MAP_BEGIN_BGM",
"S6062_MID_SCENARIO_MAP_BEGIN_BGM",
"S6063_MID_SCENARIO_MAP_BEGIN_BGM",
"S6064_MID_SCENARIO_MAP_BEGIN_BGM",
"S6072_MID_SCENARIO_MAP_BEGIN_BGM",
"S6082_MID_SCENARIO_MAP_BEGIN_BGM",
"S6083_MID_SCENARIO_MAP_BEGIN_BGM",
"S6084_MID_SCENARIO_MAP_BEGIN_BGM",
"S6092_MID_SCENARIO_MAP_BEGIN_BGM",
"S6093_MID_SCENARIO_MAP_BEGIN_BGM",
"S6102_MID_SCENARIO_MAP_BEGIN_BGM",
"S6103_MID_SCENARIO_MAP_BEGIN_BGM",
"S6104_MID_SCENARIO_MAP_BEGIN_BGM",
"S6111_MID_SCENARIO_MAP_BEGIN_BGM",
"S6112_MID_SCENARIO_MAP_BEGIN_BGM",
"S6122_MID_SCENARIO_MAP_BEGIN_BGM",
"S6123_MID_SCENARIO_MAP_BEGIN_BGM",
"S6124_MID_SCENARIO_MAP_BEGIN_BGM",
"S6132_MID_SCENARIO_MAP_BEGIN_BGM",
"S6133_MID_SCENARIO_MAP_BEGIN_BGM",
"S6134_MID_SCENARIO_MAP_BEGIN_BGM",
"S7012_MID_SCENARIO_MAP_BEGIN_BGM",
"S7013_MID_SCENARIO_MAP_BEGIN_BGM",
"S7014_MID_SCENARIO_MAP_BEGIN_BGM",
"S7032_MID_SCENARIO_MAP_BEGIN_BGM",
"S7033_MID_SCENARIO_MAP_BEGIN_BGM",
"S7034_MID_SCENARIO_MAP_BEGIN_BGM",
"S7042_MID_SCENARIO_MAP_BEGIN_BGM",
"S7044_MID_SCENARIO_MAP_BEGIN_BGM",
"S7052_MID_SCENARIO_MAP_BEGIN_BGM",
"S7053_MID_SCENARIO_MAP_BEGIN_BGM",
"S7061_MID_SCENARIO_MAP_BEGIN_BGM",
"S7062_MID_SCENARIO_MAP_BEGIN_BGM",
"S7064_MID_SCENARIO_MAP_BEGIN_BGM",
"S7072_MID_SCENARIO_MAP_BEGIN_BGM",
"S7073_MID_SCENARIO_MAP_BEGIN_BGM",
"S7074_MID_SCENARIO_MAP_BEGIN_BGM",
"S7082_MID_SCENARIO_MAP_BEGIN_BGM",
"S7084_MID_SCENARIO_MAP_BEGIN_BGM",
"S7092_MID_SCENARIO_MAP_BEGIN_BGM",
"S7093_MID_SCENARIO_MAP_BEGIN_BGM",
"S7094_MID_SCENARIO_MAP_BEGIN_BGM",
"S7102_MID_SCENARIO_MAP_BEGIN_BGM",
"S7103_MID_SCENARIO_MAP_BEGIN_BGM",
"S7104_MID_SCENARIO_MAP_BEGIN_BGM",
"S7112_MID_SCENARIO_MAP_BEGIN_BGM",
"S7113_MID_SCENARIO_MAP_BEGIN_BGM",
"S7114_MID_SCENARIO_MAP_BEGIN_BGM"
],
"source": null
},
{
"title": "Invasion",
"titleJPJA": "インヴァージョン",
"filename": "bgm_event_serious1.ogg",
"notes": "Played during cutscenes with a tense mood.",
"titleId": "MID_MUSIC_NAME_BGM_EVENT_SERIOUS_01",
"appearances": [
"S0101_MID_SCENARIO_ENDING_BGM",
"S1001_MID_SCENARIO_OPENING_BGM",
"S1004_MID_SCENARIO_MAP_BEGIN_BGM",
"S1103_MID_SCENARIO_MAP_BEGIN_BGM",
"S1203_MID_SCENARIO_MAP_BEGIN_BGM",
"S1305_MID_SCENARIO_MAP_BEGIN_BGM",
"S1401_MID_SCENARIO_MAP_BEGIN_BGM",
"S1405_MID_SCENARIO_MAP_BEGIN_BGM",
"S2011_MID_SCENARIO_OPENING_BGM",
"S2033_MID_SCENARIO_MAP_BEGIN_BGM",
"S2052_MID_SCENARIO_MAP_BEGIN_BGM",
"S2053_MID_SCENARIO_MAP_BEGIN_BGM",
"S2054_MID_SCENARIO_MAP_BEGIN_BGM",
"S2093_MID_SCENARIO_MAP_BEGIN_BGM",
"S2111_MID_SCENARIO_MAP_BEGIN_BGM",
"S2113_MID_SCENARIO_MAP_BEGIN_BGM",
"S2125_MID_SCENARIO_OPENING_BGM",
"S3011_MID_SCENARIO_MAP_BEGIN_BGM",
"S3041_MID_SCENARIO_OPENING_BGM",
"S3055_MID_SCENARIO_OPENING_BGM",
"S3063_MID_SCENARIO_OPENING_BGM",
"S3072_MID_SCENARIO_MAP_BEGIN_BGM",
"S3073_MID_SCENARIO_MAP_BEGIN_BGM",
"S3074_MID_SCENARIO_MAP_BEGIN_BGM",
"S3115_MID_SCENARIO_MAP_BEGIN_BGM",
"S3133_MID_SCENARIO_MAP_BEGIN_BGM",
"S4015_MID_SCENARIO_MAP_BEGIN_BGM",
"S4035_MID_SCENARIO_MAP_BEGIN_BGM",
"S4055_MID_SCENARIO_MAP_BEGIN_BGM",
"S4061_MID_SCENARIO_MAP_BEGIN_BGM",
"S4065_MID_SCENARIO_MAP_BEGIN_BGM",
"S4071_MID_SCENARIO_OPENING_BGM",
"S4081_MID_SCENARIO_MAP_BEGIN_BGM",
"S4101_MID_SCENARIO_OPENING_BGM",
"S4113_MID_SCENARIO_MAP_BEGIN_BGM",
"S4124_MID_SCENARIO_MAP_BEGIN_BGM",
"S5011_MID_SCENARIO_MAP_BEGIN_BGM",
"S5071_MID_SCENARIO_OPENING_BGM",
"S5102_MID_SCENARIO_OPENING_BGM",
"S6011_MID_SCENARIO_MAP_BEGIN_BGM",
"S6041_MID_SCENARIO_MAP_BEGIN_BGM",
"S6045_MID_SCENARIO_ENDING_BGM",
"S6101_MID_SCENARIO_MAP_BEGIN_BGM",
"S7021_MID_SCENARIO_MAP_BEGIN_BGM",
"S7035_MID_SCENARIO_MAP_BEGIN_BGM",
"S7081_MID_SCENARIO_MAP_BEGIN_BGM"
],
"source": null
},
{
"title": "Solitary",
"titleJPJA": "ソリタリィ",
"filename": "bgm_event_serious3.ogg",
"notes": "Played during cutscenes with a somber mood.",
"titleId": "MID_MUSIC_NAME_BGM_EVENT_SERIOUS_03",
"appearances": [
"S0103_MID_SCENARIO_ENDING_BGM",
"S0805_MID_SCENARIO_ENDING_BGM",
"S0905_MID_SCENARIO_ENDING_BGM",
"S1305_MID_SCENARIO_ENDING_BGM",
"S1401_MID_SCENARIO_OPENING_BGM",
"S1405_MID_SCENARIO_ENDING_BGM",
"S2015_MID_SCENARIO_ENDING_BGM",
"S2021_MID_SCENARIO_OPENING_BGM",
"S2031_MID_SCENARIO_OPENING_BGM",
"S2055_MID_SCENARIO_ENDING_BGM",
"S2061_MID_SCENARIO_OPENING_BGM",
"S2065_MID_SCENARIO_ENDING_BGM",
"S2071_MID_SCENARIO_OPENING_BGM",
"S2091_MID_SCENARIO_ENDING_BGM",
"S2111_MID_SCENARIO_ENDING_BGM",
"S2123_MID_SCENARIO_ENDING_BGM",
"S2131_MID_SCENARIO_ENDING_BGM",
"S2133_MID_SCENARIO_ENDING_BGM",
"S3035_MID_SCENARIO_OPENING_BGM",
"S3043_MID_SCENARIO_ENDING_BGM",
"S3045_MID_SCENARIO_OPENING_BGM",
"S3051_MID_SCENARIO_OPENING_BGM",
"S3064_MID_SCENARIO_ENDING_BGM",
"S3073_MID_SCENARIO_ENDING_BGM",
"S3083_MID_SCENARIO_ENDING_BGM",
"S3111_MID_SCENARIO_OPENING_BGM",
"S3121_MID_SCENARIO_ENDING_BGM",
"S4043_MID_SCENARIO_ENDING_BGM",
"S4073_MID_SCENARIO_ENDING_BGM",
"S4091_MID_SCENARIO_ENDING_BGM",
"S4095_MID_SCENARIO_OPENING_BGM",
"S4103_MID_SCENARIO_ENDING_BGM",
"S4132_MID_SCENARIO_ENDING_BGM",
"S5025_MID_SCENARIO_ENDING_BGM",
"S5111_MID_SCENARIO_OPENING_BGM",
"S6033_MID_SCENARIO_ENDING_BGM",
"S6053_MID_SCENARIO_ENDING_BGM",
"S6062_MID_SCENARIO_ENDING_BGM",
"S6071_MID_SCENARIO_ENDING_BGM",
"S6084_MID_SCENARIO_ENDING_BGM",
"S6103_MID_SCENARIO_ENDING_BGM",
"S6135_MID_SCENARIO_ENDING_BGM",
"S7093_MID_SCENARIO_OPENING_BGM",
"S7101_MID_SCENARIO_OPENING_BGM"
],
"source": null
},
{
"title": "Carry Over",
"titleJPJA": "キャリィオーバー",
"filename": "bgm_event_plain3.ogg",
"notes": "Played during cutscenes.",
"titleId": "MID_MUSIC_NAME_BGM_EVENT_PLAIN_03",
"appearances": [
"S0205_MID_SCENARIO_MAP_BEGIN_BGM",
"S0305_MID_SCENARIO_MAP_BEGIN_BGM",
"S0405_MID_SCENARIO_MAP_BEGIN_BGM",
"S0505_MID_SCENARIO_MAP_BEGIN_BGM",
"S0605_MID_SCENARIO_MAP_BEGIN_BGM",
"S0705_MID_SCENARIO_MAP_BEGIN_BGM",
"S0805_MID_SCENARIO_MAP_BEGIN_BGM",
"S0905_MID_SCENARIO_MAP_BEGIN_BGM",
"S1105_MID_SCENARIO_MAP_BEGIN_BGM",
"S1205_MID_SCENARIO_MAP_BEGIN_BGM",
"S2032_MID_SCENARIO_MAP_BEGIN_BGM",
"S2042_MID_SCENARIO_MAP_BEGIN_BGM",
"S2065_MID_SCENARIO_OPENING_BGM",
"S2075_MID_SCENARIO_OPENING_BGM",
"S2115_MID_SCENARIO_OPENING_BGM",
"S2115_MID_SCENARIO_ENDING_BGM",
"S2125_MID_SCENARIO_ENDING_BGM",
"S2132_MID_SCENARIO_ENDING_BGM",
"S2134_MID_SCENARIO_OPENING_BGM",
"S3031_MID_SCENARIO_OPENING_BGM",
"S3065_MID_SCENARIO_MAP_BEGIN_BGM",
"S3071_MID_SCENARIO_MAP_BEGIN_BGM",
"S4053_MID_SCENARIO_ENDING_BGM",
"S4061_MID_SCENARIO_ENDING_BGM",
"S4065_MID_SCENARIO_OPENING_BGM",
"S4121_MID_SCENARIO_MAP_BEGIN_BGM",
"S5013_MID_SCENARIO_OPENING_BGM"
],
"source": null
},
{
"title": "Another Menace",
"titleJPJA": "アナザーメナス",
"filename": "bgm_event_serious4.ogg",
"notes": "Played during cutscenes featuring [[Múspell]] and {{Ut|Loki: The Trickster}}. Also plays in [[Tempest Trials+]]: [[Loki's Flames]] and Xenologue 4: [[Whispers of Death]].",
"titleId": "MID_MUSIC_NAME_BGM_EVENT_SERIOUS_04",
"appearances": [
"S2014_MID_SCENARIO_ENDING_BGM",
"S2015_MID_SCENARIO_MAP_BEGIN_BGM",
"S2035_MID_SCENARIO_MAP_BEGIN_BGM",
"S2035_MID_SCENARIO_ENDING_BGM",
"S2045_MID_SCENARIO_MAP_BEGIN_BGM",
"S2045_MID_SCENARIO_ENDING_BGM",
"S2051_MID_SCENARIO_MAP_BEGIN_BGM",
"S2055_MID_SCENARIO_MAP_BEGIN_BGM",
"S2064_MID_SCENARIO_ENDING_BGM",
"S2085_MID_SCENARIO_ENDING_BGM",
"S2091_MID_SCENARIO_MAP_BEGIN_BGM",
"S2095_MID_SCENARIO_OPENING_BGM",
"S2101_MID_SCENARIO_ENDING_BGM",
"S2105_MID_SCENARIO_ENDING_BGM",
"S2112_MID_SCENARIO_ENDING_BGM",
"S2115_MID_SCENARIO_MAP_BEGIN_BGM",
"S2123_MID_SCENARIO_MAP_BEGIN_BGM",
"S2125_MID_SCENARIO_MAP_BEGIN_BGM",
"S2131_MID_SCENARIO_OPENING_BGM",
"S2134_MID_SCENARIO_MAP_BEGIN_BGM",
"S4011_MID_SCENARIO_MAP_BEGIN_BGM",
"S4051_MID_SCENARIO_MAP_BEGIN_BGM",
"S4135_MID_SCENARIO_MAP_BEGIN_BGM",
"S5131_MID_SCENARIO_ENDING_BGM",
"S6045_MID_SCENARIO_MAP_BEGIN_BGM"
],
"source": null
},
{
"title": "Suspicious",
"titleJPJA": "サスピシャス",
"filename": "bgm_event_serious7.ogg",
"notes": "Played during cutscenes involving [[Dökkálfheimr]] and with a suspicious mood.",
"titleId": "MID_MUSIC_NAME_BGM_EVENT_SERIOUS_07_2",
"appearances": [
"S4011_MID_SCENARIO_OPENING_BGM",
"S4014_MID_SCENARIO_ENDING_BGM",
"S4025_MID_SCENARIO_MAP_BEGIN_BGM",
"S4041_MID_SCENARIO_OPENING_BGM",
"S4051_MID_SCENARIO_OPENING_BGM",
"S4063_MID_SCENARIO_ENDING_BGM",
"S4075_MID_SCENARIO_OPENING_BGM",
"S4081_MID_SCENARIO_OPENING_BGM",
"S4085_MID_SCENARIO_MAP_BEGIN_BGM",
"S4091_MID_SCENARIO_OPENING_BGM",
"S4094_MID_SCENARIO_MAP_BEGIN_BGM",
"S4101_MID_SCENARIO_ENDING_BGM",
"S4105_MID_SCENARIO_ENDING_BGM",
"S4111_MID_SCENARIO_ENDING_BGM",
"S4114_MID_SCENARIO_MAP_BEGIN_BGM",
"S4125_MID_SCENARIO_OPENING_BGM",
"S4132_MID_SCENARIO_MAP_BEGIN_BGM",
"S4133_MID_SCENARIO_OPENING_BGM",
"S5062_MID_SCENARIO_ENDING_BGM",
"S5075_MID_SCENARIO_OPENING_BGM",
"S6011_MID_SCENARIO_OPENING_BGM",
"S6031_MID_SCENARIO_ENDING_BGM",
"S6043_MID_SCENARIO_OPENING_BGM",
"S7024_MID_SCENARIO_ENDING_BGM"
],
"source": null
},
{
"title": "Last Phase",
"titleJPJA": "ラストフェイズ",
"filename": "bgm_map_Brave_03.ogg",
"notes": "Played in Book I, Chapter 9-5: [[Princess of Death]]; Book II, Chapter 2-5: [[Ruler of Flame]], 7-5: [[Snow and Ash]], 10-5: [[The King's Demise]], and 13-5: [[Surtr, Ruler of Flame]].",
"appearances": [
"S1005_BGM",
"S2025_BGM",
"S2075_BGM",
"S2105_BGM",
"S2135_BGM",
"S3135_BGM",
"S4095_BGM",
"S4134_BGM",
"S7015_BGM",
"S1005_MID_SCENARIO_MAP_BEGIN_BGM",
"S2025_MID_SCENARIO_MAP_BEGIN_BGM",
"S2105_MID_SCENARIO_MAP_BEGIN_BGM",
"S2135_MID_SCENARIO_MAP_BEGIN_BGM",
"S3135_MID_SCENARIO_MAP_BEGIN_BGM",
"S4095_MID_SCENARIO_MAP_BEGIN_BGM",
"S4134_MID_SCENARIO_MAP_BEGIN_BGM",
"S5125_MID_SCENARIO_MAP_BEGIN_BGM",
"S5135_MID_SCENARIO_OPENING_BGM",
"S6085_MID_SCENARIO_MAP_BEGIN_BGM",
"S6115_MID_SCENARIO_MAP_BEGIN_BGM",
"S7015_MID_SCENARIO_MAP_BEGIN_BGM"
],
"titleId": "MID_MUSIC_NAME_BGM_MAP_BRAVE_03",
"source": null
},
{
"title": "Looming Death",
"titleJPJA": "ルーミングデス",
"filename": "bgm_event_serious5.ogg",
"notes": "Played during cutscenes featuring [[Hel (realm)|Hel]] and with a dire mood.",
"titleId": "MID_MUSIC_NAME_BGM_EVENT_SERIOUS_05",
"appearances": [
"S3013_MID_SCENARIO_MAP_BEGIN_BGM",
"S3014_MID_SCENARIO_MAP_BEGIN_BGM",
"S3015_MID_SCENARIO_OPENING_BGM",
"S3035_MID_SCENARIO_MAP_BEGIN_BGM",
"S3035_MID_SCENARIO_ENDING_BGM",
"S3055_MID_SCENARIO_MAP_BEGIN_BGM",
"S3061_MID_SCENARIO_OPENING_BGM",
"S3063_MID_SCENARIO_MAP_BEGIN_BGM",
"S3075_MID_SCENARIO_MAP_BEGIN_BGM",
"S3081_MID_SCENARIO_MAP_BEGIN_BGM",
"S3085_MID_SCENARIO_MAP_BEGIN_BGM",
"S3105_MID_SCENARIO_OPENING_BGM",
"S3115_MID_SCENARIO_ENDING_BGM",
"S3125_MID_SCENARIO_MAP_BEGIN_BGM",
"S3131_MID_SCENARIO_OPENING_BGM",
"S3134_MID_SCENARIO_OPENING_BGM",
"S4071_MID_SCENARIO_MAP_BEGIN_BGM",
"S4112_MID_SCENARIO_ENDING_BGM",
"S5072_MID_SCENARIO_OPENING_BGM",
"S5122_MID_SCENARIO_MAP_BEGIN_BGM",
"S6073_MID_SCENARIO_MAP_BEGIN_BGM"
],
"source": "Fire_Emblem_Heroes_-_Hels_Theme.mid"
},
{
"title": "Tragedy of Askr",
"titleJPJA": "トラジディオブアスク",
"filename": "bgm_map_FEH_05.ogg",
"notes": "Played in various Book III maps, [[Thrasir: Omnicidal Witch (map)|Thrasir: Omnicidal Witch]], [[Líf: Lethal Swordsman (map)|Líf: Lethal Swordsman]], [[Hel: Death Sovereign (map)|Hel: Death Sovereign]], and [[Tempest Trials+]]: [[Life & Death Finale]].",
"appearances": [
"S3011_BGM",
"S3012_BGM",
"S3013_BGM",
"S3014_BGM",
"S3015_BGM",
"S3021_BGM",
"S3022_BGM",
"S3023_BGM",
"S3024_BGM",
"S3025_BGM",
"S3035_BGM",
"S3055_BGM",
"S3063_BGM",
"S3075_BGM",
"S3081_BGM",
"S3085_BGM",
"S3095_BGM",
"S3105_BGM",
"S3115_BGM",
"S3121_BGM",
"S3125_BGM"
],
"titleId": "MID_MUSIC_NAME_BGM_MAP_BRAVE_05",
"source": "Fire_Emblem_Heroes_-_Book_III_Map_Theme.mid"
},
{
"title": "Lucid Dream",
"titleJPJA": "ルシッドドリーム",
"filename": "bgm_map_FEH_06.ogg",
"notes": "Played in various Book IV maps, [[Plumeria: Lewd Dream (map)|Plumeria: Lewd Dream]] and [[Freyja & Triandra: Mythic Hero Battle]].",
"appearances": [
"S4011_BGM",
"S4012_BGM",
"S4013_BGM",
"S4014_BGM",
"S4015_BGM",
"S4021_BGM",
"S4022_BGM",
"S4023_BGM",
"S4024_BGM",
"S4025_BGM",
"S4035_BGM",
"S4045_BGM",
"S4051_BGM",
"S4061_BGM",
"S4071_BGM",
"S4075_BGM",
"S4085_BGM",
"S4105_BGM",
"S4115_BGM",
"S4124_BGM"
],
"source": null
},
{
"title": "Return To Nifl",
"titleJPJA": "リターントゥニフル",
"filename": "bgm_map_FEH_04.ogg",
"notes": "Played in various Book II maps, [[Tempest Trials Mini]]: [[Shrouded by the Storm]], and [[Hríd: Icy Blade (map)|Hríd: Icy Blade]].",
"appearances": [
"S2011_BGM",
"S2012_BGM",
"S2013_BGM",
"S2014_BGM",
"S2015_BGM",
"S2021_BGM",
"S2022_BGM",
"S2023_BGM",
"S2024_BGM",
"S2035_BGM",
"S2045_BGM",
"S2055_BGM",
"S2065_BGM",
"S2091_BGM",
"S2095_BGM",
"S2111_BGM",
"S2115_BGM",
"S2125_BGM"
],
"titleId": "MID_MUSIC_NAME_BGM_MAP_BRAVE_04",
"source": "Meilu - Fire Emblem Heroes Map Theme Book II.s"
},
{
"title": "Violent Strings",
"titleJPJA": "ヴァイオレントストリングス",
"filename": "bgm_map_FEH_09.ogg",
"notes": "Played in various Book VI maps.",
"appearances": [
"S6011_BGM",
"S6012_BGM",
"S6013_BGM",
"S6014_BGM",
"S6015_BGM",
"S6025_BGM",
"S6031_BGM",
"S6035_BGM",
"S6045_BGM",
"S6055_BGM",
"S6065_BGM",
"S6075_BGM",
"S6081_BGM",
"S6085_BGM",
"S6095_BGM",
"S6105_BGM",
"S6113_BGM",
"S6115_BGM"
],
"source": null
},
{
"title": "Sacrifice",
"titleJPJA": "サクリファイス",
"filename": "bgm_event_serious6.ogg",
"notes": "Played during cutscenes with a sad mood. This theme is a slowed-down piano arrangement of {{BGMPage|bgm_map_Brave_01.ogg}}.",
"titleId": "MID_MUSIC_NAME_BGM_EVENT_SERIOUS_06",
"appearances": [
"S3075_MID_SCENARIO_OPENING_BGM",
"S3081_MID_SCENARIO_OPENING_BGM",
"S3085_MID_SCENARIO_OPENING_BGM",
"S3121_MID_SCENARIO_OPENING_BGM",
"S3133_MID_SCENARIO_ENDING_BGM",
"S4064_MID_SCENARIO_ENDING_BGM",
"S4081_MID_SCENARIO_ENDING_BGM",
"S4085_MID_SCENARIO_ENDING_BGM",
"S4094_MID_SCENARIO_ENDING_BGM",
"S4112_MID_SCENARIO_MAP_BEGIN_BGM",
"S4125_MID_SCENARIO_ENDING_BGM",
"S4131_MID_SCENARIO_ENDING_BGM",
"S6041_MID_SCENARIO_ENDING_BGM",
"S6113_MID_SCENARIO_ENDING_BGM",
"S6121_MID_SCENARIO_OPENING_BGM",
"S7095_MID_SCENARIO_ENDING_BGM",
"S7111_MID_SCENARIO_OPENING_BGM"
],
"source": "Fire Emblem Heroes - Serious 6.mid"
},
{
"title": "Howling Gears",
"titleJPJA": "ハゥリングギア",
"filename": "bgm_map_FEH_07.ogg",
"notes": "Played in various Book V maps, [[Dagr: Sun's Radiance (map)|Dagr: Sun's Radiance]] and [[Thórr_%26_Eitri:_Bound_Hero_Battle|Thórr & Eitri: Bound Hero Battle]].",
"appearances": [
"S5011_BGM",
"S5012_BGM",
"S5013_BGM",
"S5014_BGM",
"S5015_BGM",
"S5025_BGM",
"S5035_BGM",
"S5045_BGM",
"S5055_BGM",
"S5065_BGM",
"S5075_BGM",
"S5081_BGM",
"S5111_BGM",
"S5115_BGM",
"S5125_BGM",
"S5135_BGM"
],
"source": null
},
{
"title": "Little Skimming",
"titleJPJA": "リトルスキミング",
"filename": "bgm_event_serious9.ogg",
"notes": "Plays during cutscenes in Book V.",
"titleId": "MID_MUSIC_NAME_BGM_EVENT_SERIOUS_09",
"appearances": [
"S5011_MID_SCENARIO_OPENING_BGM",
"S5021_MID_SCENARIO_OPENING_BGM",
"S5025_MID_SCENARIO_OPENING_BGM",
"S5033_MID_SCENARIO_ENDING_BGM",
"S5041_MID_SCENARIO_MAP_BEGIN_BGM",
"S5053_MID_SCENARIO_OPENING_BGM",
"S5081_MID_SCENARIO_OPENING_BGM",
"S5091_MID_SCENARIO_ENDING_BGM",
"S5101_MID_SCENARIO_OPENING_BGM",
"S5112_MID_SCENARIO_OPENING_BGM",
"S5123_MID_SCENARIO_OPENING_BGM",
"S5132_MID_SCENARIO_MAP_BEGIN_BGM",
"S6071_MID_SCENARIO_MAP_BEGIN_BGM",
"S6114_MID_SCENARIO_MAP_BEGIN_BGM"
],
"source": null
},
{
"title": "Victory",
"titleJPJA": "ヴィクトリィ",
"filename": "bgm_event_plain2.ogg",
"notes": "Played during cutscenes.",
"titleId": "MID_MUSIC_NAME_BGM_EVENT_PLAIN_02",
"appearances": [
"S0001_MID_SCENARIO_ENDING_BGM",
"S0002_MID_SCENARIO_ENDING_BGM",
"S0102_MID_SCENARIO_OPENING_BGM",
"S0305_MID_SCENARIO_ENDING_BGM",
"S1005_MID_SCENARIO_ENDING_BGM",
"S2041_MID_SCENARIO_OPENING_BGM",
"S2095_MID_SCENARIO_ENDING_BGM",
"S2135_MID_SCENARIO_ENDING_BGM",
"S3011_MID_SCENARIO_OPENING_BGM",
"S3025_MID_SCENARIO_ENDING_BGM",
"S4135_MID_SCENARIO_OPENING_BGM",
"S5011_MID_SCENARIO_ENDING_BGM"
],
"source": null
},
{
"title": "The Grandeur of Askr",
"titleJPJA": "グランドオブアスク",
"filename": "bgm_map_Brave_02.ogg",
"notes": "Played in various maps involving Askr, and [[Heroic Ordeals]] for Heroes that appear in {{EntryText|0}}.",
"appearances": [
"S1001_BGM",
"S1002_BGM",
"S1003_BGM",
"S1004_BGM",
"S1102_BGM",
"S1103_BGM",
"S1104_BGM",
"S1501_BGM",
"S1601_BGM",
"S4135_BGM"
],
"titleId": "MID_MUSIC_NAME_BGM_MAP_BRAVE_02",
"source": "Map_2_FEH.mid"
},
{
"title": "",
"titleJPJA": "",
"filename": "bgm_map_FEH_11.ogg",
"notes": "Played in various Book VII maps.",
"appearances": [
"S7021_BGM",
"S7022_BGM",
"S7023_BGM",
"S7024_BGM",
"S7025_BGM",
"S7045_BGM",
"S7055_BGM",
"S7071_BGM",
"S7075_BGM",
"S7085_BGM"
],
"source": null
},
{
"title": "-",
"titleJPJA": "-",
"filename": "bgm_amb_username.ogg",
"notes": "Played in cutscenes, on the first orb selection screen during summoning, and during the nickname entering screen.",
"titleId": "MID_MUSIC_NAME_BGM_AMB_USERNAME",
"appearances": [
"S1501_MID_SCENARIO_MAP_BEGIN_BGM",
"S1501_MID_SCENARIO_ENDING_BGM",
"S1601_MID_SCENARIO_OPENING_BGM",
"S1601_MID_SCENARIO_ENDING_BGM",
"S2085_MID_SCENARIO_MAP_BEGIN_BGM",
"S4031_MID_SCENARIO_ENDING_BGM",
"S4121_MID_SCENARIO_OPENING_BGM",
"S4134_MID_SCENARIO_OPENING_BGM",
"S6015_MID_SCENARIO_OPENING_BGM"
],
"source": null
},
{
"title": "Fódlan Winds",
"titleJPJA": "フォドラの暁風",
"filename": "bgm_map_FE16_01.ogg",
"notes": "Played in Book III, Chapter 9: [[Cohort of the Dead]], Book VII, Chapter 2: [[World of the Past]], [[Sothis: Girl on the Throne (map)|Sothis: Girl on the Throne]], [[Kronya: Gleaming Blade (map)|Kronya: Gleaming Blade]], and [[Heroic Ordeals]] for heroes that appear in {{EntryText|12}}.",
"appearances": [
"S3091_BGM",
"S3092_BGM",
"S3093_BGM",
"S3094_BGM",
"S7061_BGM",
"S7062_BGM",
"S7063_BGM",
"S7064_BGM",
"S7065_BGM"
],
"titleId": "MID_MUSIC_NAME_BGM_MAP_FE16_01",
"source": "FE16 - Fodlan Winds {A Reliable Chair}.s"
},
{
"title": "",
"titleJPJA": "リーフ軍,勝利を求めて 索敵",
"filename": "bgm_map_FE05_03.ogg",
"notes": "Plays in Book V, Chapter 3: [[Story Maps#Chapter 3:Forest of the Sage|Forest of the Sage]] and Book VII, Chapter 11: [[Story Maps#Chapter 11:Without Limits|Without Limits]].",
"appearances": [
"S5031_BGM",
"S5032_BGM",
"S5033_BGM",
"S5034_BGM",
"S7111_BGM",
"S7112_BGM",
"S7113_BGM",
"S7114_BGM",
"S7115_BGM"
],
"source": "FE05 - Searching the Enemy {SurfingKyogre}.s"
},
{
"title": "False Love",
"titleJPJA": "フォルスラヴ",
"filename": "bgm_event_serious10.ogg",
"notes": "Plays during cutscenes featuring {{Ut|Letizia: Curse Director}} in Book VI.",
"titleId": "MID_MUSIC_NAME_BGM_EVENT_SERIOUS_10",
"appearances": [
"S6023_MID_SCENARIO_ENDING_BGM",
"S6025_MID_SCENARIO_ENDING_BGM",
"S6034_MID_SCENARIO_ENDING_BGM",
"S6051_MID_SCENARIO_ENDING_BGM",
"S6074_MID_SCENARIO_ENDING_BGM",
"S6095_MID_SCENARIO_ENDING_BGM",
"S6104_MID_SCENARIO_ENDING_BGM",
"S6113_MID_SCENARIO_OPENING_BGM",
"S6134_MID_SCENARIO_OPENING_BGM"
],
"source": null
},
{
"title": "Veronica",
"titleJPJA": "ヴェロニカ",
"filename": "bgm_event_serious2.ogg",
"notes": "Played during cutscenes featuring {{Ut|Veronica: Emblian Princess}} and in [[Tempest Trials+]]: [[Royal Treasures]].",
"titleId": "MID_MUSIC_NAME_BGM_EVENT_SERIOUS_02",
"appearances": [
"S0103_MID_SCENARIO_OPENING_BGM",
"S2021_MID_SCENARIO_MAP_BEGIN_BGM",
"S2081_MID_SCENARIO_ENDING_BGM",
"S3021_MID_SCENARIO_ENDING_BGM",
"S3071_MID_SCENARIO_ENDING_BGM",
"S3095_MID_SCENARIO_OPENING_BGM",
"S3101_MID_SCENARIO_OPENING_BGM",
"S6035_MID_SCENARIO_MAP_BEGIN_BGM"
],
"source": null
},
{
"title": "Determination",
"titleJPJA": "不動なる志",
"filename": "bgm_map_FE08_03.ogg",
"notes": "Played in Book III, Chapter 13: [[Marvelous Dream]] and Book VII, Chapter 8: [[Story Maps#Chapter 8: Seeing the Present|Seeing the Present]].",
"appearances": [
"S3131_BGM",
"S3132_BGM",
"S3133_BGM",
"S3134_BGM",
"S7051_BGM",
"S7052_BGM",
"S7053_BGM",
"S7054_BGM"
],
"source": "fe8/song0C.s"
},
{
"title": "Thracia 776 Begins",
"titleJPJA": "トラキア776 始まり",
"filename": "bgm_mns_FE05_04.ogg",
"notes": "{{Shop music}}",
"titleId": "MID_MUSIC_NAME_BGM_MNS_FE05_04",
"appearances": [
"S5024_MID_SCENARIO_ENDING_BGM",
"S5031_MID_SCENARIO_ENDING_BGM",
"S5073_MID_SCENARIO_OPENING_BGM",
"S6013_MID_SCENARIO_MAP_BEGIN_BGM",
"S6031_MID_SCENARIO_OPENING_BGM",
"S6052_MID_SCENARIO_ENDING_BGM",
"S6105_MID_SCENARIO_OPENING_BGM",
"S7025_MID_SCENARIO_MAP_BEGIN_BGM"
],
"source": "fe5/Thracia 776 - The Beginning.mid"
},
{
"title": "Dark Clouds Gather",
"titleJPJA": "迫る暗雲",
"filename": "bgm_mns_FE16_08.ogg",
"notes": "Plays during a cutscene in Book V, Chapter 3: [[Story Maps#Chapter 3: Forest of the Sage|Forest of the Sage]].<br>{{Shop music}}",
"titleId": "MID_MUSIC_NAME_BGM_MNS_FE16_08",
"appearances": [
"S5065_MID_SCENARIO_OPENING_BGM",
"S5134_MID_SCENARIO_OPENING_BGM",
"S6041_MID_SCENARIO_OPENING_BGM",
"S6054_MID_SCENARIO_ENDING_BGM",
"S6085_MID_SCENARIO_ENDING_BGM",
"S6094_MID_SCENARIO_MAP_BEGIN_BGM",
"S6131_MID_SCENARIO_MAP_BEGIN_BGM",
"S7025_MID_SCENARIO_ENDING_BGM"
],
"source": null
},
{
"title": "Bat Conductor",
"titleJPJA": "バットコンダクター",
"filename": "bgm_event_serious11.ogg",
"notes": "Plays during cutscenes featuring {{Ut|Elm: Retainer to Embla}} in Book VI.",
"titleId": "MID_MUSIC_NAME_BGM_EVENT_SERIOUS_11",
"appearances": [
"S6025_MID_SCENARIO_OPENING_BGM",
"S6043_MID_SCENARIO_MAP_BEGIN_BGM",
"S6055_MID_SCENARIO_MAP_BEGIN_BGM",
"S6061_MID_SCENARIO_ENDING_BGM",
"S6081_MID_SCENARIO_MAP_BEGIN_BGM",
"S6091_MID_SCENARIO_OPENING_BGM",
"S6105_MID_SCENARIO_MAP_BEGIN_BGM",
"S6114_MID_SCENARIO_ENDING_BGM"
],
"source": null
},
{
"title": "The Beginning",
"titleJPJA": "すべては始まりのとき",
"filename": "bgm_mns_FE08_02.ogg",
"notes": "{{Shop music}}",
"titleId": "MID_MUSIC_NAME_BGM_MNS_FE08_02",
"appearances": [
"S5021_MID_SCENARIO_MAP_BEGIN_BGM",
"S5042_MID_SCENARIO_ENDING_BGM",
"S6021_MID_SCENARIO_OPENING_BGM",
"S6055_MID_SCENARIO_ENDING_BGM",
"S7043_MID_SCENARIO_OPENING_BGM",
"S7115_MID_SCENARIO_MAP_BEGIN_BGM"
],
"source": "fe8/song04.s"
},
{
"title": "Sephiran's Sorrow",
"titleJPJA": "セフェラン 浮遊する意識",
"filename": "bgm_mns_FE10_05.ogg",
"notes": "Played in [[Burden_of_Gifts|Tempest Trials+: Burden of Gifts]].<br>{{Shop music}}",
"titleId": "MID_MUSIC_NAME_BGM_MNS_FE10_05",
"appearances": [
"S6052_MID_SCENARIO_OPENING_BGM",
"S6071_MID_SCENARIO_OPENING_BGM",
"S6095_MID_SCENARIO_OPENING_BGM",
"S6131_MID_SCENARIO_OPENING_BGM",
"S7022_MID_SCENARIO_MAP_BEGIN_BGM",
"S7062_MID_SCENARIO_OPENING_BGM"
],
"source": null
},
{
"title": "Tactics",
"titleJPJA": "策略",
"filename": "bgm_mns_FE16_12.ogg",
"notes": "Played in a cutscene in Book V, Chapter 7: [[Story Maps#Chapter 7: Bound Elsewhere|Bound Elsewhere]].<br>{{Shop music}}",
"titleId": "MID_MUSIC_NAME_BGM_MNS_FE16_12",
"appearances": [
"S5121_MID_SCENARIO_OPENING_BGM",
"S6024_MID_SCENARIO_ENDING_BGM",
"S6061_MID_SCENARIO_OPENING_BGM",
"S7045_MID_SCENARIO_MAP_BEGIN_BGM",
"S7075_MID_SCENARIO_OPENING_BGM",
"S7083_MID_SCENARIO_MAP_BEGIN_BGM"
],
"source": null
},
{
"title": "",
"titleJPJA": "",
"filename": "bgm_map_FEH_10.ogg",
"notes": "Played in the end Chapter maps of Book VI against {{Ut|Veronica: Princess Rising}} and {{Ut|Embla: God of Closure}}, as well as against {{Ut|Heiðr: Cursed Goddess (Serpent)}} in Book VII.",
"appearances": [
"S6125_BGM",
"S6135_BGM",
"S7095_BGM",
"S6125_MID_SCENARIO_MAP_BEGIN_BGM",
"S6135_MID_SCENARIO_MAP_BEGIN_BGM",
"S7095_MID_SCENARIO_MAP_BEGIN_BGM"
],
"titleId": "MID_MUSIC_NAME_BGM_MAP_BRAVE_10",
"source": null
},
{
"title": "",
"titleJPJA": "",
"filename": "bgm_event_plain4.ogg",
"notes": "Plays during cutscenes in Book VII.",
"titleId": "MID_MUSIC_NAME_BGM_EVENT_PLAIN_04",
"appearances": [
"S7023_MID_SCENARIO_ENDING_BGM",
"S7035_MID_SCENARIO_ENDING_BGM",
"S7041_MID_SCENARIO_OPENING_BGM",
"S7051_MID_SCENARIO_ENDING_BGM",
"S7061_MID_SCENARIO_ENDING_BGM",
"S7113_MID_SCENARIO_OPENING_BGM"
],
"source": null
},
{
"title": "",
"titleJPJA": "",
"filename": "bgm_event_serious12.ogg",
"notes": "Plays during cutscenes in Book VII.",
"titleId": "MID_MUSIC_NAME_BGM_EVENT_SERIOUS_12",
"appearances": [
"S7011_MID_SCENARIO_OPENING_BGM",
"S7055_MID_SCENARIO_ENDING_BGM",
"S7075_MID_SCENARIO_ENDING_BGM",