forked from Realm667/WolfenDoom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathboadefs.bm
1094 lines (1046 loc) · 82.2 KB
/
boadefs.bm
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
//////////////////////////
// BRIGHTMAPS FOR DOORS //
//////////////////////////
// Short named = 8 characters max! Use only longnamed on maps - Ozy81 :P
Brightmap Texture astr_dr0 { Map "materials/brightmaps/textures/astr_dr0.png" }
Brightmap Texture astr_dr2 { Map "materials/brightmaps/textures/astr_dr2.png" }
Brightmap Texture door_b03 { Map "materials/brightmaps/textures/door_b03.png" }
Brightmap Texture door_b04 { Map "materials/brightmaps/textures/door_b04.png" }
Brightmap Texture door_b05 { Map "materials/brightmaps/textures/door_b05.png" }
Brightmap Texture door_rs2 { Map "materials/brightmaps/textures/door_rs2.png" }
Brightmap Texture door_rs3 { Map "materials/brightmaps/textures/door_rs3.png" }
Brightmap Texture door_rs4 { Map "materials/brightmaps/textures/door_rs4.png" }
Brightmap Texture ASTR_SIL { Map "materials/brightmaps/textures/astr_sil.png" }
Brightmap Texture ASTR_SI5 { Map "materials/brightmaps/textures/astr_si5.png" }
// The same, but with long names
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_dr0.png" { Map "materials/brightmaps/textures/astr_dr0.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_dr2.png" { Map "materials/brightmaps/textures/astr_dr2.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_si5.png" { Map "materials/brightmaps/textures/astr_si5.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_sil.png" { Map "materials/brightmaps/textures/astr_sil.png" }
Brightmap Texture "TEXTURES/NORSE/nors_a71.png" { Map "materials/brightmaps/textures/nors_a71.png" }
Brightmap Texture "TEXTURES/NORSE/nors_d14.png" { Map "materials/brightmaps/textures/nors_d14.png" }
Brightmap Texture "TEXTURES/NORSE/nors_m01.png" { Map "materials/brightmaps/textures/nors_m01.png" }
Brightmap Texture "TEXTURES/NORSE/nors_pr4.png" { Map "materials/brightmaps/textures/nors_pr4.png" }
Brightmap Texture "TEXTURES/NORSE/nors_t03.png" { Map "materials/brightmaps/textures/nors_t03.png" }
Brightmap Texture "TEXTURES/NORSE/nors_w02.png" { Map "materials/brightmaps/textures/nors_w02.png" }
Brightmap Texture "TEXTURES/door_b00p.png" { Map "materials/brightmaps/textures/door_b00p.png" }
Brightmap Texture "TEXTURES/door_b00y.png" { Map "materials/brightmaps/textures/door_b00y.png" }
Brightmap Texture "TEXTURES/door_b02g.png" { Map "materials/brightmaps/textures/door_b02g.png" }
Brightmap Texture "TEXTURES/door_b02r.png" { Map "materials/brightmaps/textures/door_b02r.png" }
Brightmap Texture "TEXTURES/door_b03.png" { Map "materials/brightmaps/textures/door_b03.png" }
Brightmap Texture "TEXTURES/door_b03_open.png" { Map "materials/brightmaps/textures/door_b03_open.png" }
Brightmap Texture "TEXTURES/door_b03c.png" { Map "materials/brightmaps/textures/door_b03c.png" }
Brightmap Texture "TEXTURES/door_b03c_open.png" { Map "materials/brightmaps/textures/door_b03c_open.png" }
Brightmap Texture "TEXTURES/door_b03gr.png" { Map "materials/brightmaps/textures/door_b03gr.png" }
Brightmap Texture "TEXTURES/door_b03gr_open.png" { Map "materials/brightmaps/textures/door_b03gr_open.png" }
Brightmap Texture "TEXTURES/door_b04.png" { Map "materials/brightmaps/textures/door_b04.png" }
Brightmap Texture "TEXTURES/door_b04_open.png" { Map "materials/brightmaps/textures/door_b04_open.png" }
Brightmap Texture "TEXTURES/door_b05.png" { Map "materials/brightmaps/textures/door_b05.png" }
Brightmap Texture "TEXTURES/door_b05_open.png" { Map "materials/brightmaps/textures/door_b05_open.png" }
Brightmap Texture "TEXTURES/door_b08c.png" { Map "materials/brightmaps/textures/door_b08c.png" }
Brightmap Texture "TEXTURES/door_b08g.png" { Map "materials/brightmaps/textures/door_b08g.png" }
Brightmap Texture "TEXTURES/door_b08p.png" { Map "materials/brightmaps/textures/door_b08p.png" }
Brightmap Texture "TEXTURES/door_b08r.png" { Map "materials/brightmaps/textures/door_b08r.png" }
Brightmap Texture "TEXTURES/door_b08y.png" { Map "materials/brightmaps/textures/door_b08y.png" }
Brightmap Texture "TEXTURES/door_b20b.png" { Map "materials/brightmaps/textures/door_b20b.png" }
Brightmap Texture "TEXTURES/door_b20b_open.png" { Map "materials/brightmaps/textures/door_b20b_open.png" }
Brightmap Texture "TEXTURES/door_b15b.png" { Map "materials/brightmaps/textures/door_b15b.png" }
Brightmap Texture "TEXTURES/door_b15b_open.png" { Map "materials/brightmaps/textures/door_b15b_open.png" }
Brightmap Texture "TEXTURES/door_b20r.png" { Map "materials/brightmaps/textures/door_b20r.png" }
Brightmap Texture "TEXTURES/door_b20r_open.png" { Map "materials/brightmaps/textures/door_b20r_open.png" }
Brightmap Texture "TEXTURES/door_b20y.png" { Map "materials/brightmaps/textures/door_b20y.png" }
Brightmap Texture "TEXTURES/door_b20y_open.png" { Map "materials/brightmaps/textures/door_b20y_open.png" }
Brightmap Texture "TEXTURES/door_b21b.png" { Map "materials/brightmaps/textures/door_b21b.png" }
Brightmap Texture "TEXTURES/door_b21r.png" { Map "materials/brightmaps/textures/door_b21r.png" }
Brightmap Texture "TEXTURES/door_b21y.png" { Map "materials/brightmaps/textures/door_b21y.png" }
Brightmap Texture "TEXTURES/door_b23.png" { Map "materials/brightmaps/textures/door_b03.png" }
Brightmap Texture "TEXTURES/door_b23_open.png" { Map "materials/brightmaps/textures/door_b03_open.png" }
Brightmap Texture "TEXTURES/door_b24.png" { Map "materials/brightmaps/textures/door_b03c.png" }
Brightmap Texture "TEXTURES/door_b24_open.png" { Map "materials/brightmaps/textures/door_b03c_open.png" }
Brightmap Texture "TEXTURES/door_b25.png" { Map "materials/brightmaps/textures/door_b04.png" }
Brightmap Texture "TEXTURES/door_b25_open.png" { Map "materials/brightmaps/textures/door_b04_open.png" }
Brightmap Texture "TEXTURES/door_b26.png" { Map "materials/brightmaps/textures/door_b03gr.png" }
Brightmap Texture "TEXTURES/door_b26_open.png" { Map "materials/brightmaps/textures/door_b03gr_open.png" }
Brightmap Texture "TEXTURES/door_b27.png" { Map "materials/brightmaps/textures/door_b05.png" }
Brightmap Texture "TEXTURES/door_b27_open.png" { Map "materials/brightmaps/textures/door_b05_open.png" }
Brightmap Texture "TEXTURES/door_b89b.png" { Map "materials/brightmaps/textures/door_b89b.png" }
Brightmap Texture "TEXTURES/door_b89g.png" { Map "materials/brightmaps/textures/door_b89g.png" }
Brightmap Texture "TEXTURES/door_b89gr.png" { Map "materials/brightmaps/textures/door_b89gr.png" }
Brightmap Texture "TEXTURES/door_b89p.png" { Map "materials/brightmaps/textures/door_b89p.png" }
Brightmap Texture "TEXTURES/door_b89r.png" { Map "materials/brightmaps/textures/door_b89r.png" }
Brightmap Texture "TEXTURES/door_bu2g.png" { Map "materials/brightmaps/textures/door_bu2g.png" }
Brightmap Texture "TEXTURES/door_bu2r.png" { Map "materials/brightmaps/textures/door_bu2r.png" }
Brightmap Texture "TEXTURES/door_f00_b.png" { Map "materials/brightmaps/textures/door_f00_b.png" }
Brightmap Texture "TEXTURES/door_f00_c.png" { Map "materials/brightmaps/textures/door_f00_c.png" }
Brightmap Texture "TEXTURES/door_f00_g.png" { Map "materials/brightmaps/textures/door_f00_g.png" }
Brightmap Texture "TEXTURES/door_f00_m.png" { Map "materials/brightmaps/textures/door_f00_m.png" }
Brightmap Texture "TEXTURES/door_f00_r.png" { Map "materials/brightmaps/textures/door_f00_r.png" }
Brightmap Texture "TEXTURES/door_f00_y.png" { Map "materials/brightmaps/textures/door_f00_y.png" }
Brightmap Texture "TEXTURES/door_g04b.png" { Map "materials/brightmaps/textures/door_g04b.png" }
Brightmap Texture "TEXTURES/door_g04b_open.png" { Map "materials/brightmaps/textures/door_g04b_open.png" }
Brightmap Texture "TEXTURES/door_g04c.png" { Map "materials/brightmaps/textures/door_g04c.png" }
Brightmap Texture "TEXTURES/door_g04c_open.png" { Map "materials/brightmaps/textures/door_g04c_open.png" }
Brightmap Texture "TEXTURES/door_g04gr.png" { Map "materials/brightmaps/textures/door_g04gr.png" }
Brightmap Texture "TEXTURES/door_g04gr_open.png" { Map "materials/brightmaps/textures/door_g04gr_open.png" }
Brightmap Texture "TEXTURES/door_g04p.png" { Map "materials/brightmaps/textures/door_g04p.png" }
Brightmap Texture "TEXTURES/door_g04p_open.png" { Map "materials/brightmaps/textures/door_g04p_open.png" }
Brightmap Texture "TEXTURES/door_g05b.png" { Map "materials/brightmaps/textures/door_g05b.png" }
Brightmap Texture "TEXTURES/door_g05c.png" { Map "materials/brightmaps/textures/door_g05c.png" }
Brightmap Texture "TEXTURES/door_g05gr.png" { Map "materials/brightmaps/textures/door_g05gr.png" }
Brightmap Texture "TEXTURES/door_g05p.png" { Map "materials/brightmaps/textures/door_g05p.png" }
Brightmap Texture "TEXTURES/door_g05r.png" { Map "materials/brightmaps/textures/door_g05r.png" }
Brightmap Texture "TEXTURES/door_g05y.png" { Map "materials/brightmaps/textures/door_g05y.png" }
Brightmap Texture "TEXTURES/door_l01b.png" { Map "materials/brightmaps/textures/door_l01b.png" }
Brightmap Texture "TEXTURES/door_l01b_open.png" { Map "materials/brightmaps/textures/door_l01b_open.png" }
Brightmap Texture "TEXTURES/door_l01c.png" { Map "materials/brightmaps/textures/door_l01c.png" }
Brightmap Texture "TEXTURES/door_l01c_open.png" { Map "materials/brightmaps/textures/door_l01c_open.png" }
Brightmap Texture "TEXTURES/door_l01g.png" { Map "materials/brightmaps/textures/door_l01g.png" }
Brightmap Texture "TEXTURES/door_l01g_open.png" { Map "materials/brightmaps/textures/door_l01g_open.png" }
Brightmap Texture "TEXTURES/door_l01gr.png" { Map "materials/brightmaps/textures/door_l01gr.png" }
Brightmap Texture "TEXTURES/door_l01gr_open.png" { Map "materials/brightmaps/textures/door_l01gr_open.png" }
Brightmap Texture "TEXTURES/door_l01p.png" { Map "materials/brightmaps/textures/door_l01p.png" }
Brightmap Texture "TEXTURES/door_l01p_open.png" { Map "materials/brightmaps/textures/door_l01p_open.png" }
Brightmap Texture "TEXTURES/door_l01r.png" { Map "materials/brightmaps/textures/door_l01r.png" }
Brightmap Texture "TEXTURES/door_l01r_open.png" { Map "materials/brightmaps/textures/door_l01r_open.png" }
Brightmap Texture "TEXTURES/door_l02.png" { Map "materials/brightmaps/textures/door_l02.png" }
Brightmap Texture "TEXTURES/door_l20.png" { Map "materials/brightmaps/textures/door_l20.png" }
Brightmap Texture "TEXTURES/door_l21.png" { Map "materials/brightmaps/textures/door_l21.png" }
Brightmap Texture "TEXTURES/door_m01_b.png" { Map "materials/brightmaps/textures/door_m01_b.png" }
Brightmap Texture "TEXTURES/door_m01_b_open.png" { Map "materials/brightmaps/textures/door_m01_b_open.png" }
Brightmap Texture "TEXTURES/door_m01_c.png" { Map "materials/brightmaps/textures/door_m01_c.png" }
Brightmap Texture "TEXTURES/door_m01_c_open.png" { Map "materials/brightmaps/textures/door_m01_c_open.png" }
Brightmap Texture "TEXTURES/door_m01_gr.png" { Map "materials/brightmaps/textures/door_m01_gr.png" }
Brightmap Texture "TEXTURES/door_m01_gr_open.png" { Map "materials/brightmaps/textures/door_m01_gr_open.png" }
Brightmap Texture "TEXTURES/door_m01_p.png" { Map "materials/brightmaps/textures/door_m01_p.png" }
Brightmap Texture "TEXTURES/door_m01_p_open.png" { Map "materials/brightmaps/textures/door_m01_p_open.png" }
Brightmap Texture "TEXTURES/door_m01_r.png" { Map "materials/brightmaps/textures/door_m01_r.png" }
Brightmap Texture "TEXTURES/door_m01_r_open.png" { Map "materials/brightmaps/textures/door_m01_r_open.png" }
Brightmap Texture "TEXTURES/door_m01_y.png" { Map "materials/brightmaps/textures/door_m01_y.png" }
Brightmap Texture "TEXTURES/door_m01_y_open.png" { Map "materials/brightmaps/textures/door_m01_y_open.png" }
Brightmap Texture "TEXTURES/door_rs2.png" { Map "materials/brightmaps/textures/door_rs2.png" }
Brightmap Texture "TEXTURES/door_rs3.png" { Map "materials/brightmaps/textures/door_rs3.png" }
Brightmap Texture "TEXTURES/door_rs4.png" { Map "materials/brightmaps/textures/door_rs4.png" }
Brightmap Texture "TEXTURES/midg_m06b.png" { Map "materials/brightmaps/textures/midg_m06b.png" }
Brightmap Texture "TEXTURES/midg_m06c.png" { Map "materials/brightmaps/textures/midg_m06c.png" }
Brightmap Texture "TEXTURES/midg_m06g.png" { Map "materials/brightmaps/textures/midg_m06g.png" }
Brightmap Texture "TEXTURES/midg_m06j.png" { Map "materials/brightmaps/textures/midg_m06j.png" }
Brightmap Texture "TEXTURES/midg_m06p.png" { Map "materials/brightmaps/textures/midg_m06p.png" }
Brightmap Texture "TEXTURES/midg_m06r.png" { Map "materials/brightmaps/textures/midg_m06r.png" }
/////////////////////////////
// BRIGHTMAPS FOR SWITCHES //
/////////////////////////////
Brightmap Texture sw_of_03 { Map "materials/brightmaps/textures/sw_of_03.png" }
Brightmap Texture sw_of_07 { Map "materials/brightmaps/textures/sw_of_07.png" }
Brightmap Texture sw_of_08 { Map "materials/brightmaps/textures/sw_of_08.png" }
Brightmap Texture sw_of_16 { Map "materials/brightmaps/textures/sw_of_08.png" }
Brightmap Texture sw_of_17 { Map "materials/brightmaps/textures/sw_of_08.png" }
Brightmap Texture sw_of_32 { Map "materials/brightmaps/textures/sw_of_32.png" }
Brightmap Texture sw_of_58 { Map "materials/brightmaps/textures/sw_of_58.png" }
Brightmap Texture sw_of_59 { Map "materials/brightmaps/textures/sw_of_59.png" }
Brightmap Texture sw_of_g3 { Map "materials/brightmaps/textures/sw_of_03.png" }
Brightmap Texture sw_of_p3 { Map "materials/brightmaps/textures/sw_of_03.png" }
Brightmap Texture sw_of_r3 { Map "materials/brightmaps/textures/sw_of_03.png" }
Brightmap Texture sw_on_03 { Map "materials/brightmaps/textures/sw_on_03.png" }
Brightmap Texture sw_on_07 { Map "materials/brightmaps/textures/sw_on_07.png" }
Brightmap Texture sw_on_08 { Map "materials/brightmaps/textures/sw_on_08.png" }
Brightmap Texture sw_on_12 { Map "materials/brightmaps/textures/sw_on_12.png" }
Brightmap Texture sw_on_15 { Map "materials/brightmaps/textures/sw_on_15.png" }
Brightmap Texture sw_on_16 { Map "materials/brightmaps/textures/sw_on_08.png" }
Brightmap Texture sw_on_17 { Map "materials/brightmaps/textures/sw_on_08.png" }
Brightmap Texture sw_on_32 { Map "materials/brightmaps/textures/sw_on_32.png" }
Brightmap Texture sw_on_34 { Map "materials/brightmaps/textures/sw_on_34.png" }
Brightmap Texture sw_on_64 { Map "materials/brightmaps/textures/sw_on_64.png" }
Brightmap Texture sw_on_g3 { Map "materials/brightmaps/textures/sw_on_03.png" }
Brightmap Texture sw_on_p3 { Map "materials/brightmaps/textures/sw_on_03.png" }
Brightmap Texture sw_on_r3 { Map "materials/brightmaps/textures/sw_on_03.png" }
//ASTROSTEINS//
Brightmap Texture sw_of_59 { Map "materials/brightmaps/textures/sw_of_59.png" }
Brightmap Texture sw_on_59 { Map "materials/brightmaps/textures/sw_on_59.png" }
//KEENS//
Brightmap Texture CK_SWOFF { Map "materials/brightmaps/textures/CK_SWOFF.png" }
Brightmap Texture CK_SWON { Map "materials/brightmaps/textures/CK_SWON.png" }
// The same, but with long names
Brightmap Texture "TEXTURES/ASTROSTEIN/sw_of_59.png" { Map "materials/brightmaps/textures/sw_of_59.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/sw_on_59.png" { Map "materials/brightmaps/textures/sw_on_59.png" }
Brightmap Texture "TEXTURES/CKEEN/CK_SWOFF.png" { Map "materials/brightmaps/textures/CK_SWOFF.png" }
Brightmap Texture "TEXTURES/CKEEN/CK_SWON.png" { Map "materials/brightmaps/textures/CK_SWON.png" }
Brightmap Texture "TEXTURES/NORSE/sw_of_32.png" { Map "materials/brightmaps/textures/sw_of_32.png" }
Brightmap Texture "TEXTURES/NORSE/sw_on_32.png" { Map "materials/brightmaps/textures/sw_on_32.png" }
Brightmap Texture "TEXTURES/NORSE/sw_on_34.png" { Map "materials/brightmaps/textures/sw_on_34.png" }
Brightmap Texture "TEXTURES/sw_of_03.png" { Map "materials/brightmaps/textures/sw_of_03.png" }
Brightmap Texture "TEXTURES/sw_of_07.png" { Map "materials/brightmaps/textures/sw_of_07.png" }
Brightmap Texture "TEXTURES/sw_of_08.png" { Map "materials/brightmaps/textures/sw_of_08.png" }
Brightmap Texture "TEXTURES/sw_of_16.png" { Map "materials/brightmaps/textures/sw_of_08.png" }
Brightmap Texture "TEXTURES/sw_of_17.png" { Map "materials/brightmaps/textures/sw_of_08.png" }
Brightmap Texture "TEXTURES/sw_of_g3.png" { Map "materials/brightmaps/textures/sw_of_03.png" }
Brightmap Texture "TEXTURES/sw_of_p3.png" { Map "materials/brightmaps/textures/sw_of_03.png" }
Brightmap Texture "TEXTURES/sw_of_r3.png" { Map "materials/brightmaps/textures/sw_of_03.png" }
Brightmap Texture "TEXTURES/sw_on_03.png" { Map "materials/brightmaps/textures/sw_on_03.png" }
Brightmap Texture "TEXTURES/sw_on_07.png" { Map "materials/brightmaps/textures/sw_on_07.png" }
Brightmap Texture "TEXTURES/sw_on_08.png" { Map "materials/brightmaps/textures/sw_on_08.png" }
Brightmap Texture "TEXTURES/sw_on_12.png" { Map "materials/brightmaps/textures/sw_on_12.png" }
Brightmap Texture "TEXTURES/sw_on_15.png" { Map "materials/brightmaps/textures/sw_on_15.png" }
Brightmap Texture "TEXTURES/sw_on_16.png" { Map "materials/brightmaps/textures/sw_on_08.png" }
Brightmap Texture "TEXTURES/sw_on_17.png" { Map "materials/brightmaps/textures/sw_on_08.png" }
Brightmap Texture "TEXTURES/sw_on_64.png" { Map "materials/brightmaps/textures/sw_on_64.png" }
Brightmap Texture "TEXTURES/sw_on_g3.png" { Map "materials/brightmaps/textures/sw_on_03.png" }
Brightmap Texture "TEXTURES/sw_on_p3.png" { Map "materials/brightmaps/textures/sw_on_03.png" }
Brightmap Texture "TEXTURES/sw_on_r3.png" { Map "materials/brightmaps/textures/sw_on_03.png" }
//////////////////////////////
// BRIGHTMAPS FOR COMPUTERS //
//////////////////////////////
Brightmap Texture astr_pl1 { Map "materials/brightmaps/textures/astr_pl1.png" }
Brightmap Texture astr_pl2 { Map "materials/brightmaps/textures/astr_pl2.png" }
Brightmap Texture astr_pl3 { Map "materials/brightmaps/textures/astr_pl3.png" }
Brightmap Texture astr_pl4 { Map "materials/brightmaps/textures/astr_pl4.png" }
Brightmap Texture astr_pl5 { Map "materials/brightmaps/textures/astr_pl5.png" }
Brightmap Texture comp_s01 { Map "materials/brightmaps/textures/comp_s01.png" }
Brightmap Texture comp_s1b { Map "materials/brightmaps/textures/comp_s1b.png" }
Brightmap Texture comp_s1c { Map "materials/brightmaps/textures/comp_s1c.png" }
Brightmap Texture comp_s1d { Map "materials/brightmaps/textures/comp_s1d.png" }
Brightmap Texture comp_s02 { Map "materials/brightmaps/textures/comp_s02.png" }
Brightmap Texture comp_s2b { Map "materials/brightmaps/textures/comp_s2b.png" }
Brightmap Texture comp_s2c { Map "materials/brightmaps/textures/comp_s2c.png" }
Brightmap Texture comp_s2d { Map "materials/brightmaps/textures/comp_s2d.png" }
Brightmap Texture rada_a01 { Map "materials/brightmaps/textures/rada_a01.png" }
Brightmap Texture rada_a02 { Map "materials/brightmaps/textures/rada_a02.png" }
Brightmap Texture rada_a03 { Map "materials/brightmaps/textures/rada_a03.png" }
Brightmap Texture rada_a04 { Map "materials/brightmaps/textures/rada_a04.png" }
Brightmap Texture rada_a05 { Map "materials/brightmaps/textures/rada_a05.png" }
Brightmap Texture rada_a06 { Map "materials/brightmaps/textures/rada_a06.png" }
Brightmap Texture astr_c14 { Map "materials/brightmaps/textures/astr_c14.png" }
Brightmap Texture astr_c15 { Map "materials/brightmaps/textures/astr_c15.png" }
Brightmap Texture astr_c16 { Map "materials/brightmaps/textures/astr_c16.png" }
Brightmap Texture astr_c27 { Map "materials/brightmaps/textures/astr_c27.png" }
Brightmap Texture astr_c28 { Map "materials/brightmaps/textures/astr_c28.png" }
Brightmap Texture astr_c29 { Map "materials/brightmaps/textures/astr_c29.png" }
Brightmap Texture astr_c05 { Map "materials/brightmaps/textures/astr_c05.png" }
Brightmap Texture astr_c06 { Map "materials/brightmaps/textures/astr_c06.png" }
Brightmap Texture astr_c11 { Map "materials/brightmaps/textures/astr_c11.png" }
Brightmap Texture astr_g04 { Map "materials/brightmaps/textures/astr_g04.png" }
Brightmap Texture astr_g05 { Map "materials/brightmaps/textures/astr_g05.png" }
Brightmap Texture astr_g06 { Map "materials/brightmaps/textures/astr_g06.png" }
Brightmap Texture door_l02 { Map "materials/brightmaps/textures/door_l02.png" }
Brightmap Texture door_l20 { Map "materials/brightmaps/textures/door_l20.png" }
Brightmap Texture door_l21 { Map "materials/brightmaps/textures/door_l21.png" }
// The same, but with long names
Brightmap Texture "TEXTURES/comp_s01.png" { Map "materials/brightmaps/textures/comp_s01.png" }
Brightmap Texture "TEXTURES/comp_s1b.png" { Map "materials/brightmaps/textures/comp_s1b.png" }
Brightmap Texture "TEXTURES/comp_s1c.png" { Map "materials/brightmaps/textures/comp_s1c.png" }
Brightmap Texture "TEXTURES/comp_s1d.png" { Map "materials/brightmaps/textures/comp_s1d.png" }
Brightmap Texture "TEXTURES/comp_s02.png" { Map "materials/brightmaps/textures/comp_s02.png" }
Brightmap Texture "TEXTURES/comp_s2b.png" { Map "materials/brightmaps/textures/comp_s2b.png" }
Brightmap Texture "TEXTURES/comp_s2c.png" { Map "materials/brightmaps/textures/comp_s2c.png" }
Brightmap Texture "TEXTURES/comp_s2d.png" { Map "materials/brightmaps/textures/comp_s2d.png" }
Brightmap Texture "TEXTURES/rada_a01.png" { Map "materials/brightmaps/textures/rada_a01.png" }
Brightmap Texture "TEXTURES/rada_a02.png" { Map "materials/brightmaps/textures/rada_a02.png" }
Brightmap Texture "TEXTURES/rada_a03.png" { Map "materials/brightmaps/textures/rada_a03.png" }
Brightmap Texture "TEXTURES/rada_a04.png" { Map "materials/brightmaps/textures/rada_a04.png" }
Brightmap Texture "TEXTURES/rada_a05.png" { Map "materials/brightmaps/textures/rada_a05.png" }
Brightmap Texture "TEXTURES/rada_a06.png" { Map "materials/brightmaps/textures/rada_a06.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_pl1.png" { Map "materials/brightmaps/textures/astr_pl1.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_pl2.png" { Map "materials/brightmaps/textures/astr_pl2.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_pl3.png" { Map "materials/brightmaps/textures/astr_pl3.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_pl4.png" { Map "materials/brightmaps/textures/astr_pl4.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_pl5.png" { Map "materials/brightmaps/textures/astr_pl5.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_c14.png" { Map "materials/brightmaps/textures/astr_c14.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_c15.png" { Map "materials/brightmaps/textures/astr_c15.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_c16.png" { Map "materials/brightmaps/textures/astr_c16.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_c27.png" { Map "materials/brightmaps/textures/astr_c27.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_c28.png" { Map "materials/brightmaps/textures/astr_c28.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_c29.png" { Map "materials/brightmaps/textures/astr_c29.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_c05.png" { Map "materials/brightmaps/textures/astr_c05.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_c06.png" { Map "materials/brightmaps/textures/astr_c06.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_c11.png" { Map "materials/brightmaps/textures/astr_c11.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_g04.png" { Map "materials/brightmaps/textures/astr_g04.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_g05.png" { Map "materials/brightmaps/textures/astr_g05.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_g06.png" { Map "materials/brightmaps/textures/astr_g06.png" }
//////////////////////////
// BRIGHTMAPS FOR WALLS //
//////////////////////////
Brightmap Texture C4_01 { Map "materials/brightmaps/textures/C4_01.png" }
Brightmap Texture CK_DECO3 { Map "materials/brightmaps/textures/CK_DECO3.png" }
Brightmap Texture CK_DECO4 { Map "materials/brightmaps/textures/CK_DECO4.png" }
Brightmap Texture ROCK_Y01 { Map "materials/brightmaps/textures/rock_y01.png" }
Brightmap Texture astr_brd { Map "materials/brightmaps/textures/astr_brd.png" }
Brightmap Texture astr_dc1 { Map "materials/brightmaps/textures/astr_dc1.png" }
Brightmap Texture astr_e01 { Map "materials/brightmaps/textures/astr_e01.png" }
Brightmap Texture astr_f01 { Map "materials/brightmaps/textures/astr_f01.png" }
Brightmap Texture astr_f02 { Map "materials/brightmaps/textures/astr_f02.png" }
Brightmap Texture astr_g02 { Map "materials/brightmaps/textures/astr_g02.png" }
Brightmap Texture astr_g12 { Map "materials/brightmaps/textures/astr_g12.png" }
Brightmap Texture astr_g52 { Map "materials/brightmaps/textures/astr_g52.png" }
Brightmap Texture astr_lb1 { Map "materials/brightmaps/textures/astr_lb1.png" }
Brightmap Texture astr_lb2 { Map "materials/brightmaps/textures/astr_lb2.png" }
Brightmap Texture astr_lc1 { Map "materials/brightmaps/textures/astr_lc1.png" }
Brightmap Texture astr_lc5 { Map "materials/brightmaps/textures/astr_lc5.png" }
Brightmap Texture astr_lc6 { Map "materials/brightmaps/textures/astr_lc6.png" }
Brightmap Texture astr_lc7 { Map "materials/brightmaps/textures/astr_lc7.png" }
Brightmap Texture astr_lc8 { Map "materials/brightmaps/textures/astr_lc8.png" }
Brightmap Texture astr_lg2 { Map "materials/brightmaps/textures/astr_lg2.png" }
Brightmap Texture astr_lr1 { Map "materials/brightmaps/textures/astr_lr1.png" }
Brightmap Texture astr_lr2 { Map "materials/brightmaps/textures/astr_lr2.png" }
Brightmap Texture astr_lr3 { Map "materials/brightmaps/textures/astr_lr3.png" }
Brightmap Texture astr_lr4 { Map "materials/brightmaps/textures/astr_lr4.png" }
Brightmap Texture astr_lw1 { Map "materials/brightmaps/textures/astr_lw1.png" }
Brightmap Texture astr_lw5 { Map "materials/brightmaps/textures/astr_lw5.png" }
Brightmap Texture astr_m11 { Map "materials/brightmaps/textures/astr_m11.png" }
Brightmap Texture astr_m13 { Map "materials/brightmaps/textures/astr_m13.png" }
Brightmap Texture astr_m28 { Map "materials/brightmaps/textures/astr_m28.png" }
Brightmap Texture astr_mp1 { Map "materials/brightmaps/textures/astr_mp1.png" }
Brightmap Texture astr_ms3 { Map "materials/brightmaps/textures/astr_ms3.png" }
Brightmap Texture astr_p05 { Map "materials/brightmaps/textures/astr_p05.png" }
Brightmap Texture astr_s21 { Map "materials/brightmaps/textures/astr_s21.png" }
Brightmap Texture astr_sg0 { Map "materials/brightmaps/textures/astr_sg0.png" }
Brightmap Texture astr_sg1 { Map "materials/brightmaps/textures/astr_sg1.png" }
Brightmap Texture astr_sg2 { Map "materials/brightmaps/textures/astr_sg2.png" }
Brightmap Texture astr_sg4 { Map "materials/brightmaps/textures/astr_sg4.png" }
Brightmap Texture astr_sg5 { Map "materials/brightmaps/textures/astr_sg5.png" }
Brightmap Texture astr_sga { Map "materials/brightmaps/textures/astr_sga.png" }
Brightmap Texture astr_sgb { Map "materials/brightmaps/textures/astr_sgb.png" }
Brightmap Texture astr_sgc { Map "materials/brightmaps/textures/astr_sgc.png" }
Brightmap Texture astr_sgd { Map "materials/brightmaps/textures/astr_sgd.png" }
Brightmap Texture astr_ss4 { Map "materials/brightmaps/textures/astr_ss4.png" }
Brightmap Texture astr_trp { Map "materials/brightmaps/textures/astr_trp.png" }
Brightmap Texture astr_tw1 { Map "materials/brightmaps/textures/astr_tw1.png" }
Brightmap Texture astr_tw2 { Map "materials/brightmaps/textures/astr_tw2.png" }
Brightmap Texture astr_tw3 { Map "materials/brightmaps/textures/astr_tw3.png" }
Brightmap Texture astr_tw4 { Map "materials/brightmaps/textures/astr_tw4.png" }
Brightmap Texture astr_tw5 { Map "materials/brightmaps/textures/astr_tw5.png" }
Brightmap Texture astr_x01 { Map "materials/brightmaps/textures/astr_x01.png" }
Brightmap Texture astr_x02 { Map "materials/brightmaps/textures/astr_x02.png" }
Brightmap Texture astr_x03 { Map "materials/brightmaps/textures/astr_x03.png" }
Brightmap Texture astr_x04 { Map "materials/brightmaps/textures/astr_x04.png" }
Brightmap Texture astr_x05 { Map "materials/brightmaps/textures/astr_x05.png" }
Brightmap Texture astr_x08 { Map "materials/brightmaps/textures/astr_x08.png" }
Brightmap Texture astr_x09 { Map "materials/brightmaps/textures/astr_x09.png" }
Brightmap Texture astr_x10 { Map "materials/brightmaps/textures/astr_x10.png" }
Brightmap Texture astr_x11 { Map "materials/brightmaps/textures/astr_x11.png" }
Brightmap Texture astr_x23 { Map "materials/brightmaps/textures/astr_x23.png" }
Brightmap Texture astr_x25 { Map "materials/brightmaps/textures/astr_x25.png" }
Brightmap Texture astr_x26 { Map "materials/brightmaps/textures/astr_x26.png" }
Brightmap Texture glass_y2 { Map "materials/brightmaps/textures/glass_y2.png" }
Brightmap Texture marker { Map "materials/brightmaps/textures/marker.png" }
Brightmap Texture room_b02 { Map "materials/brightmaps/textures/room_b02.png" }
Brightmap Texture room_p02 { Map "materials/brightmaps/textures/room_p02.png" }
Brightmap Texture room_r02 { Map "materials/brightmaps/textures/room_b02.png" }
Brightmap Texture room_r12 { Map "materials/brightmaps/textures/room_b02.png" }
Brightmap Texture room_t80 { Map "materials/brightmaps/textures/room_b02.png" }
Brightmap Texture volcano { Map "materials/brightmaps/textures/volcano.png" }
// The same, but with long names
Brightmap Texture "TEXTURES/C4_01.png" { Map "materials/brightmaps/textures/C4_01.png" }
Brightmap Texture "TEXTURES/CKEEN/CK_DECO3.png" { Map "materials/brightmaps/textures/CK_DECO3.png" }
Brightmap Texture "TEXTURES/CKEEN/CK_DECO4.png" { Map "materials/brightmaps/textures/CK_DECO4.png" }
Brightmap Texture "TEXTURES/ROCK_Y01.png" { Map "materials/brightmaps/textures/rock_y01.png" }
Brightmap Texture "TEXTURES/glass_y2.png" { Map "materials/brightmaps/textures/glass_y2.png" }
Brightmap Texture "TEXTURES/room_b02.png" { Map "materials/brightmaps/textures/room_b02.png" }
Brightmap Texture "TEXTURES/room_p02.png" { Map "materials/brightmaps/textures/room_p02.png" }
Brightmap Texture "TEXTURES/room_r02.png" { Map "materials/brightmaps/textures/room_b02.png" }
Brightmap Texture "TEXTURES/room_r12.png" { Map "materials/brightmaps/textures/room_b02.png" }
Brightmap Texture "TEXTURES/room_t80.png" { Map "materials/brightmaps/textures/room_b02.png" }
Brightmap Texture "TEXTURES/volcano.png" { Map "materials/brightmaps/textures/volcano.png" }
//ASTROSTEINS//
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_brd.png" { Map "materials/brightmaps/textures/astr_brd.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_dc1.png" { Map "materials/brightmaps/textures/astr_dc1.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_e01.png" { Map "materials/brightmaps/textures/astr_e01.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_f01.png" { Map "materials/brightmaps/textures/astr_f01.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_f02.png" { Map "materials/brightmaps/textures/astr_f02.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_g02.png" { Map "materials/brightmaps/textures/astr_g02.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_g12.png" { Map "materials/brightmaps/textures/astr_g12.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_g52.png" { Map "materials/brightmaps/textures/astr_g52.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_lb1.png" { Map "materials/brightmaps/textures/astr_lb1.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_lb2.png" { Map "materials/brightmaps/textures/astr_lb2.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_lc1.png" { Map "materials/brightmaps/textures/astr_lc1.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_lc5.png" { Map "materials/brightmaps/textures/astr_lc5.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_lc6.png" { Map "materials/brightmaps/textures/astr_lc6.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_lc7.png" { Map "materials/brightmaps/textures/astr_lc7.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_lc8.png" { Map "materials/brightmaps/textures/astr_lc8.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_lg2.png" { Map "materials/brightmaps/textures/astr_lg2.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_lr1.png" { Map "materials/brightmaps/textures/astr_lr1.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_lr2.png" { Map "materials/brightmaps/textures/astr_lr2.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_lr3.png" { Map "materials/brightmaps/textures/astr_lr3.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_lr4.png" { Map "materials/brightmaps/textures/astr_lr4.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_lw1.png" { Map "materials/brightmaps/textures/astr_lw1.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_lw5.png" { Map "materials/brightmaps/textures/astr_lw5.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_m11.png" { Map "materials/brightmaps/textures/astr_m11.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_m13.png" { Map "materials/brightmaps/textures/astr_m13.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_m28.png" { Map "materials/brightmaps/textures/astr_m28.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_mp1.png" { Map "materials/brightmaps/textures/astr_mp1.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_ms3.png" { Map "materials/brightmaps/textures/astr_ms3.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_p05.png" { Map "materials/brightmaps/textures/astr_p05.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_s21.png" { Map "materials/brightmaps/textures/astr_s21.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_sg0.png" { Map "materials/brightmaps/textures/astr_sg0.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_sg1.png" { Map "materials/brightmaps/textures/astr_sg1.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_sg2.png" { Map "materials/brightmaps/textures/astr_sg2.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_sg4.png" { Map "materials/brightmaps/textures/astr_sg4.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_sg5.png" { Map "materials/brightmaps/textures/astr_sg5.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_sga.png" { Map "materials/brightmaps/textures/astr_sga.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_sgb.png" { Map "materials/brightmaps/textures/astr_sgb.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_sgc.png" { Map "materials/brightmaps/textures/astr_sgc.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_sgd.png" { Map "materials/brightmaps/textures/astr_sgd.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_ss4.png" { Map "materials/brightmaps/textures/astr_ss4.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_trp.png" { Map "materials/brightmaps/textures/astr_trp.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_tw1.png" { Map "materials/brightmaps/textures/astr_tw1.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_tw2.png" { Map "materials/brightmaps/textures/astr_tw2.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_tw3.png" { Map "materials/brightmaps/textures/astr_tw3.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_tw4.png" { Map "materials/brightmaps/textures/astr_tw4.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_tw5.png" { Map "materials/brightmaps/textures/astr_tw5.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_x01.png" { Map "materials/brightmaps/textures/astr_x01.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_x02.png" { Map "materials/brightmaps/textures/astr_x02.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_x03.png" { Map "materials/brightmaps/textures/astr_x03.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_x04.png" { Map "materials/brightmaps/textures/astr_x04.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_x05.png" { Map "materials/brightmaps/textures/astr_x05.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_x08.png" { Map "materials/brightmaps/textures/astr_x08.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_x09.png" { Map "materials/brightmaps/textures/astr_x09.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_x10.png" { Map "materials/brightmaps/textures/astr_x10.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_x11.png" { Map "materials/brightmaps/textures/astr_x11.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_x23.png" { Map "materials/brightmaps/textures/astr_x23.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_x25.png" { Map "materials/brightmaps/textures/astr_x25.png" }
Brightmap Texture "TEXTURES/ASTROSTEIN/astr_x26.png" { Map "materials/brightmaps/textures/astr_x26.png" }
Brightmap Texture "TEXTURES/EASTEREGGS/marker.png" { Map "materials/brightmaps/textures/marker.png" }
/////////////
// WINDOWS // - These uses TEXTURES entries
/////////////
Brightmap Texture "TEXTURES/hous_w03d.png" { Map "materials/brightmaps/textures/hous_w03d.png" } //LOWER WINDOW
Brightmap Texture "TEXTURES/hous_w03u.png" { Map "materials/brightmaps/textures/hous_w03u.png" } //UPPER WINDOW
Brightmap Texture "TEXTURES/hous_w03ud.png" { Map "materials/brightmaps/textures/hous_w03ud.png" } //BOTH WINDOWS
Brightmap Texture "TEXTURES/hous_w04u.png" { Map "materials/brightmaps/textures/hous_w04u.png" }
Brightmap Texture "TEXTURES/hous_w05u.png" { Map "materials/brightmaps/textures/hous_w05u.png" }
Brightmap Texture "TEXTURES/hous_w06u.png" { Map "materials/brightmaps/textures/hous_w05u.png" } //same window position of previous one
Brightmap Texture "TEXTURES/hous_w08d.png" { Map "materials/brightmaps/textures/hous_w08d.png" }
Brightmap Texture "TEXTURES/hous_w08u.png" { Map "materials/brightmaps/textures/hous_w08u.png" }
Brightmap Texture "TEXTURES/hous_w08ud.png" { Map "materials/brightmaps/textures/hous_w08ud.png" }
Brightmap Texture "TEXTURES/hous_w09u.png" { Map "materials/brightmaps/textures/hous_w09u.png" }
Brightmap Texture "TEXTURES/hous_w13d.png" { Map "materials/brightmaps/textures/hous_w13d.png" }
Brightmap Texture "TEXTURES/hous_w13u.png" { Map "materials/brightmaps/textures/hous_w13u.png" }
Brightmap Texture "TEXTURES/hous_w13ud.png" { Map "materials/brightmaps/textures/hous_w13ud.png" }
Brightmap Texture "TEXTURES/hous_w14d.png" { Map "materials/brightmaps/textures/hous_w14d.png" }
Brightmap Texture "TEXTURES/hous_w14u.png" { Map "materials/brightmaps/textures/hous_w14u.png" }
Brightmap Texture "TEXTURES/hous_w14ud.png" { Map "materials/brightmaps/textures/hous_w14ud.png" }
Brightmap Texture "TEXTURES/hous_w15d.png" { Map "materials/brightmaps/textures/hous_w15d.png" }
Brightmap Texture "TEXTURES/hous_w15u.png" { Map "materials/brightmaps/textures/hous_w15u.png" }
Brightmap Texture "TEXTURES/hous_w15ud.png" { Map "materials/brightmaps/textures/hous_w15ud.png" }
Brightmap Texture "TEXTURES/hous_w16d.png" { Map "materials/brightmaps/textures/hous_w16d.png" }
Brightmap Texture "TEXTURES/hous_w16u.png" { Map "materials/brightmaps/textures/hous_w16u.png" }
Brightmap Texture "TEXTURES/hous_w16ud.png" { Map "materials/brightmaps/textures/hous_w16ud.png" }
Brightmap Texture "TEXTURES/hous_w17d.png" { Map "materials/brightmaps/textures/hous_w17d.png" }
Brightmap Texture "TEXTURES/hous_w17u.png" { Map "materials/brightmaps/textures/hous_w17u.png" }
Brightmap Texture "TEXTURES/hous_w17ud.png" { Map "materials/brightmaps/textures/hous_w17ud.png" }
Brightmap Texture "TEXTURES/hous_w19d.png" { Map "materials/brightmaps/textures/hous_w19d.png" }
Brightmap Texture "TEXTURES/hous_w19u.png" { Map "materials/brightmaps/textures/hous_w19u.png" }
Brightmap Texture "TEXTURES/hous_w19ud.png" { Map "materials/brightmaps/textures/hous_w19ud.png" }
Brightmap Texture "TEXTURES/hous_w20d.png" { Map "materials/brightmaps/textures/hous_w20d.png" }
Brightmap Texture "TEXTURES/hous_w20u.png" { Map "materials/brightmaps/textures/hous_w20u.png" }
Brightmap Texture "TEXTURES/hous_w20ud.png" { Map "materials/brightmaps/textures/hous_w20ud.png" }
Brightmap Texture "TEXTURES/hous_w21d.png" { Map "materials/brightmaps/textures/hous_w21d.png" }
Brightmap Texture "TEXTURES/hous_w21u.png" { Map "materials/brightmaps/textures/hous_w21u.png" }
Brightmap Texture "TEXTURES/hous_w21ud.png" { Map "materials/brightmaps/textures/hous_w21ud.png" }
Brightmap Texture "TEXTURES/hous_w22d.png" { Map "materials/brightmaps/textures/hous_w22d.png" }
Brightmap Texture "TEXTURES/hous_w22u.png" { Map "materials/brightmaps/textures/hous_w22u.png" }
Brightmap Texture "TEXTURES/hous_w22ud.png" { Map "materials/brightmaps/textures/hous_w22ud.png" }
Brightmap Texture "TEXTURES/hous_w26u.png" { Map "materials/brightmaps/textures/hous_w26u.png" }
Brightmap Texture "TEXTURES/hous_w29u.png" { Map "materials/brightmaps/textures/hous_w29u.png" }
Brightmap Texture "TEXTURES/hous_w32d.png" { Map "materials/brightmaps/textures/hous_w32d.png" }
Brightmap Texture "TEXTURES/hous_w32u.png" { Map "materials/brightmaps/textures/hous_w32u.png" }
Brightmap Texture "TEXTURES/hous_w32ud.png" { Map "materials/brightmaps/textures/hous_w32ud.png" }
Brightmap Texture "TEXTURES/hous_w33d.png" { Map "materials/brightmaps/textures/hous_w33d.png" }
Brightmap Texture "TEXTURES/hous_w33u.png" { Map "materials/brightmaps/textures/hous_w33u.png" }
Brightmap Texture "TEXTURES/hous_w33ud.png" { Map "materials/brightmaps/textures/hous_w33ud.png" }
Brightmap Texture "TEXTURES/hous_w34d.png" { Map "materials/brightmaps/textures/hous_w34d.png" }
Brightmap Texture "TEXTURES/hous_w34u.png" { Map "materials/brightmaps/textures/hous_w34u.png" }
Brightmap Texture "TEXTURES/hous_w34ud.png" { Map "materials/brightmaps/textures/hous_w34ud.png" }
Brightmap Texture "TEXTURES/hous_w35d.png" { Map "materials/brightmaps/textures/hous_w35d.png" }
Brightmap Texture "TEXTURES/hous_w35u.png" { Map "materials/brightmaps/textures/hous_w35u.png" }
Brightmap Texture "TEXTURES/hous_w35ud.png" { Map "materials/brightmaps/textures/hous_w35ud.png" }
Brightmap Texture "TEXTURES/hous_w37u.png" { Map "materials/brightmaps/textures/hous_w37u.png" }
Brightmap Texture "TEXTURES/hous_w38d.png" { Map "materials/brightmaps/textures/hous_w38d.png" }
Brightmap Texture "TEXTURES/hous_w39d.png" { Map "materials/brightmaps/textures/hous_w38d.png" } //same window position of previous one
Brightmap Texture "TEXTURES/hous_w40d.png" { Map "materials/brightmaps/textures/hous_w40d.png" }
Brightmap Texture "TEXTURES/hous_w40u.png" { Map "materials/brightmaps/textures/hous_w40u.png" }
Brightmap Texture "TEXTURES/hous_w40ud.png" { Map "materials/brightmaps/textures/hous_w40ud.png" }
Brightmap Texture "TEXTURES/hous_w41d.png" { Map "materials/brightmaps/textures/hous_w41d.png" }
Brightmap Texture "TEXTURES/hous_w41u.png" { Map "materials/brightmaps/textures/hous_w41u.png" }
Brightmap Texture "TEXTURES/hous_w41ud.png" { Map "materials/brightmaps/textures/hous_w41ud.png" }
Brightmap Texture "TEXTURES/deco_chrcz.png" { Map "materials/brightmaps/textures/deco_chrcz.png" }
//Glowing runes
Brightmap Texture "TEXTURES/BRIK_R60A2.png" { Map "materials/brightmaps/textures/BRIK_R60A2.png" }
Brightmap Texture "TEXTURES/BRIK_R60A3.png" { Map "materials/brightmaps/textures/BRIK_R60A3.png" }
Brightmap Texture "TEXTURES/BRIK_R60A4.png" { Map "materials/brightmaps/textures/BRIK_R60A4.png" }
Brightmap Texture "TEXTURES/BRIK_R60A5.png" { Map "materials/brightmaps/textures/BRIK_R60A5.png" }
Brightmap Texture "TEXTURES/BRIK_R60A6.png" { Map "materials/brightmaps/textures/BRIK_R60A6.png" }
Brightmap Texture "TEXTURES/BRIK_R60A7.png" { Map "materials/brightmaps/textures/BRIK_R60A7.png" }
Brightmap Texture "TEXTURES/BRIK_R60A8.png" { Map "materials/brightmaps/textures/BRIK_R60A8.png" }
Brightmap Texture "TEXTURES/BRIK_R60A9.png" { Map "materials/brightmaps/textures/BRIK_R60A9.png" }
Brightmap Texture "TEXTURES/BRIK_R60AA.png" { Map "materials/brightmaps/textures/BRIK_R60AA.png" }
Brightmap Texture "TEXTURES/BRIK_R60AB.png" { Map "materials/brightmaps/textures/BRIK_R60AB.png" }
Brightmap Texture "TEXTURES/BRIK_R60AC.png" { Map "materials/brightmaps/textures/BRIK_R60AC.png" }
Brightmap Texture "TEXTURES/BRIK_R60AD.png" { Map "materials/brightmaps/textures/BRIK_R60AD.png" }
//Moar glowing entries//
Brightmap Texture "TEXTURES/lite_w01g.png" { Map "materials/brightmaps/textures/lite_w01g.png" }
////////////
// ACTORS //
////////////
//3d Models
Brightmap Texture "models/astrostein/energytank3d.png" { Map "materials/brightmaps/models/energytank3d.png" }
Brightmap Texture "models/astrostein/radio_tower2.png" { Map "materials/brightmaps/models/radio_tower2.png" }
Brightmap Texture "models/artdeco1_lit.png" { Map "materials/brightmaps/models/artdeco1_lit.png" }
Brightmap Texture "models/artdeco1_litbody.png" { Map "materials/brightmaps/models/artdeco1_litbody.png" }
Brightmap Texture "models/BeamA.png" { Map "materials/brightmaps/models/BeamA.png" }
Brightmap Texture "models/BeamB.png" { Map "materials/brightmaps/models/BeamB.png" }
Brightmap Texture "models/BeamE.png" { Map "materials/brightmaps/models/BeamE.png" }
Brightmap Texture "models/biodrum.png" { Map "materials/brightmaps/models/biodrum.png" }
Brightmap Texture "models/cell_lite_on.png" { Map "materials/brightmaps/models/cell_lite.png" }
Brightmap Texture "models/chandcand_on.png" { Map "materials/brightmaps/models/chandcand.png" }
Brightmap Texture "models/chandcross_on.png" { Map "materials/brightmaps/models/chandcross.png" }
Brightmap Texture "models/chandvert_on.png" { Map "materials/brightmaps/models/chandvert.png" }
Brightmap Texture "models/cod_litepost3_on.jpg" { Map "materials/brightmaps/models/cod_litepost3.jpg" }
Brightmap Texture "models/cod_wlight1_on.png" { Map "materials/brightmaps/models/cod_wlight1.png" }
Brightmap Texture "models/cod_wlight2_on.png" { Map "materials/brightmaps/models/cod_wlight1.png" }
Brightmap Texture "models/gasdrum.jpg" { Map "materials/brightmaps/models/gasdrum.jpg" }
Brightmap Texture "models/globes_on.png" { Map "materials/brightmaps/models/globes_on.png" }
Brightmap Texture "models/lightcastle_lit.png" { Map "materials/brightmaps/models/lightcastle.png" }
Brightmap Texture "models/lightpost_grnlit.png" { Map "materials/brightmaps/models/lightpost_grn.png" }
Brightmap Texture "models/lightpost_lit.png" { Map "materials/brightmaps/models/lightpost.png" }
Brightmap Texture "models/lightpost_redlit.png" { Map "materials/brightmaps/models/lightpost_red.png" }
Brightmap Texture "models/medlight.png" { Map "materials/brightmaps/models/medlight.png" }
Brightmap Texture "models/rtcwfire.jpg" { Map "materials/brightmaps/models/rtcwfire.jpg" }
Brightmap Texture "models/scheinwerfer_on.png" { Map "materials/brightmaps/models/scheinwerfer_on.png" }
Brightmap Texture "models/signal_light_grn.jpg" { Map "materials/brightmaps/models/signal_light_grn.png" }
Brightmap Texture "models/signal_light_red.jpg" { Map "materials/brightmaps/models/signal_light_red.png" }
Brightmap Texture "models/signal_light_yel.jpg" { Map "materials/brightmaps/models/signal_light_yel.png" }
Brightmap Texture "models/station1_in.png" { Map "materials/brightmaps/models/station1_in.png" }
Brightmap Texture "models/station1_lit.png" { Map "materials/brightmaps/models/station1_lit.png" }
Brightmap Texture "models/streetlight2_lit.png" { Map "materials/brightmaps/models/streetlight2.png" }
Brightmap Texture "models/tracer1.png" { Map "materials/brightmaps/models/tracer1.png" }
Brightmap Texture "models/tracer2.png" { Map "materials/brightmaps/models/tracer2.png" }
Brightmap Texture "models/tracer3.png" { Map "materials/brightmaps/models/tracer3.png" }
Brightmap Texture "models/tracer4.png" { Map "materials/brightmaps/models/tracer4.png" }
//CREEPY//
Brightmap Sprite DRFTA0 { Map "hires/sprites/creepyrift/DRFTA0.png" }
Brightmap Sprite DRFTB0 { Map "hires/sprites/creepyrift/DRFTB0.png" }
Brightmap Sprite DRFTC0 { Map "hires/sprites/creepyrift/DRFTC0.png" }
Brightmap Sprite DRFTD0 { Map "hires/sprites/creepyrift/DRFTD0.png" }
Brightmap Sprite DRFTE0 { Map "hires/sprites/creepyrift/DRFTE0.png" }
Brightmap Sprite DRFTF0 { Map "hires/sprites/creepyrift/DRFTF0.png" }
Brightmap Sprite DRFTG0 { Map "hires/sprites/creepyrift/DRFTG0.png" }
Brightmap Sprite DRFTH0 { Map "hires/sprites/creepyrift/DRFTH0.png" }
Brightmap Sprite DRFTI0 { Map "hires/sprites/creepyrift/DRFTI0.png" }
Brightmap Sprite DRFTJ0 { Map "hires/sprites/creepyrift/DRFTJ0.png" }
Brightmap Sprite DRFTK0 { Map "hires/sprites/creepyrift/DRFTK0.png" }
Brightmap Sprite DRFTL0 { Map "hires/sprites/creepyrift/DRFTL0.png" }
Brightmap Sprite DRFTM0 { Map "hires/sprites/creepyrift/DRFTM0.png" }
Brightmap Sprite DRFTN0 { Map "hires/sprites/creepyrift/DRFTN0.png" }
Brightmap Sprite DRFTO0 { Map "hires/sprites/creepyrift/DRFTO0.png" }
Brightmap Sprite HADEA0 { Map "hires/sprites/creepyrift/HADEA0.png" }
Brightmap Sprite HADEB0 { Map "hires/sprites/creepyrift/HADEB0.png" }
Brightmap Sprite HADEC0 { Map "hires/sprites/creepyrift/HADEC0.png" }
Brightmap Sprite SPI1A1 { Map "hires/sprites/creepyrift/SPI1A1.png" }
Brightmap Sprite SPI1A2A8 { Map "hires/sprites/creepyrift/SPI1A2A8.png" }
Brightmap Sprite SPI1A3A7 { Map "hires/sprites/creepyrift/SPI1A3A7.png" }
Brightmap Sprite SPI1A4A6 { Map "hires/sprites/creepyrift/SPI1A4A6.png" }
Brightmap Sprite SPI1A5 { Map "hires/sprites/creepyrift/SPI1A5.png" }
Brightmap Sprite SPI1B1 { Map "hires/sprites/creepyrift/SPI1B1.png" }
Brightmap Sprite SPI1B2B8 { Map "hires/sprites/creepyrift/SPI1B2B8.png" }
Brightmap Sprite SPI1B3B7 { Map "hires/sprites/creepyrift/SPI1B3B7.png" }
Brightmap Sprite SPI1B4B6 { Map "hires/sprites/creepyrift/SPI1B4B6.png" }
Brightmap Sprite SPI1B5 { Map "hires/sprites/creepyrift/SPI1B5.png" }
Brightmap Sprite SPI1E0 { Map "hires/sprites/creepyrift/SPI1E0.png" }
Brightmap Sprite SPI1F0 { Map "hires/sprites/creepyrift/SPI1F0.png" }
Brightmap Sprite SPI1G0 { Map "hires/sprites/creepyrift/SPI1G0.png" }
Brightmap Sprite SPI1H0 { Map "hires/sprites/creepyrift/SPI1H0.png" }
Brightmap Sprite SPI1I0 { Map "hires/sprites/creepyrift/SPI1I0.png" }
Brightmap Sprite SPI1J0 { Map "hires/sprites/creepyrift/SPI1J0.png" }
///////////
//WEAPONS// - here because of different sprite names
///////////
//Firebrand
Brightmap Sprite SRDFB0 { Map "materials/brightmaps/auto/SRDIB0.png" }
Brightmap Sprite SRDFC0 { Map "materials/brightmaps/auto/SRDIC0.png" }
Brightmap Sprite SRDFG0 { Map "materials/brightmaps/auto/SRDFF0.png" }
Brightmap Sprite SRDFI0 { Map "materials/brightmaps/auto/SRDFH0.png" }
Brightmap Sprite SRDFK0 { Map "materials/brightmaps/auto/SRDFJ0.png" }
Brightmap Sprite SRDFL0 { Map "materials/brightmaps/auto/SRDFJ0.png" }
Brightmap Sprite SRDFM0 { Map "materials/brightmaps/auto/SRDFJ0.png" }
Brightmap Sprite SRDFN0 { Map "materials/brightmaps/auto/SRDFN0.png" }
Brightmap Sprite SRDFO0 { Map "materials/brightmaps/auto/SRDFN0.png" }
Brightmap Sprite SRDFQ0 { Map "materials/brightmaps/auto/SRDFP0.png" }
Brightmap Sprite SRDFR0 { Map "materials/brightmaps/auto/SRDFP0.png" }
Brightmap Sprite SRDFT0 { Map "materials/brightmaps/auto/SRDFS0.png" }
Brightmap Sprite SRDFU0 { Map "materials/brightmaps/auto/SRDFS0.png" }
Brightmap Sprite SRDFV0 { Map "materials/brightmaps/auto/SRDFS0.png" }
/////////
//ITEMS//
/////////
Brightmap Sprite VOLTA0 { Map "sprites/sfx/light/VOLTA0.png" }
Brightmap Sprite VOLTB0 { Map "sprites/sfx/light/VOLTB0.png" }
Brightmap Sprite ICNIA0 { Map "sprites/misc/ICNIA0.png" DisableFullBright } //just a test for now - ozy81
//Labs
Brightmap Sprite DJB2C0 { Map "materials/brightmaps/auto/DJB1C0.png" }
Brightmap Sprite DJB2D0 { Map "materials/brightmaps/auto/DJB1D0.png" }
Brightmap Sprite DJB2E0 { Map "materials/brightmaps/auto/DJB1E0.png" }
Brightmap Sprite DJB2F0 { Map "materials/brightmaps/auto/DJB1F0.png" }
Brightmap Sprite DJB3C0 { Map "materials/brightmaps/auto/DJB1C0.png" }
Brightmap Sprite DJB3D0 { Map "materials/brightmaps/auto/DJB1D0.png" }
Brightmap Sprite DJB3E0 { Map "materials/brightmaps/auto/DJB1E0.png" }
Brightmap Sprite DJB3F0 { Map "materials/brightmaps/auto/DJB1F0.png" }
Brightmap Sprite DJB4C0 { Map "materials/brightmaps/auto/DJB1C0.png" }
Brightmap Sprite DJB4D0 { Map "materials/brightmaps/auto/DJB1D0.png" }
Brightmap Sprite DJB4E0 { Map "materials/brightmaps/auto/DJB1E0.png" }
Brightmap Sprite DJB4F0 { Map "materials/brightmaps/auto/DJB1F0.png" }
Brightmap Sprite DJB5C0 { Map "materials/brightmaps/auto/DJB1C0.png" }
Brightmap Sprite DJB5D0 { Map "materials/brightmaps/auto/DJB1D0.png" }
Brightmap Sprite DJB5E0 { Map "materials/brightmaps/auto/DJB1E0.png" }
Brightmap Sprite DJB5F0 { Map "materials/brightmaps/auto/DJB1F0.png" }
Brightmap Sprite DJB6C0 { Map "materials/brightmaps/auto/DJB1C0.png" }
Brightmap Sprite DJB6D0 { Map "materials/brightmaps/auto/DJB1D0.png" }
Brightmap Sprite DJB6E0 { Map "materials/brightmaps/auto/DJB1E0.png" }
Brightmap Sprite DJB6F0 { Map "materials/brightmaps/auto/DJB1F0.png" }
//Vitality Serum - here because of DisableFullbright
Brightmap Sprite VSRMA0
{
Map "materials/brightmaps/auto/VSRMA0.png"
DisableFullBright
}
Brightmap Sprite VSRMB0
{
Map "materials/brightmaps/auto/VSRMB0.png"
DisableFullBright
}
Brightmap Sprite VSRMC0
{
Map "materials/brightmaps/auto/VSRMC0.png"
DisableFullBright
}
////////
//FOES// - here because of different sprite names
////////
//BigMutants - Gray
Brightmap Sprite MTB1A0 { Map "materials/brightmaps/auto/MTNTA0.png" }
Brightmap Sprite MTB1B0 { Map "materials/brightmaps/auto/MTNTB0.png" }
Brightmap Sprite MTB1C0 { Map "materials/brightmaps/auto/MTNTC0.png" }
Brightmap Sprite MTB1D0 { Map "materials/brightmaps/auto/MTNTD0.png" }
Brightmap Sprite MTB1E0 { Map "materials/brightmaps/auto/MTNTE0.png" }
Brightmap Sprite MTB1F0G0 { Map "materials/brightmaps/auto/MTNTF0.png" }
//BigMutants - Brown
Brightmap Sprite MTB2A0 { Map "materials/brightmaps/auto/MTNTA0.png" }
Brightmap Sprite MTB2B0 { Map "materials/brightmaps/auto/MTNTB0.png" }
Brightmap Sprite MTB2C0 { Map "materials/brightmaps/auto/MTNTC0.png" }
Brightmap Sprite MTB2D0 { Map "materials/brightmaps/auto/MTNTD0.png" }
Brightmap Sprite MTB2E0 { Map "materials/brightmaps/auto/MTNTE0.png" }
Brightmap Sprite MTB2F0 { Map "materials/brightmaps/auto/MTNTF0.png" }
Brightmap Sprite MTB2G0 { Map "materials/brightmaps/auto/MTNTG0.png" }
//Civilian Zombies - Red trousers
Brightmap Sprite CIRZA1 { Map "materials/brightmaps/auto/CZOMA1.png" }
Brightmap Sprite CIRZA2 { Map "materials/brightmaps/auto/CZOMA2.png" }
Brightmap Sprite CIRZA3 { Map "materials/brightmaps/auto/CZOMA3.png" }
Brightmap Sprite CIRZA4 { Map "materials/brightmaps/auto/CZOMA4.png" }
Brightmap Sprite CIRZA5 { Map "materials/brightmaps/auto/CZOMA5.png" }
Brightmap Sprite CIRZA8 { Map "materials/brightmaps/auto/CZOMA8.png" }
Brightmap Sprite CIRZB1 { Map "materials/brightmaps/auto/CZOMB1.png" }
Brightmap Sprite CIRZB2 { Map "materials/brightmaps/auto/CZOMB2.png" }
Brightmap Sprite CIRZB3 { Map "materials/brightmaps/auto/CZOMB3.png" }
Brightmap Sprite CIRZB4 { Map "materials/brightmaps/auto/CZOMB4.png" }
Brightmap Sprite CIRZB5 { Map "materials/brightmaps/auto/CZOMB5.png" }
Brightmap Sprite CIRZB8 { Map "materials/brightmaps/auto/CZOMB8.png" }
Brightmap Sprite CIRZC1 { Map "materials/brightmaps/auto/CZOMC1.png" }
Brightmap Sprite CIRZC2 { Map "materials/brightmaps/auto/CZOMC2.png" }
Brightmap Sprite CIRZC3 { Map "materials/brightmaps/auto/CZOMC3.png" }
Brightmap Sprite CIRZC4 { Map "materials/brightmaps/auto/CZOMC4.png" }
Brightmap Sprite CIRZC5 { Map "materials/brightmaps/auto/CZOMC5.png" }
Brightmap Sprite CIRZC8 { Map "materials/brightmaps/auto/CZOMC8.png" }
Brightmap Sprite CIRZD1 { Map "materials/brightmaps/auto/CZOMD1.png" }
Brightmap Sprite CIRZD2 { Map "materials/brightmaps/auto/CZOMD2.png" }
Brightmap Sprite CIRZD3 { Map "materials/brightmaps/auto/CZOMD3.png" }
Brightmap Sprite CIRZD4 { Map "materials/brightmaps/auto/CZOMD4.png" }
Brightmap Sprite CIRZD5 { Map "materials/brightmaps/auto/CZOMD5.png" }
Brightmap Sprite CIRZD8 { Map "materials/brightmaps/auto/CZOMD8.png" }
Brightmap Sprite CIRZE1 { Map "materials/brightmaps/auto/CZOME1.png" }
Brightmap Sprite CIRZE2 { Map "materials/brightmaps/auto/CZOME2.png" }
Brightmap Sprite CIRZE3 { Map "materials/brightmaps/auto/CZOME3.png" }
Brightmap Sprite CIRZE4 { Map "materials/brightmaps/auto/CZOME4.png" }
Brightmap Sprite CIRZE5 { Map "materials/brightmaps/auto/CZOME5.png" }
Brightmap Sprite CIRZE8 { Map "materials/brightmaps/auto/CZOME8.png" }
Brightmap Sprite CIRZF2 { Map "materials/brightmaps/auto/CZOMF2.png" }
Brightmap Sprite CIRZF3 { Map "materials/brightmaps/auto/CZOMF3.png" }
Brightmap Sprite CIRZF4 { Map "materials/brightmaps/auto/CZOMF4.png" }
Brightmap Sprite CIRZF5 { Map "materials/brightmaps/auto/CZOMF5.png" }
Brightmap Sprite CIRZF8 { Map "materials/brightmaps/auto/CZOMF8.png" }
Brightmap Sprite CIRZG1 { Map "materials/brightmaps/auto/CZOMG1.png" }
Brightmap Sprite CIRZG2 { Map "materials/brightmaps/auto/CZOMG2.png" }
Brightmap Sprite CIRZG3 { Map "materials/brightmaps/auto/CZOMG3.png" }
Brightmap Sprite CIRZG4 { Map "materials/brightmaps/auto/CZOMG4.png" }
Brightmap Sprite CIRZG8 { Map "materials/brightmaps/auto/CZOMG8.png" }
Brightmap Sprite CIRZH0 { Map "materials/brightmaps/auto/CZOMH0.png" }
Brightmap Sprite CIRZI0 { Map "materials/brightmaps/auto/CZOMI0.png" }
Brightmap Sprite CIRZJ0 { Map "materials/brightmaps/auto/CZOMJ0.png" }
Brightmap Sprite CIRZK0 { Map "materials/brightmaps/auto/CZOMK0.png" }
Brightmap Sprite CIRZL0 { Map "materials/brightmaps/auto/CZOML0.png" }
Brightmap Sprite CIRZM0 { Map "materials/brightmaps/auto/CZOMM0.png" }
Brightmap Sprite CIRZN1 { Map "materials/brightmaps/auto/CZOMN1.png" }
Brightmap Sprite CIRZN2 { Map "materials/brightmaps/auto/CZOMN2.png" }
Brightmap Sprite CIRZN3 { Map "materials/brightmaps/auto/CZOMN3.png" }
Brightmap Sprite CIRZN4 { Map "materials/brightmaps/auto/CZOMN4.png" }
Brightmap Sprite CIRZN5 { Map "materials/brightmaps/auto/CZOMN5.png" }
Brightmap Sprite CIRZN8 { Map "materials/brightmaps/auto/CZOMN8.png" }
//Longinus Hitler
Brightmap Sprite SHI2H0 { Map "materials/brightmaps/auto/SHI1H0.png" }
Brightmap Sprite SHI2S0 { Map "materials/brightmaps/auto/SHI1S0.png" }
//Mechas - Afrika
Brightmap Sprite MCAFF3 { Map "materials/brightmaps/auto/MCAFFG3.png" }
Brightmap Sprite MCAFG3 { Map "materials/brightmaps/auto/MCAFFG3.png" }
//Mechas - Navy
Brightmap Sprite MAVYF1 { Map "materials/brightmaps/auto/MCSSF1.png" }
Brightmap Sprite MAVYF2 { Map "materials/brightmaps/auto/MCSSF2.png" }
Brightmap Sprite MAVYF3 { Map "materials/brightmaps/auto/MCSSF3.png" }
Brightmap Sprite MAVYF4 { Map "materials/brightmaps/auto/MCSSF4.png" }
Brightmap Sprite MAVYF5 { Map "materials/brightmaps/auto/MCSSF5.png" }
Brightmap Sprite MAVYF6 { Map "materials/brightmaps/auto/MCSSF6.png" }
Brightmap Sprite MAVYF7 { Map "materials/brightmaps/auto/MCSSF7.png" }
Brightmap Sprite MAVYF8 { Map "materials/brightmaps/auto/MCSSF8.png" }
Brightmap Sprite MAVYG1 { Map "materials/brightmaps/auto/MCSSG1.png" }
Brightmap Sprite MAVYG2 { Map "materials/brightmaps/auto/MCSSG2.png" }
Brightmap Sprite MAVYG3 { Map "materials/brightmaps/auto/MCSSG3.png" }
Brightmap Sprite MAVYG4 { Map "materials/brightmaps/auto/MCSSG4.png" }
Brightmap Sprite MAVYG5 { Map "materials/brightmaps/auto/MCSSG5.png" }
Brightmap Sprite MAVYG6 { Map "materials/brightmaps/auto/MCSSG6.png" }
Brightmap Sprite MAVYG7 { Map "materials/brightmaps/auto/MCSSG7.png" }
Brightmap Sprite MAVYG8 { Map "materials/brightmaps/auto/MCSSG8.png" }
//Sniper - Afrika
Brightmap Sprite SNIAG1 { Map "materials/brightmaps/auto/RGRDG1.png" }
Brightmap Sprite SNIAG2 { Map "materials/brightmaps/auto/RGRDG2.png" }
Brightmap Sprite SNIAG3 { Map "materials/brightmaps/auto/RGRDG3.png" }
Brightmap Sprite SNIAG4 { Map "materials/brightmaps/auto/RGRDG4.png" }
Brightmap Sprite SNIAG5 { Map "materials/brightmaps/auto/RGRDG5.png" }
Brightmap Sprite SNIAG6 { Map "materials/brightmaps/auto/RGRDG6.png" }
Brightmap Sprite SNIAG7 { Map "materials/brightmaps/auto/RGRDG7.png" }
Brightmap Sprite SNIAG8 { Map "materials/brightmaps/auto/RGRDG8.png" }
//Flamer Soldier - Afrika
Brightmap Sprite FLS2A1 { Map "materials/brightmaps/auto/FLSLA1.png" }
Brightmap Sprite FLS2A2 { Map "materials/brightmaps/auto/FLSLA2.png" }
Brightmap Sprite FLS2A3 { Map "materials/brightmaps/auto/FLSLA3.png" }
Brightmap Sprite FLS2A4 { Map "materials/brightmaps/auto/FLSLA4.png" }
Brightmap Sprite FLS2A5 { Map "materials/brightmaps/auto/FLSLA5.png" }
Brightmap Sprite FLS2A7 { Map "materials/brightmaps/auto/FLSLA7.png" }
Brightmap Sprite FLS2A8 { Map "materials/brightmaps/auto/FLSLA8.png" }
Brightmap Sprite FLS2B1 { Map "materials/brightmaps/auto/FLSLB1.png" }
Brightmap Sprite FLS2B2 { Map "materials/brightmaps/auto/FLSLB2.png" }
Brightmap Sprite FLS2B3 { Map "materials/brightmaps/auto/FLSLB3.png" }
Brightmap Sprite FLS2B4 { Map "materials/brightmaps/auto/FLSLB4.png" }
Brightmap Sprite FLS2B5 { Map "materials/brightmaps/auto/FLSLB5.png" }
Brightmap Sprite FLS2B7 { Map "materials/brightmaps/auto/FLSLB7.png" }
Brightmap Sprite FLS2B8 { Map "materials/brightmaps/auto/FLSLB8.png" }
Brightmap Sprite FLS2C1 { Map "materials/brightmaps/auto/FLSLC1.png" }
Brightmap Sprite FLS2C2 { Map "materials/brightmaps/auto/FLSLC2.png" }
Brightmap Sprite FLS2C3 { Map "materials/brightmaps/auto/FLSLC3.png" }
Brightmap Sprite FLS2C4 { Map "materials/brightmaps/auto/FLSLC4.png" }
Brightmap Sprite FLS2C5 { Map "materials/brightmaps/auto/FLSLC5.png" }
Brightmap Sprite FLS2C7 { Map "materials/brightmaps/auto/FLSLC7.png" }
Brightmap Sprite FLS2C8 { Map "materials/brightmaps/auto/FLSLC8.png" }
Brightmap Sprite FLS2D1 { Map "materials/brightmaps/auto/FLSLD1.png" }
Brightmap Sprite FLS2D2 { Map "materials/brightmaps/auto/FLSLD2.png" }
Brightmap Sprite FLS2D3 { Map "materials/brightmaps/auto/FLSLD3.png" }
Brightmap Sprite FLS2D4 { Map "materials/brightmaps/auto/FLSLD4.png" }
Brightmap Sprite FLS2D5 { Map "materials/brightmaps/auto/FLSLD5.png" }
Brightmap Sprite FLS2D7 { Map "materials/brightmaps/auto/FLSLD7.png" }
Brightmap Sprite FLS2D8 { Map "materials/brightmaps/auto/FLSLD8.png" }
Brightmap Sprite FLS2E1 { Map "materials/brightmaps/auto/FLSLE1.png" }
Brightmap Sprite FLS2E2 { Map "materials/brightmaps/auto/FLSLE2.png" }
Brightmap Sprite FLS2E3 { Map "materials/brightmaps/auto/FLSLE3.png" }
Brightmap Sprite FLS2E4 { Map "materials/brightmaps/auto/FLSLE4.png" }
Brightmap Sprite FLS2E5 { Map "materials/brightmaps/auto/FLSLE5.png" }
Brightmap Sprite FLS2E7 { Map "materials/brightmaps/auto/FLSLE7.png" }
Brightmap Sprite FLS2E8 { Map "materials/brightmaps/auto/FLSLE8.png" }
Brightmap Sprite FLS2F1 { Map "materials/brightmaps/auto/FLSLF1.png" }
Brightmap Sprite FLS2F2 { Map "materials/brightmaps/auto/FLSLF2.png" }
Brightmap Sprite FLS2F3 { Map "materials/brightmaps/auto/FLSLF3.png" }
Brightmap Sprite FLS2F4 { Map "materials/brightmaps/auto/FLSLF4.png" }
Brightmap Sprite FLS2F6 { Map "materials/brightmaps/auto/FLSLF6.png" }
Brightmap Sprite FLS2F7 { Map "materials/brightmaps/auto/FLSLF7.png" }
Brightmap Sprite FLS2F8 { Map "materials/brightmaps/auto/FLSLF8.png" }
Brightmap Sprite FLS2G1 { Map "materials/brightmaps/auto/FLSLGH1.png" }
Brightmap Sprite FLS2G2 { Map "materials/brightmaps/auto/FLSLGH2.png" }
Brightmap Sprite FLS2G3 { Map "materials/brightmaps/auto/FLSLGH3.png" }
Brightmap Sprite FLS2G4 { Map "materials/brightmaps/auto/FLSLGH4.png" }
Brightmap Sprite FLS2G5 { Map "materials/brightmaps/auto/FLSLGH5.png" }
Brightmap Sprite FLS2G6 { Map "materials/brightmaps/auto/FLSLGH6.png" }
Brightmap Sprite FLS2G7 { Map "materials/brightmaps/auto/FLSLGH7.png" }
Brightmap Sprite FLS2G8 { Map "materials/brightmaps/auto/FLSLGH8.png" }
Brightmap Sprite FLS2H1 { Map "materials/brightmaps/auto/FLSLGH1.png" }
Brightmap Sprite FLS2H2 { Map "materials/brightmaps/auto/FLSLGH2.png" }
Brightmap Sprite FLS2H3 { Map "materials/brightmaps/auto/FLSLGH3.png" }
Brightmap Sprite FLS2H4 { Map "materials/brightmaps/auto/FLSLGH4.png" }
Brightmap Sprite FLS2H5 { Map "materials/brightmaps/auto/FLSLGH5.png" }
Brightmap Sprite FLS2H6 { Map "materials/brightmaps/auto/FLSLGH6.png" }
Brightmap Sprite FLS2H7 { Map "materials/brightmaps/auto/FLSLGH7.png" }
Brightmap Sprite FLS2H8 { Map "materials/brightmaps/auto/FLSLGH8.png" }
Brightmap Sprite FLS2I1 { Map "materials/brightmaps/auto/FLSLI1.png" }
Brightmap Sprite FLS2I2 { Map "materials/brightmaps/auto/FLSLI2.png" }
Brightmap Sprite FLS2I3 { Map "materials/brightmaps/auto/FLSLI3.png" }
Brightmap Sprite FLS2I4 { Map "materials/brightmaps/auto/FLSLI4.png" }
Brightmap Sprite FLS2I5 { Map "materials/brightmaps/auto/FLSLI5.png" }
Brightmap Sprite FLS2I7 { Map "materials/brightmaps/auto/FLSLI7.png" }
Brightmap Sprite FLS2I8 { Map "materials/brightmaps/auto/FLSLI8.png" }
Brightmap Sprite FLS2J0 { Map "materials/brightmaps/auto/FLSLJ0.png" }
//Flamer Soldier - Whermacht
Brightmap Sprite FLSLG1 { Map "materials/brightmaps/auto/FLSLGH1.png" }
Brightmap Sprite FLSLG2 { Map "materials/brightmaps/auto/FLSLGH2.png" }
Brightmap Sprite FLSLG3 { Map "materials/brightmaps/auto/FLSLGH3.png" }
Brightmap Sprite FLSLG4 { Map "materials/brightmaps/auto/FLSLGH4.png" }
Brightmap Sprite FLSLG5 { Map "materials/brightmaps/auto/FLSLGH5.png" }
Brightmap Sprite FLSLG6 { Map "materials/brightmaps/auto/FLSLGH6.png" }
Brightmap Sprite FLSLG7 { Map "materials/brightmaps/auto/FLSLGH7.png" }
Brightmap Sprite FLSLG8 { Map "materials/brightmaps/auto/FLSLGH8.png" }
Brightmap Sprite FLSLH1 { Map "materials/brightmaps/auto/FLSLGH1.png" }
Brightmap Sprite FLSLH2 { Map "materials/brightmaps/auto/FLSLGH2.png" }
Brightmap Sprite FLSLH3 { Map "materials/brightmaps/auto/FLSLGH3.png" }
Brightmap Sprite FLSLH4 { Map "materials/brightmaps/auto/FLSLGH4.png" }
Brightmap Sprite FLSLH5 { Map "materials/brightmaps/auto/FLSLGH5.png" }
Brightmap Sprite FLSLH6 { Map "materials/brightmaps/auto/FLSLGH6.png" }
Brightmap Sprite FLSLH7 { Map "materials/brightmaps/auto/FLSLGH7.png" }
Brightmap Sprite FLSLH8 { Map "materials/brightmaps/auto/FLSLGH8.png" }
//Zombie Brain Eater (variants)
Brightmap Sprite ZBAFA1 { Map "materials/brightmaps/auto/ZBITA1.png" }
Brightmap Sprite ZBAFA2 { Map "materials/brightmaps/auto/ZBITA2.png" }
Brightmap Sprite ZBAFA3 { Map "materials/brightmaps/auto/ZBITA3.png" }
Brightmap Sprite ZBAFA4 { Map "materials/brightmaps/auto/ZBITA4.png" }
Brightmap Sprite ZBAFA5 { Map "materials/brightmaps/auto/ZBITA5.png" }
Brightmap Sprite ZBAFA8 { Map "materials/brightmaps/auto/ZBITA8.png" }
Brightmap Sprite ZBAFB1 { Map "materials/brightmaps/auto/ZBITB1.png" }
Brightmap Sprite ZBAFB2 { Map "materials/brightmaps/auto/ZBITB2.png" }
Brightmap Sprite ZBAFB3 { Map "materials/brightmaps/auto/ZBITB3.png" }
Brightmap Sprite ZBAFB4 { Map "materials/brightmaps/auto/ZBITB4.png" }
Brightmap Sprite ZBAFB5 { Map "materials/brightmaps/auto/ZBITB5.png" }
Brightmap Sprite ZBAFB8 { Map "materials/brightmaps/auto/ZBITB8.png" }
Brightmap Sprite ZBAFC1 { Map "materials/brightmaps/auto/ZBITC1.png" }
Brightmap Sprite ZBAFC2 { Map "materials/brightmaps/auto/ZBITC2.png" }
Brightmap Sprite ZBAFC3 { Map "materials/brightmaps/auto/ZBITC3.png" }
Brightmap Sprite ZBAFC4 { Map "materials/brightmaps/auto/ZBITC4.png" }
Brightmap Sprite ZBAFC5 { Map "materials/brightmaps/auto/ZBITC5.png" }
Brightmap Sprite ZBAFC8 { Map "materials/brightmaps/auto/ZBITC8.png" }
Brightmap Sprite ZBAFD1 { Map "materials/brightmaps/auto/ZBITD1.png" }
Brightmap Sprite ZBAFD2 { Map "materials/brightmaps/auto/ZBITD2.png" }
Brightmap Sprite ZBAFD3 { Map "materials/brightmaps/auto/ZBITD3.png" }
Brightmap Sprite ZBAFD4 { Map "materials/brightmaps/auto/ZBITD4.png" }
Brightmap Sprite ZBAFD5 { Map "materials/brightmaps/auto/ZBITD5.png" }
Brightmap Sprite ZBAFD8 { Map "materials/brightmaps/auto/ZBITD8.png" }
Brightmap Sprite ZBAFE1 { Map "materials/brightmaps/auto/ZBITE1.png" }
Brightmap Sprite ZBAFE2 { Map "materials/brightmaps/auto/ZBITE2.png" }
Brightmap Sprite ZBAFE3 { Map "materials/brightmaps/auto/ZBITE3.png" }
Brightmap Sprite ZBAFE4 { Map "materials/brightmaps/auto/ZBITE4.png" }
Brightmap Sprite ZBAFE5 { Map "materials/brightmaps/auto/ZBITE5.png" }
Brightmap Sprite ZBAFE8 { Map "materials/brightmaps/auto/ZBITE8.png" }
Brightmap Sprite ZBAFF2 { Map "materials/brightmaps/auto/ZBITF2.png" }
Brightmap Sprite ZBAFF3 { Map "materials/brightmaps/auto/ZBITF3.png" }
Brightmap Sprite ZBAFF4 { Map "materials/brightmaps/auto/ZBITF4.png" }
Brightmap Sprite ZBAFF5 { Map "materials/brightmaps/auto/ZBITF5.png" }
Brightmap Sprite ZBAFF8 { Map "materials/brightmaps/auto/ZBITF8.png" }
Brightmap Sprite ZBAFG1 { Map "materials/brightmaps/auto/ZBITG1.png" }
Brightmap Sprite ZBAFG2 { Map "materials/brightmaps/auto/ZBITG2.png" }
Brightmap Sprite ZBAFG3 { Map "materials/brightmaps/auto/ZBITG3.png" }
Brightmap Sprite ZBAFG4 { Map "materials/brightmaps/auto/ZBITG4.png" }
Brightmap Sprite ZBAFG8 { Map "materials/brightmaps/auto/ZBITG8.png" }
Brightmap Sprite ZBAFI0 { Map "materials/brightmaps/auto/ZBITI0.png" }
Brightmap Sprite ZBAFJ0 { Map "materials/brightmaps/auto/ZBITJ0.png" }
Brightmap Sprite ZBAFK0 { Map "materials/brightmaps/auto/ZBITK0.png" }
Brightmap Sprite ZBAFL0 { Map "materials/brightmaps/auto/ZBITL0.png" }
Brightmap Sprite ZBAFN1 { Map "materials/brightmaps/auto/ZBITN1.png" }
Brightmap Sprite ZBAFN2 { Map "materials/brightmaps/auto/ZBITN2.png" }
Brightmap Sprite ZBAFN3 { Map "materials/brightmaps/auto/ZBITN3.png" }
Brightmap Sprite ZBAFN4 { Map "materials/brightmaps/auto/ZBITN4.png" }
Brightmap Sprite ZBAFN5 { Map "materials/brightmaps/auto/ZBITN5.png" }
Brightmap Sprite ZBAFN8 { Map "materials/brightmaps/auto/ZBITN8.png" }
Brightmap Sprite ZBAFO1 { Map "materials/brightmaps/auto/ZBITO1.png" }
Brightmap Sprite ZBAFO2 { Map "materials/brightmaps/auto/ZBITO2.png" }
Brightmap Sprite ZBAFO3 { Map "materials/brightmaps/auto/ZBITO3.png" }
Brightmap Sprite ZBAFO4 { Map "materials/brightmaps/auto/ZBITO4.png" }
Brightmap Sprite ZBAFO5 { Map "materials/brightmaps/auto/ZBITO5.png" }
Brightmap Sprite ZBAFO8 { Map "materials/brightmaps/auto/ZBITO8.png" }
Brightmap Sprite ZBAFP1 { Map "materials/brightmaps/auto/ZBITP1.png" }
Brightmap Sprite ZBAFP2 { Map "materials/brightmaps/auto/ZBITP2.png" }
Brightmap Sprite ZBAFP3 { Map "materials/brightmaps/auto/ZBITP3.png" }
Brightmap Sprite ZBAFP4 { Map "materials/brightmaps/auto/ZBITP4.png" }
Brightmap Sprite ZBAFP5 { Map "materials/brightmaps/auto/ZBITP5.png" }
Brightmap Sprite ZBAFP8 { Map "materials/brightmaps/auto/ZBITP8.png" }
Brightmap Sprite ZBAFQ1 { Map "materials/brightmaps/auto/ZBITQ1.png" }
Brightmap Sprite ZBAFQ2 { Map "materials/brightmaps/auto/ZBITQ2.png" }
Brightmap Sprite ZBAFQ3 { Map "materials/brightmaps/auto/ZBITQ3.png" }
Brightmap Sprite ZBAFQ4 { Map "materials/brightmaps/auto/ZBITQ4.png" }
Brightmap Sprite ZBAFQ5 { Map "materials/brightmaps/auto/ZBITQ5.png" }
Brightmap Sprite ZBAFQ8 { Map "materials/brightmaps/auto/ZBITQ8.png" }
Brightmap Sprite ZBAFR1 { Map "materials/brightmaps/auto/ZBITR1.png" }
Brightmap Sprite ZBAFR2 { Map "materials/brightmaps/auto/ZBITR2.png" }
Brightmap Sprite ZBAFR3 { Map "materials/brightmaps/auto/ZBITR3.png" }
Brightmap Sprite ZBAFR4 { Map "materials/brightmaps/auto/ZBITR4.png" }
Brightmap Sprite ZBAFR5 { Map "materials/brightmaps/auto/ZBITR5.png" }
Brightmap Sprite ZBAFR8 { Map "materials/brightmaps/auto/ZBITR8.png" }
Brightmap Sprite ZBSSA1 { Map "materials/brightmaps/auto/ZBITA1.png" }
Brightmap Sprite ZBSSA2 { Map "materials/brightmaps/auto/ZBITA2.png" }
Brightmap Sprite ZBSSA3 { Map "materials/brightmaps/auto/ZBITA3.png" }
Brightmap Sprite ZBSSA4 { Map "materials/brightmaps/auto/ZBITA4.png" }
Brightmap Sprite ZBSSA5 { Map "materials/brightmaps/auto/ZBITA5.png" }
Brightmap Sprite ZBSSA8 { Map "materials/brightmaps/auto/ZBITA8.png" }
Brightmap Sprite ZBSSB1 { Map "materials/brightmaps/auto/ZBITB1.png" }
Brightmap Sprite ZBSSB2 { Map "materials/brightmaps/auto/ZBITB2.png" }
Brightmap Sprite ZBSSB3 { Map "materials/brightmaps/auto/ZBITB3.png" }
Brightmap Sprite ZBSSB4 { Map "materials/brightmaps/auto/ZBITB4.png" }
Brightmap Sprite ZBSSB5 { Map "materials/brightmaps/auto/ZBITB5.png" }
Brightmap Sprite ZBSSB8 { Map "materials/brightmaps/auto/ZBITB8.png" }
Brightmap Sprite ZBSSC1 { Map "materials/brightmaps/auto/ZBITC1.png" }
Brightmap Sprite ZBSSC2 { Map "materials/brightmaps/auto/ZBITC2.png" }
Brightmap Sprite ZBSSC3 { Map "materials/brightmaps/auto/ZBITC3.png" }
Brightmap Sprite ZBSSC4 { Map "materials/brightmaps/auto/ZBITC4.png" }
Brightmap Sprite ZBSSC5 { Map "materials/brightmaps/auto/ZBITC5.png" }
Brightmap Sprite ZBSSC8 { Map "materials/brightmaps/auto/ZBITC8.png" }
Brightmap Sprite ZBSSD1 { Map "materials/brightmaps/auto/ZBITD1.png" }
Brightmap Sprite ZBSSD2 { Map "materials/brightmaps/auto/ZBITD2.png" }
Brightmap Sprite ZBSSD3 { Map "materials/brightmaps/auto/ZBITD3.png" }
Brightmap Sprite ZBSSD4 { Map "materials/brightmaps/auto/ZBITD4.png" }
Brightmap Sprite ZBSSD5 { Map "materials/brightmaps/auto/ZBITD5.png" }
Brightmap Sprite ZBSSD8 { Map "materials/brightmaps/auto/ZBITD8.png" }
Brightmap Sprite ZBSSE1 { Map "materials/brightmaps/auto/ZBITE1.png" }
Brightmap Sprite ZBSSE2 { Map "materials/brightmaps/auto/ZBITE2.png" }
Brightmap Sprite ZBSSE3 { Map "materials/brightmaps/auto/ZBITE3.png" }
Brightmap Sprite ZBSSE4 { Map "materials/brightmaps/auto/ZBITE4.png" }
Brightmap Sprite ZBSSE5 { Map "materials/brightmaps/auto/ZBITE5.png" }
Brightmap Sprite ZBSSE8 { Map "materials/brightmaps/auto/ZBITE8.png" }
Brightmap Sprite ZBSSF2 { Map "materials/brightmaps/auto/ZBITF2.png" }
Brightmap Sprite ZBSSF3 { Map "materials/brightmaps/auto/ZBITF3.png" }
Brightmap Sprite ZBSSF4 { Map "materials/brightmaps/auto/ZBITF4.png" }
Brightmap Sprite ZBSSF5 { Map "materials/brightmaps/auto/ZBITF5.png" }
Brightmap Sprite ZBSSF8 { Map "materials/brightmaps/auto/ZBITF8.png" }
Brightmap Sprite ZBSSG1 { Map "materials/brightmaps/auto/ZBITG1.png" }
Brightmap Sprite ZBSSG2 { Map "materials/brightmaps/auto/ZBITG2.png" }
Brightmap Sprite ZBSSG3 { Map "materials/brightmaps/auto/ZBITG3.png" }
Brightmap Sprite ZBSSG4 { Map "materials/brightmaps/auto/ZBITG4.png" }
Brightmap Sprite ZBSSG8 { Map "materials/brightmaps/auto/ZBITG8.png" }
Brightmap Sprite ZBSSI0 { Map "materials/brightmaps/auto/ZBITI0.png" }
Brightmap Sprite ZBSSJ0 { Map "materials/brightmaps/auto/ZBITJ0.png" }
Brightmap Sprite ZBSSK0 { Map "materials/brightmaps/auto/ZBITK0.png" }
Brightmap Sprite ZBSSL0 { Map "materials/brightmaps/auto/ZBITL0.png" }
Brightmap Sprite ZBSSN1 { Map "materials/brightmaps/auto/ZBITN1.png" }
Brightmap Sprite ZBSSN2 { Map "materials/brightmaps/auto/ZBITN2.png" }
Brightmap Sprite ZBSSN3 { Map "materials/brightmaps/auto/ZBITN3.png" }
Brightmap Sprite ZBSSN4 { Map "materials/brightmaps/auto/ZBITN4.png" }
Brightmap Sprite ZBSSN5 { Map "materials/brightmaps/auto/ZBITN5.png" }
Brightmap Sprite ZBSSN8 { Map "materials/brightmaps/auto/ZBITN8.png" }
Brightmap Sprite ZBSSO1 { Map "materials/brightmaps/auto/ZBITO1.png" }
Brightmap Sprite ZBSSO2 { Map "materials/brightmaps/auto/ZBITO2.png" }
Brightmap Sprite ZBSSO3 { Map "materials/brightmaps/auto/ZBITO3.png" }
Brightmap Sprite ZBSSO4 { Map "materials/brightmaps/auto/ZBITO4.png" }
Brightmap Sprite ZBSSO5 { Map "materials/brightmaps/auto/ZBITO5.png" }
Brightmap Sprite ZBSSO8 { Map "materials/brightmaps/auto/ZBITO8.png" }
Brightmap Sprite ZBSSP1 { Map "materials/brightmaps/auto/ZBITP1.png" }
Brightmap Sprite ZBSSP2 { Map "materials/brightmaps/auto/ZBITP2.png" }
Brightmap Sprite ZBSSP3 { Map "materials/brightmaps/auto/ZBITP3.png" }
Brightmap Sprite ZBSSP4 { Map "materials/brightmaps/auto/ZBITP4.png" }
Brightmap Sprite ZBSSP5 { Map "materials/brightmaps/auto/ZBITP5.png" }
Brightmap Sprite ZBSSP8 { Map "materials/brightmaps/auto/ZBITP8.png" }
Brightmap Sprite ZBSSQ1 { Map "materials/brightmaps/auto/ZBITQ1.png" }
Brightmap Sprite ZBSSQ2 { Map "materials/brightmaps/auto/ZBITQ2.png" }
Brightmap Sprite ZBSSQ3 { Map "materials/brightmaps/auto/ZBITQ3.png" }
Brightmap Sprite ZBSSQ4 { Map "materials/brightmaps/auto/ZBITQ4.png" }
Brightmap Sprite ZBSSQ5 { Map "materials/brightmaps/auto/ZBITQ5.png" }
Brightmap Sprite ZBSSQ8 { Map "materials/brightmaps/auto/ZBITQ8.png" }
Brightmap Sprite ZBSSR1 { Map "materials/brightmaps/auto/ZBITR1.png" }
Brightmap Sprite ZBSSR2 { Map "materials/brightmaps/auto/ZBITR2.png" }
Brightmap Sprite ZBSSR3 { Map "materials/brightmaps/auto/ZBITR3.png" }
Brightmap Sprite ZBSSR4 { Map "materials/brightmaps/auto/ZBITR4.png" }
Brightmap Sprite ZBSSR5 { Map "materials/brightmaps/auto/ZBITR5.png" }
Brightmap Sprite ZBSSR8 { Map "materials/brightmaps/auto/ZBITR8.png" }
//Zombie Officer (variants)
Brightmap Sprite ZOAFB5 { Map "materials/brightmaps/auto/ZOFFB5.png" }
Brightmap Sprite ZOAFF1 { Map "materials/brightmaps/auto/ZOFFF1.png" }
Brightmap Sprite ZOAFF2 { Map "materials/brightmaps/auto/ZOFFF2.png" }
Brightmap Sprite ZOAFF3 { Map "materials/brightmaps/auto/ZOFFF3.png" }
Brightmap Sprite ZOAFF4 { Map "materials/brightmaps/auto/ZOFFF4.png" }
Brightmap Sprite ZOAFF5 { Map "materials/brightmaps/auto/ZOFFF5.png" }
Brightmap Sprite ZOAFF6 { Map "materials/brightmaps/auto/ZOFFF6.png" }
Brightmap Sprite ZOAFF7 { Map "materials/brightmaps/auto/ZOFFF7.png" }
Brightmap Sprite ZOAFF8 { Map "materials/brightmaps/auto/ZOFFF8.png" }
Brightmap Sprite ZOAFG1 { Map "materials/brightmaps/auto/ZOFFG1.png" }
Brightmap Sprite ZOAFG2 { Map "materials/brightmaps/auto/ZOFFG2.png" }