forked from DeathFishAtEase/YRModdingBase
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsoundmd.ini
More file actions
5732 lines (4728 loc) · 91.5 KB
/
soundmd.ini
File metadata and controls
5732 lines (4728 loc) · 91.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
; SOUND.INI
; All sounds in the game are specified here. The sound must
; first be specified in the sound list section. Then the appropriate
; sound data should be specified for those sounds that differ from
; the default ratings.
;[NameOfSoundEvent]
;Control = ; <loop predelay random attach decay all ambient>
;Sounds= ; <list of sounds>
;Volume= ; <0..100>
;Delay= ; minDelay maxDelay (milliseconds)
;Priority= ; <LOW NORMAL HIGH CRITICAL>
;Type= ; < GLOBAL NORMAL SCREEN LOCAL PLAYER>
;FShift= ; minFDelta maxFDelta (in percent delta from normal pitch)
;Limit= ; max number of events at one time
;Range= ; number of cells
;Loop= ; stop looping after this many iterations - loop control must be set
;MinVolume= ; minimum volume for GLOBAL Type event (ignored for all other types)
; the defaults for all events
[Defaults]
MinVolume=50
Range=10
Volume=80
Limit=5
Type= NORMAL SCREEN UNSHROUD
Priority=NORMAL
; All sounds in the game are listed here (by name).
[SoundList]
1=ChronoLegionAttack
2=ChronoLegionAttackCommand
3=ChronoLegionMove
4=ChronoLegionSelect
5=ChronoLegionFear
6=ChronoLegionDie
7=CivAttack
8=CivAllAttackCommand
9=CivAllMove
10=CivAllSelect
11=CivAllFear
12=CivAllDie
13=;CivAllFemaleDie
14=CivSovAttackCommand
15=CivSovMove
16=CivSovSelect
17=CivSovFear
18=CivSovDie
19=;CivSovFemaleDie
20=ConscriptAttack
21=ConscriptAttackCommand
22=ConscriptMove
23=ConscriptSelect
24=ConscriptFear
25=ConscriptDie
26=CrazyIvanAttack
27=CrazyIvanAttackCommand
28=CrazyIvanMove
29=CrazyIvanSelect
30=CrazyIvanDeploy
31=CrazyIvanFear
32=CrazyIvanDie
33=DesolatorAttack
34=DesolatorAttackCommand
35=DesolatorMove
36=DesolatorSelect
37=DesolatorDeploy
38= ;DesolatorFear
39=DesolatorDie
40=DogAttack
41=DogAttackCommand
42=DogMove
43=DogSelect
44=DogFear
45=DogDie
46=EngAllAttackCommand ;telling him to move into a building
47=EngAllMove
48=EngAllSelect
49=EngAllFear
50=EngAllDie
51=EngSovAttackCommand ;telling him to move into a building
52=EngSovMove
53=EngSovSelect
54=EngSovFear
55=EngSovDie
56=FlakTroopAttackGround
57=FlakTroopAttackAir
58=FlakTroopAttackCommand
59=FlakTroopMove
60=FlakTroopSelect
61=FlakTroopFear
62=FlakTroopDie
63=GIAttack
64=GIAttackDeployed
65=GIAttackCommand
66=GIMove
67=GISelect
68=GIDeploy
69=GIFear
70=GIDie
71=RocketeerAttack
72=RocketeerAttackCommand
73=RocketeerMove
74=RocketeerSelect
75=RocketeerFear
76=RocketeerDie
77=SealAttack
78=SealAttackCommand
79=SealMove
80=SealSelect
81=SealPlaceBomb
82= ;SealFear
83=SealDie
84=SniperAttack
85=SniperAttackCommand
86=SniperMove
87=SniperSelect
88=SniperFear
89=SniperDie
90=SpyAttack ;Spy changes disguise
91=SpyAttackCommand ;telling him to move into a building
92=SpyMove
93=SpySelect
94=SpyFear
95=SpyDie
96=TanyaAttack
97=TanyaAttackCommand
98=TanyaMove
99=TanyaSelect
100= ;TanyaFear
101=TanyaDie
102=TerroristAttack ;terrorist changes disguise
103=TerroristAttackCommand
104=TerroristMove
105=TerroristSelect
106=TerroristFear
107=TerroristDie
108=TeslaTroopAttack
110=TeslaTroopAttackCommand
111=TeslaTroopMove
112=TeslaTroopSelect
113=TeslaTroopRechargeCoil
114=TeslaTroopFear
115=TeslaTroopDie
116=YuriMindControl ;enemy unit is converted
117=YuriAttackCommand
118=YuriMove
119=YuriSelect
120=YuriDeploy
121= ;YuriFear
122=YuriDie
123=;InfantrySovFeedback
124=;InfantryAllFeedback
125= ;InfantryDie
126=InfantrySquish
127=;InfantrySquish2
128=InfantryMelt
129=InfantryZap
130=InfantryPsyCrush
131=AegisAttack
132=ApocalypseAttackGround
133=ApocalypseAttackAir
134=ApocalypseMove
135=ArmoredTransportAttack
136=BlackOpsAttack
137=BlackOpsAttackCommand
138=BlackOpsMove
139=BlackOpsSelect
140= ;BlackOpsTakeOff
141= ;BlackOpsLanding
142=BlackOpsDie
143=BlackEagleAttack
144=BlackEagleAttackCommand
145=BlackEagleMove
146=BlackEagleSelect
147= ;BlackEagleTakeOff
148= ;BlackEagleLanding
149=BlackEagleDie
150=ChronoMinerTeleport
151=DestroyerAttack
152=DemoTruckAttackCommand
153=DemoTruckMove
154=DemoTruckSelect
155=DemoTruckDie
156=DolphinAttack
157=DolphinAttackCommand
158=DolphinMove
159=DolphinSelect
160=DolphinFear
161=DolphinDie
162=DreadnoughtAttack
163=FlakTrackAttackGround
164=FlakTrackAttackAir
165=GrizzlyTankAttack
166=HornetAttack
167=HornetTakeoff
168=HornetLanding
169=HornetDie
170=HornetCollision
171=IFVAttackGround
172=IFVAttackAir
173=IFVCowshot
174=IFVRepair
175=IntruderAttack
176=IntruderAttackCommand
177=IntruderMove
178=IntruderSelect
179=IntruderTakeOff
180=IntruderLanding
181=IntruderDie
182=KirovAttack
183=KirovAttackCommand
184=KirovMove
185=KirovSelect
186=KirovDie
187=LightTankAttack
188= ;MCVDeploy
189=MirageTankAttack
190=MirageTankDisguise
191=OspreyAttack
192=OspreyTakeOff
193=OspreyLanding
194=OspreyCollision
195=OspreyDie
196=PrismTankAttack
197= ;PrismTankAttackFrag
198=RhinoTankAttack
199=SeawolfAttack
200=SquidAttack
201=SquidAttackNonShip
202=SquidAttackCommand
203=SquidMove
204=SquidSelect
205=SquidFear
206=SquidDie
207=SubAttack
208=SubMoveStart
209=SubFear
210=TankDestroyerAttack
211=TeslaTankAttack
212=TerrorDroneAttack
213=TerrorDroneAttackCommand
214=TerrorDroneMove
215=TerrorDroneSelect
216=TerrorDroneDie
217=V3Attack
218=WarMinerAttack
219=GenVehicleDie
220= ;GenSmallVehicleMove
221= ;GenCivVehicleMove
222= ;GenLargeWaterMove
223=GenSmallWaterMove
224=GenLargeWaterDie
225=GenSmallWaterDie
226=GenAllVehicleAttackCommand
227=GenAllVehicleMove
228=GenAllVehicleSelect
229=GenAllWaterAttackCommand
230=GenAllWaterMove
231=GenAllWaterSelect
232=GenSovVehicleAttackCommand
233=GenSovVehicleMove
234=GenSovVehicleSelect
235=GenSovWaterAttackCommand
236=GenSovWaterMove
237=GenSovWaterSelect
238=NavalUnitEmerge
239=ChronosphereMove
240=IronCurtainBlast
241=IronCurtainDeflect
242=IronCurtainOff
243=NukeIntro
244=NukeExplosion
245=NukeSiren
246=WeatherIntro
247=WeatherStrike
248=SpySpecialAttack
249=
250=
251=ParachuteDrop
252=AlliedOccupiedAttack
253=SovietOccupiedAttack
254=FlakCannonAttack
255=GrandCannonAttack
256=PatriotAttack
257=PillboxAttack
258=PrismTowerAttack
259= ;PrismTowerSupport
260=SentryGunAttack
261=TeslaCoilAttack
262=TeslaCoilSuper
263=AlligatorAttack
264=AlligatorAttackCommand
265=AlligatorMove
266=AlligatorSelect
267= ;AlligatorFear
268=AlligatorDie
269=CowMove
270=CowSelect
271=CowFear
272=CowDie
273=DefuseKit
274=Dummy
275=Explosion01 ;0 animations
276=;Explosion02 ;0 animations
277=;Explosion03 ;0 animations
278=;Explosion04 ;0 animations
279=Explosion05 ;2 animations
280=Explosion06 ;1 animation
281=Explosion07 ;1 animation
282=;Explosion08 ;0 animations
283=Explosion09 ;2 animations
284=Explosion10 ;4 animations
285=Explosion11 ;2 animations
286=Explosion12 ;6 animations
287=Explosion13 ;3 animations
288=Explosion14 ;5 animations
289=Explosion15 ;5 animations
290=BuildingDamaged
291=ExplosionShard
292=ExplosionWaterLarge
293=HealCrate
294=CommandBar
295=CreditUp
296=CreditDown
297=GameClosed
298=GenericBeep
299=MenuClick
300=MessageText
301=NewGame
302=OptionsChanged
303=PlaceBuilding
304=PlayerJoined
305= ;PlayerLeft
306=RadarOn
307=RadarOff
308=MenuScold
309=SellBuilding
310=TeslaCoilPowerUp
311=EngAllPowerDown
312=EngSovPowerDown
313=GrandCannonRotate
314=KirovMoveLoop
315=BlackOpsMoveLoop
316=ExplosionWaterMed
317=ExplosionWaterSmall
318= PropagandaTruck
319=_Amb_UrbanMurmur1
320=_Amb_OceanHeavy
321=_Amb_UrbanMurmur2
322=_Amb_BirdsHarbor
323=_Amb_Traffic
324=_Amb_WindCold
325=_Amb_OceanLight
326=_Amb_WindPlains
327=_Amb_BirdsPark
328=_Amb_BirdsTemperate1
329=_Amb_BirdsTemperate2
330=_Amb_BirdsJungle1
331=_Amb_CricketChirps
332=_Amb_CricketBed
333=_Amb_River
334=_Amb_BirdsJungle2
335=_Amb_BirdsNightOwl
336=_Amb_BirdsBeach
337=_Amb_WavesLake
338=_Amb_BirdsMorning
340=OilDerrickLoop
341=OreRefineryProcessing
342=SpyUplinkOn
343=SpyUplinkOff
344=PsychicSensorDetects
345=CloningVatsCreate
346=IFVTransform
347=OreTruckHarvest
348=RocketeerMoveLoop
349=ApocalypseMoveStart
350=RhinoTankMoveStart
351=V3MoveStart
352=GrizzlyTankMoveStart
353=DestroyerMoveStart
354=IFVMoveStart
355=SpyCreated
356=TanyaCreated
357=KirovCreated
358=TanyaEntersWater
359=TanyaLeavesWater
360=WaterfallLoop
361=PDPlaneMoveLoop
362=PDPlaneDie
363=FlakTrackMoveStart
364=MCVMoveStart
365=PrismTankMoveStart
366=CowAmbient
367=GIUndeploy
368=TerrorDroneMoveLoop
369=MirageTankMoveStart
370=TankDestroyerMoveStart
371=SeawolfMoveStart
372=LandingCraftMoveStart
373=DemoTruckMoveStart
374=IntruderMoveLoop
375=BlackEagleMoveLoop
376=PoliceSirenLoop
377=CampfireLoop
378=FountainLoop
379=EnterTransport
380=ExitTransport
381=OreMineExtract
382=PowerOn
383=PowerOff
384=WarningAlarm
385=Flare
386=UpgradeVeteran
387=UpgradeElite
388=WallCrushSandbag
389=WallCrushBlack
390=WallCrushWhite
400=WallCrushKremlin
401=PrismTowerPowerUp
402=BaseUnderAttackSiren
403=KirovVoiceDie
404=ACCMoveStart
405=DreadnoughtMoveStart
406=AegisMoveStart
407=TeslaTankMoveStart
408=Cheer
409=CivTexanAttack
410=CivTexanAttackCommand
411=CivTexanMove
412=CivTexanSelect
413=CivTexanDie
414=CivTexanFear
415=CivAllFemSelect
416=CivAllFemMove
417=CivAllFemDie
418=CivAllFemAttackCommand
419=CivAllFemFear
420=CivSovFemMove
421=CivSovFemDie
422=CivSovFemFear
423=CivSovFemSelect
424=CivSovFemAttackCommand
425=ChimpAttack
426=ChimpAttackCommand
427=ChimpMove
428=ChimpSelect
429=ChimpFear
430=ChimpDie
431=BearAttack
432=BearAttackCommand
433=BearMove
434=BearSelect
435=BearFear
436=BearDie
437=ChimpAmbient
438=MenuTab
439=MenuBuild
440=MenuACBOpen
441=MenuACBClose
442=Bonus
443=SealSpecialAttack
445=ChronoMinerMove
446=TextBleep
447=CameraSwitch
448=LandingCraftSelect
449=LandingCraftMove
450=AirRaidSiren
451=CruiseShipAmbience
452=GenCarSelect
453=TeslaTroopEliteAttack
454=HuskySelect
455=KirovEliteBomb
456=PsychicAmplifierLoop
457=MonumentCrumble
458=ExplosionCrazyIvan
459=ExplosionBarrel
460=ParisTowerAttack
461=PoliceCarDie
462=MenuSlideIn
463=BuildingMetalDamaged
464=BuildingGenericDie
465=PowerPlantDie
466=BlackOpsVoiceDie
467=IntruderVoiceDie
468=KirovVoiceDie
479=BlackEagleVoiceDie
480=WeatherControlReadyLoop
481=ExplosionApocalypse
482=SSSelect
483=SSAttackCommand
484=SSMove
485=SSDie
486=ChronoLegionTeleport
487=ChronoLegionKill
488=ChronosphereSelect
489=PsychicAmplifierDie
490=MenuSlideOut
491=IronCurtainReadyLoop
492=BuildingGarrisoned
493=NuclearSiloReady
494=ChronosphereReadyLoop
495=MovieOn
496=MovieOff
497=BeaconPlaced
498=BuildingRepaired
499=ChronosphereOpen
500= ;MenuArrive
501=GenAircraftCrash
502=KirovCrash
503=RocketeerCrash
504=NukeLaunch
505=BuildingFireBig
506=BuildingFireMed
507=PlanningModeAdd
508=PlanningModeStart
509=PlanningModeEnd
510=CrazyIvanBombTick
511=IronCurtainReady
512=WeatherControlReady
513=CrateMoney
514=CrateArmor
515=CrateFirePower
516=CrateSpeed
517=CrateReveal
518=CrateFreeUnit
519=CivFatDie
520=CivThinDie
521=CratePromoted
523=TugBoatAmbience
524=ScoreEmblemSoundLoop
525=DemoTruckCreated
526=TechOutpostAttack
527=ChronoCommandoCreated
528=ChronoCommandoSelect
529=ChronoCommandoMove
530=ChronoCommandoSpecialAttack
531=ChronoCommandoAttackCommand
532=AlliedCampaignSelect
533=SovietCampaignSelect
534=BootCampSelect
;============= Mission Disk sounds ============
535=GuardianGiDeployedAttack
536=TrexRoar
537=TrexFoot
538=TrexSelect
539=TrexMove
540=TrexDie
541=TrexFall
542=TrexAttack
543=_Amb_CricketDesert
544=LasherTankAttack
545=BrontoSelect
546=BrontoMove
547=BrontoMoveStart
548=BrontoAmbient
549=BrontoDie
550=GuardianGIDeployVoice
551=InitiateAttack
552=VirusAttack
553=ChaosDroneSelect
554=ChaosDroneAttackCommand
555=ChaosDroneMove
556=MigMoveLoop
557=RobotTankSelect
558=RobotTankMove
559=RobotTankMoveStart
560=RobotTankAttackCommand
561=RobotTankDie
562=RobotTankPowerDown
563=VirusVictimSwell
564=SlaveAttack
565=VirusVictimExplode
566=ChaosDroneDie
567=AegisSelect
568=AegisMove
569=AegisAttackCommand
570=AircraftCarrierSelect
571=AircraftCarrierMove
572=AircraftCarrierAttackCommand
573=ApocalypseSelect
575=ApocalypseAttackCommand
576=ArnoldSelect
577=ArnoldMove
578=ArnoldAttackCommand
579=ArnoldFear
580=ArnoldPsyResist
581=ArnoldDie
582=BattleFortressSelect
583=BattleFortressMove
584=BattleFortressAttackCommand
585=BoomerSelect
586=BoomerMove
587=BoomerAttackLandCommand
588=BoomerAttackWaterCommand
589=BorisSelect
590=BorisMove
591=BorisAttackCommand
592=BorisAirstrikeVoice
593=BorisFear
594=BorisCreated
595=BorisDie
596=BruteSelect
597=BruteMove
598=BruteAttackCommand
599=BruteFear
600=BruteCrushing
601=BruteDie
602=ChronoMinerSelect
604=ChronoMinerHarvest
605=ChronoMinerReturn
606=ClintSelect
607=ClintMove
608=ClintAttackCommand
609=ClintFear
610=ClintPsyResist
611=ClintDie
612=EinsteinSelect
613=EinsteinMove
614=EinsteinAttackCommand
615=EinsteinFear
616=EinsteinDie
617=EngYuriSelect
618=EngYuriMove
619=EngYuriCapture
620=EngYuriFear
621=EngYuriDie
622=FlakTrackSelect
623=FlakTrackMove
624=FlakTrackAttackCommand
625=FloatingDiscSelect
626=FloatingDiscMove
627=FloatingDiscAttackCommand
628=FloatingDiscSteal
629=GattlingTankSelect
630=GattlingTankMove
631=GattlingTankAttackCommand
632=GuardianGISelect
633=GuardianGIMove
634=GuardianGIAttackCommand
635=GuardianGIDeploy
636=GuardianGIFear
637=GuardianGIDie
638=HoverAlliedSelect
639=HoverAlliedMove
640=HoverSovietSelect
641=HoverSovietMove
642=HoverYuriSelect
643=HoverYuriMove
644=IFVSelect
645=IFVMove
646=IFVAttackCommand
647=InitiateSelect
648=InitiateMove
649=InitiateAttackCommand
650=InitiateFear
651=InitiateDie
652=LaserCosmoSelect
653=LaserCosmoMove
654=LaserCosmoAttackCommand
655=LaserCosmoFear
656=LaserCosmoDie
657=LasherTankSelect
658=LasherTankMove
659=LasherTankAttackCommand
660=MagnetronSelect
661=MagnetronMove
662=MagnetronAttackCommand
663=MasterMindSelect
664=MasterMindMove
665=MasterMindAttackCommand
666=MasterMindOverloadVoice
667=MCVAlliedSelect
668=MCVAlliedMove
669=MCVSovietSelect
670=MCVSovietMove
671=MCVYuriSelect
672=MCVYuriMove
673=MIGMove
674=MIGAttackVoice
675=MIGVoiceDie
676=MirageTankSelect
677=MirageTankMove
678=MirageTankAttackCommand
679=PrismTankSelect
680=PrismTankMove
681=PrismTankAttackCommand
682=RomanovSelect
683=RomanovMove
684=RomanovAttackCommand
685=RomanovFear
686=RomanovDie
687=SeaScorpionSelect
688=SeaScorpionMove
689=SeaScorpionAttackCommand
690=SeigeChopperSelect
691=SeigeChopperMove
692=SeigeChopperAttackAir
693=SeigeChopperAttackLand
694=SeigeChopperVoiceDie
695=SlaveFreedSelect
696=SlaveFreedMove
697=SlaveFreedAttackCommand
698=SlaveFreedFear
699=SlaveFreedDie
700=SlaveMinerSelect
701=SlaveMinerMove
702=SlaveMinerAttackCommand
703=SlaveMinerHarvest
704=SlaveWorkerSelect
705=SlaveWorkerMove
706=SlaveWorkerAttackCommand
707=SlaveWorkerFear
708=SlaveWorkerHarvest
709=SlaveWorkerLiberated
710=SlaveWorkerDie
711=SlySelect
712=SlyMove
713=SlyAttackCommand
714=SlyFear
715=SlyPsyResist
716=SlyDie
717=TankDestroyerSelect
718=TankDestroyerMove
719=TankDestroyerAttackCommand
720=TanyaPrimeSelect
721=TanyaPrimeMove
722=TanyaPrimeAttackCommand
723=TanyaPrimePsyResist
724=TanyaPrimeCreated
725=TanyaPrimeFear
726=TanyaPrimeDie
727=TeslaTankSelect
728=TeslaTankMove
729=TeslaTankAttackCommand
730=TyphoonSubSelect
731=TyphoonSubMove
732=TyphoonSubAttackCommand
733=V3Select
734=V3Move
735=V3AttackCommand
736=VirusSelect
737=VirusMove
738=VirusAttackCommand
739=VirusFear
740=VirusDie
741=WarMinerSelect
742=WarMinerMove
743=WarMinerAttackCommand
744=WarMinerHarvest
745=YuriCloneSelect
746=YuriCloneMove
747=YuriCloneAttackCommand
748=YuriCloneFear
749=YuriCloneDie
750=YuriPrimeSelect
751=YuriPrimeMove
752=YuriPrimeAttackCommand
753=YuriPrimeFear
754=YuriPrimePsyResist
755=YuriPrimeCreated
756=YuriPrimeDie
757=GattlingGunAttackLoop1
758=GattlingGunAttackLoop2
759=GattlingGunAttackLoop3
760=GattlingGunDecreaseLoop3
761=GattlingGunDecreaseLoop2
762=GattlingGunDecreaseLoop1
763=LCiv1Select
764=LCiv2Select
765=LCiv3Select
766=LCiv4Select
767=ForceShieldFading
768=ForceShieldStarting
769=DemoTruck-Sov07
770=Terrorist-Sov07
771=MIGMissionAborted
772=FloatingDiscMoveLoop
773=MagnetronAttack
774=BoomerAttack1
775=BoomerAttack2
776=BruteSmashAttack
777=FloatingDiscStealLoop
778=MasterMindMoveStart
779=MagnetronMoveStart
780=YuriPrimeMoveLoop
781=SeigeChopperMoveLoop
782=BoomerMoveStart
783=GattlingTankMoveStart
784=LasherTankMoveStart
785=SlaveMinerMoveStart
786=ChaosDroneMoveStart
787=BattleFortressMoveStart
788=Einstein_HereIAm
789=Tanya_NoFear
790=ChronoScreenSound
791=TugBoatSelect
792=CruiseShipSelect
793=BridgeRepaired
794=_Amb_DesertHawk
795=_Amb_JurrasicBed
796=_Amb_JurrasicHowls
797=_Amb_JurrasicTrexRoar
798=GrinderGrinding
799=BioReactorEnter
800=BioReactorExit
801=TankBunkerUp
802=TankBunkerDown
803=SeigeChopperDeploy
804=SlaveMinerDeploy
805=RobotTankOnline
806=RobotTankOffline
807=PsychicDominatorActivate
808=TankCrush
809=PsychicDominatorReadyLoop
810=GeneticMutatorReadyLoop
811=GeneticMutatorActivate
812=PsychicDominatorOpen
813=GeneticMutatorOpen
814=ChaosDroneAttack
815=SpyPlaneMoveLoop
816=SpyPlaneSnapShot
817=SpyPlaneDie
818=MindCleared
819=LaserCosmoAttack
820=MigAttack
821=FloatingDiscAttack
822=PsychicRevealActivate
823=CamelSelect
824=CamelMove
825=CamelDie
826=CamelMoveStart
827=MummySelect
828=MummyDie
829=MummyMove
830=MummyAttack
831=SeigeChopperDie
832=SeigeChopperAttackDeployed
833=RobotTankAttack
834=_Amb_LondonCivilians
835=RobotTankSelectDeactivated
836=GenCarMoveStart
837=BigBenBell
838=CableCarSelect
839=FloatingDiscChargeUp
840=ArnoldAttack
841=SlyGrenadeLauncher
842=SlyAttack
843=ClintAttack
844=BorisAttack
845=FloatingDiscCreated
846=MagnetronMagneShake
847=FloatingDiscDie
848=SlaveMinerUndeploy
849=MagnetronMagneShakeVoice
850=YuriBustRotate
851=YuriBustAttack
852=SlaveMinerDeployVoice
853=SlaveMinerUnDeployVoice
854=ChronoScreenSoundAgain
855=SealCreated
999=NoCanDo
// items after 1000 are for debug only
1001=Test1
1002=Test2
1003=Test3
1004=Test4
1005=Test5
1006=Test6
1007=Test7
1008=Test8
1009=Test9
1010=Test10
1011=TestRandom
1012=TestRandomLoopAll
1013=TestRandomLoopDelayAll
1014=TestLoopAll
1015=TestEnvelope
1016=TestEnvelopeFShift
1017=TestEffect
[BruteSmashAttack]
Sounds=ibruatta ibruattb ibruattc ibruattd ibruatte ibruattf
Control= random
Volume=80
[ChronoLegionAttack]
Sounds=ichratta
Priority=high
Range=15
Volume=60
[ChronoLegionKill]
Sounds=ichrkill
Range=15
Priority=high
Volume=90
[ChronoLegionTeleport]
Sounds=ichrmova
Control= interrupt
Limit=1
Range=20
Priority=high
Volume=75
[CivAttack]
Sounds= icivatta icivattb
Control= random
FShift= -3 3
volume=70
[CivFatDie]
Sounds= iciv1dia iciv1dib iciv1dic
Control=random
Priority=low
Volume=90
[CivThinDie]
Sounds= iciv2dia iciv2dib iciv2dic iciv2did
Control=random
Priority=low
Volume=90
[CivTexanAttack]
Sounds= icivatta icivattb
Control= random
FShift= -7 7
volume=70
[ConscriptAttack]
Sounds=iconatta iconattb iconattc iconattd iconatte iconatte iconattc
Control= random interrupt
VShift= 15
Limit=3
Volume=65
[CrazyIvanAttack]
Sounds=icraatta
Volume=70
[CrazyIvanDeploy]
Sounds=icraatta
Volume=55
[CrazyIvanBombTick]
Sounds=icraloop
Control=loop
Limit=3
Priority=high
Volume=45
[DesolatorAttack]
Sounds=idesat1a
[DesolatorDeploy]
Sounds=idesat2a
[DogAttack]
Sounds=idogatta
Volume=50
FShift= -5 5
[DogAttackCommand]
Sounds=idogatca
Volume=70
FShift= -5 5
[DogMove]
Sounds=idogmova
Volume=35
FShift= -5 5
[DogSelect]
Sounds=idogsela
FShift= -5 5
Volume=85
[DogFear]
Sounds= idogfea idogfeb idogfec
Control= random interrupt
FShift= -5 5
Priority=low
Volume=65