-
Notifications
You must be signed in to change notification settings - Fork 6
/
SNDINFO.txt
1561 lines (1324 loc) · 73.7 KB
/
SNDINFO.txt
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
$pitchshiftrange 0
//==============================================================================
// Player Sounds
//==============================================================================
Eternal/Player/Pain1 "Sounds/Player/Pain1.ogg"
Eternal/Player/Pain2 "Sounds/Player/Pain2.ogg"
Eternal/Player/Pain3 "Sounds/Player/Pain3.ogg"
Eternal/Player/Pain4 "Sounds/Player/Pain4.ogg"
Eternal/Player/Pain5 "Sounds/Player/Pain5.ogg"
Eternal/Player/PainSmall1 "Sounds/Player/PainSmall1.ogg"
Eternal/Player/PainSmall2 "Sounds/Player/PainSmall2.ogg"
Eternal/Player/PainSmall3 "Sounds/Player/PainSmall3.ogg"
Eternal/Player/PainSmall4 "Sounds/Player/PainSmall4.ogg"
Eternal/Player/PainSmall5 "Sounds/Player/PainSmall5.ogg"
Eternal/Player/PainSmall6 "Sounds/Player/PainSmall6.ogg"
Eternal/Player/Death1 "Sounds/Player/Death1.ogg"
Eternal/Player/Death2 "Sounds/Player/Death2.ogg"
Eternal/Player/Death3 "Sounds/Player/Death3.ogg"
Eternal/Player/Death4 "Sounds/Player/Death4.ogg"
Eternal/Player/Death5 "Sounds/Player/Death5.ogg"
$random Eternal/Player/Pain
{
Eternal/Player/Pain1 Eternal/Player/Pain2 Eternal/Player/Pain3
Eternal/Player/Pain4 Eternal/Player/Pain5
}
$random Eternal/Player/PainSmall
{
Eternal/Player/PainSmall1 Eternal/Player/PainSmall2 Eternal/Player/PainSmall3
Eternal/Player/PainSmall4 Eternal/Player/PainSmall5 Eternal/Player/PainSmall6
}
$random Eternal/Player/Death
{
Eternal/Player/Death1 Eternal/Player/Death2 Eternal/Player/Death3
Eternal/Player/Death4 Eternal/Player/Death5
}
$limit Eternal/Player/Pain 0
$limit Eternal/Player/PainSmall 0
$limit Eternal/Player/Death 0
//==============================================================================
// Menu Sounds
//==============================================================================
Doom4/Menu/Back "sounds/Menu/Back.ogg"
Doom4/Menu/Hover "sounds/Menu/MouseHover.ogg"
Doom4/Menu/Navigate "sounds/Menu/NavigateKeys.ogg"
Doom4/Menu/Select "sounds/Menu/Select.ogg"
Doom4/Menu/Slider "sounds/Menu/Slider.ogg"
Doom4/Menu/IntroLower "sounds/Menu/D4Dintro1Lower.ogg"
Doom4/Menu/Menu "sounds/Menu/D4Dmenu.ogg"
Doom4/Menu/RipAndTear "sounds/Menu/RipandTear.ogg"
menu/activate "sounds/Menu/Select.ogg" // Activate a new menu
menu/backup "sounds/Menu/Back.ogg" // Backup to previous menu
menu/prompt dsswtchn // Activate a prompt "menu"
menu/cursor "sounds/Menu/MouseHover.ogg" // Move cursor up/down
menu/change "sounds/Menu/Slider.ogg" // Select new value for option
menu/invalid dsoof // Menu not available
menu/dismiss "sounds/Menu/Back.ogg" // Dismiss a prompt message
menu/choose "sounds/Menu/Select.ogg" // Choose a menu item
menu/clear "sounds/Menu/Back.ogg" // Close top menu
$alias dssecret menu/clear
$volume dssecret 0.5
$alias intermission/tick Doom4/Weapon/Machinegun/Fire
$alias intermission/cooptotal Doom4/Other/GibExplode
$alias intermission/nextstage Doom4/Weapon/RocketLauncher/HRExplo
$alias intermission/paststats Doom4/Monsters/BaronCrash
$alias intermission/pastcoopstats Doom4/Monsters/BaronCrash
$alias intermission/pastdmstats Doom4/Other/GibExplode
//==============================================================================
// Crucible
//==============================================================================
Eternal/Crucible/AmmoLoop "Sounds/Weapons/Crucible/AmmoLoop.ogg"
Eternal/Crucible/AmmoPickup "Sounds/Weapons/Crucible/AmmoPickup.ogg"
Eternal/Crucible/Deselect "Sounds/Weapons/Crucible/Deselect.ogg"
Eternal/Crucible/Deploy "Sounds/Weapons/Crucible/Deploy.ogg"
Eternal/Crucible/Pickup "Sounds/Weapons/Crucible/Pickup.ogg"
Eternal/Crucible/Idle "Sounds/Weapons/Crucible/Idle.ogg"
Eternal/Crucible/Select "Sounds/Weapons/Crucible/Select.ogg"
Eternal/Crucible/Swing1 "Sounds/Weapons/Crucible/Swing1.ogg"
Eternal/Crucible/Swing2 "Sounds/Weapons/Crucible/Swing2.ogg"
Eternal/Crucible/Swing3 "Sounds/Weapons/Crucible/Swing3.ogg"
Eternal/Crucible/Swing4 "Sounds/Weapons/Crucible/Swing4.ogg"
Eternal/Crucible/Swing5 "Sounds/Weapons/Crucible/Swing5.ogg"
Eternal/Crucible/Swing6 "Sounds/Weapons/Crucible/Swing6.ogg"
Eternal/Crucible/Swing7 "Sounds/Weapons/Crucible/Swing7.ogg"
Eternal/Crucible/Return1 "Sounds/Weapons/Crucible/Return1.ogg"
Eternal/Crucible/Return2 "Sounds/Weapons/Crucible/Return2.ogg"
Eternal/Crucible/Return3 "Sounds/Weapons/Crucible/Return3.ogg"
Eternal/Crucible/Return4 "Sounds/Weapons/Crucible/Return4.ogg"
Eternal/Crucible/Return5 "Sounds/Weapons/Crucible/Return5.ogg"
Eternal/Crucible/Ammo "Sounds/Weapons/Crucible/Ammo.ogg"
Eternal/Crucible/Slice1 "Sounds/Weapons/Crucible/Slice1.ogg"
Eternal/Crucible/Slice2 "Sounds/Weapons/Crucible/Slice2.ogg"
Eternal/Crucible/Slice3 "Sounds/Weapons/Crucible/Slice3.ogg"
Eternal/Crucible/Slice4 "Sounds/Weapons/Crucible/Slice4.ogg"
Eternal/Crucible/Slice5 "Sounds/Weapons/Crucible/Slice5.ogg"
Eternal/Crucible/Slice6 "Sounds/Weapons/Crucible/Slice6.ogg"
$random Eternal/Crucible/Slice
{
Eternal/Crucible/Slice1
Eternal/Crucible/Slice2
Eternal/Crucible/Slice3
Eternal/Crucible/Slice4
Eternal/Crucible/Slice5
Eternal/Crucible/Slice6
}
$random Eternal/Crucible/Swing
{
Eternal/Crucible/Swing1 Eternal/Crucible/Swing2 Eternal/Crucible/Swing3
Eternal/Crucible/Swing4 Eternal/Crucible/Swing5 Eternal/Crucible/Swing6
Eternal/Crucible/Swing7
}
$random Eternal/Crucible/Return
{
Eternal/Crucible/Return1
Eternal/Crucible/Return2
Eternal/Crucible/Return3
Eternal/Crucible/Return4
Eternal/Crucible/Return5
}
$limit Eternal/Crucible/Swing 0
$limit Eternal/Crucible/Slice 0
$limit Eternal/Crucible/AmmoLoop 0
$limit Eternal/Crucible/Return 0
//==============================================================================
// Carrion Cannon
//==============================================================================
CarrionCannon/BuildUp "Sounds/Weapons/CC/BuildUp.wav"
CarrionCannon/Shoot1 "Sounds/Weapons/CC/Shoot1.wav"
CarrionCannon/Shoot2 "Sounds/Weapons/CC/Shoot2.wav"
CarrionCannon/Shoot3 "Sounds/Weapons/CC/Shoot3.wav"
CarrionCannon/Shoot4 "Sounds/Weapons/CC/Shoot4.wav"
CarrionCannon/Shoot5 "Sounds/Weapons/CC/Shoot5.wav"
CarrionCannon/Shoot6 "Sounds/Weapons/CC/Shoot6.wav"
CarrionCannon/Shoot7 "Sounds/Weapons/CC/Shoot7.wav"
CarrionCannon/PortalOpen "Sounds/Weapons/CC/PortalOpen.wav"
CarrionCannon/PortalMissile "Sounds/Weapons/CC/PortalMissile.wav"
CarrionCannon/Unleash "Sounds/Weapons/CC/Unleash.wav"
CarrionCannon/ExplosionSmall "Sounds/Weapons/CC/ExplosionSmall.wav"
CarrionCannon/ExplosionMedium "Sounds/Weapons/CC/ExplosionMedium.wav"
CarrionCannon/ExplosionBig "Sounds/Weapons/CC/ExplosionBig.wav"
CarrionCannon/Burning "Sounds/Weapons/CC/Burning.ogg"
CarrionCannon/BurnEnd "Sounds/Weapons/CC/BurnEnd.ogg"
$limit CarrionCannon/BurnEnd 0
$limit CarrionCannon/Burning 0
$limit CarrionCannon/BuildUp 0
$limit CarrionCannon/Shoot1 0
$limit CarrionCannon/Shoot2 0
$limit CarrionCannon/Shoot3 0
$limit CarrionCannon/Shoot4 0
$limit CarrionCannon/Shoot5 0
$limit CarrionCannon/Shoot6 0
$limit CarrionCannon/Shoot7 0
$limit CarrionCannon/PortalOpen 0
$limit CarrionCannon/PortalMissile 0
$limit CarrionCannon/Unleash 0
$limit CarrionCannon/ExplosionSmall 0
$limit CarrionCannon/ExplosionMedium 0
$limit CarrionCannon/ExplosionBig 0
//==============================================================================================
// Chainsaw
//==============================================================================================
$random Doom4/Weapon/Chainsaw/Execute { Doom4/Weapon/Chainsaw/Execute1 Doom4/Weapon/Chainsaw/Execute2 Doom4/Weapon/Chainsaw/Execute3 }
Doom4/Weapon/Chainsaw/Execute1 "sounds/weapons/CS/ChainsawExecute1.ogg"
Doom4/Weapon/Chainsaw/Execute2 "sounds/weapons/CS/ChainsawExecute2.ogg"
Doom4/Weapon/Chainsaw/Execute3 "sounds/weapons/CS/ChainsawExecute3.ogg"
Doom4/Weapon/Chainsaw/Fire "sounds/weapons/CS/Chainsawfiring.ogg"
Doom4/Weapon/Chainsaw/Idle "sounds/weapons/CS/ChainsawIdle.ogg"
Doom4/Weapon/Chainsaw/Down "sounds/weapons/CS/ChainsawWindDown.ogg"
Doom4/Weapon/Chainsaw/AltFire "sounds/weapons/CS/Chainsawaltfiring.ogg"
Doom4/Weapon/Chainsaw/WallHit "sounds/weapons/CS/CsawWall.ogg"
Doom4/Weapon/Chainsaw/Dip "sounds/weapons/CS/h2ohit1.wav"
$volume Doom4/Weapon/Chainsaw/WallHit 0.4
//==============================================================================================
// Machinegun
//==============================================================================================
$random Doom4/Weapon/Machinegun/Fire
{
Doom4/Weapon/Machinegun/HARFire1
Doom4/Weapon/Machinegun/HARFire2
Doom4/Weapon/Machinegun/HARFire3
}
Doom4/Weapon/Machinegun/HARFire1 "Sounds/Weapons/MG/HARFire1.ogg"
Doom4/Weapon/Machinegun/HARFire2 "Sounds/Weapons/MG/HARFire2.ogg"
Doom4/Weapon/Machinegun/HARFire3 "Sounds/Weapons/MG/HARFire3.ogg"
$limit Doom4/Weapon/Machinegun/Fire 0
$random Doom4/Weapon/Machinegun/FireZoomed
{
Doom4/Weapon/Machinegun/HARPierce1
Doom4/Weapon/Machinegun/HARPierce2
Doom4/Weapon/Machinegun/HARPierce3
}
Doom4/Weapon/Machinegun/HARPierce1 "Sounds/Weapons/MG/HARPierce1.ogg"
Doom4/Weapon/Machinegun/HARPierce2 "Sounds/Weapons/MG/HARPierce2.ogg"
Doom4/Weapon/Machinegun/HARPierce3 "Sounds/Weapons/MG/HARPierce3.ogg"
$limit Doom4/Weapon/Machinegun/FireZoomed 0
$random Doom4/Weapon/Machinegun/MiniMissileFire
{
Doom4/Weapon/Machinegun/MiniMissileFire1
Doom4/Weapon/Machinegun/MiniMissileFire2
Doom4/Weapon/Machinegun/MiniMissileFire3
Doom4/Weapon/Machinegun/MiniMissileFire4
}
Doom4/Weapon/Machinegun/MiniMissileFire1 "Sounds/Weapons/MG/MicroMissileFire1.ogg"
Doom4/Weapon/Machinegun/MiniMissileFire2 "Sounds/Weapons/MG/MicroMissileFire2.ogg"
Doom4/Weapon/Machinegun/MiniMissileFire3 "Sounds/Weapons/MG/MicroMissileFire3.ogg"
Doom4/Weapon/Machinegun/MiniMissileFire4 "Sounds/Weapons/MG/MicroMissileFire4.ogg"
$limit Doom4/Weapon/Machinegun/MiniMissileFire 0
$random Doom4/Weapon/Machinegun/MiniMissileExplo
{
Doom4/Weapon/Machinegun/MiniMissileExplo1
Doom4/Weapon/Machinegun/MiniMissileExplo2
Doom4/Weapon/Machinegun/MiniMissileExplo3
Doom4/Weapon/Machinegun/MiniMissileExplo4
}
Doom4/Weapon/Machinegun/MiniMissileExplo1 "Sounds/Weapons/MG/MicroMissileExplode1.ogg"
Doom4/Weapon/Machinegun/MiniMissileExplo2 "Sounds/Weapons/MG/MicroMissileExplode2.ogg"
Doom4/Weapon/Machinegun/MiniMissileExplo3 "Sounds/Weapons/MG/MicroMissileExplode3.ogg"
Doom4/Weapon/Machinegun/MiniMissileExplo4 "Sounds/Weapons/MG/MicroMissileExplode4.ogg"
$limit Doom4/Weapon/Machinegun/MiniMissileExplo 6
$random Doom4/Weapon/Machinegun/MiniMissilePass
{
Doom4/Weapon/Machinegun/MiniMissilePass1
Doom4/Weapon/Machinegun/MiniMissilePass2
Doom4/Weapon/Machinegun/MiniMissilePass3
Doom4/Weapon/Machinegun/MiniMissilePass4
}
Doom4/Weapon/Machinegun/MiniMissilePass1 "Sounds/Weapons/MG/MicroMissilePass1.ogg"
Doom4/Weapon/Machinegun/MiniMissilePass2 "Sounds/Weapons/MG/MicroMissilePass2.ogg"
Doom4/Weapon/Machinegun/MiniMissilePass3 "Sounds/Weapons/MG/MicroMissilePass3.ogg"
Doom4/Weapon/Machinegun/MiniMissilePass4 "Sounds/Weapons/MG/MicroMissilePass4.ogg"
$limit Doom4/Weapon/Machinegun/MiniMissilePass 0
Doom4/Weapon/Machinegun/MinMissilePrepare "sounds/weapons/MG/MGPrepareMissiles.ogg"
Doom4/Weapon/Machinegun/MinMissileRelease "sounds/weapons/MG/MGPrepareMissilesRelease.ogg"
Doom4/Weapon/Machinegun/SwitchToMissiles "sounds/weapons/MG/MGSwitchToMissiles.ogg"
Doom4/Weapon/Machinegun/SwitchToScope "sounds/weapons/MG/MGSwitchToScope.ogg"
Doom4/Weapon/Machinegun/ZoomIn "sounds/weapons/MG/MGZoomIn.ogg"
Doom4/Weapon/Machinegun/ZoomOut "sounds/weapons/MG/MGZoomOut.ogg"
//==============================================================================================
// Plasma rifle
//==============================================================================================
Doom4/Weapon/PlasmaGun/Fire "sounds/weapons/PR/PlasmaFire.ogg"
Doom4/Weapon/PlasmaGun/AltFire "sounds/weapons/PR/PlasmaAltFire.ogg"
Doom4/Weapon/PlasmaGun/AltFireReady "sounds/weapons/PR/PlasmaAltFireReady.ogg"
Doom4/Weapon/PlasmaGun/PlasmaLoop "sounds/weapons/PR/PlasmaLoop.ogg"
Doom4/Weapon/PlasmaGun/PlasmaHeatExplo "sounds/weapons/PR/PlasmaHeatExplo.ogg"
Doom4/Weapon/PlasmaGun/PlasmaHeatLoop "sounds/weapons/PR/PlasmaHeatLoop.ogg"
Doom4/Weapon/PlasmaGun/PlasmaHeatFire "sounds/weapons/PR/PlasmaHeatSingle.ogg"
Doom4/Weapon/PlasmaGun/SwitchToElectro "sounds/weapons/PR/PlasmaSwitchToElectro.ogg"
Doom4/Weapon/PlasmaGun/SwitchToHeat "sounds/weapons/PR/PlasmaSwitchToHeat.ogg"
Doom4/Weapon/PlasmaGun/PlasmaCrash "sounds/weapons/PR/plasmacrash.ogg"
$limit Doom4/Weapon/PlasmaGun/PlasmaCrash 10
$volume Doom4/Weapon/PlasmaGun/PlasmaCrash 0.5
//==============================================================================================
// Pistol
//==============================================================================================
Doom4/Weapon/Pistol/ChargeLoop "sounds/weapons/Pistol/PistolChargeLoop.ogg"
Doom4/Weapon/Pistol/Charge "sounds/weapons/Pistol/PistolChargeUp.ogg"
Doom4/Weapon/Pistol/ChargedFire "sounds/weapons/Pistol/PistolChargedFire.ogg"
Doom4/Weapon/Pistol/Fire "sounds/weapons/Pistol/PistolFire.ogg"
Doom4/Weapon/Pistol2/Charge "sounds/weapons/Pistol/Pistol2ChargeLoop.ogg"
Doom4/Weapon/Pistol2/ChargedFire "sounds/weapons/Pistol/Pistol2ChargeFire.ogg"
Doom4/Weapon/Pistol2/Fire "sounds/weapons/Pistol/Pistol2Fire.ogg"
Doom4/Weapon/PistolL/Fire "sounds/weapons/Pistol/PistolLFire.ogg"
Doom4/Weapon/PistolL/Smoke "sounds/weapons/Pistol/PistolLSmoke.ogg"
//==============================================================================================
// SuperShotgun
//==============================================================================================
$random Doom4/Weapon/SuperShotgun/Fire
{
Doom4/Weapon/SuperShotgun/Fire1
Doom4/Weapon/SuperShotgun/Fire2
}
Doom4/Weapon/SuperShotgun/Fire1 "Sounds/Weapons/SSG/Fire1.ogg"
Doom4/Weapon/SuperShotgun/Fire2 "Sounds/Weapons/SSG/Fire2.ogg"
$limit Doom4/Weapon/SuperShotgun/Fire 0
Doom4/Weapon/SuperShotgun/Open "Sounds/Weapons/SSG/Open.ogg"
Doom4/Weapon/SuperShotgun/Tube "Sounds/Weapons/SSG/Tube.ogg"
Doom4/Weapon/SuperShotgun/EjectShell1 "Sounds/Weapons/SSG/EjectShell1.ogg"
Doom4/Weapon/SuperShotgun/EjectShell2 "Sounds/Weapons/SSG/EjectShell2.ogg"
Doom4/Weapon/SuperShotgun/EjectShell3 "Sounds/Weapons/SSG/EjectShell3.ogg"
Doom4/Weapon/SuperShotgun/EjectShell4 "Sounds/Weapons/SSG/EjectShell4.ogg"
$random Doom4/Weapon/SuperShotgun/EjectShell
{
Doom4/Weapon/SuperShotgun/EjectShell1
Doom4/Weapon/SuperShotgun/EjectShell2
Doom4/Weapon/SuperShotgun/EjectShell3
Doom4/Weapon/SuperShotgun/EjectShell4
}
Doom4/Weapon/SuperShotgun/Load1 "Sounds/Weapons/SSG/Load1.ogg"
Doom4/Weapon/SuperShotgun/Load2 "Sounds/Weapons/SSG/Load2.ogg"
Doom4/Weapon/SuperShotgun/Load3 "Sounds/Weapons/SSG/Load3.ogg"
$random Doom4/Weapon/SuperShotgun/Load
{
Doom4/Weapon/SuperShotgun/Load1
Doom4/Weapon/SuperShotgun/Load2
Doom4/Weapon/SuperShotgun/Load3
}
Doom4/Weapon/SuperShotgun/ShellClick1 "Sounds/Weapons/SSG/ShellClick1.ogg"
Doom4/Weapon/SuperShotgun/ShellClick2 "Sounds/Weapons/SSG/ShellClick2.ogg"
Doom4/Weapon/SuperShotgun/ShellClick3 "Sounds/Weapons/SSG/ShellClick3.ogg"
$random Doom4/Weapon/SuperShotgun/ShellClick
{
Doom4/Weapon/SuperShotgun/ShellClick1
Doom4/Weapon/SuperShotgun/ShellClick2
Doom4/Weapon/SuperShotgun/ShellClick3
}
Doom4/Weapon/SuperShotgun/Close "Sounds/Weapons/SSG/Close.ogg"
$limit Doom4/Weapon/SuperShotgun/Close 0
// In case of laziness...
$random Doom4/Weapon/SuperShotgun/FullReload
{
Doom4/Weapon/SuperShotgun/FullReload1
Doom4/Weapon/SuperShotgun/FullReload2
}
Doom4/Weapon/SuperShotgun/FullReload1 "Sounds/Weapons/SSG/FullReload1.ogg"
Doom4/Weapon/SuperShotgun/FullReload2 "Sounds/Weapons/SSG/FullReload2.ogg"
//Doom4/Weapon/SuperShotgun/FireFast "sounds/weapons/SSG/SSGFireFast.ogg"
//Doom4/Weapon/SuperShotgun/FireSingle "sounds/weapons/SSG/SSGFireSingle.ogg"
//Doom4/Weapon/SuperShotgun/SwitchMode "sounds/weapons/SSG/SSGSwitch.ogg"
//==============================================================================================
// Rocket Launcher
//==============================================================================================
Doom4/Weapon/RocketLauncher/Fire1 "sounds/weapons/RL/Fire1.ogg"
Doom4/Weapon/RocketLauncher/Fire2 "sounds/weapons/RL/Fire2.ogg"
Doom4/Weapon/RocketLauncher/Fire3 "sounds/weapons/RL/Fire3.ogg"
Doom4/Weapon/RocketLauncher/Fire4 "sounds/weapons/RL/Fire4.ogg"
Doom4/Weapon/RocketLauncher/Reload1 "Sounds/Weapons/RL/Reload1.ogg"
Doom4/Weapon/RocketLauncher/Reload2 "Sounds/Weapons/RL/Reload2.ogg"
Doom4/Weapon/RocketLauncher/Reload3 "Sounds/Weapons/RL/Reload3.ogg"
Doom4/Weapon/RocketLauncher/Rotate "Sounds/Weapons/RL/Rotate.ogg"
Doom4/Weapon/RocketLauncher/SwitchToDetonate "sounds/weapons/RL/RLSwitchToDetonate.ogg"
Doom4/Weapon/RocketLauncher/SwitchToLock "sounds/weapons/RL/RLSwitchToLock.ogg"
Doom4/Weapon/RocketLauncher/TargetLocked "sounds/weapons/RL/RLLocked.ogg"
Doom4/Weapon/RocketLauncher/StartLockOn "sounds/weapons/RL/RLLockOnStart.ogg"
$random Doom4/Weapon/RocketLauncher/Fire
{
Doom4/Weapon/RocketLauncher/Fire1
Doom4/Weapon/RocketLauncher/Fire2
Doom4/Weapon/RocketLauncher/Fire3
Doom4/Weapon/RocketLauncher/Fire4
}
$limit Doom4/Weapon/RocketLauncher/Fire 0
$random Doom4/Weapon/RocketLauncher/Explode {Doom4/Weapon/RocketLauncher/Explode1 Doom4/Weapon/RocketLauncher/Explode2 Doom4/Weapon/RocketLauncher/Explode3}
Doom4/Weapon/RocketLauncher/Explode1 "sounds/weapons/RL/Explode1.ogg"
Doom4/Weapon/RocketLauncher/Explode2 "sounds/weapons/RL/Explode2.ogg"
Doom4/Weapon/RocketLauncher/Explode3 "sounds/weapons/RL/Explode3.ogg"
$limit Doom4/Weapon/RocketLauncher/Explode 0
$random Doom4/Weapon/RocketLauncher/ExplodeAdd
{
Doom4/Weapon/RocketLauncher/ExplodeAdd1
Doom4/Weapon/RocketLauncher/ExplodeAdd2
Doom4/Weapon/RocketLauncher/ExplodeAdd3
Doom4/Weapon/RocketLauncher/ExplodeAdd4
}
Doom4/Weapon/RocketLauncher/ExplodeAdd1 "sounds/weapons/RL/ExplodeAdd1.ogg"
Doom4/Weapon/RocketLauncher/ExplodeAdd2 "sounds/weapons/RL/ExplodeAdd2.ogg"
Doom4/Weapon/RocketLauncher/ExplodeAdd3 "sounds/weapons/RL/ExplodeAdd3.ogg"
Doom4/Weapon/RocketLauncher/ExplodeAdd4 "sounds/weapons/RL/ExplodeAdd4.ogg"
$limit Doom4/Weapon/RocketLauncher/ExplodeAdd 0
$alias Doom4/Weapon/GrenadeLauncher/Explode Doom4/Weapon/RocketLauncher/Explode
$alias Doom4/Weapon/RocketLauncher/Q4Explo Doom4/Weapon/RocketLauncher/Explode
$alias Doom4/Weapon/RocketLauncher/HRExplo Doom4/Weapon/RocketLauncher/Explode
Doom4/Weapon/RocketLauncher/Detonate "Sounds/Weapons/RL/Detonate.ogg"
$limit Doom4/Weapon/RocketLauncher/Detonate 0
//==============================================================================
// Grenade Launcher
//==============================================================================
Doom4/Weapon/GrenadeLauncher/Bounce1 "Sounds/Weapons/GL/Bounce1.ogg"
Doom4/Weapon/GrenadeLauncher/Bounce2 "Sounds/Weapons/GL/Bounce2.ogg"
Doom4/Weapon/GrenadeLauncher/Bounce3 "Sounds/Weapons/GL/Bounce3.ogg"
Doom4/Weapon/GrenadeLauncher/Bounce4 "Sounds/Weapons/GL/Bounce4.ogg"
Doom4/Weapon/GrenadeLauncher/Bounce5 "Sounds/Weapons/GL/Bounce5.ogg"
Doom4/Weapon/GrenadeLauncher/Fire1 "Sounds/Weapons/GL/Fire1.ogg"
Doom4/Weapon/GrenadeLauncher/Fire2 "Sounds/Weapons/GL/Fire2.ogg"
Doom4/Weapon/GrenadeLauncher/Fire3 "Sounds/Weapons/GL/Fire3.ogg"
Doom4/Weapon/GrenadeLauncher/Smoke1 "Sounds/Weapons/GL/Smoke1.ogg"
Doom4/Weapon/GrenadeLauncher/Smoke2 "Sounds/Weapons/GL/Smoke2.ogg"
$random Doom4/Weapon/GrenadeLauncher/Bounce
{
Doom4/Weapon/GrenadeLauncher/Bounce1
Doom4/Weapon/GrenadeLauncher/Bounce2
Doom4/Weapon/GrenadeLauncher/Bounce3
Doom4/Weapon/GrenadeLauncher/Bounce4
Doom4/Weapon/GrenadeLauncher/Bounce5
}
$random Doom4/Weapon/GrenadeLauncher/Fire
{
Doom4/Weapon/GrenadeLauncher/Fire1
Doom4/Weapon/GrenadeLauncher/Fire2
Doom4/Weapon/GrenadeLauncher/Fire3
}
$random Doom4/Weapon/GrenadeLauncher/SmokeExplo
{
Doom4/Weapon/GrenadeLauncher/Smoke1
Doom4/Weapon/GrenadeLauncher/Smoke2
}
$limit Doom4/Weapon/GrenadeLauncher/Bounce 0
$limit Doom4/Weapon/GrenadeLauncher/Fire 0
$limit Doom4/Weapon/GrenadeLauncher/SmokeExplo 0
//==============================================================================
// Shotgun
//==============================================================================
Doom4/Weapon/Shotgun/Fire "sounds/weapons/SG/SGFire.ogg"
Doom4/Weapon/Shotgun/GrenadeLaunch "sounds/weapons/SG/SGGrenLaunch.ogg"
Doom4/Weapon/Shotgun/GrenadeAim "sounds/weapons/SG/SGGrenLaunchAim.ogg"
Doom4/Weapon/Shotgun/GrenadeExplo "sounds/weapons/SG/GrenExplo.ogg"
Doom4/Weapon/Shotgun/TripleShotAim "sounds/weapons/SG/SGTripleShotAim.ogg"
Doom4/Weapon/Shotgun/TripleFire "sounds/weapons/SG/SGTripleFire.ogg"
Doom4/Weapon/Shotgun/TripleFireDeeper "sounds/weapons/SG/SGTripleShotEnhanced.ogg"
Doom4/Weapon/Shotgun/SwitchToGrenade "sounds/weapons/SG/SGSwitchToGrenade.ogg"
Doom4/Weapon/Shotgun/SwitchToTripleShot "sounds/weapons/SG/SGSwitchTo3Shot.ogg"
Doom4/Weapon/Shotgun/CancelAim "sounds/weapons/SG/ShotungStopAim.ogg"
//==============================================================================================
// Gauss Cannon
//==============================================================================================
Doom4/Weapon/GaussGun/Charge2Fire "sounds/weapons/GC/GaussCharge2Fire.ogg"
Doom4/Weapon/GaussGun/Charge2Loop "sounds/weapons/GC/GaussCharge2Loop.ogg"
Doom4/Weapon/GaussGun/Charge2Start "sounds/weapons/GC/GaussCharge2Start.ogg"
Doom4/Weapon/GaussGun/Charge1Fire "sounds/weapons/GC/GaussChargeFire.ogg"
Doom4/Weapon/GaussGun/Charge1Loop "sounds/weapons/GC/GaussChargeLoop.ogg"
Doom4/Weapon/GaussGun/Charge1Start "sounds/weapons/GC/GaussChargeStart.ogg"
Doom4/Weapon/GaussGun/Fire "sounds/weapons/GC/GaussFire.ogg"
Doom4/Weapon/GaussGun/SwitchToPrecision "sounds/weapons/GC/GCSwitchToPrecision.ogg"
Doom4/Weapon/GaussGun/SwitchToSiege "sounds/weapons/GC/GCSwitchToSiege.ogg"
Doom4/Weapon/GaussGun/PrecisionDown "sounds/weapons/GC/GaussPrecisionDown.ogg"
Doom4/Weapon/GaussGun/SiegeDown "sounds/weapons/GC/GaussSiegeDown.ogg"
Doom4/Weapon/GaussGun/SiegeDownSimpler "sounds/weapons/GC/GCSiegeDownSimpler.ogg"
//==============================================================================================
// BFG
//==============================================================================================
Doom4/Weapon/BFG/Fire "sounds/weapons/BFG/BFGFire.ogg"
Doom4/Weapon/BFG/Impact "sounds/weapons/BFG/BFGimpact.ogg"
Doom4/Weapon/BFG/AmmoLoop "sounds/weapons/BFG/BFGAmmoLoop.ogg"
Doom4/Weapon/BFG/Flying "sounds/weapons/BFG/BFGFlying.ogg"
Doom4/Weapon/BFG/Raise "sounds/weapons/BFG/BFGRaise.ogg"
Doom4/Weapon/BFG/Idle "sounds/weapons/BFG/BFGIdle.ogg"
Doom4/Weapon/BFG/Pickup "sounds/weapons/BFG/BFGPickup.ogg"
$limit Doom4/Weapon/BFG/Pickup 0
$rolloff Doom4/Weapon/BFG/Impact 1800 2000
//==============================================================================================
// Chaingun
//==============================================================================================
$limit Doom4/Weapon/Chaingun/Fire 0
Doom4/Weapon/Chaingun/Fire "sounds/weapons/CG/ChaingunFire.ogg"
Doom4/Weapon/Chaingun/Loop "sounds/weapons/CG/ChaingunLoop.ogg"
Doom4/Weapon/Chaingun/WindUp "sounds/weapons/CG/ChaingunLoopStart.ogg"
Doom4/Weapon/Chaingun/WindDown "sounds/weapons/CG/ChaingunLoopStop.ogg"
Doom4/Weapon/Chaingun/TurretFire "sounds/weapons/CG/TurretFire.ogg"
Doom4/Weapon/Chaingun/TurretEnd "sounds/weapons/CG/TurretEnd.ogg"
Doom4/Weapon/Chaingun/SwitchToRotator "sounds/weapons/CG/ChaingunSwitchToRotator.ogg"
Doom4/Weapon/Chaingun/SwitchToTurret "sounds/weapons/CG/ChaingunSwitchToTurret.ogg"
Doom4/Weapon/Chaingun/UnreadyTurret "sounds/weapons/CG/ChaingunUnreadyTurret.ogg"
Doom4/Weapon/Chaingun/ReadyTurret "sounds/weapons/CG/ChaingunReadyTurret.ogg"
Doom4/Weapon/Chaingun/TurretLoopBS "sounds/weapons/CG/BarrelSpinLoop.ogg"
// Deprecated - no longer used
Doom4/Weapon/Chaingun/TurretStart "sounds/weapons/CG/TurretStart.ogg"
Doom4/Weapon/Chaingun/TurretLoop "sounds/weapons/CG/TurretLoop.ogg"
//==============================================================================================
// Lightning gun
//==============================================================================================
Doom4/Weapon/LightningGun/LightningGunFire "sounds/weapons/LG/LGFire.ogg"
Doom4/Weapon/LightningGun/LightningGunEnd "sounds/weapons/LG/LGEnd.ogg"
Doom4/Weapon/LightningGun/LG2Loop "sounds/weapons/LG/Lgun_loop.ogg" //from Q4, because fuck this LG sounds...
//==============================================================================================
// Other Weapons
//==============================================================================================
$random Doom4/Weapon/StaticRifle/Fire { Doom4/Weapon/StaticRifle/Fire1 Doom4/Weapon/StaticRifle/Fire2 Doom4/Weapon/StaticRifle/Fire3 Doom4/Weapon/StaticRifle/Fire4 }
Doom4/Weapon/StaticRifle/Fire1 "sounds/weapons/Other/StaticFire1.ogg"
Doom4/Weapon/StaticRifle/Fire2 "sounds/weapons/Other/StaticFire2.ogg"
Doom4/Weapon/StaticRifle/Fire3 "sounds/weapons/Other/StaticFire3.ogg"
Doom4/Weapon/StaticRifle/Fire4 "sounds/weapons/Other/StaticFire4.ogg"
Doom4/Weapon/StaticRifle/FireMax "sounds/weapons/Other/StaticFireMax.ogg"
Doom4/Weapon/StaticRifle/FireMin "sounds/weapons/Other/StaticFireMin.ogg"
Doom4/Weapon/StaticRifle/Hit "sounds/weapons/Other/StaticFireHit.ogg"
Doom4/Weapon/StaticRifle/FireContinuation "sounds/weapons/Other/StaticFirept2.ogg"
Doom4/Weapon/StaticRifle/ChargeLoop "sounds/weapons/Other/StaticLoop.ogg"
Doom4/Weapon/StaticRifle/ChargeLoopShort "sounds/weapons/Other/StaticLoopShort.ogg"
Doom4/Weapon/StaticRifle/ChargeLoopShorter "sounds/weapons/Other/StaticLoopShortER.ogg"
Doom4/Weapon/StaticRifle/ChargeMax "sounds/weapons/Other/StaticMax.ogg"
$random Doom4/Weapon/HellShot/Fire { Doom4/Weapon/HellShot/Fire1 Doom4/Weapon/HellShot/Fire2 }
Doom4/Weapon/HellShot/AltFire "sounds/weapons/Other/HellShotAltFire.ogg"
Doom4/Weapon/HellShot/Fire1 "sounds/weapons/Other/HellShotFire.ogg"
Doom4/Weapon/HellShot/Fire2 "sounds/weapons/Other/HellShotFire2.ogg"
Doom4/Weapon/Repeater/FireSingle "sounds/weapons/Other/RepeaterSingle.ogg"
Doom4/Weapon/Repeater/FireTriple "sounds/weapons/Other/RepeaterTriple.ogg"
$random Doom4/Weapon/Vortex/Fire { Doom4/Weapon/Vortex/Fire1 Doom4/Weapon/Vortex/Fire2 }
Doom4/Weapon/Vortex/Fire1 "sounds/weapons/Other/VortexFire.ogg"
Doom4/Weapon/Vortex/Fire2 "sounds/weapons/Other/VortexFire2.ogg"
Doom4/Weapon/Vortex/Loop "sounds/weapons/Other/VortexLoop.ogg"
Doom4/Weapon/Vortex/ZoomOut "sounds/weapons/Other/VortexOff.ogg"
Doom4/Weapon/Vortex/ZoomIn "sounds/weapons/Other/VortexStart.ogg"
$volume Doom4/Weapon/BulletCasing 0.2
$random Doom4/Weapon/BulletCasing {Doom4/Weapon/BulletCasing1 Doom4/Weapon/BulletCasing2 Doom4/Weapon/BulletCasing3}
Doom4/Weapon/BulletCasing1 "sounds/weapons/Other/BulletCasing1.ogg"
Doom4/Weapon/BulletCasing2 "sounds/weapons/Other/BulletCasing2.ogg"
Doom4/Weapon/BulletCasing3 "sounds/weapons/Other/BulletCasing3.ogg"
$volume Doom4/Weapon/ShellCasing 0.3
$random Doom4/Weapon/ShellCasing {Doom4/Weapon/ShellCasing1 Doom4/Weapon/ShellCasing2 Doom4/Weapon/ShellCasing3}
Doom4/Weapon/ShellCasing1 "sounds/weapons/Other/ShellCasing1.ogg"
Doom4/Weapon/ShellCasing2 "sounds/weapons/Other/ShellCasing2.ogg"
Doom4/Weapon/ShellCasing3 "sounds/weapons/Other/ShellCasing3.ogg"
//==============================================================================================
// Fist/melee
//==============================================================================================
$random Doom4/Weapon/Melee/Punch
{ Doom4/Weapon/Melee/Punch1
Doom4/Weapon/Melee/Punch2
Doom4/Weapon/Melee/Punch3
Doom4/Weapon/Melee/Punch4
Doom4/Weapon/Melee/Punch5
}
Doom4/Weapon/Melee/Punch1 "sounds/weapons/Other/player_kick_body_1.ogg"
Doom4/Weapon/Melee/Punch2 "sounds/weapons/Other/player_kick_body_2.ogg"
Doom4/Weapon/Melee/Punch3 "sounds/weapons/Other/player_kick_body_3.ogg"
Doom4/Weapon/Melee/Punch4 "sounds/weapons/Other/player_kick_body_4.ogg"
Doom4/Weapon/Melee/Punch5 "sounds/weapons/Other/player_kick_body_5.ogg"
$random Doom4/Weapon/Melee/Kick
{ Doom4/Weapon/Melee/Kick1 Doom4/Weapon/Melee/Kick2 Doom4/Weapon/Melee/Kick3 }
Doom4/Weapon/Melee/Kick1 "sounds/weapons/Other/player_kick_body_6.ogg"
Doom4/Weapon/Melee/Kick2 "sounds/weapons/Other/player_kick_body_7.ogg"
Doom4/Weapon/Melee/Kick3 "sounds/weapons/Other/player_kick_body_8.ogg"
//==============================================================================================
// Grenades
//==============================================================================================
Doom4/Weapon/Grenade/FragArm "sounds/weapons/Other/GrenArm.ogg"
Doom4/Weapon/Grenade/FragBounce "sounds/weapons/Other/GrenBounce.ogg"
Doom4/Weapon/Grenade/ThrowGren "sounds/weapons/Other/GrenThrow.ogg"
Doom4/Weapon/Grenade/SpawnHolo "sounds/weapons/Other/HoloSpawn.ogg"
Doom4/Weapon/Grenade/SyphonExplo "sounds/weapons/Other/SyphonExplo.ogg"
Doom4/Weapon/Grenade/GrenadeRegen "sounds/weapons/Other/GrenRegen.ogg"
$random Doom4/Weapon/Grenade/SyphonSuck { Doom4/Weapon/BloodHit1 Doom4/Weapon/BloodHit2 Doom4/Weapon/BloodHit3 }
Doom4/Weapon/BloodHit1 "sounds/weapons/Other/bloodhit1.ogg"
Doom4/Weapon/BloodHit2 "sounds/weapons/Other/bloodhit2.ogg"
Doom4/Weapon/BloodHit3 "sounds/weapons/Other/bloodhit3.ogg"
Doom4/HoloSpawn "Sounds/Weapons/Other/HoloSpawn.ogg"
Doom4/KineticArm "Sounds/Weapons/Other/KineticArm.ogg"
Doom4/KineticBeep "Sounds/Weapons/Other/KineticBeep.ogg"
Doom4/ShieldWallImpact "Sounds/Weapons/Other/ShieldWallImpact.ogg"
Doom4/ShieldWallLoop "Sounds/Weapons/Other/ShieldWallLoop.ogg"
Doom4/ShieldWallOff "Sounds/Weapons/Other/ShieldWallOff.ogg"
Doom4/ShieldWallOn "Sounds/Weapons/Other/ShieldWallOn.ogg"
Doom4/TeslaLoop "Sounds/Weapons/Other/TeslaLoop.ogg"
Doom4/TeslaThrow "Sounds/Weapons/Other/TeslaThrow.ogg"
Doom4/KineticExplo1 "Sounds/Weapons/Other/KineticExplo1.ogg"
Doom4/KineticExplo2 "Sounds/Weapons/Other/KineticExplo2.ogg"
$random Doom4/KineticExplosion { Doom4/KineticExplo1 Doom4/KineticExplo2 }
//==============================================================================================
//==============================================================================================
// For monsters
//==============================================================================================
//==============================================================================================
Doom4/Monsters/PlasmaShot "sounds/Other/plasma_shot01_stereo.ogg"
$limit Doom4/Monsters/PlasmaShot 5
Doom4/Monsters/PlasmaShotBig "sounds/Other/plasma_alt_shot01_stereo.ogg"
Doom4/Monsters/PlasmaShotgun "sounds/Other/plasma_grenade02_stereo.ogg"
//$volume "Doom4/Monsters/PlasmaShotgun" 0.1
Doom4/Monsters/LaserStart "sounds/Other/laser_charge_start.L.ogg"
Doom4/Monsters/LaserLoop "sounds/Other/laser_charge_loop.L.ogg"
Doom4/Monsters/ElectricDischarge "sounds/Other/electric_shot01_stop02_stereo.ogg"
Doom4/Monsters/BaronCrash "sounds/Other/BaronCrash.ogg"
Doom4/Monsters/ArchSummonSFX1 "sounds/Other/ArchTeleport1.ogg"
Doom4/Monsters/ArchSummonSFX2 "sounds/Other/ArchTeleport2.ogg"
$random Doom4/Monsters/QuakeTport { Doom4/Monsters/QuakeTport1 Doom4/Monsters/QuakeTport2 Doom4/Monsters/QuakeTport3 Doom4/Monsters/QuakeTport4 Doom4/Monsters/QuakeTport5 }
Doom4/Monsters/QuakeTport1 "sounds/Other/Telep1.ogg"
Doom4/Monsters/QuakeTport2 "sounds/Other/Telep2.ogg"
Doom4/Monsters/QuakeTport3 "sounds/Other/Telep3.ogg"
Doom4/Monsters/QuakeTport4 "sounds/Other/Telep4.ogg"
Doom4/Monsters/QuakeTport5 "sounds/Other/Telep5.ogg"
Doom4/Monsters/FireWaveShoot "sounds/Other/FireWaveStart.ogg"
Doom4/Monsters/FireWaveCrash "sounds/Other/FireWaveEnd.ogg"
Doom4/Monsters/ArgentWaveFire "sounds/Other/ArgentWave.ogg"
Doom4/Monsters/ArgentCharge "sounds/Other/ArgentCharge.ogg"
Doom4/Monsters/MastermindLaserCharge "sounds/Other/plasma_cumulative_charge_star.ogg"
Doom4/Monsters/MastermindLaserFire "sounds/Other/plasma_cumulative_fire.L.ogg"
Doom4/Monsters/MastermindBeamFire "sounds/Other/Lgun_fire.ogg"
Doom4/Monsters/DemonCharge "sounds/Other/DemonCharge.ogg"
//==============================================================================================
//==============================================================================================
// Pickup sounds
//==============================================================================================
//==============================================================================================
Doom4/Pickups/HealthLarge "sounds/Pickups/HealthLarge.ogg"
Doom4/Pickups/Health "sounds/Pickups/HealthMed.ogg"
Doom4/Pickups/HealthBonus "sounds/Pickups/HealthSmall.ogg"
Doom4/Pickups/MegaHealth "sounds/Pickups/Mega.ogg"
Doom4/Pickups/AmmoSmall "sounds/Pickups/Ammo.ogg"
Doom4/Pickups/AmmoBig "sounds/Pickups/AmmoBigger.ogg"
Doom4/Pickups/ArmorShard "sounds/Pickups/ArmorShard.ogg"
Doom4/Pickups/Armor "sounds/Pickups/Armor.ogg"
Doom4/Pickups/ArmorMed "Sounds/Pickups/ArmorMed.ogg"
Doom4/Pickups/BFGAmmo "Sounds/Pickups/BFGAmmo.ogg"
Doom4/Pickups/KeySkull "Sounds/Pickups/KeySkull.ogg"
Doom4/Pickups/KeyCard "Sounds/Pickups/KeyCard.ogg"
$volume Doom4/Pickups/AmmoSmall 0.6
$volume Doom4/Pickups/AmmoBig 0.6
//==============================================================================================
//==============================================================================================
// Player sounds
//==============================================================================================
//==============================================================================================
Doom4/Player/LowHealth "sounds/Player/LowHealth.ogg"
Doom4/Player/Nope "sounds/Player/Beep.ogg"
Doom4/Player/Climb "sounds/Player/Climbing.ogg"
$random Doom4/Player/DoubleJump {Doom4/Player/DJump1 Doom4/Player/DJump2}
$random Doom4/Player/Land {Doom4/Player/Land1 Doom4/Player/Land2 Doom4/Player/Land3 }
Doom4/Player/DJump1 "sounds/Player/DoubleJump1.ogg"
Doom4/Player/DJump2 "sounds/Player/DoubleJump2.ogg"
Doom4/Player/Land1 "sounds/Player/Land1.ogg"
Doom4/Player/Land2 "sounds/Player/Land2.ogg"
Doom4/Player/Land3 "sounds/Player/Land3.ogg"
//====================================================================================
//====================================================================================
//
// Misc sounds
//
//====================================================================================
//====================================================================================
//still working on this stuff.
$playeralias player male *land "Doom4/Player/Land"
$playeralias player male *xdeath "Doom4/Other/GibExplode"
$playeralias player male *gibbed "Doom4/Other/GibExplode"
$playeralias player female *land "Doom4/Player/Land"
$playeralias player female *xdeath "Doom4/Other/GibExplode"
$playeralias player female *gibbed "Doom4/Other/GibExplode"
$playeralias player other *land "Doom4/Player/Land"
$playeralias player other *xdeath "Doom4/Other/GibExplode"
$playeralias player other *gibbed "Doom4/Other/GibExplode"
//$playersound player male *death Q4PLDIE //replaced
//$playersound player male *xdeath Q4PLDIEX //replaced
$playersound player male *gibbed Nothing
$playersound player male *pain100 Nothing
$playersound player male *pain75 Nothing
$playersound player male *pain50 Nothing
$playersound player male *pain25 Nothing
$playersound player male *grunt Nothing
//$playersound player male *land PL_LAND //replaced
$playersound player male *jump "sounds/Player/Jump.ogg"
$playersound player male *usefail "sounds/Player/Beep.ogg"
//$playersound player female *death Q4PLDIE //replaced
//$playersound player female *xdeath Q4PLDIEX //replaced
$playersound player female *gibbed Nothing
$playersound player female *pain100 Nothing
$playersound player female *pain75 Nothing
$playersound player female *pain50 Nothing
$playersound player female *pain25 Nothing
$playersound player female *grunt Nothing
//$playersound player female *land PL_LAND //replaced
$playersound player female *jump "sounds/Player/Jump.ogg"
$playersound player female *usefail "sounds/Player/Beep.ogg"
//$playersound player other *death Q4PLDIE //replaced
//$playersound player other *xdeath Q4PLDIEX //replaced
$playersound player other *gibbed Nothing
$playersound player other *pain100 Nothing
$playersound player other *pain75 Nothing
$playersound player other *pain50 Nothing
$playersound player other *pain25 Nothing
$playersound player other *grunt Nothing
//$playersound player other *land PL_LAND //replaced
$playersound player other *jump "sounds/Player/Jump.ogg"
$playersound player other *usefail "sounds/Player/Beep.ogg"
//==============================================================================================
//==============================================================================================
// MiscSounds
//==============================================================================================
//==============================================================================================
Doom4/Other/DollExplode "Sounds/Weapons/DollExplode.ogg"
Doom4/Other/GlimpseIntoTheFuture "sounds/Weapons/DoomDoll.ogg"
Doom4/Weapons/WeaponSwitch "sounds/Weapons/SwitchWeapon.ogg"
Doom4/Other/WeaponPickup "sounds/Other/weapon.ogg"
Doom4/Other/FireballHit1 "sounds/Other/3IMPFHT1.ogg"
Doom4/Other/FireballHit2 "sounds/Other/3IMPFHT3.ogg"
Doom4/Other/FlamerLoop "sounds/Other/FlmrLoop.ogg"
Doom4/Other/FlamerStart "sounds/Other/FlmrStart.ogg"
/*Doom4/Other/ "sounds/Other/"
Doom4/Other/ "sounds/Other/"*/
Doom4/Other/BarrelBreak1 "sounds/Other/BarrelBreak1.wav"
Doom4/Other/BarrelBreak2 "sounds/Other/BarrelBreak2.wav"
Doom4/Other/OtherRocketExplo "sounds/Other/grenade_launcher-explosion3.ogg"
$random Doom4/Other/BarrelBreak { Doom4/Other/BarrelBreak1 Doom4/Other/BarrelBreak2 }
$random Doom4/Other/MeleeSwing { Doom4/Other/MeleeSwing1 Doom4/Other/MeleeSwing2 }
$random Doom4/Other/GibExplode { Doom4/Other/GibExplode1 Doom4/Other/GibExplode2 Doom4/Other/GibExplode3 }
$random Doom4/Other/BulletHitMetal { Doom4/Other/BullMetal1 Doom4/Other/BullMetal2 Doom4/Other/BullMetal3 Doom4/Other/BullMetal4 Doom4/Other/BullMetal5 }
$random Doom4/Other/BulletHitConcrete { Doom4/Other/BullConcrete1 Doom4/Other/BullConcrete2 Doom4/Other/BullConcrete3 Doom4/Other/BullConcrete4 }
$random Doom4/Other/BulletHitFlesh { Doom4/Other/BullFlesh1 Doom4/Other/BullFlesh2 Doom4/Other/BullFlesh3 }
$random Doom4/Other/BulletWhoosh { Doom4/Other/BulletWhoosh1 Doom4/Other/BulletWhoosh2 Doom4/Other/BulletWhoosh3 Doom4/Other/BulletWhoosh4 }
$random Doom4/Other/MeleeHit { Doom4/Other/MeleeHit1 Doom4/Other/MeleeHit2 Doom4/Other/MeleeHit3 }
Doom4/Other/MeleeSwing1 "sounds/Other/whoosh1.ogg"
Doom4/Other/MeleeSwing2 "sounds/Other/whoosh2.ogg"
Doom4/Other/GibExplode1 "sounds/Other/Gib_explode1.ogg"
Doom4/Other/GibExplode2 "sounds/Other/Gib_explode2.ogg"
Doom4/Other/GibExplode3 "sounds/Other/Gib_explode3.ogg"
Doom4/Other/BullMetal1 "sounds/Other/blt_s_metal1.ogg"
Doom4/Other/BullMetal2 "sounds/Other/blt_s_metal2.ogg"
Doom4/Other/BullMetal3 "sounds/Other/blt_s_metal3.ogg"
Doom4/Other/BullMetal4 "sounds/Other/blt_s_metal4.ogg"
Doom4/Other/BullMetal5 "sounds/Other/blt_s_metal5.ogg"
Doom4/Other/BullConcrete1 "sounds/Other/blt_concrete1.ogg"
Doom4/Other/BullConcrete2 "sounds/Other/blt_concrete2.ogg"
Doom4/Other/BullConcrete3 "sounds/Other/blt_concrete3.ogg"
Doom4/Other/BullConcrete4 "sounds/Other/blt_concrete4.ogg"
Doom4/Other/BullFlesh1 "sounds/Other/blt_flesh1.ogg"
Doom4/Other/BullFlesh2 "sounds/Other/blt_flesh2.ogg"
Doom4/Other/BullFlesh3 "sounds/Other/blt_flesh3.ogg"
Doom4/Other/BulletWhoosh1 "sounds/Other/DSWHIZ1"
Doom4/Other/BulletWhoosh2 "sounds/Other/DSWHIZ2"
Doom4/Other/BulletWhoosh3 "sounds/Other/DSWHIZ3"
Doom4/Other/BulletWhoosh4 "sounds/Other/DSWHIZ4"
Doom4/Other/MeleeHit1 "sounds/Other/MeleeHit1.ogg"
Doom4/Other/MeleeHit2 "sounds/Other/MeleeHit1.ogg"
Doom4/Other/MeleeHit3 "sounds/Other/MeleeHit1.ogg"
Doom4/Other/Teleport "sounds/Other/Teleport.ogg"
Doom4/Other/Crate1 "sounds/Other/Crate1.ogg"
Doom4/Other/Crate2 "sounds/Other/Crate2.ogg"
Doom4/Other/OpenHoloMenu "sounds/Other/OpenHoloMenu.ogg"
$limit Doom4/Other/OpenHoloMenu 1
Completionist "Sounds/Other/Completionist.ogg"
Slowdown "Sounds/Other/slowdown.ogg" //Thanks Xaser! =D
Doom4/Other/ZombieChargeAtt "sounds/Other/ZombieCharge.ogg"
//==============================================================================================
//==============================================================================================
// MiscSounds
//==============================================================================================
//==============================================================================================
Doom4/Other/VoiceDemonsEliminated "sounds/other/DemonicEliminated.ogg"
Doom4/Other/VoiceDemonsCritical "sounds/other/DemonicCritical.ogg"
$random Doom4/Other/D4MusicCue
{
Doom4/Other/MusCue1
Doom4/Other/MusCue2
Doom4/Other/MusCue3
Doom4/Other/MusCue4
Doom4/Other/MusCue5
Doom4/Other/MusCue6
Doom4/Other/MusCue7
Doom4/Other/MusCue8
Doom4/Other/MusCue9
Doom4/Other/MusCue10
Doom4/Other/MusCue11
Doom4/Other/MusCue12
Doom4/Other/MusCue13
Doom4/Other/MusCue14
Doom4/Other/MusCue15
Doom4/Other/MusCue16
Doom4/Other/MusCue17
Doom4/Other/MusCue18
Doom4/Other/MusCue19
Doom4/Other/MusCue20
Doom4/Other/MusCue21
Doom4/Other/MusCue22
Doom4/Other/MusCue23
Doom4/Other/MusCue24
Doom4/Other/MusCue25
}
Doom4/Other/MusCue1 "sounds/Player/MusicCue/MusCue1.ogg"
Doom4/Other/MusCue2 "sounds/Player/MusicCue/MusCue2.ogg"
Doom4/Other/MusCue3 "sounds/Player/MusicCue/MusCue3.ogg"
Doom4/Other/MusCue4 "sounds/Player/MusicCue/MusCue4.ogg"
Doom4/Other/MusCue5 "sounds/Player/MusicCue/MusCue5.ogg"
Doom4/Other/MusCue6 "sounds/Player/MusicCue/MusCue6.ogg"
Doom4/Other/MusCue7 "sounds/Player/MusicCue/MusCue7.ogg"
Doom4/Other/MusCue8 "sounds/Player/MusicCue/MusCue8.ogg"
Doom4/Other/MusCue9 "sounds/Player/MusicCue/MusCue9.ogg"
Doom4/Other/MusCue10 "sounds/Player/MusicCue/MusCue10.ogg"
Doom4/Other/MusCue11 "sounds/Player/MusicCue/MusCue11.ogg"
Doom4/Other/MusCue12 "sounds/Player/MusicCue/MusCue12.ogg"
Doom4/Other/MusCue13 "sounds/Player/MusicCue/MusCue13.ogg"
Doom4/Other/MusCue14 "sounds/Player/MusicCue/MusCue14.ogg"
Doom4/Other/MusCue15 "sounds/Player/MusicCue/MusCue15.ogg"
Doom4/Other/MusCue16 "sounds/Player/MusicCue/MusCue16.ogg"
Doom4/Other/MusCue17 "sounds/Player/MusicCue/MusCue17.ogg"
Doom4/Other/MusCue18 "sounds/Player/MusicCue/MusCue18.ogg"
Doom4/Other/MusCue19 "sounds/Player/MusicCue/MusCue19.ogg"
Doom4/Other/MusCue20 "sounds/Player/MusicCue/MusCue20.ogg"
Doom4/Other/MusCue21 "sounds/Player/MusicCue/MusCue21.ogg"
Doom4/Other/MusCue22 "sounds/Player/MusicCue/MusCue22.ogg"
Doom4/Other/MusCue23 "sounds/Player/MusicCue/MusCue23.ogg"
Doom4/Other/MusCue24 "sounds/Player/MusicCue/MusCue24.ogg"
Doom4/Other/MusCue25 "sounds/Player/MusicCue/MusCue25.ogg"
//==============================================================================================
//==============================================================================================
// The zombie killer's footsteps
//==============================================================================================
//==============================================================================================
// Define the actual sounds here
// Default / Ground
step/default1 DSSTP1
step/default2 DSSTP2
step/default3 DSSTP3
step/default4 DSSTP4
$random step/default { step/default1 step/default2 step/default3 step/default4 }
// Water
step/water1 DSWTR1
step/water2 DSWTR2
step/water3 DSWTR3
step/water4 DSWTR4
$random step/water { step/water1 step/water2 step/water3 step/water4 }
// Carpet
step/carpet1 DSCARP1
step/carpet2 DSCARP2
step/carpet3 DSCARP3
$random step/carpet { step/carpet1 step/carpet2 step/carpet3 }
// Dirt
step/dirt1 DSDIRT1
step/dirt2 DSDIRT2
step/dirt3 DSDIRT3
step/dirt4 DSDIRT4
step/dirt5 DSDIRT5
step/dirt6 DSDIRT6
$random step/dirt { step/dirt1 step/dirt2 step/dirt3 step/dirt4 step/dirt5 step/dirt6 }
// Gravel
step/gravel1 DSGRAV1
step/gravel2 DSGRAV2
step/gravel3 DSGRAV3
step/gravel4 DSGRAV4
$random step/gravel { step/gravel1 step/gravel2 step/gravel3 step/gravel4 }
// Hard
step/hard1 DSHARD1
step/hard2 DSHARD2
step/hard3 DSHARD3
step/hard4 DSHARD4
step/hard5 DSHARD5
step/hard6 DSHARD6
$random step/hard { step/hard1 step/hard2 step/hard3 step/hard4 step/hard5 step/hard6 }
// Metal A
step/metal/a1 DSMET01
step/metal/a2 DSMET02
step/metal/a3 DSMET03
step/metal/a4 DSMET04
step/metal/a5 DSMET05
step/metal/a6 DSMET06
$random step/metal/a { step/metal/a1 step/metal/a2 step/metal/a3 step/metal/a4 step/metal/a5 step/metal/a6 }
// Metal B (Thin Metals, Girders)
step/metal/b1 DSMET201
step/metal/b2 DSMET202
step/metal/b3 DSMET203
step/metal/b4 DSMET204
$random step/metal/b { step/metal/b1 step/metal/b2 step/metal/b3 step/metal/b4 }
// Rock
step/rock1 DSROCK1
step/rock2 DSROCK2
step/rock3 DSROCK3
step/rock4 DSROCK4
step/rock5 DSROCK5
step/rock6 DSROCK6
step/rock7 DSROCK7
step/rock8 DSROCK8
$random step/rock { step/rock1 step/rock2 step/rock3 step/rock4 step/rock5 step/rock6 step/rock7 step/rock8 }
// Snow
step/snow1 DSSNOW1
step/snow2 DSSNOW2
step/snow3 DSSNOW3
step/snow4 DSSNOW4
step/snow5 DSSNOW5