-
Notifications
You must be signed in to change notification settings - Fork 0
/
PreloadAssetDB.txt
6521 lines (6509 loc) · 308 KB
/
PreloadAssetDB.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
[Abil]
id=Again
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=##id##Launch,##id##LaunchSound,TerrainMgr
Effect=##id##Set
id=BileBlast
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=##id##LargeCursorSplat,##id##Range,TerrainMgr
Effect=##id##LaunchMissile,##id##SearchArea
id=Bomb
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=##id##LargeCursorSplat,##id##Range,TerrainMgr
Effect=##id##Damage,##id##InitialSet
id=AdrenalAcid
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=##id##CursorSplat,##id##Range,TerrainMgr
Effect=##id##DebuffSearch,##id##LaunchMissile
id=Burrow2
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=TerrainMgr
Effect=ApplyBurrowDelay2
id=Frostbite
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=TerrainMgr
Effect=##id##CastSet
id=GlacialTrail2
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=GlacialTrailRange2,GlacialTrailSplat2,TerrainMgr
Button=GlacialTrail
Effect=GlacialTrailImpactDamage2,GlacialTrailOffset2
id=GraviticStomp2
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=TerrainMgr
Effect=GraviticStompCreatePersistent2
id=HookedTongue2
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=HookedTonguesCursorLine2,TerrainMgr
Effect=HookedTonguesOffset2
id=HookedTongueLong2
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=HookedTonguesLongCursorLine2,TerrainMgr
Effect=HookedTonguesOffsetLong2
id=Pounce
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Cursors\WayPointConfirmSwarm\WayPointConfirmSwarm.m3
Actor=##id##CursorSplat,##id##Range,TerrainMgr
Effect=##id##ImpactSearch,##id##InitialSet
id=HookedTongueLong
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=HookedTonguesLongCursorLine,TerrainMgr
Effect=HookedTonguesOffsetLong
id=Icebreaker
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=##id##Range,##id##Splat,TerrainMgr
Effect=##id##FindFrostShard,##id##Search
id=LaunchPylon
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Cursors\WayPointConfirmSwarm\WayPointConfirmSwarm.m3
Actor=##id##Range,##id##Splat,TerrainMgr
Alert=Error
Effect=AutoTurret,PylonDamageSearch,PylonRelease
Unit=Pylon2
id=Burrow
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=TerrainMgr
Effect=Apply##id##Delay
id=Corrupt
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=##id##CastSound,##id##CursorSplat,##id##Range,TerrainMgr
Effect=##id##InitialSet,##id##MissileSearch
id=Dampener
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=TerrainMgr
Effect=##id##ApplyInitial
id=HardenedShield
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=TerrainMgr
Effect=##id##,##id##ApplyPrecursor
id=ElectricRazor
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=##id##CursorLine,TerrainMgr
Button
Effect=##id##TargetPointOffset
id=ForceField2
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Cursors\WayPointConfirmSwarm\WayPointConfirmSwarm.m3
Actor=ForceFieldLaunchSound,ForceFieldRange2,ForceFieldSplat,TerrainMgr
Effect=##id##,ForceFieldPlacement2
Unit
id=Fluxclaws
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=TerrainMgr
Effect=##id##CastSet
id=Invisibility
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=TerrainMgr
Effect=##id##InitialCastSet
id=PylonOvercharge
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=TerrainMgr
Effect=##id##Search
id=RemoveInvisibility
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=TerrainMgr
Effect=InvisibilityRemoveSetAbility
id=NydusWormTransport
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Cursors\WayPointConfirmSwarm\WayPointConfirmSwarm.m3
Actor=NydusWormLoadSound,NydusWormUnloadSound,TerrainMgr
Alert=Error
id=Recall
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=TerrainMgr
Button
id=RepeaterLance
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=##id##Splat,TerrainMgr
Button=ElectricRazor
Effect=##id##TargetPointOffset
id=BlueFlame
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=TerrainMgr
Effect=##id##CastSet
id=Dart
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=##id##Sound,##id##SplatLine,TerrainMgr
Effect=##id##CreatePersistent
id=PsionicStorm
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Cursors\WayPointConfirmSwarm\WayPointConfirmSwarm.m3
Actor=##id##CursorSplat,##id##Range,TerrainMgr
Effect=##id##DummySearch,##id##InitialPersistent
id=NapalmSpray
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=TerrainMgr
Effect
id=RepeaterLance2
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=RepeaterLanceSplat2,TerrainMgr
Button=ElectricRazor
Effect=RepeaterLanceTargetPointOffset2
id=Revenge
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=##id##Range,TerrainMgr
Effect=##id##LaunchMissile
id=NutritiveVomit
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=TerrainMgr,VileBurstRange,VileBurstSplat
Effect=VileBurstDamage,VileBurstLaunchMissile
id=HookedTongue
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=##id##sCursorLine,TerrainMgr
Effect=##id##sOffset
id=GlacialTrail
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=##id##Range,##id##Splat,TerrainMgr
Button
Effect=##id##ImpactDamage,##id##Offset
id=SeekerBeam2
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=SeekerBeamTargetLine2,SeekerBeamTargetLine3,TerrainMgr
Effect=SeekerBeamTargetPointOffset2
id=Snapper3
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=ScreamerCursorLine2,TerrainMgr
Effect=SnapperTargetPointOffset2
id=Snipe22
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=SnipeSplatLine2,TerrainMgr
Effect=SnipeInitialSet2
id=Symbiosis
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=##id##Range,TerrainMgr
Effect=##id##InitialSet
id=ThrowBaneling2
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=TerrainMgr,ThrowBanelingCursorLine2
Button=ThrowBaneling
Effect=ThrowBanelingInitialSet2
id=TradeWinds
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=TerrainMgr,##id##Range
Effect=##id##BuffMissilesPersistent
id=Tunnel2
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=TerrainMgr,TunnelRange2
Button=Tunnel
Effect=TunnelSet2
id=Turbo2
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=TerrainMgr
Effect=TurboCreatePersistent2
id=Up
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=TerrainMgr
Effect=##id##InitialSet
id=RadarMineAttack
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Cursors\WayPointConfirmSwarm\WayPointConfirmSwarm.m3
Actor=TerrainMgr
Effect=RadarMineInitialAttackSet,WidowMineAttack
id=Wildfire
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=TerrainMgr,##id##CastSound,##id##Splat
Effect=##id##Offset
id=TractorBeam
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=TerrainMgr,##id##CursorLine
Effect=##id##,##id##TargetPointOffset0
id=Snipe2
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=SnipeSplatLine,TerrainMgr
Effect=SnipeInitialSet
id=ChronoBoost
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Cursors\WayPointConfirmSwarm\WayPointConfirmSwarm.m3
Actor=##id##Launch,##id##LaunchSound,TerrainMgr
Effect=##id##,##id##2
id=Turbo
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=TerrainMgr
Effect=##id##CreatePersistent
id=CancelPersonalWarp2
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=TerrainMgr
Effect=PersonalWarpRunningBuffRemove2
id=OilPuddle
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=##id##CursorLine,TerrainMgr
Button
Effect=##id##TargetPointOffset
id=Longshock
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=TerrainMgr
Effect=##id##ActivationSet
id=SummonNydusWorm
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=NydusWormCursorSplat,##id##Range,TerrainMgr
Button=##id##2
Effect=NydusWormDummyArea,NydusWormPersistent
id=Purge
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=##id##Range,TerrainMgr
Effect=##id##LM
id=SummonedZerglingUnburrow
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Cursors\WayPointConfirmSwarm\WayPointConfirmSwarm.m3
Actor=TerrainMgr
Alert=Error
Unit=Zergling2
id=CalledShot
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=TerrainMgr
Button=Thataway
Effect=##id##InitialSet
id=PersonalWarp2
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=PersonalWarpRange2,TerrainMgr
Effect=PersonalWarpPersistent2,PersonalWarpTeleport
id=CancelPersonalWarp
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=TerrainMgr
Effect=PersonalWarpRunningBuffRemove
id=FirefistFlying
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=TerrainMgr
Effect=##id##CreateBehaviorPersistent
id=FirefistGround
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=##id##Range,TerrainMgr
Effect=##id##CreatePersistent
id=GraviticStomp
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=TerrainMgr
Effect=##id##CreatePersistent
id=DarkAspect
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Cursors\WayPointConfirmSwarm\WayPointConfirmSwarm.m3
Actor=##id##BlinkRange,##id##CursorSplat,TerrainMgr
Effect=##id##Damage,##id##InitialSet,##id##Teleport
id=DarkAspectBlinkDummy
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Cursors\WayPointConfirmSwarm\WayPointConfirmSwarm.m3
Actor=TerrainMgr
id=Lunge
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=##id##SplatLine,TerrainMgr
Effect=##id##CreatePersistent
id=RemoveDisguise
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=TerrainMgr
Effect=DisguiseRemoveReplicaBuff
id=Cleave
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=TerrainMgr
Effect=##id##CreatePersistent
id=Disguise
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=##id##CastFinishPoof,##id##CastLoop,##id##CastModel,TerrainMgr
Button=##id##2
Effect=##id##,##id##UniversalSet
id=GravityWell2
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Cursors\WayPointConfirmSwarm\WayPointConfirmSwarm.m3
Actor=GravityWellCursorSplat,GravityWellRange,TerrainMgr
Effect=GravityWellInitialSet,GravityWellSearchSlowPull
id=LightAspect
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Cursors\WayPointConfirmSwarm\WayPointConfirmSwarm.m3
Actor=##id##BlinkRange,##id##CursorSplat,TerrainMgr
Effect=##id##InitialSet,PsiStormSearch
id=PersonalWarp
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=##id##Range,TerrainMgr
Effect=##id##Switch,##id##Teleport
id=RocketSentry
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=##id##GroundRange,TerrainMgr
Effect=##id##Create
Unit
id=RocketSentryLaunchSelf
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Cursors\WayPointConfirmSwarm\WayPointConfirmSwarm.m3
Actor=RocketSentryLaunchSound,RocketSentryRange,TerrainMgr
Effect=RocketSentryLaunchMissile
id=ThrowBaneling
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=TerrainMgr,##id##CursorLine
Button
Effect=##id##InitialSet
id=Snapper2
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=ScreamerMissileFlyingRange,ScreamerSplat,TerrainMgr
Effect=SnapperLaunchMissileFlying,SnapperSplatDummy
id=Skillshot
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=##id##Cursorline,TerrainMgr
Effect=##id##TargetpointOffset
id=Cloak
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Cursors\WayPointConfirmSwarm\WayPointConfirmSwarm.m3
Actor=TerrainMgr
Behavior=Invisibility
id=RetrofluxBubble
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Cursors\WayPointConfirmSwarm\WayPointConfirmSwarm.m3
Actor=##id##Beam,##id##CursorSplat,##id##Range,TerrainMgr
Effect=##id##CreatePersistent,##id##SearchforUnits,TemporalFieldCreatePersistent
id=SeekerBeam
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=##id##TargetLine,TerrainMgr
Effect=##id##TargetPointOffset
id=Maim
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=TerrainMgr
Effect=##id##CastSet
id=Snapper
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=ScreamerCursorLine,TerrainMgr
Effect=##id##TargetPointOffset
id=Takeoff
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=##id##CursorLine,TerrainMgr
Effect=##id##CreatePersistent
id=Torpedo
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=TerrainMgr,##id##TargetLine
Effect=##id##TargetPointOffset
id=Tunnel
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=TerrainMgr,##id##Range
Button
Effect=##id##Set
id=UseRadarMine
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=RadarMinePlacement,RadarMinesCastRange,TerrainMgr
Effect=RadarMineCU,RadarMineDamage
Unit=RadarMineBurrowed
id=VultureSpiderMineBurrow2
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=TerrainMgr
Alert=Error
Effect=SpiderMineVulnerable
Unit=RadarMineBurrowed
id=Chronoshield2
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Cursors\WayPointConfirmSwarm\WayPointConfirmSwarm.m3
Actor=TerrainMgr
Effect=ChronoshieldApply
id=RadarMineUnburrow
asset=Assets\Textures\WayPointLine.dds
asset=Assets\UI\Feedback\WayPointConfirm\WayPointConfirm.m3
Actor=TerrainMgr
Alert=Error
Effect=SpiderMineInvulnerable
Unit=RadarMine
[Actor]
id=DarkTemplar
path=Assets\Textures\.dds
asset=Wireframe-Protoss-##id##00,Wireframe-Protoss-##id##00-Shield01,Wireframe-Protoss-##id##00-Shield02,Wireframe-Protoss-##id##00-Shield03,Wireframe-Protoss-##id##01,Wireframe-Protoss-##id##01-Shield01,Wireframe-Protoss-##id##01-Shield02,Wireframe-Protoss-##id##01-Shield03,btn-unit-protoss-darktemplar,btn-upgrade-protoss-groundarmorlevel0,btn-upgrade-protoss-shieldslevel0,ui_ingame_workercount_bg
Actor=CliffLocalSelection,CliffPreSelection,##id##_Land,DeadAnimationMacro,EditorSelection,FlyerHelperSplat,FlyerShadow,GroundLocalFlashingSelection,GroundLocalSelection,GroundPreSelection,GroundShadow,GroundSyncFlashingSelection,GroundSyncSelection,ModelPretargetGround,PlaceholderModel,PlacementModel,PortraitActor,Snapshot,SoundEmitter,Templar_LandSweetener,TerrainMgr,TerrainSquibAnimations,TerrainSquibHarnessContinuous,UnitDeathModel,UnitDeathModelUnscaled,UnitDeathSound,UnitDeathVoice,UnitFootprint,UnitSound
Model=##id##,##id##2Portrait,##id##Death,##id##Death00,##id##Death01,##id##Placement,##id##Portrait,##id##WarpIn,Invisible,ProtossSmallUnitDeathLow,StaticPortrait,TerranSmallUnitDeathLow,WaterRippleMedium,ZergSmallUnitDeathLow
PhysicsMaterial=Water
Sound=##id##_Ambience,##id##_Attack,##id##_Help,##id##_Pissed,##id##_Ready,##id##_What,##id##_Yes,Protoss_BuildingPlacementSmall
default=AoEIndicator
Actor=TerrainMgr
Model=TerranAOECursorSplat
default=AoEIndicatorCircle
Actor=TerrainMgr
Model=TerranAOECursorSplat
id=AnaniasSELECTPREVIEW
path=Assets\Textures\.dds
asset=Wireframe-Protoss-Zealot,Wireframe-Protoss-Zealot-Shield01,Wireframe-Protoss-Zealot-Shield02,Wireframe-Protoss-Zealot-Shield03,btn-unit-protoss-zealot,btn-upgrade-protoss-groundarmorlevel0,btn-upgrade-protoss-shieldslevel0,ui_ingame_workercount_bg
Actor=AnaniasGlow,ChargingAnim,CliffLocalSelection,CliffPreSelection,DeadAnimationMacro,EditorSelection,FlyerHelperSplat,FlyerShadow,GroundLocalFlashingSelection,GroundLocalSelection,GroundPreSelection,GroundShadow,GroundSyncFlashingSelection,GroundSyncSelection,HallucinationBirthSoundSmall,ModelPretargetGround,PhysicsDeathsSwarmGround,PlaceholderModel,PlacementModel,PortraitActor,Snapshot,SoundEmitter,SpineCrawlerHurlDeathRagdollWithTeamColor,TerrainMgr,TerrainSquibAnimations,TerrainSquibHarnessContinuous,UnitDeathModelUnscaled,UnitDeathModelWithDeathMotionGround,UnitDeathSound,UnitDeathVoice,UnitFootprint,UnitSound,ZealotDeathRagdoll,Zealot_Land
Model=DarkZealot,DarkZealotDeath,HallucinationDeath,Invisible,ProtossSmallUnitDeathLow,TerranSmallUnitDeathLow,WaterRippleMedium,Zealot,ZealotDeath,ZealotDeathRagdoll,ZealotPlacement,ZealotPortrait,ZealotWarpIn,ZealotXPR,ZealotXPRDeath,ZergSmallUnitDeathLow
PhysicsMaterial=Water
Sound=Protoss_BuildingPlacementSmall,Zealot_Ambience,Zealot_Attack,Zealot_Help,Zealot_Pissed,Zealot_Ready,Zealot_What,Zealot_Yes
id=BenguraSELECTPREVIEW
path=Assets\Textures\.dds
asset=Wireframe-Zerg-PrimalZergMelee,btn-unit-Zerg-PrimalZergling,btn-upgrade-zerg-groundcarapace-level0,btn-upgrade-zerg-swarmfrenzy,ui_ingame_workercount_bg
Actor=BenguraGlow,BurrowDownLarge,BurrowUpMedium,CliffLocalSelection,CliffPreSelection,DeadAnimationMacro,EditorSelection,FlyerHelperSplat,FlyerShadow,GroundLocalFlashingSelection,GroundLocalSelection,GroundPreSelection,GroundShadow,GroundSyncFlashingSelection,GroundSyncSelection,LargeBurrowDownEffects,MediumBurrowDownEffects,MediumBurrowUpEffects,ModelPretargetGround,PlaceholderModel,PlacementModel,PortraitActor,Snapshot,SoundEmitter,TerrainMgr,TerrainSquibAnimations,TerrainSquibHarnessContinuous,UnitDeathModel,UnitDeathModelUnscaled,UnitDeathSound,UnitDeathVoice,UnitFootprint,UnitSound,UnloadDropAnim,ZergBurrowStandardAnimMacro,ZergMediumBurrowEffects,Zergling_Land
Model=Invisible,PrimalZerg01Portrait,PrimalZergling,PrimalZerglingDeath,ProtossSmallUnitDeathLow,TerranSmallUnitDeathLow,WaterRippleMedium15,ZergSmallUnitDeathLow
PhysicsMaterial=Water
Sound=##id##_Ambience,PrimalZergling_Attack,PrimalZergling_Ready,PrimalZergling_What,PrimalZergling_Yes
id=BrookeSELECTPREVIEW
path=Assets\Textures\.dds
asset=BTN-Unit-Terran-Nova,Wireframe-Terran-Nova,btn-upgrade-protoss-shieldslevel0,btn-upgrade-terran-infantryarmorlevel0,ui-heroicon-nova,ui_ingame_workercount_bg
Actor=BrookeGlow,CliffLocalSelection,CliffPreSelection,DeadAnimationMacro,EditorSelection,FlyerHelperSplat,FlyerShadow,GroundLocalFlashingSelection,GroundLocalSelection,GroundPreSelection,GroundShadow,GroundSyncFlashingSelection,GroundSyncSelection,ModelPretargetGround,PlaceholderModel,PlacementModel,PortraitActor,Snapshot,SoundEmitter,TerrainMgr,UnitDeathModel,UnitDeathModelUnscaled,UnitDeathSound,UnitDeathVoice,UnitFootprint,UnitSound
Model=Invisible,Nova,NovaDeath,NovaPortrait,ProtossSmallUnitDeathLow,TerranSmallUnitDeathLow,ZergSmallUnitDeathLow
Sound=##id##_Ambience,Nova_Attack,Nova_Help,Nova_Pissed,Nova_Ready,Nova_What2,Nova_Yes
id=BurrowEndModel2
Actor=TerrainMgr
Model=SwarmHostDeepUnburrow
id=BurrowModel2
Actor=TerrainMgr
Model=SwarmHostDeepBurrow
id=BenguraDeath
Actor=TerrainMgr
Model=PrimalZerglingDeath
id=AnaniasDeath2
Actor=TerrainMgr
Model=ZealotDeath
id=BrookeDeath
Actor=TerrainMgr
Model=NovaDeath
id=FirefistGroundLaunch
Actor=TerrainMgr
Model=DefaultExplosionTerranLarge
id=FirefistSound
Actor=TerrainMgr
Sound=SiegeBreaker_AttackImpact
id=HunterSeekerFailDeath2
Actor=HunterSeekerMissileFizzleSound,HunterSeekerMissileSadSound,TerrainMgr
Model=HunterSeekerFailDeath
id=JordanDeath
Actor=TerrainMgr
Model=MarauderDeath
id=FirefistGroundRange
asset=Assets\Textures\RadarIcon1.dds
Abil=FirefistGround
Actor=TerrainMgr
id=TheTorrasqueDeath
Actor=TerrainMgr
Model=TorrasqueCorpseExplosion
id=KaineDeath
Actor=TerrainMgr
Model=ArchonDeath
id=HerodDeath
Actor=TerrainMgr
Model=PrimalRoachDeath
id=DamaskSELECTPREVIEW
path=Assets\Textures\.dds
asset=Wireframe-Zerg-InfestedStukov,btn-unit-zerg-Stukov,btn-upgrade-zerg-groundcarapace-level0,btn-upgrade-zerg-swarmfrenzy,ui_ingame_workercount_bg
Actor=CliffLocalSelection,CliffPreSelection,DamaskGlow,DeadAnimationMacro,EditorSelection,FlyerHelperSplat,FlyerShadow,GroundLocalFlashingSelection,GroundLocalSelection,GroundPreSelection,GroundShadow,GroundSyncFlashingSelection,GroundSyncSelection,InfestedStukovPortrait,InfestedStukovRegenAuraSplat,ModelPretargetGround,PlaceholderModel,PlacementModel,Snapshot,SoundEmitter,TerrainMgr,UnitDeathModel,UnitDeathModelUnscaled,UnitDeathSound,UnitDeathVoice,UnitFootprint,UnitSound,UnloadDropAnim,ZergHeroRevive
Model=InfestedStukov,InfestedStukovPortrait,Invisible,ProtossSmallUnitDeathLow,TerranSmallUnitDeathLow,ZergSmallUnitDeathLow
Sound=##id##_Ambience,Stukov_Attack,Stukov_Help,Stukov_Pissed,Stukov_Ready,Stukov_What,Stukov_Yes
id=DamaskDeath
Actor=TerrainMgr
Model=InfestedStukov
id=FenixSELECTPREVIEW
path=Assets\Textures\.dds
asset=btn-unit-protoss-karass,btn-upgrade-protoss-groundarmorlevel1,btn-upgrade-protoss-shieldslevel0,ui_ingame_workercount_bg,wireframe-protoss-stalker,wireframe-protoss-stalker-shield01,wireframe-protoss-stalker-shield02,wireframe-protoss-stalker-shield03
Actor=CliffLocalSelection,CliffPreSelection,DeadAnimationMacro,EditorSelection,FenixGlow,FenixShadow,FlyerHelperSplat,FlyerShadow,GroundLocalFlashingSelection,GroundLocalSelection,GroundPreSelection,GroundShadow,GroundSyncFlashingSelection,GroundSyncSelection,ModelPretargetGround,PlaceholderModel,PlacementModel,PortraitActor,Snapshot,SoundEmitter,TerrainMgr,UnitDeathModel,UnitDeathModelUnscaled,UnitDeathSound,UnitDeathVoice,UnitFootprint,UnitSound
Model=DarkStalker,Invisible,KarassDeath,ProtossSmallUnitDeathLow,Stalker,StalkerPlacement,StalkerPortrait,StalkerWarpIn,TerranSmallUnitDeathLow,ZergSmallUnitDeathLow
Sound=##id##DeathVoice_DA,##id##_Ambience,##id##_Birth_DA,##id##_Board_DA,##id##_ClickError_DA,##id##_Click_DA,##id##_GroupBoard_DA,##id##_Highlight_DA,##id##_Movement_DA,##id##_Turning_DA,Fenix_Attack,Fenix_Attack_DA,Fenix_Help,Fenix_Help_DA,Fenix_Pissed,Fenix_Pissed_DA,Fenix_Ready,Fenix_Ready_DA,Fenix_What,Fenix_What_DA,Fenix_Yes,Fenix_Yes_DA,Karass_Attack,Karass_Attack_DA,Karass_Birth_DA,Karass_Help,Karass_Help_DA,Karass_Pissed,Karass_Pissed_DA,Karass_Ready,Karass_Ready_DA,Karass_What,Karass_What_DA,Karass_Yes,Karass_Yes_DA,_DA
id=FrostArchonSELECTPREVIEW
path=Assets\Textures\.dds
asset=Wireframe-Protoss-Archon,Wireframe-Protoss-Archon-Shield01,Wireframe-Protoss-Archon-Shield02,Wireframe-Protoss-Archon-Shield03,btn-unit-protoss-archon,btn-upgrade-protoss-groundarmorlevel0,btn-upgrade-protoss-shieldslevel0,ui_ingame_workercount_bg
Actor=Archon_Land,Archon_LandSweetener,CliffLocalSelection,CliffPreSelection,DeadAnimationMacro,EditorSelection,FlyerHelperSplat,FlyerShadow,FrostArchonGlow,GroundLocalFlashingSelection,GroundLocalSelection,GroundPreSelection,GroundShadow,GroundSyncFlashingSelection,GroundSyncSelection,HallucinationBirthSoundLarge,ModelPretargetGround,PlaceholderModel,PlacementModel,PortraitActor,Snapshot,SoundEmitter,TerrainMgr,UnitDeathModel,UnitDeathModelUnscaled,UnitDeathSound,UnitDeathVoice,UnitFootprint,UnitSound
Model=Archon,ArchonDeath,ArchonPortrait,DarkProtossArchon,DarkProtossArchonDeath,HallucinationDeath,Invisible,ProtossMediumUnitDeath,ProtossSmallUnitDeathLow,ProtossUnitBirth,TerranSmallUnitDeathLow,ZergSmallUnitDeathLow
Sound=Archon_Ambience,Archon_Attack,Archon_Help,Archon_Pissed,Archon_Ready,Archon_What,Archon_Yes
id=GlacialTrailAttack2
Actor=GenericAttackDamageModel,GenericAttackDamageModelReaction,GenericAttackDamageSite,GenericAttackDamageSound,GenericAttackDamageTerrainSquibModel,GenericAttackDamageTerrainSquibSound,GenericAttackImpactFallbackSite,GenericAttackImpactModel,GenericAttackImpactModelReaction,GenericAttackImpactPointSite,GenericAttackImpactSite,GenericAttackImpactSound,GenericAttackImpactTerrainSquibModel,GenericAttackImpactTerrainSquibSound,GenericAttackLaunchFallbackSite,GenericAttackLaunchModel,GenericAttackLaunchSite,GenericAttackLaunchSound,GenericAttackLaunchTerrainSquibModel,GenericAttackLaunchTerrainSquibSound,GlacialTrailWeapon2,TerrainMgr
Model=PhotonCannonAttackImpact
Sound=GlacialTrailLaunch,PhotonCannon_AttackImpact
id=GlacialTrailRange2
asset=Assets\Textures\RadarIcon1.dds
Abil=GlacialTrail2
Actor=TerrainMgr
id=GlacialTrailSplat2
Actor=CursorRegion,TerrainMgr
Model=ProtossAOECursorSplat
id=GlacialTrailWeapon2
Actor=GlacialTrailLight,TerrainMgr
Model=WeaponHybridD
id=GraviticStomp2
Actor=TerrainMgr
Effect=CleaveCreatePersistent
Model=FungalGrowthImpact,PsionicShockwave
id=GraviticStompDebuff2
Actor=TerrainMgr
Model=GravitonBeamImpact
id=GraviticStompImpactSound2
Actor=TerrainMgr
Sound=Phoenix_GravitonBeamStart
id=GraviticStompSound2
Actor=TerrainMgr
Sound=PsionicShockwaveSound
id=HerodSELECTPREVIEW
path=Assets\Textures\.dds
asset=Wireframe-Zerg-PrimalRoach,btn-unit-Zerg-PrimalRoach,btn-upgrade-zerg-groundcarapace-level0,btn-upgrade-zerg-swarmfrenzy,ui_ingame_workercount_bg
Actor=BurrowDownMedium,BurrowUpMedium,CliffLocalSelection,CliffPreSelection,DeadAnimationMacro,EditorSelection,FlyerHelperSplat,FlyerShadow,GroundLocalFlashingSelection,GroundLocalSelection,GroundPreSelection,GroundShadow,GroundSyncFlashingSelection,GroundSyncSelection,HerodGlow,MediumBurrowDownEffects,MediumBurrowUpEffects,ModelPretargetGround,PlaceholderModel,PlacementModel,PortraitActor,Snapshot,SoundEmitter,TerrainMgr,TerrainSquibAnimations,TerrainSquibHarnessContinuous,UnitDeathModel,UnitDeathModelUnscaled,UnitDeathSound,UnitDeathVoice,UnitFootprint,UnitSound,UnloadDropAnim,ZergBurrowStandardAnimMacro,ZergMediumBurrowEffects
Model=Invisible,PrimalRoach,PrimalRoachDeath,PrimalRoachPortrait,ProtossSmallUnitDeathLow,RoachDeathAcid,RoachDeathFire,TerranSmallUnitDeathLow,WaterRippleMedium25,ZergSmallUnitDeathLow
PhysicsMaterial=Water
Sound=Herod2_Ambience,RoachPrimal_Attack,RoachPrimal_Pissed,RoachPrimal_Ready,RoachPrimal_What,RoachPrimal_Yes
id=HookedTonguesAttack2
Actor=GenericAttackDamageModel,GenericAttackDamageModelReaction,GenericAttackDamageSite,GenericAttackDamageSound,GenericAttackDamageTerrainSquibModel,GenericAttackDamageTerrainSquibSound,GenericAttackImpactFallbackSite,GenericAttackImpactModel,GenericAttackImpactModelReaction,GenericAttackImpactPointSite,GenericAttackImpactSound,GenericAttackImpactTerrainSquibModel,GenericAttackImpactTerrainSquibSound,GenericAttackLaunchFallbackSite,GenericAttackLaunchModel,GenericAttackLaunchSite,GenericAttackLaunchSound,GenericAttackLaunchTerrainSquibModel,GenericAttackLaunchTerrainSquibSound,HookedTonguesLaunchSite,HookedTonguesMissile2,TerrainMgr,YoinkTentacleLaunchSite
Model=Invisible,YoinkImpactModel
Sound=Spell_Yoink_Impact,Spell_Yoink_Launch
id=HeadOffset
Actor=TerrainMgr
id=HookedTonguesCursorLine2
Actor=GuideRegionArc,TerrainMgr
Model=HookedTonguesSplat2
id=SOpOffset1backwards
Actor=TerrainMgr
id=HookedTonguesImpact2
Actor=TerrainMgr
Sound
id=HookedTonguesImpactHoldingSite2
Actor=TerrainMgr
Effect=HookedTonguesLM2
id=HookedTonguesImpactModel2
Actor=TerrainMgr
Model=YoinkImpactModel
id=HookedTonguesLongCursorLine2
Actor=GuideRegionArc,TerrainMgr
Model=HookedTonguesLongSplat2
id=HookedTonguesMissile2
Actor=TerrainMgr
Effect=HookedTonguesLM2
Model=Invisible
id=HookedTonguesTentacle2
Actor=HookedTonguesImpactHoldingSite2,TerrainMgr
Model=YoinkTentacle
id=JordanSELECTPREVIEW
path=Assets\Textures\.dds
asset=Wireframe-Terran-Marauder,btn-unit-terran-marauder,btn-upgrade-protoss-shieldslevel0,btn-upgrade-terran-infantryarmorlevel0,ui_ingame_workercount_bg
Actor=CliffLocalSelection,CliffPreSelection,DeadAnimationMacro,EditorSelection,FlyerHelperSplat,FlyerShadow,GroundLocalFlashingSelection,GroundLocalSelection,GroundPreSelection,GroundShadow,GroundSyncFlashingSelection,GroundSyncSelection,JordanGlow,Marauder_Land,ModelPretargetGround,PhysicsDeathsSwarmGround,PlaceholderModel,PlacementModel,PortraitActor,Snapshot,SoundEmitter,TerrainMgr,TerrainSquibAnimations,TerrainSquibHarnessContinuous,UnitDeathModelUnscaled,UnitDeathModelWithDeathMotionGround,UnitDeathRagdollBloodPrevent,UnitDeathSound,UnitDeathVoice,UnitFootprint,UnitSound,UnloadDropAnim
Model=Invisible,Marauder,MarauderDeath,MarauderDeathEviscerate,MarauderDeathRagdoll,MarauderPortrait,ProtossSmallUnitDeathLow,TerranSmallUnitDeathLow,WaterRippleLarge,ZergSmallUnitDeathLow
PhysicsMaterial=Water
Sound=##id##_Ambience,Marauder_Attack,Marauder_Help,Marauder_Pissed,Marauder_Ready,Marauder_What,Marauder_Yes
id=MelchiorDeath
Actor=TerrainMgr
Model=KarassDeath
id=FenixDeath
Actor=TerrainMgr
Model=StalkerDeath
id=MelchiorDeathSound
Actor=TerrainMgr
Sound=HighTemplar_Death
id=MelchiorSELECTPREVIEW
path=Assets\Textures\.dds
asset=Wireframe-Protoss-HighTemplar,Wireframe-Protoss-HighTemplar-Shield01,Wireframe-Protoss-HighTemplar-Shield02,Wireframe-Protoss-HighTemplar-Shield03,btn-unit-protoss-karass,btn-upgrade-protoss-groundarmorlevel1,btn-upgrade-protoss-shieldslevel0,ui_ingame_workercount_bg
Actor=CliffLocalSelection,CliffPreSelection,DeadAnimationMacro,EditorSelection,FlyerHelperSplat,FlyerShadow,GroundLocalFlashingSelection,GroundLocalSelection,GroundPreSelection,GroundShadow,GroundSyncFlashingSelection,GroundSyncSelection,KarassShadow,MelchiorGlow,ModelPretargetGround,PlaceholderModel,PlacementModel,PortraitActor,Snapshot,SoundEmitter,TerrainMgr,UnitDeathModel,UnitDeathModelUnscaled,UnitDeathSound,UnitDeathVoice,UnitFootprint,UnitSound
Model=Invisible,Karass,KarassDeath,KarassPortrait,ProtossSmallUnitDeathLow,TerranSmallUnitDeathLow,ZergSmallUnitDeathLow
Sound=Karass_Attack,Karass_Help,Karass_Pissed,Karass_Ready,Karass_What,Karass_Yes,##id##_Ambience
id=NilesSELECTPREVIEW
path=Assets\Textures\.dds
asset=BTN-Unit-Terran-HellionMercenary,btn-missing-kaeo,btn-upgrade-protoss-shieldslevel0,btn-upgrade-terran-vehicleplatinglevel0,ui_ingame_workercount_bg,wireframe-terran-hellion-mercenary
Actor=CliffLocalSelection,CliffPreSelection,DeadAnimationMacro,EditorSelection,FlyerHelperSplat,FlyerShadow,GroundLocalFlashingSelection,GroundLocalSelection,GroundPreSelection,GroundShadow,GroundSyncFlashingSelection,GroundSyncSelection,Hellion_Land,MercHellionDropModel,ModelPretargetGround,NilesGlow,PlaceholderModel,PlacementModel,PortraitActor,Snapshot,SoundEmitter,TerrainMgr,UnitDeathModel,UnitDeathModelUnscaled,UnitDeathSound,UnitDeathVoice,UnitFootprint,UnitSound,UnloadDropAnim
Model=HellionPortrait,Invisible,MercHellion2,MercHellionDeath2,ProtossSmallUnitDeathLow,TerranSmallUnitDeathLow,ZergSmallUnitDeathLow
Sound=Hellion_Attack,Hellion_Help,Hellion_Pissed,Hellion_Ready,Hellion_What,Hellion_Yes,##id##_Ambience
id=DarkAspectCursorSplat
Actor=CursorRegion,TerrainMgr
Model=ProtossAOECursorSplat
id=LightAspectCursorSplat
Actor=CursorRegion,TerrainMgr
Model=ProtossAOECursorSplat
id=PersonalWarpIn2
Actor=TerrainMgr
Model=PhaseShiftImpact
id=Kaine
path=Assets\Textures\.dds
asset=Wireframe-Protoss-Archon,Wireframe-Protoss-Archon-Shield01,Wireframe-Protoss-Archon-Shield02,Wireframe-Protoss-Archon-Shield03,btn-unit-protoss-archon,btn-upgrade-protoss-groundarmorlevel0,btn-upgrade-protoss-shieldslevel0,ui_ingame_workercount_bg
Actor=Archon_Land,Archon_LandSweetener,CliffLocalSelection,CliffPreSelection,DeadAnimationMacro,EditorSelection,FlyerHelperSplat,FlyerShadow,FrostArchonGlow,GroundLocalFlashingSelection,GroundLocalSelection,GroundPreSelection,GroundShadow,GroundSyncFlashingSelection,GroundSyncSelection,HallucinationBirthSoundLarge,##id##Death,ModelPretargetGround,PlaceholderModel,PlacementModel,PortraitActor,Snapshot,SoundEmitter,TerrainMgr,UnitDeathModel,UnitDeathModelUnscaled,UnitDeathSound,UnitDeathVoice,UnitFootprint,UnitSound
Model=Archon,ArchonDeath,ArchonPortrait,DarkProtossArchon,DarkProtossArchonDeath,HallucinationDeath,Invisible,ProtossMediumUnitDeath,ProtossSmallUnitDeathLow,ProtossUnitBirth,TerranSmallUnitDeathLow,ZergSmallUnitDeathLow
Sound=Archon_Ambience,Archon_Attack,Archon_Help,Archon_Pissed,Archon_Ready,Archon_What,Archon_Yes
id=PersonalWarpLoopSound2
Actor=TerrainMgr
Sound=WarpGate_TrainLoop
id=PersonalWarpOut2
Actor=TerrainMgr
Model=PhaseShiftImpact
id=PersonalWarpRange2
asset=Assets\Textures\RadarIcon1.dds
Abil=PersonalWarp2
Actor=TerrainMgr
id=PersonalWarpScoutModel2
Actor=TerrainMgr
Effect=PersonalWarpPersistent
Model=ZealotWarpIn
id=PersonalWarpStartSound2
Actor=TerrainMgr
Sound=WarpGate_TrainStart
id=PersonalWarpStopSound2
Actor=TerrainMgr
Sound=WarpGate_TrainFinish
id=PersonalWarpTeleportSound2
Actor=TerrainMgr
Sound=Stalker_Blink
id=RepeaterLanceAttack2
Actor=GenericAttackDamageModel,GenericAttackDamageModelReaction,GenericAttackDamageSite,GenericAttackDamageSound,GenericAttackDamageTerrainSquibModel,GenericAttackDamageTerrainSquibSound,GenericAttackImpactFallbackSite,GenericAttackImpactModel,GenericAttackImpactModelReaction,GenericAttackImpactPointSite,GenericAttackImpactSite,GenericAttackImpactSound,GenericAttackImpactTerrainSquibModel,GenericAttackImpactTerrainSquibSound,GenericAttackLaunchFallbackSite,GenericAttackLaunchModel,GenericAttackLaunchSite,GenericAttackLaunchSound,GenericAttackLaunchTerrainSquibModel,GenericAttackLaunchTerrainSquibSound,RepeaterLanceWeapon2,TerrainMgr
Model=PhotonCannonAttackImpact
Sound=PhotonCannon_AttackImpact,PrimalFlyer_AttackLaunch
id=RepeaterLanceSplat2
Actor=GuideRegionArc,TerrainMgr
Model
id=RepeaterLanceWeapon2
Actor=FlyerHelperBeam,TerrainMgr
Model
id=RhythmActivation
Actor=TerrainMgr
Sound=Oracle_EnvisionCast3
id=RhythmActivation2
Actor=TerrainMgr
Sound=Rhythm2
id=RhythmBuff
Actor=TerrainMgr
Model=OracleEnvision
id=PounceCursorSplat
Actor=CursorRegion,TerrainMgr
Model=ProtossAOECursorSplat
id=SOpMelchiorBasicOffset
Actor=TerrainMgr
id=ScreamerAttack3
Actor=GenericAttackDamageModel,GenericAttackDamageModelReaction,GenericAttackDamageSite,GenericAttackDamageSound,GenericAttackDamageTerrainSquibModel,GenericAttackDamageTerrainSquibSound,GenericAttackImpactFallbackSite,GenericAttackImpactModel,GenericAttackImpactModelReaction,GenericAttackImpactPointSite,GenericAttackImpactSite,GenericAttackImpactSound,GenericAttackImpactTerrainSquibModel,GenericAttackImpactTerrainSquibSound,GenericAttackLaunchFallbackSite,GenericAttackLaunchModel,GenericAttackLaunchSite,GenericAttackLaunchSound,GenericAttackLaunchTerrainSquibModel,GenericAttackLaunchTerrainSquibSound,ScreamerMissileActor3,TerrainMgr
Model=BattlecruiserHurricaneAttackImpact,MarauderAttackLaunch
Sound=Loki_HurricaneAttackImpact,ScreamerLaunch
id=ScreamerCursorLine2
Actor=GuideRegionArc,TerrainMgr
Model=ScreamerSightSplat2
id=ScreamerMissileActor3
Actor=TerrainMgr
Model=DevastatorMissileWeapon
id=SeekerBeamAttack2
Actor=GenericAttackDamageModel,GenericAttackDamageModelReaction,GenericAttackDamageSite,GenericAttackDamageSound,GenericAttackDamageTerrainSquibModel,GenericAttackDamageTerrainSquibSound,GenericAttackImpactFallbackSite,GenericAttackImpactModel,GenericAttackImpactModelReaction,GenericAttackImpactPointSite,GenericAttackImpactSite,GenericAttackImpactSound,GenericAttackImpactTerrainSquibModel,GenericAttackImpactTerrainSquibSound,GenericAttackLaunchFallbackSite,GenericAttackLaunchModel,GenericAttackLaunchSite,GenericAttackLaunchSound,GenericAttackLaunchTerrainSquibModel,GenericAttackLaunchTerrainSquibSound,SeekerBeamMissileActor2,TerrainMgr
Model=AdeptSoulMissileImpact
Sound=Karass_AttackImpact,PhotonCannon_AttackLaunch
id=SeekerBeamIlluminationDebuff2
Actor=TerrainMgr
Model=MindControlDebuff
id=SeekerBeamMissileActor2
Actor=TerrainMgr
Model=KarassWeapon
id=SeekerBeamRelaunchAttack2
Actor=GenericAttackDamageModel,GenericAttackDamageModelReaction,GenericAttackDamageSite,GenericAttackDamageSound,GenericAttackDamageTerrainSquibModel,GenericAttackDamageTerrainSquibSound,GenericAttackImpactFallbackSite,GenericAttackImpactModel,GenericAttackImpactModelReaction,GenericAttackImpactPointSite,GenericAttackImpactSite,GenericAttackImpactSound,GenericAttackImpactTerrainSquibModel,GenericAttackImpactTerrainSquibSound,GenericAttackLaunchFallbackSite,GenericAttackLaunchModel,GenericAttackLaunchSite,GenericAttackLaunchSound,GenericAttackLaunchTerrainSquibModel,GenericAttackLaunchTerrainSquibSound,SeekerBeamMissileActor2,TerrainMgr
Model=AdeptSoulMissileImpact
Sound=Karass_AttackImpact,PhotonCannon_AttackLaunch
id=SeekerBeamRelaunchMissileActor2
Actor=TerrainMgr
Model=KarassWeapon
id=SeekerBeamTargetLine3
Actor=GuideRegionArc,TerrainMgr
Model=SeekerBeamTargeting3
id=SilasDeath
Actor=TerrainMgr
Model=DarkTemplarDeath01
id=SnipeAttack2
Actor=GenericAttackDamageModel,GenericAttackDamageModelReaction,GenericAttackDamageSite,GenericAttackDamageSound,GenericAttackDamageTerrainSquibModel,GenericAttackDamageTerrainSquibSound,GenericAttackImpactFallbackSite,GenericAttackImpactModel,GenericAttackImpactModelReaction,GenericAttackImpactPointSite,GenericAttackImpactSite,GenericAttackImpactSound,GenericAttackImpactTerrainSquibModel,GenericAttackImpactTerrainSquibSound,GenericAttackLaunchFallbackSite,GenericAttackLaunchModel,GenericAttackLaunchSite,GenericAttackLaunchSound,GenericAttackLaunchTerrainSquibModel,GenericAttackLaunchTerrainSquibSound,SnipeMissileActor2,TerrainMgr
Model=PhotonCannonAttackImpact
Sound=Ghost_SnipeLaunch,Nova_SnipeImpact
id=SnipeMissileActor2
Actor=TerrainMgr
Model=EMP2Weapon
id=SnipeSkipImpact2
Actor=TerrainMgr
Model=FeedbackImpact
id=SnipeSkippedTargetOpacity2
Actor=TerrainMgr
id=SnipeSplatLine2
Actor=GuideRegionArc,TerrainMgr
Model=SnipeSplat2
id=NilesDeath
Actor=TerrainMgr
Model=MercHellionDeath
id=TheTorrasqueSELECTPREVIEW
path=Assets\Textures\.dds
asset=Wireframe-Zerg-ultraliskex1b,btn-unit-zerg-ultralisk-torrasque,btn-upgrade-zerg-groundcarapace-level0,btn-upgrade-zerg-swarmfrenzy,ui_ingame_workercount_bg
Actor=BurrowDownUltralisk,BurrowUpLarge,CliffLocalSelection,CliffPreSelection,DeadAnimationMacro,EditorSelection,FlyerHelperSplat,FlyerShadow,GroundLocalFlashingSelection,GroundLocalSelection,GroundPreSelection,GroundShadow,GroundSyncFlashingSelection,GroundSyncSelection,LargeBurrowDownEffects,LargeBurrowUpEffects,ModelPretargetGround,PlaceholderModel,PlacementModel,PortraitActor,Snapshot,SoundEmitter,TerrainMgr,TerrainSquibAnimations,TerrainSquibHarnessContinuous,TheTorrasqueGlow,Ultra_Land,UltraliskAttack,UltraliskHeadAttack,UnitDeathModel,UnitDeathModelUnscaled,UnitDeathSound,UnitDeathVoice,UnitFootprint,UnitSound,UnloadDropAnim,ZergBurrowStandardAnimMacro,ZergLargeBurrowEffects
Model=Invisible,ProtossSmallUnitDeathLow,TerranSmallUnitDeathLow,##id##,TorrasquePortrait,UltraliskEx1BDeath,WaterRippleUltralisk,ZergSmallUnitDeathLow
PhysicsMaterial=Water
Sound=##id##_Ambience,Ultralisk_Attack,Ultralisk_AttackLaunch,Ultralisk_HeadAttackImpact,Ultralisk_Movement,Ultralisk_Pissed,Ultralisk_Ready,Ultralisk_What,Ultralisk_Yes
id=PounceRange
asset=Assets\Textures\RadarIcon1.dds
Actor=TerrainMgr
id=PounceStun
Actor=TerrainMgr
Model=QueenKnockdownStun
id=PurgeRange
asset=Assets\Textures\RadarIcon1.dds
Abil=Purge
Actor=TerrainMgr
id=PurgeAttack
Actor=GenericAttackDamageModel,GenericAttackDamageModelReaction,GenericAttackDamageSite,GenericAttackDamageSound,GenericAttackDamageTerrainSquibModel,GenericAttackDamageTerrainSquibSound,GenericAttackImpactFallbackSite,GenericAttackImpactModel,GenericAttackImpactModelReaction,GenericAttackImpactPointSite,GenericAttackImpactSite,GenericAttackImpactSound,GenericAttackImpactTerrainSquibModel,GenericAttackImpactTerrainSquibSound,GenericAttackLaunchFallbackSite,GenericAttackLaunchModel,GenericAttackLaunchSite,GenericAttackLaunchSound,GenericAttackLaunchTerrainSquibModel,GenericAttackLaunchTerrainSquibSound,PhotonCannonAttackDeathForce,PurgeWeapon,TerrainMgr
Model=BloodTargetImpact,EMPBurstModel
Sound=Spectre_EMPImpact,Val03QueenRangedAttackLaunch
id=PurgeWeapon
Actor=TerrainMgr
Model=EMP2Weapon
id=RhythmBuff2
Actor=TerrainMgr
Model=OracleEnvision
id=RhythmImpact
Actor=TerrainMgr
Model=WarpGateWarpCast
id=SOpLowerBy15
Actor=TerrainMgr
id=ThrowBanelingAttack2
Actor=GenericAttackDamageModel,GenericAttackDamageModelReaction,GenericAttackDamageSite,GenericAttackDamageSound,GenericAttackDamageTerrainSquibModel,GenericAttackDamageTerrainSquibSound,GenericAttackImpactFallbackSite,GenericAttackImpactModel,GenericAttackImpactModelReaction,GenericAttackImpactPointSite,GenericAttackImpactSite,GenericAttackImpactSound,GenericAttackImpactTerrainSquibModel,GenericAttackImpactTerrainSquibSound,GenericAttackLaunchFallbackSite,GenericAttackLaunchModel,GenericAttackLaunchSite,GenericAttackLaunchSound,GenericAttackLaunchTerrainSquibModel,GenericAttackLaunchTerrainSquibSound,TerrainMgr,ThrowBanelingMissileActor2
Model=BanelingDeath,ThrowBanelingLaunch2
Sound=Broodling_DeathFXAcid,Infestor_FungalGrowthImpact
id=ThrowBanelingCursorLine2
Actor=GuideRegionArc,TerrainMgr
Model=ThrowBanelingLineModel2
id=ThrowBanelingDoTModelAttachment2
Actor=TerrainMgr
Model=BlindingCloudModelAttachment
id=ThrowBanelingMissileActor2
Actor=TerrainMgr
Model=ThrowBanelingMissileModel2
id=TunnelRange2
asset=Assets\Textures\RadarIcon1.dds
Actor=TerrainMgr
id=TurboCastSound2
Actor=TerrainMgr
Sound=Cut_zSM_MengskPalace_Before_Kor_Drop_Pod_Close_Whoosh
id=TurboFireAOEIndicator2
Actor=TerrainMgr
Model=TerranAOECursorSplat
id=TurboFireCreation2
Actor=TerrainMgr
Model=YagdraFireballImpact
id=TurboFireTrail2
Actor=TerrainMgr
Model
id=UnderfootShieldOn
Actor=TerrainMgr
Model=PsionicShadowCast
id=VileBurstHealSound
Actor=TerrainMgr
Sound=Queen_Transfusion
id=VileBurstHeal
Actor=TerrainMgr
Model=SquibTransfusion
id=VileBurstAttack
Actor=GenericAttackDamageModel,GenericAttackDamageModelReaction,GenericAttackDamageSite,GenericAttackDamageSound,GenericAttackDamageTerrainSquibModel,GenericAttackDamageTerrainSquibSound,GenericAttackImpactFallbackSite,GenericAttackImpactModel,GenericAttackImpactModelReaction,GenericAttackImpactPointSite,GenericAttackImpactSite,GenericAttackImpactSound,GenericAttackImpactTerrainSquibModel,GenericAttackImpactTerrainSquibSound,GenericAttackLaunchFallbackSite,GenericAttackLaunchModel,GenericAttackLaunchSite,GenericAttackLaunchSound,GenericAttackLaunchTerrainSquibModel,GenericAttackLaunchTerrainSquibSound,TerrainMgr,VileBurstWeapon
Model=FungalGrowthImpact
Sound=Infestor_AcidSporesMissileLaunch,VileBurstImpact
id=VileBurstWeapon
Actor=TerrainMgr
Model=FungalGrowthMissile
id=AgainLaunch
Actor=TerrainMgr
Model=FeedbackLaunch
id=AgainLaunchSound
Actor=TerrainMgr
Sound
id=FluxclawsSound
Actor=TerrainMgr
Sound=KerriganSpecOps_AttackImpact
id=HookedTonguesLongCursorLine
Actor=GuideRegionArc,TerrainMgr
Model=HookedTonguesLongSplat
id=IcebreakerImpact
Actor=TerrainMgr
Model=HybridDAttackImpact
id=IcebreakerRange
asset=Assets\Textures\RadarIcon1.dds
Abil=Icebreaker
Actor=TerrainMgr
id=IcebreakerSplat
Actor=CursorRegion,TerrainMgr
Model=ProtossAOECursorSplat
id=FluxclawsIn
Actor=TerrainMgr
Model=HotSBioPlasmidDischargeAttackImpact
id=FluxclawsOut
Actor=TerrainMgr
Model=CorruptorAttackImpact
id=PersonalWarpStun
Actor=TerrainMgr
Model=QueenKnockdownStun
id=IcebreakerStun
Actor=TerrainMgr
Model=QueenKnockdownStun
id=FrostShardBirth
Actor=TerrainMgr
Model=ZHybridPlasmaAttackImpact
id=FrostShardFog
Actor=TerrainMgr
Model=FogGrey
id=FrostShard
path=Assets\Textures\.dds
asset=BTN-Ability-Terran-ScannerSweep,btn-upgrade-protoss-shieldslevel0,ui_ingame_workercount_bg
Actor=CliffLocalSelection,CliffPreSelection,DeadAnimationMacro,EditorSelection,FlyerHelperSplat,FlyerShadow,GroundLocalFlashingSelection,GroundLocalSelection,GroundPreSelection,GroundShadow,GroundSyncFlashingSelection,GroundSyncSelection,ModelPretargetGround,PlaceholderModel,PlacementModel,PortraitActor,Snapshot,SoundEmitter,TerrainMgr,UnitDeathModel,UnitDeathModelUnscaled,UnitDeathSound,UnitDeathVoice,UnitFootprint,UnitSound
Model=Ice2x2NonConjoined,Invisible,ProtossSmallUnitDeathLow,StaticPortrait,TerranSmallUnitDeathLow,ZergSmallUnitDeathLow
Sound=##id##_Ambience,Sentry_ForceFieldLoop
id=FrostArchonBasicAttack
Actor=##id##Beam,GenericAttackDamageModel,GenericAttackDamageModelReaction,GenericAttackDamageSite,GenericAttackDamageSound,GenericAttackDamageTerrainSquibModel,GenericAttackDamageTerrainSquibSound,GenericAttackImpactFallbackSite,GenericAttackImpactModel,GenericAttackImpactModelReaction,GenericAttackImpactPointSite,GenericAttackImpactSite,GenericAttackImpactSound,GenericAttackImpactTerrainSquibModel,GenericAttackImpactTerrainSquibSound,GenericAttackLaunchFallbackSite,GenericAttackLaunchModel,GenericAttackLaunchSite,GenericAttackLaunchSound,GenericAttackLaunchTerrainSquibModel,GenericAttackLaunchTerrainSquibSound,TerrainMgr
Model=CorsairAttackImpact
Sound=Karass_AttackImpact,Karass_AttackLaunch
id=FrostArchonBasicAttackBeam
Actor=ActionTargetTeleportDestroy,TerrainMgr
Model=DarkArchonAttackBeam,ExpeditionGateTractorBeam
id=CleaveDamageSound
Actor=TerrainMgr
Sound=Zerg_AttackImpactLargeSlice
id=CleaveSound2
Actor=TerrainMgr
Sound=CleaveSound
id=FrostArchonGlow
Actor=TerrainMgr
Model
id=HookedTonguesCursorLine
Actor=GuideRegionArc,TerrainMgr
Model=HookedTonguesSplat
id=HookedTonguesAttack
Actor=GenericAttackDamageModel,GenericAttackDamageModelReaction,GenericAttackDamageSite,GenericAttackDamageSound,GenericAttackDamageTerrainSquibModel,GenericAttackDamageTerrainSquibSound,GenericAttackImpactFallbackSite,GenericAttackImpactModel,GenericAttackImpactModelReaction,GenericAttackImpactPointSite,GenericAttackImpactSound,GenericAttackImpactTerrainSquibModel,GenericAttackImpactTerrainSquibSound,GenericAttackLaunchFallbackSite,GenericAttackLaunchModel,GenericAttackLaunchSite,GenericAttackLaunchSound,GenericAttackLaunchTerrainSquibModel,GenericAttackLaunchTerrainSquibSound,HookedTonguesLaunchSite,HookedTonguesMissile,TerrainMgr,YoinkTentacleLaunchSite
Model=Invisible,YoinkImpactModel
Sound=Spell_Yoink_Impact,Spell_Yoink_Launch
id=HookedTonguesMissile
Actor=TerrainMgr
Effect=HookedTonguesLM
Model=Invisible
id=HookedTonguesImpact
Actor=TerrainMgr
Sound
id=SymbiosisRange
asset=Assets\Textures\RadarIcon1.dds
Abil=Symbiosis
Actor=TerrainMgr
id=TradeWindsAttackAction2
Actor=GenericAttackDamageModel,GenericAttackDamageModelReaction,GenericAttackDamageSite,GenericAttackDamageSound,GenericAttackDamageTerrainSquibModel,GenericAttackDamageTerrainSquibSound,GenericAttackImpactFallbackSite,GenericAttackImpactModel,GenericAttackImpactModelReaction,GenericAttackImpactPointSite,GenericAttackImpactSite,GenericAttackImpactSound,GenericAttackImpactTerrainSquibModel,GenericAttackImpactTerrainSquibSound,GenericAttackLaunchFallbackSite,GenericAttackLaunchModel,GenericAttackLaunchSite,GenericAttackLaunchSound,GenericAttackLaunchTerrainSquibModel,GenericAttackLaunchTerrainSquibSound,TerrainMgr,TradeWindsAttackMissile
Model=TempestGroundAttackImpact
Sound=MotherShip_Purify_AttackLaunch
id=TradeWindsBuffAction
Actor=GenericAttackDamageModel,GenericAttackDamageModelReaction,GenericAttackDamageSite,GenericAttackDamageSound,GenericAttackDamageTerrainSquibModel,GenericAttackDamageTerrainSquibSound,GenericAttackImpactFallbackSite,GenericAttackImpactModel,GenericAttackImpactModelReaction,GenericAttackImpactPointSite,GenericAttackImpactSite,GenericAttackImpactSound,GenericAttackImpactTerrainSquibModel,GenericAttackImpactTerrainSquibSound,GenericAttackLaunchFallbackSite,GenericAttackLaunchModel,GenericAttackLaunchSite,GenericAttackLaunchSound,GenericAttackLaunchTerrainSquibModel,GenericAttackLaunchTerrainSquibSound,TerrainMgr,TradeWindsBuffMissile
Model=PhoenixAirAttackImpact
Sound=MotherShip_Purify_AttackLaunch
id=GlacialTrailLight
Actor=TerrainMgr
Model=MothershipCorePurifyLight
id=GlacialTrailFog
Actor=TerrainMgr
Model=FogGrey
id=GlacialTrailRange
asset=Assets\Textures\RadarIcon1.dds
Abil=GlacialTrail
Actor=TerrainMgr
id=GlacialTrailSplat
Actor=CursorRegion,TerrainMgr
Model=ProtossAOECursorSplat
id=TradeWindsAttackAction
Actor=GenericAttackDamageModel,GenericAttackDamageModelReaction,GenericAttackDamageSite,GenericAttackDamageSound,GenericAttackDamageTerrainSquibModel,GenericAttackDamageTerrainSquibSound,GenericAttackImpactFallbackSite,GenericAttackImpactModel,GenericAttackImpactModelReaction,GenericAttackImpactPointSite,GenericAttackImpactSite,GenericAttackImpactSound,GenericAttackImpactTerrainSquibModel,GenericAttackImpactTerrainSquibSound,GenericAttackLaunchFallbackSite,GenericAttackLaunchModel,GenericAttackLaunchSite,GenericAttackLaunchSound,GenericAttackLaunchTerrainSquibModel,GenericAttackLaunchTerrainSquibSound,TerrainMgr,TradeWindsAttackMissile
Model=TempestGroundAttackImpact
Sound=MotherShip_Purify_AttackLaunch
id=TradeWindsBuffMissile
Actor=TerrainMgr
Model=IonCannonsWeapon
id=LaunchPylonRange
asset=Assets\Textures\RadarIcon1.dds
Abil=LaunchPylon
Actor=TerrainMgr
id=LaunchPylonSplat
Actor=CursorRegion,TerrainMgr
Model=ProtossAOECursorSplat
id=CleaveDamage
Actor=TerrainMgr
Model=KerriganAttackImpact
id=PylonOverchargeLight
Actor=TerrainMgr
Model=MothershipCorePurifyLight
id=PylonBasicAttack
Actor=GenericAttackDamageModel,GenericAttackDamageModelReaction,GenericAttackDamageSite,GenericAttackDamageSound,GenericAttackDamageTerrainSquibModel,GenericAttackDamageTerrainSquibSound,GenericAttackImpactFallbackSite,GenericAttackImpactModel,GenericAttackImpactModelReaction,GenericAttackImpactPointSite,GenericAttackImpactSite,GenericAttackImpactSound,GenericAttackImpactTerrainSquibModel,GenericAttackImpactTerrainSquibSound,GenericAttackLaunchFallbackSite,GenericAttackLaunchModel,GenericAttackLaunchSite,GenericAttackLaunchSound,GenericAttackLaunchTerrainSquibModel,GenericAttackLaunchTerrainSquibSound,MothershipCoreAttackForce,##id##Weapon,TerrainMgr
Model=BloodTargetImpact,MothershipCoreWeaponAttackImpact
Sound=PhotonCannon_AttackImpact,PhotonCannon_AttackLaunch
id=PylonBasicAttackWeapon
Actor=TerrainMgr
Model=MothershipCoreWeaponWeapon
id=PersonalWarpRange
asset=Assets\Textures\RadarIcon1.dds
Abil=PersonalWarp
Actor=TerrainMgr
id=PersonalWarpTeleportSound
Actor=TerrainMgr
Sound=Stalker_Blink
id=PylonRelease
Actor=GenericAttackDamageModel,GenericAttackDamageModelReaction,GenericAttackDamageSite,GenericAttackDamageSound,GenericAttackDamageTerrainSquibModel,GenericAttackDamageTerrainSquibSound,GenericAttackImpactFallbackSite,GenericAttackImpactModel,GenericAttackImpactModelReaction,GenericAttackImpactPointSite,GenericAttackImpactSite,GenericAttackImpactSound,GenericAttackImpactTerrainSquibModel,GenericAttackImpactTerrainSquibSound,GenericAttackLaunchFallbackSite,GenericAttackLaunchModel,GenericAttackLaunchSite,GenericAttackLaunchSound,GenericAttackLaunchTerrainSquibModel,GenericAttackLaunchTerrainSquibSound,##id##Missile,TerrainMgr
Model=HybridDAttackImpact
Sound=Raven_AutoTurretReleaseImpact,VoidSeeker_AttackLaunch
id=PylonReleaseMissile
Actor=TerrainMgr
Model=PylonPlacement
id=BenguraGlow
Actor=TerrainMgr
Model=BengaraGlow
id=FlametailBase
Actor=TerrainMgr
Model=YagdraBase
id=FlametailAttack
Actor=##id##Missile,GenericAttackDamageModel,GenericAttackDamageModelReaction,GenericAttackDamageSite,GenericAttackDamageSound,GenericAttackDamageTerrainSquibModel,GenericAttackDamageTerrainSquibSound,GenericAttackImpactFallbackSite,GenericAttackImpactModel,GenericAttackImpactModelReaction,GenericAttackImpactPointSite,GenericAttackImpactSite,GenericAttackImpactSound,GenericAttackImpactTerrainSquibModel,GenericAttackImpactTerrainSquibSound,GenericAttackLaunchFallbackSite,GenericAttackLaunchModel,GenericAttackLaunchSite,GenericAttackLaunchSound,GenericAttackLaunchTerrainSquibModel,GenericAttackLaunchTerrainSquibSound,TerrainMgr
Model=AshWormAttackImpact,AshWormAttackLaunch
Sound=Corruptor_AttackImpact,Corruptor_AttackLaunch2
id=FlametailAttackMissile
Actor=TerrainMgr
Model=AshWormWeapon