-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathItems.xml
1025 lines (1023 loc) · 60.2 KB
/
Items.xml
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
<root>
<category name="PROPS" id="props">
<category name="BARRELS">
<item type="prop" name="BARREL" tagindex="0x2eb5" />
<item type="prop" name="BARREL, SMALL" tagindex="0x2eb6" />
<item type="prop" name="DRUM, 12 GAL" tagindex="0x34c1" />
<item type="prop" name="DRUM, 55 GAL" tagindex="0x4df8" />
</category>
<category name="NATURAL">
<item type="prop" name="BUSH, A" tagindex="0x00004F04" />
<item type="prop" name="BUSH, B" tagindex="0x00004F09" />
<item type="prop" name="BUSH, SMALL" tagindex="0x00004EF5" />
<item type="prop" name="ICICLE, 10 INCH" tagindex="0x00003A14" />
<item type="prop" name="ICICLE, 18 INCH" tagindex="0x00003A15" />
<item type="prop" name="ICICLE, 24 INCH" tagindex="0x00004B4E" />
<item type="prop" name="ICICLE, 6 INCH" tagindex="0x000041E9" />
<item type="prop" name="PALM BUSH, LARGE" tagindex="0x0000522A" />
<item type="prop" name="PALM BUSH, MEDIUM" tagindex="0x0000521A" />
<item type="prop" name="PALM TREE, SMALL" tagindex="0x00005225" >
<!-- tag phased by default ONLY -->
<setter target="physics" value="0" type="int" hidden="true" />
</item>
<item type="prop" name="PINE TREE" tagindex="0x000034C3" >
<!-- tag phased by default ONLY -->
<setter target="physics" value="0" type="int" hidden="true" />
</item>
<item type="prop" name="PINE TREE, LARGE" tagindex="0x34c5" >
<!-- tag phased by default ONLY -->
<setter target="physics" value="0" type="int" hidden="true" />
</item>
</category>
<category name="COVER">
<item type="prop" name="AWNING" tagindex="0x000051EA" />
<!-- tag phased by default -->
<item type="prop" name="BARRICADE" tagindex="0x34aa" />
<item type="prop" name="BARRICADE, SMALL" tagindex="0x3fd4" />
<item type="prop" name="BARRIER" tagindex="0x47f2" />
<item type="prop" name="BARRIER, SHORT" tagindex="0x481a" />
<item type="prop" name="BATTLE SHIELD" tagindex="0x00005210" />
<item type="prop" name="DUMPSTER" tagindex="0x4225" />
<item type="prop" name="ROADBLOCK" tagindex="0x2eb8" />
<item type="prop" name="ROADBLOCK, LIGHT" tagindex="0x00005A83" />
<item type="prop" name="SANDBAGS" tagindex="0x50f3" />
<item type="prop" name="SANDBAGS, 45° CORNER" tagindex="0x4d4f" />
<item type="prop" name="SANDBAGS, 90° CORNER" tagindex="0x50e9" />
<item type="prop" name="SANDBAGS, ENDCAP" tagindex="0x50ee" />
<item type="prop" name="SANDBAGS, TURRET" tagindex="0x4d16" />
<item type="prop" name="SANDBAG, SINGLE" tagindex="0x50fd" />
<item type="prop" name="SANDBAG, TWO" tagindex="0x50f8" />
</category>
<category name="CRATES">
<item type="prop" name="AMMO CASE" tagindex="0x47b1" />
<item type="prop" name="AMMO CRATE" tagindex="0x3fd6" />
<item type="prop" name="AMMO CRATE, SMALL" tagindex="0x3fd5" />
<item type="prop" name="CABINET" tagindex="0x4224" />
<item type="prop" name="CONTAINER" tagindex="0x517a" />
<item type="prop" name="CONTAINER, OPEN" tagindex="0x5189" />
<item type="prop" name="CRATE, INDUSTRIAL" tagindex="0x27ef" />
<item type="prop" name="CRATE, MULTI" tagindex="0x444c" />
<item type="prop" name="CRATE, MULTI, DESTRUCTIBLE" tagindex="0x4221" />
<item type="prop" name="CRATE, SINGLE" tagindex="0x2eb3" />
<item type="prop" name="CRATE, SINGLE, LARGE" tagindex="0x2eb4" />
<item type="prop" name="DOUBLE BOX, OPEN" tagindex="0x4e10" />
<item type="prop" name="EQUIPMENT CASE" tagindex="0x2ebc" />
<item type="prop" name="EQUIPMENT CASE, LID" tagindex="0x00004EF0" />
<item type="prop" name="EQUIPMENT CASE, OPEN" tagindex="0x00004EE3" />
<item type="prop" name="EQUIPMENT CASE, SMALL" tagindex="0x34a6" />
<item type="prop" name="FENCE BOX" tagindex="0x4def" />
<item type="prop" name="MEDICAL CRATE" tagindex="0x34ab" />
<item type="prop" name="METAL CRATE" tagindex="0x3fd3" />
<item type="prop" name="METAL CRATE, SMALL" tagindex="0x4220" />
<item type="prop" name="SUPPLY CASE" tagindex="0x34c0" />
</category>
<category name="EXPLOSIVES">
<item type="prop" name="TRIP MINE (ARMED)" tagindex="0x00005A68" />
<item type="prop" name="PLASMA BATTERY" tagindex="0x2eba" />
<item type="prop" name="FUSION COIL" tagindex="0x34a4" />
<item type="prop" name="POWER CORE" tagindex="0x2ebb" />
<item type="prop" name="PROPANE BURNER" tagindex="0x4baa" />
<item type="prop" name="PROPANE TANK" tagindex="0x486d" />
</category>
<category name="FX">
<item type="fx" name="JUICY" tagindex="0x00B4">
<setter target="fx_saturation" type="float" value="1" />
<setter target="fx_desaturation" type="float" value="0" />
<setter target="fx_hue" type="float" value="0" />
<setter target="fx_color_filter_r" type="float" value="1" />
<setter target="fx_color_filter_g" type="float" value="0.92" />
<setter target="fx_color_filter_b" type="float" value="0.83" />
<setter target="fx_light_intensity" type="float" value="0" />
<setter target="fx_gamma_dec" type="float" value="0.5" />
<setter target="fx_gamma_inc" type="float" value="0" />
<setter target="fx_range" type="float" value="3" />
<setter target="physics" type="int" value="1" />
</item>
<item type="fx" name="NOVA" tagindex="0x00B4">
<setter target="fx_saturation" type="float" value="0.3" />
<setter target="fx_hue" type="float" value="0" />
<setter target="fx_color_filter_r" type="float" value="0.03" />
<setter target="fx_color_filter_g" type="float" value="0.03" />
<setter target="fx_color_filter_b" type="float" value="0.03" />
<setter target="fx_desaturation" type="float" value="0" />
<setter target="fx_light_intensity" type="float" value="1" />
<setter target="fx_gamma_dec" type="float" value="0.5" />
<setter target="fx_gamma_inc" type="float" value="0" />
<setter target="fx_range" type="float" value="3" />
<setter target="physics" type="int" value="1" />
</item>
<item type="fx" name="SEPIATONE" tagindex="0x00B4">
<setter target="fx_saturation" type="float" value="0.3" />
<setter target="fx_desaturation" type="float" value="1" />
<setter target="fx_hue" type="float" value="0.027" />
<setter target="fx_color_filter_r" type="float" value="0.55" />
<setter target="fx_color_filter_g" type="float" value="0.27" />
<setter target="fx_color_filter_b" type="float" value="0.15" />
<setter target="fx_light_intensity" type="float" value="0" />
<setter target="fx_gamma_dec" type="float" value="0.25" />
<setter target="fx_gamma_inc" type="float" value="0" />
<setter target="fx_range" type="float" value="3" />
<setter target="physics" type="int" value="1" />
</item>
<item type="fx" name="FILM" tagindex="0x00B4">
<setter target="fx_saturation" type="float" value="0" />
<setter target="fx_desaturation" type="float" value="1" />
<setter target="fx_hue" type="float" value="0" />
<setter target="fx_color_filter_r" type="float" value="0.784" />
<setter target="fx_color_filter_g" type="float" value="0.784" />
<setter target="fx_color_filter_b" type="float" value="0.784" />
<setter target="fx_light_intensity" type="float" value="0" />
<setter target="fx_gamma_dec" type="float" value="0" />
<setter target="fx_gamma_inc" type="float" value="0" />
<setter target="fx_range" type="float" value="3" />
<setter target="physics" type="int" value="1" />
</item>
<item type="fx" name="GLOOMY" tagindex="0x00B4">
<setter target="fx_saturation" type="float" value="0" />
<setter target="fx_desaturation" type="float" value="0.4" />
<setter target="fx_hue" type="float" value="5" />
<setter target="fx_color_filter_r" type="float" value="0.784" />
<setter target="fx_color_filter_g" type="float" value="0.784" />
<setter target="fx_color_filter_b" type="float" value="0.784" />
<setter target="fx_light_intensity" type="float" value="0.6" />
<setter target="fx_gamma_dec" type="float" value="1" />
<setter target="fx_gamma_inc" type="float" value="0.07" />
<setter target="fx_range" type="float" value="3" />
<setter target="physics" type="int" value="1" />
</item>
</category>
<category name="LIGHTS">
<item type="light" name="YELLOW" tagindex="0x00B0">
<setter target="light_color_r" type="float" value="0.5" />
<setter target="light_color_g" type="float" value="0.5" />
<setter target="light_color_b" type="float" value="0" />
<setter target="light_intensity" type="float" value="0.5" />
<setter target="light_radius" type="float" value="5" />
<setter target="physics" type="int" value="1" />
</item>
<item type="light" name="ORANGE" tagindex="0x00B0">
<setter target="light_color_r" type="float" value="0.5" />
<setter target="light_color_g" type="float" value="0.25" />
<setter target="light_color_b" type="float" value="0" />
<setter target="light_intensity" type="float" value="0.5" />
<setter target="light_radius" type="float" value="5" />
<setter target="physics" type="int" value="1" />
</item>
<item type="light" name="PINK" tagindex="0x00B0">
<setter target="light_color_r" type="float" value="0.5" />
<setter target="light_color_g" type="float" value="0" />
<setter target="light_color_b" type="float" value="0.25" />
<setter target="light_intensity" type="float" value="0.5" />
<setter target="light_radius" type="float" value="5" />
<setter target="physics" type="int" value="1" />
</item>
<item type="light" name="RED" tagindex="0x00B0">
<setter target="light_color_r" type="float" value="0.5" />
<setter target="light_color_g" type="float" value="0" />
<setter target="light_color_b" type="float" value="0" />
<setter target="light_intensity" type="float" value="0.5" />
<setter target="light_radius" type="float" value="5" />
<setter target="physics" type="int" value="1" />
</item>
<item type="light" name="PURPLE" tagindex="0x00B0">
<setter target="light_color_r" type="float" value="0.5" />
<setter target="light_color_g" type="float" value="0" />
<setter target="light_color_b" type="float" value="0.5" />
<setter target="light_intensity" type="float" value="50" />
<setter target="light_radius" type="float" value="5" />
<setter target="physics" type="int" value="1" />
</item>
<item type="light" name="BLUE" tagindex="0x00B0">
<setter target="light_color_r" type="float" value="0" />
<setter target="light_color_g" type="float" value="0" />
<setter target="light_color_b" type="float" value="0.5" />
<setter target="light_intensity" type="float" value="0.5" />
<setter target="light_radius" type="float" value="5" />
<setter target="physics" type="int" value="1" />
</item>
<item type="light" name="GREEN" tagindex="0x00B0">
<setter target="light_color_r" type="float" value="0" />
<setter target="light_color_g" type="float" value="0.5" />
<setter target="light_color_b" type="float" value="0" />
<setter target="light_intensity" type="float" value="0.5" />
<setter target="light_radius" type="float" value="5" />
<setter target="physics" type="int" value="1" />
</item>
</category>
<category name="TECH">
<item type="prop" name="COMPUTER" tagindex="0x5427" />
<item type="prop" name="COMPUTER, SMALL" tagindex="0x5441" />
<item type="prop" name="FLOODLIGHTS" tagindex="0x47bb" />
<item type="prop" name="FORKLIFT" tagindex="0x4965" />
<item type="prop" name="GENERATOR" tagindex="0x47cd" />
<item type="prop" name="GENERATOR, INDUSTRIAL" tagindex="0x0000493D" />
<item type="prop" name="GENERATOR, SMALL" tagindex="0x2ebd" />
<item type="prop" name="INDUSTRIAL CART" tagindex="0x444a" />
<item type="prop" name="MONITOR, MEDIUM" tagindex="0x4686" />
<item type="prop" name="MONITOR, SMALL" tagindex="0x469f" />
<item type="prop" name="RADIO SET" tagindex="0x2eaf" />
<item type="prop" name="RADIO SET, SMALL" tagindex="0x34a7" />
</category>
<category name="GADGETS">
<item type="prop" name="SOCCER BALL" tagindex="0x4e58" />
<item type="prop" name="WEAPON HOLDER" tagindex="0x2ebe" />
<item type="prop" name="GRAV LIFT" tagindex="0x2ebf" />
<item type="prop" name="LIFT, GOLD" tagindex="0x5AD5" />
<item type="prop" name="MAN CANNON" tagindex="0x4e46" />
<item type="prop" name="SHIELD DOOR" tagindex="0x4e41" />
<item type="prop" name="SHIELD DOOR 2" tagindex="0x3a94" />
<item type="prop" name="SHIELD DOOR, LARGE" tagindex="0x4e2b" />
<item type="prop" name="SHIELD DOOR, GOLD" tagindex="0x2ee5" />
</category>
<category name="OFFICE">
<item type="prop" name="CHAIR" tagindex="0x00004934" />
<item type="prop" name="COMPUTER MONITOR" tagindex="0x00004918" />
<item type="prop" name="FILING CABINET" tagindex="0x00004923" />
<item type="prop" name="FILING CABINET, SMALL" tagindex="0x0000492F" />
<item type="prop" name="KEYBOARD" tagindex="0x0000490E" />
<item type="prop" name="KITCHEN SINK" tagindex="0x46a4" />
<item type="prop" name="STAND" tagindex="0x000054D1" />
<item type="prop" name="TABLE" tagindex="0x4608" />
<item type="prop" name="TELEPHONE" tagindex="0x546b" />
<item type="prop" name="TELEPHONE, WALL" tagindex="0x000048EF" />
</category>
<category name="MISCELLANEOUS">
<item type="prop" name="BACKPACK" tagindex="0x00002EB0" />
<item type="prop" name="BEACON" tagindex="0x000055E6" />
<item type="prop" name="BLITZ CAN" tagindex="0x34c2" />
<item type="prop" name="BRIDGE" tagindex="0x4e20" />
<item type="prop" name="CAMPING STOOL" tagindex="0x2eb2" />
<item type="prop" name="CHAIN LINK GATE" tagindex="0x000054A2" />
<item type="prop" name="CROWBAR" tagindex="0x00005709" />
<item type="prop" name="DROP BRIDGE" tagindex="0x51c7" >
<!-- tag phased by default ONLY -->
<setter target="physics" value="0" type="int" hidden="true" />
</item>
<item type="prop" name="DROP POD, CLOSED" tagindex="0x34a8" />
<item type="prop" name="DROP POD, DEPLOYED" tagindex="0x0000348E" />
<item type="prop" name="DROP POD, PANEL" tagindex="0x34a9" />
<item type="prop" name="FLOOR HATCH" tagindex="0x00005495" />
<!-- tag phased by default -->
<item type="prop" name="GARBAGE CAN" tagindex="0x518e" />
<item type="prop" name="LOCKER" tagindex="0x47e5" />
<item type="prop" name="LOUDSPEAKER" tagindex="0x46be" />
<item type="prop" name="MEDICAL CABINET" tagindex="0x0000541C" />
<item type="prop" name="MEDICAL CART" tagindex="0x544a" />
<item type="prop" name="MEDICAL TRAY" tagindex="0x5460" />
<item type="prop" name="MISSILE, BODY" tagindex="0x4849" />
<item type="prop" name="MISSILE, STACK" tagindex="0x4662" />
<item type="prop" name="MISSILE, WARHEAD" tagindex="0x484e" />
<item type="prop" name="MONGOOSE PLATFORM" tagindex="0x3493" />
<item type="prop" name="PALLET" tagindex="0x4222" />
<item type="prop" name="PALLET, LARGE" tagindex="0x2eb7" />
<item type="prop" name="PHANTOM DESTROYED, BACK, LARGE" tagindex="0x000055FB" />
<item type="prop" name="PHANTOM DESTROYED, BACK, MEDIUM" tagindex="0x00005600" />
<item type="prop" name="PHANTOM DESTROYED, BACK, SMALL" tagindex="0x00005605" />
<item type="prop" name="PHANTOM DESTROYED, BOTTOM" tagindex="0x0000560A" />
<item type="prop" name="PHANTOM DESTROYED, FLAT, RIGHT" tagindex="0x00005614" />
<item type="prop" name="PHANTOM DESTROYED, SIDE, LEFT" tagindex="0x0000561E" />
<item type="prop" name="PHANTOM DESTROYED, SIDE, RIGHT" tagindex="0x00005623" />
<item type="prop" name="RADIO ANTENNAE" tagindex="0x34a5" />
<item type="prop" name="STREET CONE" tagindex="0x2eb9" />
<item type="prop" name="SWINGING DOOR" tagindex="0x4223" />
<!-- tag phased by default -->
<item type="prop" name="SWINGING LAMP" tagindex="0x000051FD" />
<!-- tag phased by default -->
<item type="prop" name="TOOLBOX" tagindex="0x4865" />
<item type="prop" name="TOOLBOX, SMALL" tagindex="0x4853" />
<item type="prop" name="TRASH CAN" tagindex="0x4226" />
<item type="prop" name="WARTHOG PLATFORM" tagindex="0x3492" />
<item type="prop" name="WARTHOG TIRE" tagindex="0x00002A76" />
<item type="prop" name="WEAPON SHELF" tagindex="0x46ad" />
<item type="prop" name="WIRE SPOOL" tagindex="0x4e08" />
</category>
</category>
<category name="STRUCTURE" id="structure" help="Primitive building blocks">
<category name="BLOCKS" help="Width">
<category name="0.1'" help="Depth">
<category name="0.5'">
<item type="structure" name="BLOCK [0.1 x 0.5 x 0.5]" tagindex="0x15c" />
</category>
<category name="1'">
<item type="structure" name="BLOCK [0.1 x 1 x 0.5]" tagindex="0x158" />
<item type="structure" name="BLOCK [0.1 x 1 x 1]" tagindex="0x148" />
</category>
<category name="2'">
<item type="structure" name="BLOCK [0.1 x 2 x 0.5]" tagindex="0x156" />
<item type="structure" name="BLOCK [0.1 x 2 x 1]" tagindex="0x14c" />
<item type="structure" name="BLOCK [0.1 x 2 x 2]" tagindex="0x155" />
</category>
<category name="3'">
<item type="structure" name="BLOCK [0.1 x 3 x 0.5]" tagindex="0x15a" />
<item type="structure" name="BLOCK [0.1 x 3 x 1]" tagindex="0x14a" />
<item type="structure" name="BLOCK [0.1 x 3 x 2]" tagindex="0x154" />
<item type="structure" name="BLOCK [0.1 x 3 x 3]" tagindex="0x153" />
</category>
<category name="4'">
<item type="structure" name="BLOCK [0.1 x 4 x 0.5]" tagindex="0x159" />
<item type="structure" name="BLOCK [0.1 x 4 x 1]" tagindex="0x149" />
<item type="structure" name="BLOCK [0.1 x 4 x 2]" tagindex="0x141" />
<item type="structure" name="BLOCK [0.1 x 4 x 3]" tagindex="0x152" />
<item type="structure" name="BLOCK [0.1 x 4 x 4]" tagindex="0x151" />
</category>
<category name="5'">
<item type="structure" name="BLOCK [0.1 x 5 x 0.5]" tagindex="0x15b" />
<item type="structure" name="BLOCK [0.1 x 5 x 1]" tagindex="0x14b" />
<item type="structure" name="BLOCK [0.1 x 5 x 2]" tagindex="0x14f" />
<item type="structure" name="BLOCK [0.1 x 5 x 3]" tagindex="0x14e" />
<item type="structure" name="BLOCK [0.1 x 5 x 4]" tagindex="0x14d" />
<item type="structure" name="BLOCK [0.1 x 5 x 5]" tagindex="0x150" />
</category>
<category name="10'">
<item type="structure" name="BLOCK [0.1 x 10 x 0.5]" tagindex="0x157" />
<item type="structure" name="BLOCK [0.1 x 10 x 1]" tagindex="0x145" />
<item type="structure" name="BLOCK [0.1 x 10 x 2]" tagindex="0x144" />
<item type="structure" name="BLOCK [0.1 x 10 x 3]" tagindex="0x143" />
<item type="structure" name="BLOCK [0.1 x 10 x 4]" tagindex="0x142" />
<item type="structure" name="BLOCK [0.1 x 10 x 5]" tagindex="0x146" />
<item type="structure" name="BLOCK [0.1 x 10 x 10]" tagindex="0x147" />
</category>
<category name="20'">
<item type="structure" name="BLOCK [0.1 x 20 x 20]" tagindex="0x15d" />
</category>
</category>
<category name="0.5'" help="Depth">
<category name="0.5'">
<item type="structure" name="BLOCK [0.5 x 0.5 x 0.5]" tagindex="0x12a" />
</category>
<category name="1'">
<item type="structure" name="BLOCK [0.5 x 1 x 0.5]" tagindex="0x12b" />
<item type="structure" name="BLOCK [0.5 x 1 x 1]" tagindex="0x132" />
</category>
<category name="2'">
<item type="structure" name="BLOCK [0.5 x 2 x 1]" tagindex="0x136" />
<item type="structure" name="BLOCK [0.5 x 2 x 2]" tagindex="0x13f" />
</category>
<category name="3'">
<item type="structure" name="BLOCK [0.5 x 3 x 1]" tagindex="0x134" />
<item type="structure" name="BLOCK [0.5 x 3 x 2]" tagindex="0x13e" />
<item type="structure" name="BLOCK [0.5 x 3 x 3]" tagindex="0x13d" />
</category>
<category name="4'">
<item type="structure" name="BLOCK [0.5 x 4 x 1]" tagindex="0x133" />
<item type="structure" name="BLOCK [0.5 x 4 x 2]" tagindex="0x129" />
<item type="structure" name="BLOCK [0.5 x 4 x 3]" tagindex="0x13c" />
<item type="structure" name="BLOCK [0.5 x 4 x 4]" tagindex="0x13b" />
</category>
<category name="5'">
<item type="structure" name="BLOCK [0.5 x 5 x 1]" tagindex="0x135" />
<item type="structure" name="BLOCK [0.5 x 5 x 2]" tagindex="0x139" />
<item type="structure" name="BLOCK [0.5 x 5 x 3]" tagindex="0x138" />
<item type="structure" name="BLOCK [0.5 x 5 x 4]" tagindex="0x137" />
<item type="structure" name="BLOCK [0.5 x 5 x 5]" tagindex="0x13a" />
</category>
<category name="10'">
<item type="structure" name="BLOCK [0.5 x 10 x 1]" tagindex="0x12f" />
<item type="structure" name="BLOCK [0.5 x 10 x 2]" tagindex="0x12e" />
<item type="structure" name="BLOCK [0.5 x 10 x 3]" tagindex="0x12d" />
<item type="structure" name="BLOCK [0.5 x 10 x 4]" tagindex="0x12c" />
<item type="structure" name="BLOCK [0.5 x 10 x 5]" tagindex="0x130" />
<item type="structure" name="BLOCK [0.5 x 10 x 10]" tagindex="0x131" />
</category>
<category name="20'">
<item type="structure" name="BLOCK [0.5 x 20 x 20]" tagindex="0x128" />
</category>
</category>
<category name="1'" help="Depth">
<category name="1'">
<item type="structure" name="BLOCK [1 x 1 x 1]" tagindex="0x11f" />
</category>
<category name="2'">
<item type="structure" name="BLOCK [1 x 2 x 1]" tagindex="0x11b" />
<item type="structure" name="BLOCK [1 x 2 x 2]" tagindex="0x140" />
</category>
<category name="3'">
<item type="structure" name="BLOCK [1 x 3 x 1]" tagindex="0x11d" />
<item type="structure" name="BLOCK [1 x 3 x 2]" tagindex="0x113" />
<item type="structure" name="BLOCK [1 x 3 x 3]" tagindex="0x114" />
</category>
<category name="4'">
<item type="structure" name="BLOCK [1 x 4 x 1]" tagindex="0x11e" />
<item type="structure" name="BLOCK [1 x 4 x 2]" tagindex="0x126" />
<item type="structure" name="BLOCK [1 x 4 x 3]" tagindex="0x115" />
<item type="structure" name="BLOCK [1 x 4 x 4]" tagindex="0x116" />
</category>
<category name="5'">
<item type="structure" name="BLOCK [1 x 5 x 1]" tagindex="0x11c" />
<item type="structure" name="BLOCK [1 x 5 x 2]" tagindex="0x118" />
<item type="structure" name="BLOCK [1 x 5 x 3]" tagindex="0x119" />
<item type="structure" name="BLOCK [1 x 5 x 4]" tagindex="0x11a" />
<item type="structure" name="BLOCK [1 x 5 x 5]" tagindex="0x117" />
</category>
<category name="10'">
<item type="structure" name="BLOCK [1 x 10 x 1]" tagindex="0x122" />
<item type="structure" name="BLOCK [1 x 10 x 2]" tagindex="0x123" />
<item type="structure" name="BLOCK [1 x 10 x 3]" tagindex="0x124" />
<item type="structure" name="BLOCK [1 x 10 x 4]" tagindex="0x125" />
<item type="structure" name="BLOCK [1 x 10 x 5]" tagindex="0x121" />
<item type="structure" name="BLOCK [1 x 10 x 10]" tagindex="0x120" />
</category>
<category name="20'">
<item type="structure" name="BLOCK [1 x 20 x 20]" tagindex="0x127" />
</category>
</category>
</category>
<category name="TRIANGLES">
<category name="RIGHT ANGLE" help="Depth">
<category name="0.1'">
<item type="structure" name="TRIANGLE [0.1 x 0.5 x 0.5]" tagindex="0x163" />
<item type="structure" name="TRIANGLE [0.1 x 1 x 1]" tagindex="0x164" />
<item type="structure" name="TRIANGLE [0.1 x 2 x 2]" tagindex="0x162" />
<item type="structure" name="TRIANGLE [0.1 x 3 x 3]" tagindex="0x161" />
<item type="structure" name="TRIANGLE [0.1 x 4 x 4]" tagindex="0x160" />
<item type="structure" name="TRIANGLE [0.1 x 5 x 5]" tagindex="0x15f" />
<item type="structure" name="TRIANGLE [0.1 x 10 x 10]" tagindex="0x15e" />
</category>
<category name="0.5'">
<item type="structure" name="TRIANGLE [0.5 x 0.5 x 0.5]" tagindex="0x112" />
<item type="structure" name="TRIANGLE [0.5 x 1 x 1]" tagindex="0x10b" />
<item type="structure" name="TRIANGLE [0.5 x 2 x 2]" tagindex="0x10f" />
<item type="structure" name="TRIANGLE [0.5 x 3 x 3]" tagindex="0x10e" />
<item type="structure" name="TRIANGLE [0.5 x 4 x 4]" tagindex="0x10d" />
<item type="structure" name="TRIANGLE [0.5 x 5 x 5]" tagindex="0x10c" />
<item type="structure" name="TRIANGLE [0.5 x 10 x 10]" tagindex="0x110" />
</category>
<category name="1'">
<item type="structure" name="TRIANGLE [1 x 0.5 x 0.5]" tagindex="0x105" />
<item type="structure" name="TRIANGLE [1 x 1 x 1]" tagindex="0x10a" />
<item type="structure" name="TRIANGLE [1 x 2 x 2]" tagindex="0x106" />
<item type="structure" name="TRIANGLE [1 x 3 x 3]" tagindex="0x107" />
<item type="structure" name="TRIANGLE [1 x 4 x 4]" tagindex="0x108" />
<item type="structure" name="TRIANGLE [1 x 5 x 5]" tagindex="0x109" />
<item type="structure" name="TRIANGLE [1 x 10 x 10]" tagindex="0x111" />
</category>
</category>
<category name="EQUILATERAL">
<item type="structure" name="TRIANGLE (EQUAL) [0.1 x 0.5 x 0.43]" tagindex="0xf7" />
<item type="structure" name="TRIANGLE (EQUAL) [0.1 x 1 x 0.87]" tagindex="0xf5" />
<item type="structure" name="TRIANGLE (EQUAL) [0.1 x 2 x 1.73]" tagindex="0xf4" />
<item type="structure" name="TRIANGLE (EQUAL) [0.1 x 3 x 2.6]" tagindex="0xf3" />
<item type="structure" name="TRIANGLE (EQUAL) [0.1 x 4 x 3.46]" tagindex="0xf2" />
<item type="structure" name="TRIANGLE (EQUAL) [0.1 x 5 x 4.33]" tagindex="0xf6" />
</category>
</category>
<category name="CYLINDERS">
<category name="CYLINDERS (FULL)">
<item type="structure" name="CYLINDER [0.5 x 0.5 x 0.1]" tagindex="0xd6" />
<item type="structure" name="CYLINDER [0.5 x 0.5 x 0.5]" tagindex="0xed" />
<item type="structure" name="CYLINDER [0.5 x 0.5 x 1]" tagindex="0xdd" />
<item type="structure" name="CYLINDER [0.5 x 0.5 x 2]" tagindex="0xe0" />
<item type="structure" name="CYLINDER [0.5 x 0.5 x 4]" tagindex="0xe3" />
<item type="structure" name="CYLINDER [1 x 1 x 0.1]" tagindex="0xd7" />
<item type="structure" name="CYLINDER [1 x 1 x 0.5]" tagindex="0xd8" />
<item type="structure" name="CYLINDER [1 x 1 x 1]" tagindex="0xdc" />
<item type="structure" name="CYLINDER [1 x 1 x 2]" tagindex="0xdf" />
<item type="structure" name="CYLINDER [1 x 1 x 4]" tagindex="0xe2" />
<item type="structure" name="CYLINDER [2 x 2 x 0.1]" tagindex="0xd5" />
<item type="structure" name="CYLINDER [2 x 2 x 0.5]" tagindex="0xd9" />
<item type="structure" name="CYLINDER [2 x 2 x 1]" tagindex="0xdb" />
<item type="structure" name="CYLINDER [2 x 2 x 2]" tagindex="0xde" />
<item type="structure" name="CYLINDER [2 x 2 x 4]" tagindex="0xe1" />
<item type="structure" name="CYLINDER [5 x 5 x 0.1]" tagindex="0xda" />
<item type="structure" name="CYLINDER [5 x 5 x 0.5]" tagindex="0xec" />
<item type="structure" name="CYLINDER [5 x 5 x 1]" tagindex="0xeb" />
<item type="structure" name="CYLINDER [5 x 5 x 2]" tagindex="0xea" />
<item type="structure" name="CYLINDER [5 x 5 x 4]" tagindex="0xe9" />
<item type="structure" name="CYLINDER [10 x 10 x 0.1]" tagindex="0xe8" />
<item type="structure" name="CYLINDER [10 x 10 x 0.5]" tagindex="0xe7" />
<item type="structure" name="CYLINDER [10 x 10 x 1]" tagindex="0xe6" />
<item type="structure" name="CYLINDER [10 x 10 x 2]" tagindex="0xe5" />
<item type="structure" name="CYLINDER [10 x 10 x 4]" tagindex="0xe4" />
</category>
<category name="CYLINDERS (HALF)">
<item type="structure" name="CYLINDER (HALF) [0.5 x 0.1 x 1]" tagindex="0xef" />
<item type="structure" name="CYLINDER (HALF) [0.5 x 0.1 x 2]" tagindex="0xee" />
<item type="structure" name="CYLINDER (HALF) [0.5 x 0.1 x 3]" tagindex="0xf0" />
<item type="structure" name="CYLINDER (HALF) [0.5 x 1 x 1]" tagindex="0x104" />
<item type="structure" name="CYLINDER (HALF) [0.5 x 1 x 2]" tagindex="0x101" />
<item type="structure" name="CYLINDER (HALF) [0.5 x 1 x 3]" tagindex="0xfe" />
<item type="structure" name="CYLINDER (HALF) [0.5 x 3 x 1]" tagindex="0xf9" />
<item type="structure" name="CYLINDER (HALF) [0.5 x 3 x 2]" tagindex="0x102" />
<item type="structure" name="CYLINDER (HALF) [0.5 x 3 x 3]" tagindex="0xff" />
<item type="structure" name="CYLINDER (HALF) [0.5 x 4 x 1]" tagindex="0xfa" />
<item type="structure" name="CYLINDER (HALF) [0.5 x 4 x 2]" tagindex="0x103" />
<item type="structure" name="CYLINDER (HALF) [0.5 x 4 x 3]" tagindex="0x100" />
<item type="structure" name="CYLINDER (HALF) [0.5 x 10 x 1]" tagindex="0xfb" />
<item type="structure" name="CYLINDER (HALF) [0.5 x 10 x 2]" tagindex="0xfc" />
<item type="structure" name="CYLINDER (HALF) [0.5 x 10 x 3]" tagindex="0xfd" />
</category>
</category>
<category name="HEMISPHERES" >
<category name="HEMISPHERES (ROUND)">
<item type="structure" name="HEMISPHERE [2 x 2 x 0.1]" tagindex="0xb9" />
<item type="structure" name="HEMISPHERE [2 x 2 x 0.5]" tagindex="0xb8" />
<item type="structure" name="HEMISPHERE [2 x 2 x 1]" tagindex="0xcf" />
<item type="structure" name="HEMISPHERE [5 x 5 x 0.25]" tagindex="0xbf" />
<item type="structure" name="HEMISPHERE [5 x 5 x 1]" tagindex="0xbe" />
<item type="structure" name="HEMISPHERE [5 x 5 x 2]" tagindex="0xbd" />
<item type="structure" name="HEMISPHERE [10 x 10 x 0.5]" tagindex="0xc5" />
<item type="structure" name="HEMISPHERE [10 x 10 x 2]" tagindex="0xc4" />
<item type="structure" name="HEMISPHERE [10 x 10 x 5]" tagindex="0xc3" />
<item type="structure" name="HEMISPHERE [20 x 20 x 1]" tagindex="0xcb" />
<item type="structure" name="HEMISPHERE [20 x 20 x 5]" tagindex="0xca" />
<item type="structure" name="HEMISPHERE [20 x 20 x 10]" tagindex="0xc9" />
</category>
<category name="HEMISPHERES (LONG)">
<item type="structure" name="HEMISPHERE [1 x 2 x 0.1]" tagindex="0xba" />
<item type="structure" name="HEMISPHERE [1 x 2 x 0.5]" tagindex="0xbb" />
<item type="structure" name="HEMISPHERE [1 x 2 x 1]" tagindex="0xbc" />
<item type="structure" name="HEMISPHERE [2 x 5 x 0.25]" tagindex="0xc0" />
<item type="structure" name="HEMISPHERE [2 x 5 x 1]" tagindex="0xc1" />
<item type="structure" name="HEMISPHERE [2 x 5 x 2]" tagindex="0xc2" />
<item type="structure" name="HEMISPHERE [5 x 10 x 1]" tagindex="0xc6" />
<item type="structure" name="HEMISPHERE [5 x 10 x 2]" tagindex="0xc7" />
<item type="structure" name="HEMISPHERE [5 x 10 x 5]" tagindex="0xc8" />
<item type="structure" name="HEMISPHERE [10 x 20 x 1]" tagindex="0xcc" />
<item type="structure" name="HEMISPHERE [10 x 20 x 5]" tagindex="0xcd" />
<item type="structure" name="HEMISPHERE [10 x 20 x 10]" tagindex="0xce" />
</category>
</category>
</category>
<category name="GAMEPLAY" id="gameplay">
<category name="GAMETYPE">
<category name="GENERAL">
<item type="general" name="RESPAWN POINT" tagindex="0x2e90" />
</category>
<category name="ASSAULT">
<item type="assault" name="BOMB PLANT POINT" tagindex="0x2ec6" />
<item type="assault" name="BOMB SPAWN POINT" tagindex="0x2ec5" />
<item type="assault" name="STARTING POINT" tagindex="0x2e98" />
<item type="assault" name="RESPAWN AREA" tagindex="0x2e99" />
</category>
<category name="CTF">
<item type="ctf" name="RESPAWN, FLAG HOME" tagindex="0x2e95" />
<item type="ctf" name="RESPAWN, FLAG AWAY" tagindex="0x2e96" />
<item type="ctf" name="FLAG RETURN POINT" tagindex="0x2ec4" />
<item type="ctf" name="FLAG SPAWN POINT" tagindex="0x2ec3" />
<item type="ctf" name="STARTING POINT" tagindex="0x2e91" />
<item type="ctf" name="RESPAWN AREA" tagindex="0x2e93" />
</category>
<category name="INFECTION">
<item type="infection" name="STARTING POINT" tagindex="0x2ea7" />
<item type="infection" name="RESPAWN AREA" tagindex="0x2ea8" />
<item type="infection" name="SAFE HAVEN" tagindex="0x2EDC" />
</category>
<category name="JUGGERNAUT">
<item type="juggernaut" name="GO TO POINT" tagindex="0x2ec7" />
</category>
<category name="KING OF THE HILL">
<item type="koth" name="HILL MARKER" tagindex="0x2ec8" />
<item type="koth" name="STARTING POINT" tagindex="0x2e9a" />
<item type="koth" name="RESPAWN AREA" tagindex="0x2e9b" />
</category>
<category name="ODDBALL">
<item type="oddball" name="BALL SPAWN POINT" tagindex="0x2ec9" />
<item type="oddball" name="STARTING POINT" tagindex="0x2e9d" />
<item type="oddball" name="RESPAWN AREA" tagindex="0x2ecc" />
</category>
<category name="TERRITORIES">
<item type="territories" name="STARTING POINT" tagindex="0x2e9c" />
<item type="territories" name="RESPAWN AREA" tagindex="0x2e97" />
<item type="territories" name="TERRITORY MARKER" tagindex="0x2eca" />
</category>
<category name="SLAYER">
<item type="slayer" name="STARTING POINT" tagindex="0x2e92" />
<item type="slayer" name="RESPAWN AREA" tagindex="0x2e94" />
</category>
<category name="VIP">
<item type="vip" name="GO TO POINT" tagindex="0x2ecb" />
<item type="vip" name="STARTING POINT" tagindex="0x2e9e" />
<item type="vip" name="RESPAWN AREA" tagindex="0x2e9f" />
</category>
</category>
<category name="MAP TOOLS">
<item type="tool" name="MAP MODIFIER" tagindex="0x5728" max_allowed="1">
<help>Map flags and flags and more flags</help>
<setter target="physics" value="1" type="int" hidden="true" />
</item>
<item type="tool" name="PREMATCH CAMERA" tagindex="0x00005A86" max_allowed="1">
<help>Pretty fucking obvious what this is.</help>
<setter target="physics" value="1" type="int" hidden="true" />
</item>
<item type="tool" name="KILL VOLUME" tagindex="0x00005A8E" >
<help>This kills people.</help>
</item>
<item type="tool" name="GARBAGE COLLECTION VOLUME" tagindex="0x00005A8F" >
<help>Deletes the selected objects from this volume.</help>
</item>
</category>
<category name="EQUIPMENT">
<category name="CLASSIC">
<item type="equipment" name="BUBBLE SHIELD" tagindex="0x1564" />
<item type="equipment" name="DEPLOYABLE COVER" tagindex="0x1569" />
<item type="equipment" name="FLARE" tagindex="0x1565" />
<item type="equipment" name="GRAV LIFT" tagindex="0x2ea9" />
<item type="equipment" name="INVINCIBILITY" tagindex="0x1a6c" />
<item type="equipment" name="POWER DRAIN" tagindex="0x1561" />
<item type="equipment" name="RADAR JAMMER" tagindex="0x1560" />
<item type="equipment" name="REGENERATOR" tagindex="0x1566" />
<item type="equipment" name="TRIP MINE" tagindex="0x1567" />
</category>
<category name="ARMOR ABILITIES">
<item type="equipment" name="CONCUSSIVE BLAST" tagindex="0x156b" />
<item type="equipment" name="HOLOGRAM" tagindex="0x156e" />
<item type="equipment" name="LIGHTNING STRIKE" tagindex="0x1573" />
<item type="equipment" name="REFLECTIVE SHIELD" tagindex="0x156f" />
<item type="equipment" name="VEHICLE CAMO" tagindex="0x1563" />
<item type="equipment" name="VISION" tagindex="0x1577" />
</category>
<category name="GRENADES">
<item type="equipment" name="FRAG GRENADE" tagindex="0x01ac" />
<item type="equipment" name="PLASMA GRENADE" tagindex="0x01af" />
<item type="equipment" name="FIREBOMB GRENADE" tagindex="0x01b5" />
<item type="equipment" name="SPIKE GRENADE" tagindex="0x01b2" />
</category>
<category name="POWERUPS">
<item type="equipment" name="ACTIVE CAMO" tagindex="0x2eaa" />
<item type="equipment" name="OVERSHIELDS" tagindex="0x2eab" />
<item type="equipment" name="CUSTOM POWERUP" tagindex="0x2eac" />
<item type="equipment" name="AMMO CRATE" tagindex="0x1b8e" />
<item type="equipment" name="AMMO CRATE, SMALL" tagindex="0x1b8f" />
</category>
</category>
<category name="WEAPONS">
<category name="ASSAULT RIFLES">
<item type="weapon" name="ASSAULT RIFLE" tagindex="0x151e" />
<item type="weapon" name="ASSAULT RIFLE, ACCURACY" tagindex="0x1583" />
<item type="weapon" name="ASSAULT RIFLE, DAMAGE" tagindex="0x1581" />
<item type="weapon" name="ASSAULT RIFLE, POWER" tagindex="0x1584" />
<item type="weapon" name="ASSAULT RIFLE, RATE OF FIRE" tagindex="0x1582" />
</category>
<category name="BATTLE RIFLES">
<item type="weapon" name="BATTLE RIFLE" tagindex="0x157c" />
<item type="weapon" name="BATTLE RIFLE, ACCURACY" tagindex="0x15bc" />
<item type="weapon" name="BATTLE RIFLE, AMMO" tagindex="0x1585" />
<item type="weapon" name="BATTLE RIFLE, DAMAGE" tagindex="0x1586" />
<item type="weapon" name="BATTLE RIFLE, POWER" tagindex="0x1587" />
<item type="weapon" name="BATTLE RIFLE, RANGE" tagindex="0x15bd" />
<item type="weapon" name="BATTLE RIFLE, RATE OF FIRE" tagindex="0x15bb" />
</category>
<category name="SMGS">
<item type="weapon" name="SMG" tagindex="0x157d" />
<item type="weapon" name="SMG, ACCURACY" tagindex="0x158d" />
<item type="weapon" name="SMG, DAMAGE" tagindex="0x158e" />
<item type="weapon" name="SMG, POWER" tagindex="0x158f" />
<item type="weapon" name="SMG, RATE OF FIRE" tagindex="0x158c" />
</category>
<category name="DMRS">
<item type="weapon" name="DMR" tagindex="0x1580" />
<item type="weapon" name="DMR, ACCURACY" tagindex="0x1588" />
<item type="weapon" name="DMR, AMMO" tagindex="0x15be" />
<item type="weapon" name="DMR, DAMAGE" tagindex="0x158a" />
<item type="weapon" name="DMR, POWER" tagindex="0x158b" />
<item type="weapon" name="DMR, RATE OF FIRE" tagindex="0x1589" />
</category>
<category name="CARBINES">
<item type="weapon" name="COVENANT CARBINE" tagindex="0x14fe" />
<item type="weapon" name="COVENANT CARBINE, ACCURACY" tagindex="0x15c4" />
<item type="weapon" name="COVENANT CARBINE, AMMO" tagindex="0x15c1" />
<item type="weapon" name="COVENANT CARBINE, DAMAGE" tagindex="0x15c3" />
<item type="weapon" name="COVENANT CARBINE, POWER" tagindex="0x1591" />
<item type="weapon" name="COVENANT CARBINE, RANGE" tagindex="0x15c2" />
<item type="weapon" name="COVENANT CARBINE, RATE OF FIRE" tagindex="0x15c0" />
</category>
<category name="PISTOLS">
<item type="weapon" name="MAULER" tagindex="0x1504" />
<item type="weapon" name="MAULER, POWER" tagindex="0x1592" />
<item type="weapon" name="MAGNUM" tagindex="0x157e" />
<item type="weapon" name="MAGNUM, DAMAGE" tagindex="0x1593" />
<item type="weapon" name="MAGNUM, POWER" tagindex="0x1594" />
<item type="weapon" name="PLASMA PISTOL" tagindex="0x14f7" />
<item type="weapon" name="PLASMA PISTOL, POWER" tagindex="0x1595" />
</category>
<category name="TURRETS">
<item type="weapon" name="MACHINE GUN TURRET" tagindex="0x284c" />
<item type="weapon" name="MACHINE GUN TURRET, DETACHED" tagindex="0x15b5" />
<item type="weapon" name="PLASMA CANNON" tagindex="0x14fb" />
<item type="weapon" name="PLASMA CANNON, DETACHED" tagindex="0x150e" />
<item type="weapon" name="MISSILE POD" tagindex="0x3a18" />
<item type="weapon" name="MISSILE POD, DETACHED" tagindex="0x1a54" />
</category>
<category name="POWER WEAPONS">
<item type="weapon" name="BEAM RIFLE" tagindex="0x1509" />
<item type="weapon" name="BRUTE SHOT" tagindex="0x14ff" />
<item type="weapon" name="ENERGY SWORD" tagindex="0x159e" />
<item type="weapon" name="FLAMETHROWER" tagindex="0x1a55" />
<item type="weapon" name="FUEL ROD GUN" tagindex="0x14f9" />
<item type="weapon" name="GRAVITY HAMMER" tagindex="0x150c" />
<item type="weapon" name="NEEDLER" tagindex="0x14f8" />
<item type="weapon" name="PLASMA RIFLE" tagindex="0x1525" />
<item type="weapon" name="PLASMA RIFLE, POWER" tagindex="0x1590" />
<item type="weapon" name="ROCKET LAUNCHER" tagindex="0x15b3" />
<item type="weapon" name="SENTINEL BEAM" tagindex="0x1a56" />
<item type="weapon" name="SHOTGUN" tagindex="0x1a45" />
<item type="weapon" name="SNIPER RIFLE" tagindex="0x15b1" />
<item type="weapon" name="SPARTAN LASER" tagindex="0x15b2" />
<item type="weapon" name="SPIKER" tagindex="0x1500" />
</category>
</category>
<category name="VEHICLES">
<item type="vehicle" name="BANSHEE" tagindex="0x151a" />
<item type="vehicle" name="CHOPPER" tagindex="0x1518" />
<item type="vehicle" name="ELEPHANT" tagindex="0x00005A69" />
<item type="vehicle" name="GHOST" tagindex="0x1517" />
<item type="vehicle" name="HORNET" tagindex="0x1598" />
<item type="vehicle" name="HORNET, LITE" tagindex="0x159b" />
<item type="vehicle" name="MONGOOSE" tagindex="0x1596" />
<item type="vehicle" name="PROWLER" tagindex="0x5380" />
<item type="vehicle" name="SCORPION" tagindex="0x1520" />
<item type="vehicle" name="SHADE TURRET" tagindex="0x1516" />
<item type="vehicle" name="WARTHOG" tagindex="0x151f" />
<item type="vehicle" name="WARTHOG, GAUSS" tagindex="0x4441" />
<item type="vehicle" name="WARTHOG, TROOP" tagindex="0x4442" />
<item type="vehicle" name="WARTHOG, CIVILIAN" tagindex="0x4443" />
<item type="vehicle" name="WARTHOG, DISABLED" tagindex="0x4447" />
<item type="vehicle" name="WARTHOG, SNOW" tagindex="0x1599" />
<item type="vehicle" name="WARTHOG, SNOW, GAUSS" tagindex="0x4444" />
<item type="vehicle" name="WARTHOG, SNOW, TROOP" tagindex="0x4445" />
<item type="vehicle" name="WARTHOG, SNOW, CIVILIAN" tagindex="0x4446" />
<item type="vehicle" name="WARTHOG, SNOW, DISABLED" tagindex="0x4448" />
<item type="vehicle" name="WRAITH" tagindex="0x1519" />
<item type="vehicle" name="WRAITH, ANTI-AIR" tagindex="0x4449" />
</category>
<category name="TELEPORTERS">
<item type="teleporter" name="TWO-WAY" tagindex="0x2ec2" />
<item type="teleporter" name="RECEIVER" tagindex="0x2ec1" />
<item type="teleporter" name="SENDER" tagindex="0x2ec0" />
<item type="teleporter" name="SENDER, VEHICLE ONLY" tagindex="0x4451" />
<item type="teleporter" name="RECEIVER, VEHICLE ONLY" tagindex="0x4452" />
<item type="teleporter" name="TWO-WAY, VEHICLE ONLY" tagindex="0x4453" />
<item type="teleporter" name="SENDER, VEHICLE" tagindex="0x444e" />
<item type="teleporter" name="RECEIVER, VEHICLE" tagindex="0x444f" />
<item type="teleporter" name="TWO-WAY, VEHICLE" tagindex="0x4450" />
</category>
</category>
<category name="ENHANCED FORGE 2" id="ef2">
<category name="Weapons">
<category name="Objective Weapons">
<item type="weapon" name="Bomb" tagindex="0x15a4"/>
<item type="weapon" name="Oddball" tagindex="0x15a3"/>
<item type="weapon" name="Flag" tagindex="0x15a2"/>
</category>
<category name="Activated Equipment">
<item type="equipment" name="Activated Bubble Shield" tagindex="0x196E"/>
<item type="equipment" name="Activated Deployable Cover" tagindex="0x1B04"/>
<item type="equipment" name="Activated Radar Jammer" tagindex="0x18AC"/>
<item type="equipment" name="Activated Powerdrain" tagindex="0x15D2"/>
<item type="equipment" name="Activated Regenerator" tagindex="0x19C5"/>
<item type="equipment" name="Activated Flare" tagindex="0x15D3"/>
</category>
<category name="Turrets">
<item type="weapon" name="Gauss Turret" tagindex="0x29ED"/>
<item type="weapon" name="Chaingun Turret" tagindex="0x29EC"/>
<item type="weapon" name="Scorpion Turret" tagindex="0x28C7"/>
<item type="weapon" name="Wraith Turret" tagindex="0x3743"/>
<item type="weapon" name="Prowler Turret" tagindex="0x53A2"/>
</category>
</category>
<category name="Props">
<category name="Bipeds">
<item type="prop" name="Spartan" tagindex="0x01DD"/>
<item type="prop" name="Monitor" tagindex="0x15A0"/>
<item type="prop" name="Spartan Hologram" tagindex="0x0C13"/>
<item type="prop" name="Spartan, Knife *#" tagindex="0x0C17"/>
</category>
<category name ="Armors">
<item type="prop" name="Mark VI *#" tagindex="0x002A" />
<item type="prop" name="CBQ *#" tagindex="0x0032" />
<item type="prop" name="EVA *#" tagindex="0x003A" />
<item type="prop" name="Recon *#" tagindex="0x0042" />
<item type="prop" name="EOD *#" tagindex="0x004A" />
<item type="prop" name="Hayabusa *#" tagindex="0x0052" />
<item type="prop" name="Security *#" tagindex="0x005A" />
<item type="prop" name="Scout *#" tagindex="0x0063" />
<item type="prop" name="ODST *#" tagindex="0x006B" />
<item type="prop" name="Mark V *#" tagindex="0x0073" />
<item type="prop" name="Rogue *#" tagindex="0x007B" />
<item type="prop" name="Bungie *#" tagindex="0x007E" />
<item type="prop" name="Katana *#" tagindex="0x0081" />
</category>
<category name="Vehicle Parts">
<category name="Scorpion">
<item type="prop" name="Scorpion, Drivers Hatch" tagindex="0x2996"/>
<item type="prop" name="Scorpion, Duffle Bag" tagindex="0x2988"/>
<item type="prop" name="Scorpion, Engine Panel" tagindex="0x2989"/>
<item type="prop" name="Scorpion, Engine Panel Large" tagindex="0x2987"/>
<item type="prop" name="Scorpion, Left Back Tread" tagindex="0x2978"/>
<item type="prop" name="Scorpion, Left Back Tread Cover" tagindex="0x29B6"/>
<item type="prop" name="Scorpion, Left Front Tread" tagindex="0x2982"/>
<item type="prop" name="Scorpion, Large Panel" tagindex="0x29A4"/>
<item type="prop" name="Scorpion, Tread Cover" tagindex="0x29A3"/>
<item type="prop" name="Scorpion, Right Back Tread" tagindex="0x297D"/>
<item type="prop" name="Scorpion, Right Back Tread Cover" tagindex="0x29C0"/>
<item type="prop" name="Scorpion, Right Back Tread Cover" tagindex="0x29BB"/>
<item type="prop" name="Scorpion, Right Front Tread" tagindex="0x2964"/>
<item type="prop" name="Scorpion, Tread Side Panel" tagindex="0x29A5"/>
<item type="prop" name="Scorpion, Broken Turret" tagindex="0x2941"/>
<item type="prop" name="Scorpion, Broken Cannon" tagindex="0x2958"/>
</category>
<category name="Warthog">
<item type="prop" name="Warthog, Chaingun Barrel" tagindex="0x2A0B"/>
<item type="prop" name="Warthog, Turret Shield" tagindex="0x2A0B"/>
<item type="prop" name="Warthog, Floodlights" tagindex="0x2A65"/>
</category>
<category name="Chopper">
<item type="prop" name="Chopper, Rear Part" tagindex="0x3907"/>
<item type="prop" name="Chopper, Left Part" tagindex="0x390D"/>
<item type="prop" name="Chopper, Right Part" tagindex="0x3912"/>
<item type="prop" name="Chopper, Left Blade" tagindex="0x3917"/>
<item type="prop" name="Chopper, Right Blade" tagindex="0x391C"/>
<item type="prop" name="Chopper, Left Rotor" tagindex="0x3901"/>
<item type="prop" name="Chopper, Right Rotor" tagindex="0x38FA"/>
<item type="prop" name="Chopper, Seat" tagindex="0x38E9"/>
</category>
<category name="Ghost">
<item type="prop" name="Ghost, Anti-Grav" tagindex="0x387E"/>
<item type="prop" name="Ghost, Hull" tagindex="0x388B"/>
<item type="prop" name="Ghost, Gun" tagindex="0x386C"/>
<item type="prop" name="Ghost, Wing" tagindex="0x386B"/>
<item type="prop" name="Ghost, Seat" tagindex="0x3883"/>
</category>
<category name="Hornet">
<item type="prop" name="Hornet, Cover" tagindex="0x2D0D"/>
<item type="prop" name="Hornet, Right Cover" tagindex="0x2D08"/>
<item type="prop" name="Hornet, Flap" tagindex="0x2CEA"/>
<item type="prop" name="Hornet, Left Gun" tagindex="0x2D21"/>
<item type="prop" name="Hornet, Right Gun" tagindex="0x2D1C"/>
<item type="prop" name="Hornet, Jet" tagindex="0x2CE7"/>
<item type="prop" name="Hornet, Right Jet" tagindex="0x2CFE"/>
<item type="prop" name="Hornet, Landing Gear" tagindex="0x2CE0"/>
<item type="prop" name="Hornet, Rotor" tagindex="0x2CE9"/>
<item type="prop" name="Hornet, Left Skid" tagindex="0x2D17"/>
<item type="prop" name="Hornet, Right Skid" tagindex="0x2D12"/>
<item type="prop" name="Hornet, Tail" tagindex="0x2CBF"/>
<item type="prop" name="Hornet, Thruster" tagindex="0x2CE8"/>
<item type="prop" name="Hornet, Winch" tagindex="0x2D03"/>
</category>
<category name="Prowler">
<item type="prop" name="Prowler, Clamp" tagindex="0x53E3"/>
<item type="prop" name="Prowler, Gear" tagindex="0x53D2"/>
<item type="prop" name="Prowler, Hull" tagindex="0x53C6"/>
<item type="prop" name="Prowler, Left Skid" tagindex="0x53B4"/>
<item type="prop" name="Prowler, Right Skid" tagindex="0x53BA"/>
<item type="prop" name="Prowler, Scoop" tagindex="0x53D8"/>
<item type="prop" name="Prowler, Seat" tagindex="0x53C0"/>
<item type="prop" name="Prowler, Sprocket" tagindex="0x53CD"/>
<item type="prop" name="Prowler, Broken Turret" tagindex="0x53A9"/>
</category>
<category name="Mongoose">
<item type="prop" name="Mongoose, Cargo Shelf" tagindex="0x3135"/>
<item type="prop" name="Mongoose, Left Cowl" tagindex="0x313E"/>
<item type="prop" name="Mongoose, Right Cowl" tagindex="0x313F"/>
<item type="prop" name="Mongoose, Left Back Fender" tagindex="0x314E"/>
<item type="prop" name="Mongoose, Ramp" tagindex="0x312D"/>
<item type="prop" name="Mongoose, Right Back Fender" tagindex="0x3154"/>
<item type="prop" name="Mongoose, Wheel" tagindex="0x311D"/>
</category>
<category name="Shade">
<item type="prop" name="Shade, Door" tagindex="0x30E1"/>
<item type="prop" name="Shade, Gun" tagindex="0x30D3"/>
<item type="prop" name="Shade, Ring" tagindex="0x30C5"/>
</category>
<category name="Wraith">
<item type="prop" name="Wraith, Left Pods" tagindex="0x37C6"/>
<item type="prop" name="Wraith, Right Pods" tagindex="0x37C7"/>
<item type="prop" name="Wraith, Broken Turret" tagindex="0x379F"/>
<item type="prop" name="Wraith, Gear" tagindex="0x380B"/>
<item type="prop" name="Wraith, Hatch" tagindex="0x37ED"/>
<item type="prop" name="Wraith, Left Mortar Deflector" tagindex="0x377B"/>
<item type="prop" name="Wraith, Mortar Door" tagindex="0x378A"/>
<item type="prop" name="Wraith, Mortar Gun" tagindex="0x377C"/>
<item type="prop" name="Wraith, Mortar Hatch" tagindex="0x3806"/>
<item type="prop" name="Wraith, Right Rudder" tagindex="0x3801"/>
<item type="prop" name="Wraith, Rudder Shell" tagindex="0x37FC"/>
<item type="prop" name="Wraith, Right Wing Boost" tagindex="0x37F7"/>
<item type="prop" name="Wraith, Left Wing Boost" tagindex="0x37F2"/>
<item type="prop" name="Wraith, Left Wing" tagindex="0x37D7"/>
<item type="prop" name="Wraith, Right Wing" tagindex="0x37E7"/>
</category>
<category name="Banshee">
<item type="prop" name="Banshee, Cab" tagindex="0x36AC"/>
<item type="prop" name="Banshee, Bottom Fin" tagindex="0x36C9"/>
<item type="prop" name="Banshee, Bottom Fin" tagindex="0x36C0"/>
<item type="prop" name="Banshee, Top Fin" tagindex="0x36BF"/>
<item type="prop" name="Banshee, Left Wing" tagindex="0x36CE"/>
<item type="prop" name="Banshee, Wing Prong" tagindex="0x36E0"/>
</category>
</category>
</category>
<category name="Diamondback">
<item type="prop" name="Gravlift" tagindex="0x3A9F"/>
<item type="prop" name="Gravlift" tagindex="0x3AA0"/>
<item type="prop" name="Gravlift" tagindex="0x3AA1"/>
<item type="prop" name="Gravlift" tagindex="0x3AA2"/>
<item type="prop" name="Gravlift" tagindex="0x3AA3"/>
<item type="prop" name="Gravlift" tagindex="0x3AA4"/>
<item type="prop" name="Floor Crack" tagindex="0x3A17"/>
<item type="prop" name="Mancannon" tagindex="0x3A19"/>
<item type="prop" name="Mancannon" tagindex="0x3A1A"/>
</category>
<category name="Edge">
<item type="prop" name="Gold Lift" tagindex="0x3E08"/>
</category>
<category name="Guardian">
<item type="prop" name="Gold Lift" tagindex="0x2ED9"/>
<item type="prop" name="Gravlift" tagindex="0x2EDA"/>
<item type="prop" name="Gravlift" tagindex="0x2EDB"/>
<item type="prop" name="Mini lift" tagindex="0x2EDD"/>
<item type="prop" name="Jungle Vine #" tagindex="0x2EE6">
<!-- tag phased by default ONLY -->
<setter target="physics" value="0" type="int" hidden="true" />
</item>
<item type="prop" name="Jungle Vine #" tagindex="0x2EE7">
<!-- tag phased by default ONLY -->
<setter target="physics" value="0" type="int" hidden="true" />
</item>
<item type="prop" name="Jungle Vine #" tagindex="0x2EE8">
<!-- tag phased by default ONLY -->
<setter target="physics" value="0" type="int" hidden="true" />
</item>
<item type="prop" name="Blue Hologram *# " tagindex="0x2EA4"/>
<item type="prop" name="Jittery Hologram 1 #" tagindex="0x2edf"/>
<item type="prop" name="Jittery Hologram 2 #" tagindex="0x2ee0"/>
<item type="prop" name="Jittery Hologram 3 #" tagindex="0x2ee2"/>
<item type="prop" name="Jittery Hologram 4" tagindex="0x2ee3"/>
</category>
<category name="High Ground">
<item type="prop" name="Chain link Gate 2" tagindex="0x54A2" >
<!-- tag phased by default ONLY -->
<setter target="physics" value="0" type="int" hidden="true" />
</item>
<item type="prop" name="Metal Gate" tagindex="0x535F"/>
</category>
<category name="Icebox">
<item type="prop" name="Antenna" tagindex="0x41EA"/>
<item type="prop" name="Flatbed Car" tagindex="0x41EB"/>
<item type="prop" name="Metal Box" tagindex="0x41ED"/>
<item type="prop" name="Hornet" tagindex="0x41EF"/>
<item type="prop" name="Train *#" tagindex="0x41EC"/>
</category>
<category name="Last Resort">
<item type="prop" name="Big Wheel" tagindex="0x510D"/>
<item type="prop" name="Barriers" tagindex="0x5102"/>
<item type="prop" name="Barriers" tagindex="0x511C"/>
<item type="prop" name="Control Panel" tagindex="0x512b"/>
<item type="prop" name="Dead Seagul" tagindex="0x5239"/>
</category>
<category name="Narrows">
<item type="prop" name="Gravlift" tagindex="0x4BC8"/>
</category>
<category name="Reactor">
<item type="prop" name="Pelican" tagindex="0x27C7">
<!-- tag phased by default ONLY -->
<setter target="physics" value="0" type="int" hidden="true" />
</item>
<item type="prop" name="Light, Red *#" tagindex="0x3F8A"/>
<item type="prop" name="Light, Blue *#" tagindex="0x3F8B"/>
<item type="prop" name="Light, Yellow *#" tagindex="0x3F8C"/>
<item type="prop" name="Frigate *#" tagindex="0x3F89"/>
</category>
<category name="Sandtrap">
<item type="prop" name="Gravlift" tagindex="0x56F5"/>
<item type="prop" name="Davinci Egg" tagindex="0x5699"/>
<item type="prop" name="Frigate *#" tagindex="0x55EE"/>
</category>
<category name="Standoff">
<item type="prop" name="Bunker Door" tagindex="0x4D7D"/>
<item type="prop" name="Bunker Windows" tagindex="0x4D8C"/>
<item type="prop" name="Bunker Windows" tagindex="0x4DA7"/>
<item type="prop" name="Bunker Switch" tagindex="0x4D9A"/>
<item type="prop" name="Satellite *#" tagindex="0x4D20"/>
<item type="prop" name="Satellite *#" tagindex="0x4D54"/>
</category>
<category name="The Pit">
<item type="prop" name="Gravlift" tagindex="0x4950"/>
<item type="prop" name="Dead Bird 1" tagindex="0x49B1"/>
<item type="prop" name="Dead Bird 2" tagindex="0x49C3"/>
<item type="prop" name="Dead Bird 3" tagindex="0x49DE"/>
<item type="prop" name="Camera" tagindex="0x4703">