-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSoundData.lua
More file actions
787 lines (747 loc) · 32.7 KB
/
SoundData.lua
File metadata and controls
787 lines (747 loc) · 32.7 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
-- ============================================================
-- BElfRestore - SoundData.lua
-- All FileDataIDs are sourced from wow.tools (build 66198)
--
-- HOW TO POPULATE:
-- 1. Go to https://www.wowhead.com/sounds/
-- 2. Search / Filter: "any combination of bloodelffemale or bloodelfmale for the TBC ones and generic_blood_elf for the new Midnight ones"
-- 3. New 12.0 files go into BElfVR_NewVoiceIDs
-- 4. Old TBC files go into the correct category below
--
-- COMMUNITY EDIT NOTES:
-- - Keep entries grouped by voice family and keep the existing order inside each table.
-- - The addon splits the TBC greet tables into role pools by position:
-- noble block first, then standard block, then military block.
-- - Inside each role block, vendor lines should stay together and greeting lines should stay together.
-- - If you add/remove/reorder entries in the TBC tables, also update the role layout offsets in BElfRestore.lua.
-- - To add new Midnight mute IDs, append them to BElfVR_NewVoiceIDs.
-- - To add new TBC sounds, append them to the matching male/female table in the correct subgroup.
-- ============================================================
-- ============================================================
-- NEW VOICES - Midnight 12.0.1 build 66198
-- Muted entirely. Both male and female new lines go here.
-- ============================================================
BElfVR_NewVoiceIDs = {
-- ============================================================
-- MALE - new Midnight 12.0 citizen voices to be muted
-- ============================================================
-- Source: VO_120_Generic_Blood_Elf_Citizen_A_02_M
7433708, -- VO_120_Generic_Blood_Elf_Citizen_A_02_M.ogg
7433710, -- VO_120_Generic_Blood_Elf_Citizen_A_03_M.ogg
7433712, -- VO_120_Generic_Blood_Elf_Citizen_A_04_M.ogg
7433714, -- VO_120_Generic_Blood_Elf_Citizen_A_05_M.ogg
7433716, -- VO_120_Generic_Blood_Elf_Citizen_A_06_M.ogg
7433718, -- VO_120_Generic_Blood_Elf_Citizen_A_07_M.ogg
-- Source: VO_120_Generic_Blood_Elf_Citizen_A_08_M
7433720, -- VO_120_Generic_Blood_Elf_Citizen_A_08_M.ogg
7433722, -- VO_120_Generic_Blood_Elf_Citizen_A_09_M.ogg
7433724, -- VO_120_Generic_Blood_Elf_Citizen_A_10_M.ogg
7433726, -- VO_120_Generic_Blood_Elf_Citizen_A_11_M.ogg
7433728, -- VO_120_Generic_Blood_Elf_Citizen_A_12_M.ogg
7433730, -- VO_120_Generic_Blood_Elf_Citizen_A_13_M.ogg
7433732, -- VO_120_Generic_Blood_Elf_Citizen_A_14_M.ogg
-- Source: VO_120_Generic_Blood_Elf_Citizen_A_16_M
7433736, -- VO_120_Generic_Blood_Elf_Citizen_A_16_M.ogg
7433738, -- VO_120_Generic_Blood_Elf_Citizen_A_17_M.ogg
7433740, -- VO_120_Generic_Blood_Elf_Citizen_A_18_M.ogg
-- Source: VO_120_Generic_Blood_Elf_Citizen_A_19_M
7433742, -- VO_120_Generic_Blood_Elf_Citizen_A_19_M.ogg
7433744, -- VO_120_Generic_Blood_Elf_Citizen_A_20_M.ogg
7433746, -- VO_120_Generic_Blood_Elf_Citizen_A_21_M.ogg
-- Source: VO_120_Generic_Blood_Elf_Citizen_B_01_M
7387005, -- VO_120_Generic_Blood_Elf_Citizen_B_01_M.ogg
7387008, -- VO_120_Generic_Blood_Elf_Citizen_B_02_M.ogg
7387010, -- VO_120_Generic_Blood_Elf_Citizen_B_03_M.ogg
7387024, -- VO_120_Generic_Blood_Elf_Citizen_B_04_M.ogg
7387026, -- VO_120_Generic_Blood_Elf_Citizen_B_05_M.ogg
7387028, -- VO_120_Generic_Blood_Elf_Citizen_B_06_M.ogg
7387030, -- VO_120_Generic_Blood_Elf_Citizen_B_07_M.ogg
-- Source: VO_120_Generic_Blood_Elf_Citizen_B_08_M
7387032, -- VO_120_Generic_Blood_Elf_Citizen_B_08_M.ogg
7387034, -- VO_120_Generic_Blood_Elf_Citizen_B_09_M.ogg
7387036, -- VO_120_Generic_Blood_Elf_Citizen_B_10_M.ogg
7387038, -- VO_120_Generic_Blood_Elf_Citizen_B_11_M.ogg
7387040, -- VO_120_Generic_Blood_Elf_Citizen_B_12_M.ogg
7387042, -- VO_120_Generic_Blood_Elf_Citizen_B_13_M.ogg
7387044, -- VO_120_Generic_Blood_Elf_Citizen_B_14_M.ogg
-- Source: VO_120_Generic_Blood_Elf_Citizen_B_16_M
7387048, -- VO_120_Generic_Blood_Elf_Citizen_B_16_M.ogg
7387050, -- VO_120_Generic_Blood_Elf_Citizen_B_17_M.ogg
7387052, -- VO_120_Generic_Blood_Elf_Citizen_B_18_M.ogg
-- Source: VO_120_Generic_Blood_Elf_Citizen_B_19_M
7387054, -- VO_120_Generic_Blood_Elf_Citizen_B_19_M.ogg
7387056, -- VO_120_Generic_Blood_Elf_Citizen_B_20_M.ogg
7387058, -- VO_120_Generic_Blood_Elf_Citizen_B_21_M.ogg
-- ============================================================
-- FEMALE - new Midnight 12.0 citizen voices to be muted
-- ============================================================
-- Source: VO_120_Generic_Blood_Elf_Citizen_A_02_F
7433709, -- VO_120_Generic_Blood_Elf_Citizen_A_02_F.ogg
7433711, -- VO_120_Generic_Blood_Elf_Citizen_A_03_F.ogg
7433713, -- VO_120_Generic_Blood_Elf_Citizen_A_04_F.ogg
7433715, -- VO_120_Generic_Blood_Elf_Citizen_A_05_F.ogg
7433717, -- VO_120_Generic_Blood_Elf_Citizen_A_06_F.ogg
7433719, -- VO_120_Generic_Blood_Elf_Citizen_A_07_F.ogg
-- Source: VO_120_Generic_Blood_Elf_Citizen_A_08_F
7433721, -- VO_120_Generic_Blood_Elf_Citizen_A_08_F.ogg
7433723, -- VO_120_Generic_Blood_Elf_Citizen_A_09_F.ogg
7433725, -- VO_120_Generic_Blood_Elf_Citizen_A_10_F.ogg
7433727, -- VO_120_Generic_Blood_Elf_Citizen_A_11_F.ogg
7433729, -- VO_120_Generic_Blood_Elf_Citizen_A_12_F.ogg
7433731, -- VO_120_Generic_Blood_Elf_Citizen_A_13_F.ogg
7433733, -- VO_120_Generic_Blood_Elf_Citizen_A_14_F.ogg
-- Source: VO_120_Generic_Blood_Elf_Citizen_A_16_F
7433737, -- VO_120_Generic_Blood_Elf_Citizen_A_16_F.ogg
7433739, -- VO_120_Generic_Blood_Elf_Citizen_A_17_F.ogg
7433741, -- VO_120_Generic_Blood_Elf_Citizen_A_18_F.ogg
-- Source: VO_120_Generic_Blood_Elf_Citizen_A_19_F
7433743, -- VO_120_Generic_Blood_Elf_Citizen_A_19_F.ogg
7433745, -- VO_120_Generic_Blood_Elf_Citizen_A_20_F.ogg
7433747, -- VO_120_Generic_Blood_Elf_Citizen_A_21_F.ogg
-- Source: VO_120_Generic_Blood_Elf_Citizen_B_01_F
7387007, -- VO_120_Generic_Blood_Elf_Citizen_B_01_F.ogg
7387009, -- VO_120_Generic_Blood_Elf_Citizen_B_02_F.ogg
7387011, -- VO_120_Generic_Blood_Elf_Citizen_B_03_F.ogg
7387025, -- VO_120_Generic_Blood_Elf_Citizen_B_04_F.ogg
7387027, -- VO_120_Generic_Blood_Elf_Citizen_B_05_F.ogg
7387029, -- VO_120_Generic_Blood_Elf_Citizen_B_06_F.ogg
7387031, -- VO_120_Generic_Blood_Elf_Citizen_B_07_F.ogg
-- Source: VO_120_Generic_Blood_Elf_Citizen_B_08_F
7387033, -- VO_120_Generic_Blood_Elf_Citizen_B_08_F.ogg
7387035, -- VO_120_Generic_Blood_Elf_Citizen_B_09_F.ogg
7387037, -- VO_120_Generic_Blood_Elf_Citizen_B_10_F.ogg
7387039, -- VO_120_Generic_Blood_Elf_Citizen_B_11_F.ogg
7387041, -- VO_120_Generic_Blood_Elf_Citizen_B_12_F.ogg
7387043, -- VO_120_Generic_Blood_Elf_Citizen_B_13_F.ogg
7387045, -- VO_120_Generic_Blood_Elf_Citizen_B_14_F.ogg
-- Source: VO_120_Generic_Blood_Elf_Citizen_B_16_F
7387049, -- VO_120_Generic_Blood_Elf_Citizen_B_16_F.ogg
7387051, -- VO_120_Generic_Blood_Elf_Citizen_B_17_F.ogg
7387053, -- VO_120_Generic_Blood_Elf_Citizen_B_18_F.ogg
-- Source: VO_120_Generic_Blood_Elf_Citizen_B_19_F
7387055, -- VO_120_Generic_Blood_Elf_Citizen_B_19_F.ogg
7387057, -- VO_120_Generic_Blood_Elf_Citizen_B_20_F.ogg
7387059, -- VO_120_Generic_Blood_Elf_Citizen_B_21_F.ogg
}
-- ============================================================
-- NEW MUSIC - Midnight 12.0.x Silvermoon / Eversong tracks
-- These are safe to extend.
-- The hand-maintained IDs below act as a seed/fallback set.
-- If `Midnight_ID_catalog.lua` is loaded, the addon appends the
-- current wowdev catalog coverage automatically (minus exclusions).
--
-- SAFE TO CHANGE:
-- - You may append new numeric IDs at the end of this list.
-- - You may remove IDs that prove unrelated.
--
-- DO NOT REORDER FOR FUN:
-- - Reordering will not crash the addon, but it makes debugging
-- - and comparing verbose logs harder for anyone sharing notes.
-- ============================================================
BElfVR_NewMusicIDs = {
-- Legacy manually-found Midnight music IDs
7713991, -- mus_1200_silent_207_7713991
7681090, -- mus_1200_murder_row_7681090
7681092, -- mus_1200_murder_row_7681092
7681094, -- mus_1200_murder_row_7681094
7726826, -- mus_1200_silent_317_7726826
7713989, -- mus_1200_silent_046_7713989
-- Broad Eversong village family
7690509, -- mus_120_eversong_village_a
7690511, -- mus_120_eversong_village_b
7690513, -- mus_120_eversong_village_c
7690515, -- mus_120_eversong_village_d
7690517, -- mus_120_eversong_village_e
7690519, -- mus_120_eversong_village_f
7690521, -- mus_120_eversong_village_h
-- Broad Eversong outdoors family
7690523, -- mus_120_eversong_woods_a
7690525, -- mus_120_eversong_woods_b
7690527, -- mus_120_eversong_woods_c
7690529, -- mus_120_eversong_woods_d
7690531, -- mus_120_eversong_woods_e
7690533, -- mus_120_eversong_woods_h
-- Silvermoon city family
7681120, -- mus_120_silvermoon_city_a
7681122, -- mus_120_silvermoon_city_b
7681124, -- mus_120_silvermoon_city_c
7681126, -- mus_120_silvermoon_city_d
7681128, -- mus_120_silvermoon_city_e
7713432, -- mus_120_silvermoon_city_f
7713434, -- mus_120_silvermoon_city_g
7681130, -- mus_120_silvermoon_city_h
7713436, -- mus_120_silvermoon_city_i
7713438, -- mus_120_silvermoon_city_j
7713440, -- mus_120_silvermoon_city_k
-- Silvermoon city void variants
7696440, -- mus_120_silvermoon_city_void_a
7696442, -- mus_120_silvermoon_city_void_b
7696444, -- mus_120_silvermoon_city_void_c
7696446, -- mus_120_silvermoon_city_void_d
7696448, -- mus_120_silvermoon_city_void_e
7696450, -- mus_120_silvermoon_city_void_f
7696452, -- mus_120_silvermoon_city_void_g
7696454, -- mus_120_silvermoon_city_void_i
-- Silvermoon featured variants that can still bleed through in interiors or themed pockets
7698320, -- mus_120_silvermoon_harp_h
7698322, -- mus_120_silvermoon_horde_a
7698324, -- mus_120_silvermoon_horde_b
7698326, -- mus_120_silvermoon_horde_c
7713448, -- mus_120_silvermoon_horde_d
7698328, -- mus_120_silvermoon_horde_h
7713442, -- mus_120_silvermoon_horde_void_a
7713444, -- mus_120_silvermoon_horde_void_b
7713446, -- mus_120_silvermoon_horde_void_c
7726430, -- mus_120_silvermoon_horde_void_d
7698330, -- mus_120_silvermoon_inn_a
7698332, -- mus_120_silvermoon_inn_h
-- Sanctum / nearby Quel'Thalas variants that can bleed through at boundary pockets
7681108, -- mus_120_sanctum_of_light_a
7681110, -- mus_120_sanctum_of_light_b
7681112, -- mus_120_sanctum_of_light_c
7681114, -- mus_120_sanctum_of_light_d
7681116, -- mus_120_sanctum_of_light_e
7681118, -- mus_120_sanctum_of_light_h
7713414, -- mus_120_lake_eldrendar_void_a
7713416, -- mus_120_lake_eldrendar_void_b
7713418, -- mus_120_lake_eldrendar_void_c
7698334, -- mus_120_windrunner_village_a
7698336, -- mus_120_windrunner_village_b
7698338, -- mus_120_windrunner_village_c
7698340, -- mus_120_windrunner_village_d
7713466, -- mus_120_windrunner_village_e
7713468, -- mus_120_windrunner_village_f
7698342, -- mus_120_windrunner_village_h1
7698344, -- mus_120_windrunner_village_h2
-- Broader Eversong-side families still likely to appear in remastered subzones
7696420, -- mus_120_gloom_mire_a
7696422, -- mus_120_gloom_mire_b
7696424, -- mus_120_gloom_mire_c
7696426, -- mus_120_gloom_mire_d
7696428, -- mus_120_gloom_mire_e
7696430, -- mus_120_gloom_mire_h
7682352, -- mus_120_lake_eldrendar_a
7682354, -- mus_120_lake_eldrendar_b
7682356, -- mus_120_lake_eldrendar_c
7682358, -- mus_120_lake_eldrendar_d
7682360, -- mus_120_lake_eldrendar_e
7682362, -- mus_120_lake_eldrendar_f
7682364, -- mus_120_lake_eldrendar_h
7690535, -- mus_120_lightbloom_a
7690537, -- mus_120_lightbloom_b
7690539, -- mus_120_lightbloom_c
7690541, -- mus_120_lightbloom_d
7690543, -- mus_120_lightbloom_e
7690545, -- mus_120_lightbloom_f
7690547, -- mus_120_lightbloom_g
7690549, -- mus_120_lightbloom_h
-- Keep dedicated Harandar cues native; do not mute them here.
-- Southern corridor leak tracking (Amani Pass / Ruins of Deatholme):
-- Append only IDs that are verified from focused trace + datamine sessions.
}
-- Keep a small exclusion list so the generated catalog can provide broad
-- Midnight coverage without reintroducing native-only Harandar music.
local MIDNIGHT_CATALOG_MUTE_FAMILY_EXCLUSIONS = {
-- Keep Harandar native even if the broader music scope rules evolve again.
harandar_1 = true,
harandar_2 = true,
harandar_3 = true,
lightbloom_harandar = true,
}
local function AppendCatalogMidnightMusicIDs(targetList)
if not (targetList and BElfVR_MidnightMusicFamilyIDs) then
return
end
local seen = {}
for _, id in ipairs(targetList) do
seen[id] = true
end
local familyNames = {}
for familyName in pairs(BElfVR_MidnightMusicFamilyIDs) do
familyNames[#familyNames + 1] = familyName
end
table.sort(familyNames)
for _, familyName in ipairs(familyNames) do
if not MIDNIGHT_CATALOG_MUTE_FAMILY_EXCLUSIONS[familyName] then
for _, id in ipairs(BElfVR_MidnightMusicFamilyIDs[familyName]) do
if not seen[id] then
seen[id] = true
targetList[#targetList + 1] = id
end
end
end
end
end
AppendCatalogMidnightMusicIDs(BElfVR_NewMusicIDs)
-- Some supported interiors still use generic Blizzard zonemusic families that
-- are not part of the Midnight mus_120 catalog. Keep these muted only while
-- the addon owns music playback inside supported Quel'Thalas regions.
BElfVR_SupplementalMusicMuteIDs = {}
do
-- Generic inn / tavern / rest-area zonemusic families from wowdev listfile:
-- tavernalliance, taverndwarf, tavernhorde, tavernhuman, tavernnightelf,
-- tavernorcrestarea, tavernpirate, taverntaurenrestarea, tavernundead.
for id = 53737, 53778 do
BElfVR_SupplementalMusicMuteIDs[#BElfVR_SupplementalMusicMuteIDs + 1] = id
end
end
-- ============================================================
-- TBC ORIGINAL MUSIC - Silvermoon
-- These are the replacement tracks the addon can inject on the
-- music channel while you are in the supported Blood Elf zones.
--
-- SAFE TO CHANGE:
-- - You may swap these IDs for verified alternatives.
-- - You may add more IDs to the day/night pools.
--
-- CHANGE WITH CARE:
-- - The `intro`, `day`, and `night` categories are used directly
-- - by the code in BElfRestore.lua.
-- - Renaming these keys will break playback logic.
-- ============================================================
BElfVR_TBCMusic = {
intro = {
53473, -- ES_SilvermoonIntro01
},
day = {
53474, -- ES_SilvermoonWalkDay01
53475, -- ES_SilvermoonWalkDay02
53476, -- ES_SilvermoonWalkDay03
},
night = {
53477, -- ES_SilvermoonWalKnight01
53478, -- ES_SilvermoonWalKnight02
53479, -- ES_SilvermoonWalKnight03
},
}
-- ============================================================
-- TBC ORIGINAL MUSIC - REGION OVERRIDES
-- This optional table lets each logical music region use its own
-- TBC pools. If a region or category is empty, the addon falls
-- back to the legacy `BElfVR_TBCMusic` table above.
--
-- SAFE TO CHANGE:
-- - Add verified IDs to the empty `eversong`, `eversong_south`,
-- or `deatholme`
-- buckets as you map Midnight-era Quel'Thalas.
-- - You may also override `silvermoon` explicitly if you want
-- different behavior than the legacy fallback table.
--
-- DO NOT RENAME THE REGION KEYS:
-- - The code expects `silvermoon`, `eversong`, `sunstrider`,
-- `eversong_south`, `deatholme`, and `amani`.
-- - Legacy compatibility: if a custom pack still uses `ghostlands`,
-- the addon treats it as `eversong_south`.
-- ============================================================
BElfVR_TBCMusicRegions = {
silvermoon = {
intro = {},
day = {},
night = {},
},
silvermoon_interior = {
-- Silvermoon City interior pool.
-- Uses the Ghostlands scenic walk tracks as calm indoor ambience
-- instead of the louder outdoor Silvermoon day/night cycle.
intro = {},
day = {
53513, -- GL_ScenicWalkUni01
53514, -- GL_ScenicWalkUni02
53515, -- GL_ScenicWalkUni03
},
night = {
53513, -- GL_ScenicWalkUni01
53514, -- GL_ScenicWalkUni02
53515, -- GL_ScenicWalkUni03
},
},
eversong = {
-- A soft scene-setter used when entering the broader Eversong region.
intro = {
53468, -- ES_ScenicIntroNight01
},
-- General daytime Eversong travel pool.
-- This intentionally blends several classic Eversong families so the
-- remastered zone can still feel varied even though its original
-- sub-areas no longer map cleanly one-to-one.
day = {
53458, -- ES_BuildingWalkDay01
53459, -- ES_BuildingWalkDay02
53462, -- ES_RuinsWalkDay01
53463, -- ES_RuinsWalkDay02
53464, -- ES_RuinsWalkDay03
53469, -- ES_ScortchedWalkDay01
53470, -- ES_ScortchedWalkDay02
53480, -- ES_SunstriderWalkDay01
53481, -- ES_SunstriderWalkDay02
53482, -- ES_SunstriderWalkDay03
},
-- General nighttime Eversong travel pool.
night = {
53460, -- ES_BuildingWalkNight01
53461, -- ES_BuildingWalkNight02
53465, -- ES_RuinsWalkNight01
53466, -- ES_RuinsWalkNight02
53467, -- ES_RuinsWalkNight03
53471, -- ES_ScortchedWalkNight01
53472, -- ES_ScortchedWalkNight02
53483, -- ES_SunstriderWalkNight01
53484, -- ES_SunstriderWalkNight02
53485, -- ES_SunstriderWalkNight03
},
},
sunstrider = {
-- Keep Sunstrider Isle distinct from the broader mixed Eversong pool.
intro = {
53468, -- ES_ScenicIntroNight01
},
day = {
53480, -- ES_SunstriderWalkDay01
53481, -- ES_SunstriderWalkDay02
53482, -- ES_SunstriderWalkDay03
},
night = {
53483, -- ES_SunstriderWalkNight01
53484, -- ES_SunstriderWalkNight02
53485, -- ES_SunstriderWalkNight03
},
},
eversong_south = {
-- A neutral scenic lead-in for Midnight's southern Eversong corridor.
intro = {
53514, -- GL_ScenicWalkUni02
53515, -- GL_ScenicWalkUni03
},
-- Daytime southern-Eversong pool for Tranquillien and nearby subzones.
day = {
53499, -- GL_EversongDarkWalkUni01
53500, -- GL_EversongDarkWalkUni02
53501, -- GL_EversongDarkWalkUni03
53502, -- GL_EversongDarkWalkUni04
53503, -- GL_Forest1WalkDay01
53504, -- GL_Forest1WalkDay02
53506, -- GL_Forest2WalkDay01
53509, -- GL_Forest3WalkDay01
53514, -- GL_ScenicWalkUni02
53515, -- GL_ScenicWalkUni03
53516, -- GL_ShalandisWalkUni01
53517, -- GL_ShalandisWalkUni02
53518, -- GL_ShalandisWalkUni03
},
-- Nighttime southern-Eversong pool.
night = {
53499, -- GL_EversongDarkWalkUni01
53500, -- GL_EversongDarkWalkUni02
53501, -- GL_EversongDarkWalkUni03
53502, -- GL_EversongDarkWalkUni04
53505, -- GL_Forest1WalkNight01
53507, -- GL_Forest2WalkNight01
53508, -- GL_Forest2WalkNight02
53510, -- GL_Forest3WalkNight01
53511, -- GL_Forest3WalkNight02
53512, -- GL_Forest3WalkNight03
53514, -- GL_ScenicWalkUni02
53515, -- GL_ScenicWalkUni03
53516, -- GL_ShalandisWalkUni01
53517, -- GL_ShalandisWalkUni02
53518, -- GL_ShalandisWalkUni03
},
},
deatholme = {
-- Dedicated Ruins of Deatholme routing: keep this intentionally dark.
intro = {
53510, -- GL_Forest3WalkNight01
53511, -- GL_Forest3WalkNight02
53512, -- GL_Forest3WalkNight03
},
day = {
53507, -- GL_Forest2WalkNight01
53508, -- GL_Forest2WalkNight02
53510, -- GL_Forest3WalkNight01
53511, -- GL_Forest3WalkNight02
53512, -- GL_Forest3WalkNight03
},
night = {
53507, -- GL_Forest2WalkNight01
53508, -- GL_Forest2WalkNight02
53510, -- GL_Forest3WalkNight01
53511, -- GL_Forest3WalkNight02
53512, -- GL_Forest3WalkNight03
},
},
amani = {
-- Old TBC Zul'Aman ambient family for Amani / Zeb ruins routing.
-- Verified FileDataIDs from wowdev/wow-listfile (202603051942):
-- ZA_zulaman_AMB10..15 -> 53825..53830
intro = {
53828, -- ZA_zulaman_AMB13
53829, -- ZA_zulaman_AMB14
},
day = {
53825, -- ZA_zulaman_AMB10
53826, -- ZA_zulaman_AMB11
53827, -- ZA_zulaman_AMB12
53828, -- ZA_zulaman_AMB13
53829, -- ZA_zulaman_AMB14
53830, -- ZA_zulaman_AMB15
},
night = {
53825, -- ZA_zulaman_AMB10
53826, -- ZA_zulaman_AMB11
53827, -- ZA_zulaman_AMB12
53828, -- ZA_zulaman_AMB13
53829, -- ZA_zulaman_AMB14
53830, -- ZA_zulaman_AMB15
},
},
}
-- ============================================================
-- TBC MUSIC DURATIONS
-- Approximate track lengths in seconds for the replacement
-- music IDs used by this addon.
--
-- SAFE TO CHANGE:
-- - If you verify a duration is slightly off, you may adjust it.
--
-- CHANGE WITH CARE:
-- - If a value is wildly wrong, the addon may think a track ended
-- too early or too late, which can create awkward gaps.
-- ============================================================
BElfVR_TBCMusicDurations = {
[53458] = 65,
[53459] = 68,
[53460] = 84,
[53461] = 83,
[53462] = 48,
[53463] = 71,
[53464] = 70,
[53465] = 50,
[53466] = 83,
[53467] = 67,
[53468] = 97,
[53469] = 116,
[53470] = 102,
[53471] = 69,
[53472] = 61,
[53473] = 132,
[53474] = 64,
[53475] = 79,
[53476] = 64,
[53477] = 177,
[53478] = 71,
[53479] = 80,
[53480] = 80,
[53481] = 58,
[53482] = 67,
[53483] = 100,
[53484] = 100,
[53485] = 86,
[53499] = 62,
[53500] = 62,
[53501] = 63,
[53502] = 60,
[53503] = 66,
[53504] = 70,
[53505] = 67,
[53506] = 83,
[53507] = 59,
[53508] = 60,
[53509] = 154,
[53510] = 51,
[53511] = 28,
[53512] = 44,
[53513] = 89,
[53514] = 81,
[53515] = 78,
[53516] = 131,
[53517] = 103,
[53518] = 67,
}
-- ============================================================
-- TBC ORIGINAL VOICES - MALE
-- Still present in the 12.0.1 client. Played on interaction.
-- ============================================================
BElfVR_TBCVoices_Male = {
greet = {
-- Source: wowhead.com - BloodElfMaleNobleVendor
556925, -- NPCBloodElfMaleNobleVendor01.ogg
556917, -- NPCBloodElfMaleNobleVendor02.ogg
556923, -- NPCBloodElfMaleNobleVendor03.ogg
556922, -- NPCBloodElfMaleNobleVendor04.ogg
556918, -- NPCBloodElfMaleNobleVendor05.ogg
556929, -- NPCBloodElfMaleNobleVendor06.ogg
-- Source: wowhead.com - BloodElfMaleNobleGreetings
556939, -- NPCBloodElfMaleNobleGreeting01.ogg
556937, -- NPCBloodElfMaleNobleGreeting02.ogg
556927, -- NPCBloodElfMaleNobleGreeting04.ogg
556930, -- NPCBloodElfMaleNobleGreeting05.ogg
556919, -- NPCBloodElfMaleNobleGreeting07.ogg
556935, -- NPCBloodElfMaleNobleGreeting10.ogg
556924, -- NPCBloodElfMaleNobleGreeting12.ogg
-- Source: wowhead.com - BloodElfMaleStandardVendor
556951, -- NPCBloodElfMaleStandardVendor01.ogg
556959, -- NPCBloodElfMaleStandardVendor02.ogg
556943, -- NPCBloodElfMaleStandardVendor03.ogg
556952, -- NPCBloodElfMaleStandardVendor04.ogg
556950, -- NPCBloodElfMaleStandardVendor05.ogg
556953, -- NPCBloodElfMaleStandardVendor06.ogg
-- Source: wowhead.com - BloodElfMaleStandardGreetings
556955, -- NPCBloodElfMaleStandardGreeting02.ogg
556963, -- NPCBloodElfMaleStandardGreeting03.ogg
556949, -- NPCBloodElfMaleStandardGreeting06.ogg
556960, -- NPCBloodElfMaleStandardGreeting09.ogg
556947, -- NPCBloodElfMaleStandardGreeting10.ogg
556946, -- NPCBloodElfMaleStandardGreeting11.ogg
-- Source: wowhead.com - BloodElfMaleMilitaryVendor
556904, -- NPCBloodElfMaleMilitaryVendor01.ogg
556913, -- NPCBloodElfMaleMilitaryVendor02.ogg
556902, -- NPCBloodElfMaleMilitaryVendor03.ogg
556906, -- NPCBloodElfMaleMilitaryVendor04.ogg
556911, -- NPCBloodElfMaleMilitaryVendor05.ogg
556908, -- NPCBloodElfMaleMilitaryVendor06.ogg
-- Source: wowhead.com - BloodElfMaleMilitaryGreetings
556907, -- NPCBloodElfMaleMilitaryGreeting01.ogg
556898, -- NPCBloodElfMaleMilitaryGreeting03.ogg
556899, -- NPCBloodElfMaleMilitaryGreeting04.ogg
556901, -- NPCBloodElfMaleMilitaryGreeting06.ogg
556894, -- NPCBloodElfMaleMilitaryGreeting08.ogg
556897, -- NPCBloodElfMaleMilitaryGreeting10.ogg
},
bye = {
-- Source: wowhead.com - BloodElfMaleNobleFarewell
556940, -- NPCBloodElfMaleNobleFarewell01.ogg
556921, -- NPCBloodElfMaleNobleFarewell02.ogg
556932, -- NPCBloodElfMaleNobleFarewell03.ogg
556936, -- NPCBloodElfMaleNobleFarewell04.ogg
556933, -- NPCBloodElfMaleNobleFarewell06.ogg
556926, -- NPCBloodElfMaleNobleFarewell07.ogg
-- Source: wowhead.com - BloodElfMaleStandardFarewell
556957, -- NPCBloodElfMaleStandardFarewell02.ogg
556961, -- NPCBloodElfMaleStandardFarewell03.ogg
556945, -- NPCBloodElfMaleStandardFarewell07.ogg
556956, -- NPCBloodElfMaleStandardFarewell08.ogg
556954, -- NPCBloodElfMaleStandardFarewell10.ogg
556941, -- NPCBloodElfMaleStandardFarewell12.ogg
-- Source: wowhead.com - BloodElfMaleMilitaryFarewell
556909, -- NPCBloodElfMaleMilitaryFarewell01.ogg
556916, -- NPCBloodElfMaleMilitaryFarewell04.ogg
556903, -- NPCBloodElfMaleMilitaryFarewell05.ogg
556912, -- NPCBloodElfMaleMilitaryFarewell06.ogg
556915, -- NPCBloodElfMaleMilitaryFarewell07.ogg
556914, -- NPCBloodElfMaleMilitaryFarewell09.ogg
},
pissed = {
-- Source: wowhead.com - BloodElfMaleNoblePissed
556938, -- NPCBloodElfMaleNoblePissed01.ogg
556920, -- NPCBloodElfMaleNoblePissed03.ogg
556934, -- NPCBloodElfMaleNoblePissed06.ogg
556928, -- NPCBloodElfMaleNoblePissed08.ogg
556931, -- NPCBloodElfMaleNoblePissed10.ogg
-- Source: wowhead.com - BloodElfMaleStandardPissed
556958, -- NPCBloodElfMaleStandardPissed01.ogg
556944, -- NPCBloodElfMaleStandardPissed02.ogg
556962, -- NPCBloodElfMaleStandardPissed04.ogg
556948, -- NPCBloodElfMaleStandardPissed05.ogg
556942, -- NPCBloodElfMaleStandardPissed10.ogg
-- Source: wowhead.com - BloodElfMaleMilitaryPissed
556905, -- NPCBloodElfMaleMilitaryPissed01.ogg
556895, -- NPCBloodElfMaleMilitaryPissed03.ogg
556896, -- NPCBloodElfMaleMilitaryPissed06.ogg
556900, -- NPCBloodElfMaleMilitaryPissed08.ogg
556910, -- NPCBloodElfMaleMilitaryPissed09.ogg
},
}
-- ============================================================
-- TBC ORIGINAL VOICES - FEMALE
-- Still present in the 12.0.1 client. Played on interaction.
-- ============================================================
BElfVR_TBCVoices_Female = {
greet = {
-- Source: wowhead.com - BloodElfFemaleNobleVendor
556864, -- NPCBloodElfFemaleNobleVendor01.ogg
556860, -- NPCBloodElfFemaleNobleVendor02.ogg
556859, -- NPCBloodElfFemaleNobleVendor03.ogg
556869, -- NPCBloodElfFemaleNobleVendor04.ogg
556867, -- NPCBloodElfFemaleNobleVendor05.ogg
556855, -- NPCBloodElfFemaleNobleVendor06.ogg
-- Source: wowhead.com - BloodElfFemaleNobleGreetings
556851, -- NPCBloodElfFemaleNobleGreeting01.ogg
556858, -- NPCBloodElfFemaleNobleGreeting02.ogg
556854, -- NPCBloodElfFemaleNobleGreeting05.ogg
556863, -- NPCBloodElfFemaleNobleGreeting07.ogg
556853, -- NPCBloodElfFemaleNobleGreeting08.ogg
556856, -- NPCBloodElfFemaleNobleGreeting11.ogg
-- Source: wowhead.com - BloodElfFemaleStandardVendor
556871, -- NPCBloodElfFemaleStandardVendor01.ogg
556877, -- NPCBloodElfFemaleStandardVendor02.ogg
556880, -- NPCBloodElfFemaleStandardVendor03.ogg
556892, -- NPCBloodElfFemaleStandardVendor04.ogg
556888, -- NPCBloodElfFemaleStandardVendor05.ogg
556874, -- NPCBloodElfFemaleStandardVendor06.ogg
-- Source: wowhead.com - BloodElfFemaleStandardGreetings
556884, -- NPCBloodElfFemaleStandardGreeting03.ogg
556886, -- NPCBloodElfFemaleStandardGreeting04.ogg
556872, -- NPCBloodElfFemaleStandardGreeting05.ogg
556873, -- NPCBloodElfFemaleStandardGreeting07.ogg
556870, -- NPCBloodElfFemaleStandardGreeting08.ogg
556875, -- NPCBloodElfFemaleStandardGreeting12.ogg
-- Source: wowhead.com - BloodElfFemaleMilitaryGreeting
556826, -- NPCBloodElfFemaleMilitaryGreeting01.ogg
556839, -- NPCBloodElfFemaleMilitaryGreeting02.ogg
556846, -- NPCBloodElfFemaleMilitaryGreeting04.ogg
556842, -- NPCBloodElfFemaleMilitaryGreeting06.ogg
556828, -- NPCBloodElfFemaleMilitaryGreeting09.ogg
556845, -- NPCBloodElfFemaleMilitaryGreeting10.ogg
556841, -- NPCBloodElfFemaleMilitaryGreeting12.ogg
-- Source: wowhead.com - BloodElfFemaleMilitaryVendor
556836, -- NPCBloodElfFemaleMilitaryVendor01.ogg
556843, -- NPCBloodElfFemaleMilitaryVendor02.ogg
556834, -- NPCBloodElfFemaleMilitaryVendor03.ogg
556833, -- NPCBloodElfFemaleMilitaryVendor04.ogg
556832, -- NPCBloodElfFemaleMilitaryVendor05.ogg
556837, -- NPCBloodElfFemaleMilitaryVendor06.ogg
},
bye = {
-- Source: wowhead.com - BloodElfFemaleNobleFarewell
556847, -- NPCBloodElfFemaleNobleFarewell01.ogg
556861, -- NPCBloodElfFemaleNobleFarewell04.ogg
556849, -- NPCBloodElfFemaleNobleFarewell08.ogg
556852, -- NPCBloodElfFemaleNobleFarewell09.ogg
556850, -- NPCBloodElfFemaleNobleFarewell10.ogg
556866, -- NPCBloodElfFemaleNobleFarewell12.ogg
-- Source: wowhead.com - BloodElfFemaleStandardFarewell
556893, -- NPCBloodElfFemaleStandardFarewell03.ogg
556887, -- NPCBloodElfFemaleStandardFarewell04.ogg
556883, -- NPCBloodElfFemaleStandardFarewell06.ogg
556890, -- NPCBloodElfFemaleStandardFarewell07.ogg
556879, -- NPCBloodElfFemaleStandardFarewell09.ogg
556882, -- NPCBloodElfFemaleStandardFarewell11.ogg
-- Source: wowhead.com - BloodElfFemaleMilitaryFarewell
556827, -- NPCBloodElfFemaleMilitaryFarewell02.ogg
556825, -- NPCBloodElfFemaleMilitaryFarewell03.ogg
556830, -- NPCBloodElfFemaleMilitaryFarewell05.ogg
556835, -- NPCBloodElfFemaleMilitaryFarewell06.ogg
556840, -- NPCBloodElfFemaleMilitaryFarewell07.ogg
556831, -- NPCBloodElfFemaleMilitaryFarewell11.ogg
},
pissed = {
-- Source: wowhead.com - BloodElfFemaleNoblePissed
556868, -- NPCBloodElfFemaleNoblePissed01.ogg
556865, -- NPCBloodElfFemaleNoblePissed04.ogg
556857, -- NPCBloodElfFemaleNoblePissed05.ogg
556862, -- NPCBloodElfFemaleNoblePissed08.ogg
556848, -- NPCBloodElfFemaleNoblePissed10.ogg
-- Source: wowhead.com - BloodElfFemaleStandardPissed
556885, -- NPCBloodElfFemaleStandardPissed01.ogg
556881, -- NPCBloodElfFemaleStandardPissed02.ogg
556891, -- NPCBloodElfFemaleStandardPissed04.ogg
556876, -- NPCBloodElfFemaleStandardPissed06.ogg
556889, -- NPCBloodElfFemaleStandardPissed07.ogg
556878, -- NPCBloodElfFemaleStandardPissed09.ogg
-- Source: wowhead.com - BloodElfFemaleMilitaryPissed
556824, -- NPCBloodElfFemaleMilitaryPissed03.ogg
556838, -- NPCBloodElfFemaleMilitaryPissed06.ogg
556844, -- NPCBloodElfFemaleMilitaryPissed07.ogg
556829, -- NPCBloodElfFemaleMilitaryPissed09.ogg
},
}