blob: 38146b0633bccbc58ec3b1b9f77f64123ed24032 (
plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
|
bin/maxr
%%DATADIR%%/AUTHORS
%%DATADIR%%/COPYING
%%DATADIR%%/COPYING.README
%%DATADIR%%/MANUAL
%%DATADIR%%/buildings/barracks/data.xml
%%DATADIR%%/buildings/barracks/img.pcx
%%DATADIR%%/buildings/barracks/info.pcx
%%DATADIR%%/buildings/barracks/shw.pcx
%%DATADIR%%/buildings/barracks/video.pcx
%%DATADIR%%/buildings/block/data.xml
%%DATADIR%%/buildings/block/img.pcx
%%DATADIR%%/buildings/block/info.pcx
%%DATADIR%%/buildings/block/shw.pcx
%%DATADIR%%/buildings/block/video.pcx
%%DATADIR%%/buildings/bridge/data.xml
%%DATADIR%%/buildings/bridge/img.pcx
%%DATADIR%%/buildings/bridge/info.pcx
%%DATADIR%%/buildings/bridge/shw.pcx
%%DATADIR%%/buildings/bridge/video.pcx
%%DATADIR%%/buildings/buildings.xml
%%DATADIR%%/buildings/connector/data.xml
%%DATADIR%%/buildings/connector/img.pcx
%%DATADIR%%/buildings/connector/info.pcx
%%DATADIR%%/buildings/connector/shw.pcx
%%DATADIR%%/buildings/connector/video.pcx
%%DATADIR%%/buildings/depot/data.xml
%%DATADIR%%/buildings/depot/img.pcx
%%DATADIR%%/buildings/depot/info.pcx
%%DATADIR%%/buildings/depot/shw.pcx
%%DATADIR%%/buildings/depot/video.pcx
%%DATADIR%%/buildings/dirt_big.pcx
%%DATADIR%%/buildings/dirt_big_shw.pcx
%%DATADIR%%/buildings/dirt_small.pcx
%%DATADIR%%/buildings/dirt_small_shw.pcx
%%DATADIR%%/buildings/dock/data.xml
%%DATADIR%%/buildings/dock/img.pcx
%%DATADIR%%/buildings/dock/info.pcx
%%DATADIR%%/buildings/dock/shw.pcx
%%DATADIR%%/buildings/dock/video.pcx
%%DATADIR%%/buildings/energy_big/data.xml
%%DATADIR%%/buildings/energy_big/effect.pcx
%%DATADIR%%/buildings/energy_big/effect_org.pcx
%%DATADIR%%/buildings/energy_big/img.pcx
%%DATADIR%%/buildings/energy_big/info.pcx
%%DATADIR%%/buildings/energy_big/shw.pcx
%%DATADIR%%/buildings/energy_big/video.pcx
%%DATADIR%%/buildings/energy_small/data.xml
%%DATADIR%%/buildings/energy_small/effect.pcx
%%DATADIR%%/buildings/energy_small/effect_org.pcx
%%DATADIR%%/buildings/energy_small/img.pcx
%%DATADIR%%/buildings/energy_small/info.pcx
%%DATADIR%%/buildings/energy_small/shw.pcx
%%DATADIR%%/buildings/energy_small/video.pcx
%%DATADIR%%/buildings/fac_air/data.xml
%%DATADIR%%/buildings/fac_air/effect.pcx
%%DATADIR%%/buildings/fac_air/effect_org.pcx
%%DATADIR%%/buildings/fac_air/img.pcx
%%DATADIR%%/buildings/fac_air/info.pcx
%%DATADIR%%/buildings/fac_air/shw.pcx
%%DATADIR%%/buildings/fac_air/video.pcx
%%DATADIR%%/buildings/fac_alien/data.xml
%%DATADIR%%/buildings/fac_alien/effect.pcx
%%DATADIR%%/buildings/fac_alien/effect_org.pcx
%%DATADIR%%/buildings/fac_big/data.xml
%%DATADIR%%/buildings/fac_big/effect.pcx
%%DATADIR%%/buildings/fac_big/effect_org.pcx
%%DATADIR%%/buildings/fac_big/img.pcx
%%DATADIR%%/buildings/fac_big/info.pcx
%%DATADIR%%/buildings/fac_big/shw.pcx
%%DATADIR%%/buildings/fac_big/video.pcx
%%DATADIR%%/buildings/fac_ship/data.xml
%%DATADIR%%/buildings/fac_ship/effect.pcx
%%DATADIR%%/buildings/fac_ship/effect_org.pcx
%%DATADIR%%/buildings/fac_ship/img.pcx
%%DATADIR%%/buildings/fac_ship/info.pcx
%%DATADIR%%/buildings/fac_ship/shw.pcx
%%DATADIR%%/buildings/fac_ship/video.pcx
%%DATADIR%%/buildings/fac_small/data.xml
%%DATADIR%%/buildings/fac_small/effect.pcx
%%DATADIR%%/buildings/fac_small/effect_org.pcx
%%DATADIR%%/buildings/fac_small/img.pcx
%%DATADIR%%/buildings/fac_small/info.pcx
%%DATADIR%%/buildings/fac_small/shw.pcx
%%DATADIR%%/buildings/fac_small/video.pcx
%%DATADIR%%/buildings/goldraff/.directory
%%DATADIR%%/buildings/goldraff/data.xml
%%DATADIR%%/buildings/goldraff/effect.pcx
%%DATADIR%%/buildings/goldraff/effect_org.pcx
%%DATADIR%%/buildings/goldraff/img.pcx
%%DATADIR%%/buildings/goldraff/info.pcx
%%DATADIR%%/buildings/goldraff/shw.pcx
%%DATADIR%%/buildings/goldraff/video.pcx
%%DATADIR%%/buildings/gun_aa/data.xml
%%DATADIR%%/buildings/gun_aa/img.pcx
%%DATADIR%%/buildings/gun_aa/info.pcx
%%DATADIR%%/buildings/gun_aa/shw.pcx
%%DATADIR%%/buildings/gun_aa/video.pcx
%%DATADIR%%/buildings/gun_ari/data.xml
%%DATADIR%%/buildings/gun_ari/img.pcx
%%DATADIR%%/buildings/gun_ari/info.pcx
%%DATADIR%%/buildings/gun_ari/shw.pcx
%%DATADIR%%/buildings/gun_ari/video.pcx
%%DATADIR%%/buildings/gun_missel/data.xml
%%DATADIR%%/buildings/gun_missel/img.pcx
%%DATADIR%%/buildings/gun_missel/info.pcx
%%DATADIR%%/buildings/gun_missel/shw.pcx
%%DATADIR%%/buildings/gun_missel/video.pcx
%%DATADIR%%/buildings/gun_turret/data.xml
%%DATADIR%%/buildings/gun_turret/img.pcx
%%DATADIR%%/buildings/gun_turret/info.pcx
%%DATADIR%%/buildings/gun_turret/shw.pcx
%%DATADIR%%/buildings/gun_turret/video.pcx
%%DATADIR%%/buildings/habitat/data.xml
%%DATADIR%%/buildings/habitat/effect.pcx
%%DATADIR%%/buildings/habitat/effect_org.pcx
%%DATADIR%%/buildings/habitat/img.pcx
%%DATADIR%%/buildings/habitat/info.pcx
%%DATADIR%%/buildings/habitat/shw.pcx
%%DATADIR%%/buildings/habitat/video.pcx
%%DATADIR%%/buildings/hangar/data.xml
%%DATADIR%%/buildings/hangar/effect.pcx
%%DATADIR%%/buildings/hangar/effect_org.pcx
%%DATADIR%%/buildings/hangar/img.pcx
%%DATADIR%%/buildings/hangar/info.pcx
%%DATADIR%%/buildings/hangar/shw.pcx
%%DATADIR%%/buildings/hangar/video.pcx
%%DATADIR%%/buildings/landmine/data.xml
%%DATADIR%%/buildings/landmine/img.pcx
%%DATADIR%%/buildings/landmine/info.pcx
%%DATADIR%%/buildings/landmine/shw.pcx
%%DATADIR%%/buildings/landmine/video.pcx
%%DATADIR%%/buildings/mine/data.xml
%%DATADIR%%/buildings/mine/effect.pcx
%%DATADIR%%/buildings/mine/effect_org.pcx
%%DATADIR%%/buildings/mine/img.pcx
%%DATADIR%%/buildings/mine/info.pcx
%%DATADIR%%/buildings/mine/shw.pcx
%%DATADIR%%/buildings/mine/video.pcx
%%DATADIR%%/buildings/mine_deep/data.xml
%%DATADIR%%/buildings/mine_deep/effect.pcx
%%DATADIR%%/buildings/mine_deep/effect_org.pcx
%%DATADIR%%/buildings/pad/data.xml
%%DATADIR%%/buildings/pad/effect.pcx
%%DATADIR%%/buildings/pad/effect_org.pcx
%%DATADIR%%/buildings/pad/img.pcx
%%DATADIR%%/buildings/pad/info.pcx
%%DATADIR%%/buildings/pad/shw.pcx
%%DATADIR%%/buildings/pad/video.pcx
%%DATADIR%%/buildings/platform/data.xml
%%DATADIR%%/buildings/platform/img.pcx
%%DATADIR%%/buildings/platform/info.pcx
%%DATADIR%%/buildings/platform/shw.pcx
%%DATADIR%%/buildings/platform/video.pcx
%%DATADIR%%/buildings/radar/data.xml
%%DATADIR%%/buildings/radar/img.pcx
%%DATADIR%%/buildings/radar/info.pcx
%%DATADIR%%/buildings/radar/shw.pcx
%%DATADIR%%/buildings/radar/video.pcx
%%DATADIR%%/buildings/research/data.xml
%%DATADIR%%/buildings/research/effect.pcx
%%DATADIR%%/buildings/research/effect_org.pcx
%%DATADIR%%/buildings/research/img.pcx
%%DATADIR%%/buildings/research/info.pcx
%%DATADIR%%/buildings/research/shw.pcx
%%DATADIR%%/buildings/research/video.pcx
%%DATADIR%%/buildings/road/data.xml
%%DATADIR%%/buildings/road/img.pcx
%%DATADIR%%/buildings/road/info.pcx
%%DATADIR%%/buildings/road/shw.pcx
%%DATADIR%%/buildings/road/video.pcx
%%DATADIR%%/buildings/seamine/data.xml
%%DATADIR%%/buildings/seamine/img.pcx
%%DATADIR%%/buildings/seamine/info.pcx
%%DATADIR%%/buildings/seamine/shw.pcx
%%DATADIR%%/buildings/seamine/video.pcx
%%DATADIR%%/buildings/shield/data.xml
%%DATADIR%%/buildings/shield/effect.pcx
%%DATADIR%%/buildings/shield/effect_org.pcx
%%DATADIR%%/buildings/storage_gold/data.xml
%%DATADIR%%/buildings/storage_gold/img.pcx
%%DATADIR%%/buildings/storage_gold/info.pcx
%%DATADIR%%/buildings/storage_gold/shw.pcx
%%DATADIR%%/buildings/storage_gold/video.pcx
%%DATADIR%%/buildings/storage_metal/data.xml
%%DATADIR%%/buildings/storage_metal/img.pcx
%%DATADIR%%/buildings/storage_metal/info.pcx
%%DATADIR%%/buildings/storage_metal/shw.pcx
%%DATADIR%%/buildings/storage_metal/video.pcx
%%DATADIR%%/buildings/storage_oil/data.xml
%%DATADIR%%/buildings/storage_oil/img.pcx
%%DATADIR%%/buildings/storage_oil/info.pcx
%%DATADIR%%/buildings/storage_oil/shw.pcx
%%DATADIR%%/buildings/storage_oil/video.pcx
%%DATADIR%%/buildings/training/data.xml
%%DATADIR%%/buildings/training/effect.pcx
%%DATADIR%%/buildings/training/effect_org.pcx
%%DATADIR%%/buildings/training/img.pcx
%%DATADIR%%/buildings/training/info.pcx
%%DATADIR%%/buildings/training/shw.pcx
%%DATADIR%%/buildings/training/video.pcx
%%DATADIR%%/fonts/latin_big.pcx
%%DATADIR%%/fonts/latin_big_gold.pcx
%%DATADIR%%/fonts/latin_big_gold_iso-8559-1.pcx
%%DATADIR%%/fonts/latin_big_gold_iso-8559-2.pcx
%%DATADIR%%/fonts/latin_big_iso-8559-1.pcx
%%DATADIR%%/fonts/latin_big_iso-8559-2.pcx
%%DATADIR%%/fonts/latin_big_iso-8559-5.pcx
%%DATADIR%%/fonts/latin_normal.pcx
%%DATADIR%%/fonts/latin_normal_iso-8559-1.pcx
%%DATADIR%%/fonts/latin_normal_iso-8559-2.pcx
%%DATADIR%%/fonts/latin_normal_iso-8559-5.pcx
%%DATADIR%%/fonts/latin_small.pcx
%%DATADIR%%/fonts/latin_small_iso-8559-1.pcx
%%DATADIR%%/fonts/latin_small_iso-8559-2.pcx
%%DATADIR%%/fonts/latin_small_iso-8559-5.pcx
%%DATADIR%%/fx/absorb.pcx
%%DATADIR%%/fx/corpse.pcx
%%DATADIR%%/fx/dark_smoke.pcx
%%DATADIR%%/fx/explo_air.pcx
%%DATADIR%%/fx/explo_big.pcx
%%DATADIR%%/fx/explo_small.pcx
%%DATADIR%%/fx/explo_water.pcx
%%DATADIR%%/fx/hit.pcx
%%DATADIR%%/fx/muzzle_big.pcx
%%DATADIR%%/fx/muzzle_med.pcx
%%DATADIR%%/fx/muzzle_small.pcx
%%DATADIR%%/fx/rocket.pcx
%%DATADIR%%/fx/smoke.pcx
%%DATADIR%%/fx/tracks.pcx
%%DATADIR%%/gfx/activate.pcx
%%DATADIR%%/gfx/activate_field.pcx
%%DATADIR%%/gfx/attack.pcx
%%DATADIR%%/gfx/band_big.pcx
%%DATADIR%%/gfx/band_cur.pcx
%%DATADIR%%/gfx/band_small.pcx
%%DATADIR%%/gfx/big_beton.pcx
%%DATADIR%%/gfx/build_screen.pcx
%%DATADIR%%/gfx/cl_aqua.pcx
%%DATADIR%%/gfx/cl_blue.pcx
%%DATADIR%%/gfx/cl_green.pcx
%%DATADIR%%/gfx/cl_grey.pcx
%%DATADIR%%/gfx/cl_orange.pcx
%%DATADIR%%/gfx/cl_purple.pcx
%%DATADIR%%/gfx/cl_red.pcx
%%DATADIR%%/gfx/cl_yellow.pcx
%%DATADIR%%/gfx/customgame_menu.pcx
%%DATADIR%%/gfx/destruction.pcx
%%DATADIR%%/gfx/destruction_glas.pcx
%%DATADIR%%/gfx/dialog.pcx
%%DATADIR%%/gfx/dialog2.pcx
%%DATADIR%%/gfx/dialog3.pcx
%%DATADIR%%/gfx/dialog4.pcx
%%DATADIR%%/gfx/dialog5.pcx
%%DATADIR%%/gfx/dialog6.pcx
%%DATADIR%%/gfx/disable.pcx
%%DATADIR%%/gfx/edepot.pcx
%%DATADIR%%/gfx/edock.pcx
%%DATADIR%%/gfx/ehangar.pcx
%%DATADIR%%/gfx/fac_build_screen.pcx
%%DATADIR%%/gfx/hand.pcx
%%DATADIR%%/gfx/hangar.pcx
%%DATADIR%%/gfx/help.pcx
%%DATADIR%%/gfx/help_screen.pcx
%%DATADIR%%/gfx/hotseatplayers.pcx
%%DATADIR%%/gfx/hud_bottom.pcx
%%DATADIR%%/gfx/hud_left.pcx
%%DATADIR%%/gfx/hud_right.pcx
%%DATADIR%%/gfx/hud_stuff.pcx
%%DATADIR%%/gfx/hud_top.pcx
%%DATADIR%%/gfx/load.pcx
%%DATADIR%%/gfx/load_save_menu.pcx
%%DATADIR%%/gfx/logo.pcx
%%DATADIR%%/gfx/main.pcx
%%DATADIR%%/gfx/menu_buttons.pcx
%%DATADIR%%/gfx/menu_stuff.pcx
%%DATADIR%%/gfx/mine_manager.pcx
%%DATADIR%%/gfx/move.pcx
%%DATADIR%%/gfx/multi.pcx
%%DATADIR%%/gfx/muni.pcx
%%DATADIR%%/gfx/no.pcx
%%DATADIR%%/gfx/object_menu2.pcx
%%DATADIR%%/gfx/options.pcx
%%DATADIR%%/gfx/panel_bottom.pcx
%%DATADIR%%/gfx/panel_top.pcx
%%DATADIR%%/gfx/pf_1.pcx
%%DATADIR%%/gfx/pf_2.pcx
%%DATADIR%%/gfx/pf_3.pcx
%%DATADIR%%/gfx/pf_4.pcx
%%DATADIR%%/gfx/pf_6.pcx
%%DATADIR%%/gfx/pf_7.pcx
%%DATADIR%%/gfx/pf_8.pcx
%%DATADIR%%/gfx/pf_9.pcx
%%DATADIR%%/gfx/planet_select.pcx
%%DATADIR%%/gfx/player_human.pcx
%%DATADIR%%/gfx/player_none.pcx
%%DATADIR%%/gfx/player_pc.pcx
%%DATADIR%%/gfx/player_ready.pcx
%%DATADIR%%/gfx/repair.pcx
%%DATADIR%%/gfx/res.pcx
%%DATADIR%%/gfx/research.pcx
%%DATADIR%%/gfx/select.pcx
%%DATADIR%%/gfx/steal.pcx
%%DATADIR%%/gfx/storage.pcx
%%DATADIR%%/gfx/storage_ground.pcx
%%DATADIR%%/gfx/transf.pcx
%%DATADIR%%/gfx/transfer.pcx
%%DATADIR%%/gfx/upgrade.pcx
%%DATADIR%%/init.pcx
%%DATADIR%%/keys.xml
%%DATADIR%%/languages/lang_dut.xml
%%DATADIR%%/languages/lang_eng.xml
%%DATADIR%%/languages/lang_ger.xml
%%DATADIR%%/languages/lang_hun.xml
%%DATADIR%%/languages/lang_rus.xml
%%DATADIR%%/maps/Delta.wrl
%%DATADIR%%/maps/Three Isles.wrl
%%DATADIR%%/max.xml
%%DATADIR%%/maxr
%%DATADIR%%/maxr.png
%%DATADIR%%/maxr.bmp
%%DATADIR%%/music/music.xml
%%DATADIR%%/sounds/Chat.wav
%%DATADIR%%/sounds/absorb.wav
%%DATADIR%%/sounds/arm.wav
%%DATADIR%%/sounds/dummy.wav
%%DATADIR%%/vehicles/air_transport/data.xml
%%DATADIR%%/vehicles/air_transport/img0.pcx
%%DATADIR%%/vehicles/air_transport/img1.pcx
%%DATADIR%%/vehicles/air_transport/img2.pcx
%%DATADIR%%/vehicles/air_transport/img3.pcx
%%DATADIR%%/vehicles/air_transport/img4.pcx
%%DATADIR%%/vehicles/air_transport/img5.pcx
%%DATADIR%%/vehicles/air_transport/img6.pcx
%%DATADIR%%/vehicles/air_transport/img7.pcx
%%DATADIR%%/vehicles/air_transport/info.pcx
%%DATADIR%%/vehicles/air_transport/shw0.pcx
%%DATADIR%%/vehicles/air_transport/shw1.pcx
%%DATADIR%%/vehicles/air_transport/shw2.pcx
%%DATADIR%%/vehicles/air_transport/shw3.pcx
%%DATADIR%%/vehicles/air_transport/shw4.pcx
%%DATADIR%%/vehicles/air_transport/shw5.pcx
%%DATADIR%%/vehicles/air_transport/shw6.pcx
%%DATADIR%%/vehicles/air_transport/shw7.pcx
%%DATADIR%%/vehicles/air_transport/store.pcx
%%DATADIR%%/vehicles/air_transport/video.flc
%%DATADIR%%/vehicles/alien_assault/data.xml
%%DATADIR%%/vehicles/alien_plane/data.xml
%%DATADIR%%/vehicles/alien_ship/data.xml
%%DATADIR%%/vehicles/alien_tank/data.xml
%%DATADIR%%/vehicles/apc/data.xml
%%DATADIR%%/vehicles/apc/img0.pcx
%%DATADIR%%/vehicles/apc/img1.pcx
%%DATADIR%%/vehicles/apc/img2.pcx
%%DATADIR%%/vehicles/apc/img3.pcx
%%DATADIR%%/vehicles/apc/img4.pcx
%%DATADIR%%/vehicles/apc/img5.pcx
%%DATADIR%%/vehicles/apc/img6.pcx
%%DATADIR%%/vehicles/apc/img7.pcx
%%DATADIR%%/vehicles/apc/info.pcx
%%DATADIR%%/vehicles/apc/shw0.pcx
%%DATADIR%%/vehicles/apc/shw1.pcx
%%DATADIR%%/vehicles/apc/shw2.pcx
%%DATADIR%%/vehicles/apc/shw3.pcx
%%DATADIR%%/vehicles/apc/shw4.pcx
%%DATADIR%%/vehicles/apc/shw5.pcx
%%DATADIR%%/vehicles/apc/shw6.pcx
%%DATADIR%%/vehicles/apc/shw7.pcx
%%DATADIR%%/vehicles/apc/store.pcx
%%DATADIR%%/vehicles/apc/video.flc
%%DATADIR%%/vehicles/assault/data.xml
%%DATADIR%%/vehicles/assault/img0.pcx
%%DATADIR%%/vehicles/assault/img1.pcx
%%DATADIR%%/vehicles/assault/img2.pcx
%%DATADIR%%/vehicles/assault/img3.pcx
%%DATADIR%%/vehicles/assault/img4.pcx
%%DATADIR%%/vehicles/assault/img5.pcx
%%DATADIR%%/vehicles/assault/img6.pcx
%%DATADIR%%/vehicles/assault/img7.pcx
%%DATADIR%%/vehicles/assault/info.pcx
%%DATADIR%%/vehicles/assault/shw0.pcx
%%DATADIR%%/vehicles/assault/shw1.pcx
%%DATADIR%%/vehicles/assault/shw2.pcx
%%DATADIR%%/vehicles/assault/shw3.pcx
%%DATADIR%%/vehicles/assault/shw4.pcx
%%DATADIR%%/vehicles/assault/shw5.pcx
%%DATADIR%%/vehicles/assault/shw6.pcx
%%DATADIR%%/vehicles/assault/shw7.pcx
%%DATADIR%%/vehicles/assault/store.pcx
%%DATADIR%%/vehicles/assault/video.flc
%%DATADIR%%/vehicles/awac/data.xml
%%DATADIR%%/vehicles/awac/img0.pcx
%%DATADIR%%/vehicles/awac/img1.pcx
%%DATADIR%%/vehicles/awac/img2.pcx
%%DATADIR%%/vehicles/awac/img3.pcx
%%DATADIR%%/vehicles/awac/img4.pcx
%%DATADIR%%/vehicles/awac/img5.pcx
%%DATADIR%%/vehicles/awac/img6.pcx
%%DATADIR%%/vehicles/awac/img7.pcx
%%DATADIR%%/vehicles/awac/info.pcx
%%DATADIR%%/vehicles/awac/overlay.pcx
%%DATADIR%%/vehicles/awac/shw0.pcx
%%DATADIR%%/vehicles/awac/shw1.pcx
%%DATADIR%%/vehicles/awac/shw2.pcx
%%DATADIR%%/vehicles/awac/shw3.pcx
%%DATADIR%%/vehicles/awac/shw4.pcx
%%DATADIR%%/vehicles/awac/shw5.pcx
%%DATADIR%%/vehicles/awac/shw6.pcx
%%DATADIR%%/vehicles/awac/shw7.pcx
%%DATADIR%%/vehicles/awac/store.pcx
%%DATADIR%%/vehicles/awac/video.flc
%%DATADIR%%/vehicles/bomber/data.xml
%%DATADIR%%/vehicles/bomber/img0.pcx
%%DATADIR%%/vehicles/bomber/img1.pcx
%%DATADIR%%/vehicles/bomber/img2.pcx
%%DATADIR%%/vehicles/bomber/img3.pcx
%%DATADIR%%/vehicles/bomber/img4.pcx
%%DATADIR%%/vehicles/bomber/img5.pcx
%%DATADIR%%/vehicles/bomber/img6.pcx
%%DATADIR%%/vehicles/bomber/img7.pcx
%%DATADIR%%/vehicles/bomber/info.pcx
%%DATADIR%%/vehicles/bomber/shw0.pcx
%%DATADIR%%/vehicles/bomber/shw1.pcx
%%DATADIR%%/vehicles/bomber/shw2.pcx
%%DATADIR%%/vehicles/bomber/shw3.pcx
%%DATADIR%%/vehicles/bomber/shw4.pcx
%%DATADIR%%/vehicles/bomber/shw5.pcx
%%DATADIR%%/vehicles/bomber/shw6.pcx
%%DATADIR%%/vehicles/bomber/shw7.pcx
%%DATADIR%%/vehicles/bomber/store.pcx
%%DATADIR%%/vehicles/bomber/video.flc
%%DATADIR%%/vehicles/bulldozer/clear_big.pcx
%%DATADIR%%/vehicles/bulldozer/clear_big_shw.pcx
%%DATADIR%%/vehicles/bulldozer/clear_small.pcx
%%DATADIR%%/vehicles/bulldozer/clear_small_shw.pcx
%%DATADIR%%/vehicles/bulldozer/data.xml
%%DATADIR%%/vehicles/bulldozer/img0.pcx
%%DATADIR%%/vehicles/bulldozer/img1.pcx
%%DATADIR%%/vehicles/bulldozer/img2.pcx
%%DATADIR%%/vehicles/bulldozer/img3.pcx
%%DATADIR%%/vehicles/bulldozer/img4.pcx
%%DATADIR%%/vehicles/bulldozer/img5.pcx
%%DATADIR%%/vehicles/bulldozer/img6.pcx
%%DATADIR%%/vehicles/bulldozer/img7.pcx
%%DATADIR%%/vehicles/bulldozer/info.pcx
%%DATADIR%%/vehicles/bulldozer/shw0.pcx
%%DATADIR%%/vehicles/bulldozer/shw1.pcx
%%DATADIR%%/vehicles/bulldozer/shw2.pcx
%%DATADIR%%/vehicles/bulldozer/shw3.pcx
%%DATADIR%%/vehicles/bulldozer/shw4.pcx
%%DATADIR%%/vehicles/bulldozer/shw5.pcx
%%DATADIR%%/vehicles/bulldozer/shw6.pcx
%%DATADIR%%/vehicles/bulldozer/shw7.pcx
%%DATADIR%%/vehicles/bulldozer/store.pcx
%%DATADIR%%/vehicles/bulldozer/video.flc
%%DATADIR%%/vehicles/cargoship/data.xml
%%DATADIR%%/vehicles/cargoship/img0.pcx
%%DATADIR%%/vehicles/cargoship/img1.pcx
%%DATADIR%%/vehicles/cargoship/img2.pcx
%%DATADIR%%/vehicles/cargoship/img3.pcx
%%DATADIR%%/vehicles/cargoship/img4.pcx
%%DATADIR%%/vehicles/cargoship/img5.pcx
%%DATADIR%%/vehicles/cargoship/img6.pcx
%%DATADIR%%/vehicles/cargoship/img7.pcx
%%DATADIR%%/vehicles/cargoship/info.pcx
%%DATADIR%%/vehicles/cargoship/shw0.pcx
%%DATADIR%%/vehicles/cargoship/shw1.pcx
%%DATADIR%%/vehicles/cargoship/shw2.pcx
%%DATADIR%%/vehicles/cargoship/shw3.pcx
%%DATADIR%%/vehicles/cargoship/shw4.pcx
%%DATADIR%%/vehicles/cargoship/shw5.pcx
%%DATADIR%%/vehicles/cargoship/shw6.pcx
%%DATADIR%%/vehicles/cargoship/shw7.pcx
%%DATADIR%%/vehicles/cargoship/store.pcx
%%DATADIR%%/vehicles/cargoship/video.flc
%%DATADIR%%/vehicles/cluster/data.xml
%%DATADIR%%/vehicles/cluster/img0.pcx
%%DATADIR%%/vehicles/cluster/img1.pcx
%%DATADIR%%/vehicles/cluster/img2.pcx
%%DATADIR%%/vehicles/cluster/img3.pcx
%%DATADIR%%/vehicles/cluster/img4.pcx
%%DATADIR%%/vehicles/cluster/img5.pcx
%%DATADIR%%/vehicles/cluster/img6.pcx
%%DATADIR%%/vehicles/cluster/img7.pcx
%%DATADIR%%/vehicles/cluster/info.pcx
%%DATADIR%%/vehicles/cluster/shw0.pcx
%%DATADIR%%/vehicles/cluster/shw1.pcx
%%DATADIR%%/vehicles/cluster/shw2.pcx
%%DATADIR%%/vehicles/cluster/shw3.pcx
%%DATADIR%%/vehicles/cluster/shw4.pcx
%%DATADIR%%/vehicles/cluster/shw5.pcx
%%DATADIR%%/vehicles/cluster/shw6.pcx
%%DATADIR%%/vehicles/cluster/shw7.pcx
%%DATADIR%%/vehicles/cluster/store.pcx
%%DATADIR%%/vehicles/cluster/video.flc
%%DATADIR%%/vehicles/commando/data.xml
%%DATADIR%%/vehicles/commando/img0_00.pcx
%%DATADIR%%/vehicles/commando/img0_01.pcx
%%DATADIR%%/vehicles/commando/img0_02.pcx
%%DATADIR%%/vehicles/commando/img0_03.pcx
%%DATADIR%%/vehicles/commando/img0_04.pcx
%%DATADIR%%/vehicles/commando/img0_05.pcx
%%DATADIR%%/vehicles/commando/img0_06.pcx
%%DATADIR%%/vehicles/commando/img0_07.pcx
%%DATADIR%%/vehicles/commando/img0_08.pcx
%%DATADIR%%/vehicles/commando/img0_09.pcx
%%DATADIR%%/vehicles/commando/img0_10.pcx
%%DATADIR%%/vehicles/commando/img0_11.pcx
%%DATADIR%%/vehicles/commando/img0_12.pcx
%%DATADIR%%/vehicles/commando/img1_00.pcx
%%DATADIR%%/vehicles/commando/img1_01.pcx
%%DATADIR%%/vehicles/commando/img1_02.pcx
%%DATADIR%%/vehicles/commando/img1_03.pcx
%%DATADIR%%/vehicles/commando/img1_04.pcx
%%DATADIR%%/vehicles/commando/img1_05.pcx
%%DATADIR%%/vehicles/commando/img1_06.pcx
%%DATADIR%%/vehicles/commando/img1_07.pcx
%%DATADIR%%/vehicles/commando/img1_08.pcx
%%DATADIR%%/vehicles/commando/img1_09.pcx
%%DATADIR%%/vehicles/commando/img1_10.pcx
%%DATADIR%%/vehicles/commando/img1_11.pcx
%%DATADIR%%/vehicles/commando/img1_12.pcx
%%DATADIR%%/vehicles/commando/img2_00.pcx
%%DATADIR%%/vehicles/commando/img2_01.pcx
%%DATADIR%%/vehicles/commando/img2_02.pcx
%%DATADIR%%/vehicles/commando/img2_03.pcx
%%DATADIR%%/vehicles/commando/img2_04.pcx
%%DATADIR%%/vehicles/commando/img2_05.pcx
%%DATADIR%%/vehicles/commando/img2_06.pcx
%%DATADIR%%/vehicles/commando/img2_07.pcx
%%DATADIR%%/vehicles/commando/img2_08.pcx
%%DATADIR%%/vehicles/commando/img2_09.pcx
%%DATADIR%%/vehicles/commando/img2_10.pcx
%%DATADIR%%/vehicles/commando/img2_11.pcx
%%DATADIR%%/vehicles/commando/img2_12.pcx
%%DATADIR%%/vehicles/commando/img3_00.pcx
%%DATADIR%%/vehicles/commando/img3_01.pcx
%%DATADIR%%/vehicles/commando/img3_02.pcx
%%DATADIR%%/vehicles/commando/img3_03.pcx
%%DATADIR%%/vehicles/commando/img3_04.pcx
%%DATADIR%%/vehicles/commando/img3_05.pcx
%%DATADIR%%/vehicles/commando/img3_06.pcx
%%DATADIR%%/vehicles/commando/img3_07.pcx
%%DATADIR%%/vehicles/commando/img3_08.pcx
%%DATADIR%%/vehicles/commando/img3_09.pcx
%%DATADIR%%/vehicles/commando/img3_10.pcx
%%DATADIR%%/vehicles/commando/img3_11.pcx
%%DATADIR%%/vehicles/commando/img3_12.pcx
%%DATADIR%%/vehicles/commando/img4_00.pcx
%%DATADIR%%/vehicles/commando/img4_01.pcx
%%DATADIR%%/vehicles/commando/img4_02.pcx
%%DATADIR%%/vehicles/commando/img4_03.pcx
%%DATADIR%%/vehicles/commando/img4_04.pcx
%%DATADIR%%/vehicles/commando/img4_05.pcx
%%DATADIR%%/vehicles/commando/img4_06.pcx
%%DATADIR%%/vehicles/commando/img4_07.pcx
%%DATADIR%%/vehicles/commando/img4_08.pcx
%%DATADIR%%/vehicles/commando/img4_09.pcx
%%DATADIR%%/vehicles/commando/img4_10.pcx
%%DATADIR%%/vehicles/commando/img4_11.pcx
%%DATADIR%%/vehicles/commando/img4_12.pcx
%%DATADIR%%/vehicles/commando/img5_00.pcx
%%DATADIR%%/vehicles/commando/img5_01.pcx
%%DATADIR%%/vehicles/commando/img5_02.pcx
%%DATADIR%%/vehicles/commando/img5_03.pcx
%%DATADIR%%/vehicles/commando/img5_04.pcx
%%DATADIR%%/vehicles/commando/img5_05.pcx
%%DATADIR%%/vehicles/commando/img5_06.pcx
%%DATADIR%%/vehicles/commando/img5_07.pcx
%%DATADIR%%/vehicles/commando/img5_08.pcx
%%DATADIR%%/vehicles/commando/img5_09.pcx
%%DATADIR%%/vehicles/commando/img5_10.pcx
%%DATADIR%%/vehicles/commando/img5_11.pcx
%%DATADIR%%/vehicles/commando/img5_12.pcx
%%DATADIR%%/vehicles/commando/img6_00.pcx
%%DATADIR%%/vehicles/commando/img6_01.pcx
%%DATADIR%%/vehicles/commando/img6_02.pcx
%%DATADIR%%/vehicles/commando/img6_03.pcx
%%DATADIR%%/vehicles/commando/img6_04.pcx
%%DATADIR%%/vehicles/commando/img6_05.pcx
%%DATADIR%%/vehicles/commando/img6_06.pcx
%%DATADIR%%/vehicles/commando/img6_07.pcx
%%DATADIR%%/vehicles/commando/img6_08.pcx
%%DATADIR%%/vehicles/commando/img6_09.pcx
%%DATADIR%%/vehicles/commando/img6_10.pcx
%%DATADIR%%/vehicles/commando/img6_11.pcx
%%DATADIR%%/vehicles/commando/img6_12.pcx
%%DATADIR%%/vehicles/commando/img7_00.pcx
%%DATADIR%%/vehicles/commando/img7_01.pcx
%%DATADIR%%/vehicles/commando/img7_02.pcx
%%DATADIR%%/vehicles/commando/img7_03.pcx
%%DATADIR%%/vehicles/commando/img7_04.pcx
%%DATADIR%%/vehicles/commando/img7_05.pcx
%%DATADIR%%/vehicles/commando/img7_06.pcx
%%DATADIR%%/vehicles/commando/img7_07.pcx
%%DATADIR%%/vehicles/commando/img7_08.pcx
%%DATADIR%%/vehicles/commando/img7_09.pcx
%%DATADIR%%/vehicles/commando/img7_10.pcx
%%DATADIR%%/vehicles/commando/img7_11.pcx
%%DATADIR%%/vehicles/commando/img7_12.pcx
%%DATADIR%%/vehicles/commando/info.pcx
%%DATADIR%%/vehicles/commando/store.pcx
%%DATADIR%%/vehicles/commando/video.flc
%%DATADIR%%/vehicles/corvet/data.xml
%%DATADIR%%/vehicles/corvet/img0.pcx
%%DATADIR%%/vehicles/corvet/img1.pcx
%%DATADIR%%/vehicles/corvet/img2.pcx
%%DATADIR%%/vehicles/corvet/img3.pcx
%%DATADIR%%/vehicles/corvet/img4.pcx
%%DATADIR%%/vehicles/corvet/img5.pcx
%%DATADIR%%/vehicles/corvet/img6.pcx
%%DATADIR%%/vehicles/corvet/img7.pcx
%%DATADIR%%/vehicles/corvet/info.pcx
%%DATADIR%%/vehicles/corvet/shw0.pcx
%%DATADIR%%/vehicles/corvet/shw1.pcx
%%DATADIR%%/vehicles/corvet/shw2.pcx
%%DATADIR%%/vehicles/corvet/shw3.pcx
%%DATADIR%%/vehicles/corvet/shw4.pcx
%%DATADIR%%/vehicles/corvet/shw5.pcx
%%DATADIR%%/vehicles/corvet/shw6.pcx
%%DATADIR%%/vehicles/corvet/shw7.pcx
%%DATADIR%%/vehicles/corvet/store.pcx
%%DATADIR%%/vehicles/corvet/video.flc
%%DATADIR%%/vehicles/escort/data.xml
%%DATADIR%%/vehicles/escort/img0.pcx
%%DATADIR%%/vehicles/escort/img1.pcx
%%DATADIR%%/vehicles/escort/img2.pcx
%%DATADIR%%/vehicles/escort/img3.pcx
%%DATADIR%%/vehicles/escort/img4.pcx
%%DATADIR%%/vehicles/escort/img5.pcx
%%DATADIR%%/vehicles/escort/img6.pcx
%%DATADIR%%/vehicles/escort/img7.pcx
%%DATADIR%%/vehicles/escort/info.pcx
%%DATADIR%%/vehicles/escort/shw0.pcx
%%DATADIR%%/vehicles/escort/shw1.pcx
%%DATADIR%%/vehicles/escort/shw2.pcx
%%DATADIR%%/vehicles/escort/shw3.pcx
%%DATADIR%%/vehicles/escort/shw4.pcx
%%DATADIR%%/vehicles/escort/shw5.pcx
%%DATADIR%%/vehicles/escort/shw6.pcx
%%DATADIR%%/vehicles/escort/shw7.pcx
%%DATADIR%%/vehicles/escort/store.pcx
%%DATADIR%%/vehicles/escort/video.flc
%%DATADIR%%/vehicles/fighter/data.xml
%%DATADIR%%/vehicles/fighter/img0.pcx
%%DATADIR%%/vehicles/fighter/img1.pcx
%%DATADIR%%/vehicles/fighter/img2.pcx
%%DATADIR%%/vehicles/fighter/img3.pcx
%%DATADIR%%/vehicles/fighter/img4.pcx
%%DATADIR%%/vehicles/fighter/img5.pcx
%%DATADIR%%/vehicles/fighter/img6.pcx
%%DATADIR%%/vehicles/fighter/img7.pcx
%%DATADIR%%/vehicles/fighter/info.pcx
%%DATADIR%%/vehicles/fighter/shw0.pcx
%%DATADIR%%/vehicles/fighter/shw1.pcx
%%DATADIR%%/vehicles/fighter/shw2.pcx
%%DATADIR%%/vehicles/fighter/shw3.pcx
%%DATADIR%%/vehicles/fighter/shw4.pcx
%%DATADIR%%/vehicles/fighter/shw5.pcx
%%DATADIR%%/vehicles/fighter/shw6.pcx
%%DATADIR%%/vehicles/fighter/shw7.pcx
%%DATADIR%%/vehicles/fighter/store.pcx
%%DATADIR%%/vehicles/fighter/video.flc
%%DATADIR%%/vehicles/gunboat/data.xml
%%DATADIR%%/vehicles/gunboat/img0.pcx
%%DATADIR%%/vehicles/gunboat/img1.pcx
%%DATADIR%%/vehicles/gunboat/img2.pcx
%%DATADIR%%/vehicles/gunboat/img3.pcx
%%DATADIR%%/vehicles/gunboat/img4.pcx
%%DATADIR%%/vehicles/gunboat/img5.pcx
%%DATADIR%%/vehicles/gunboat/img6.pcx
%%DATADIR%%/vehicles/gunboat/img7.pcx
%%DATADIR%%/vehicles/gunboat/info.pcx
%%DATADIR%%/vehicles/gunboat/shw0.pcx
%%DATADIR%%/vehicles/gunboat/shw1.pcx
%%DATADIR%%/vehicles/gunboat/shw2.pcx
%%DATADIR%%/vehicles/gunboat/shw3.pcx
%%DATADIR%%/vehicles/gunboat/shw4.pcx
%%DATADIR%%/vehicles/gunboat/shw5.pcx
%%DATADIR%%/vehicles/gunboat/shw6.pcx
%%DATADIR%%/vehicles/gunboat/shw7.pcx
%%DATADIR%%/vehicles/gunboat/store.pcx
%%DATADIR%%/vehicles/gunboat/video.flc
%%DATADIR%%/vehicles/infantery/data.xml
%%DATADIR%%/vehicles/infantery/img0_00.pcx
%%DATADIR%%/vehicles/infantery/img0_01.pcx
%%DATADIR%%/vehicles/infantery/img0_02.pcx
%%DATADIR%%/vehicles/infantery/img0_03.pcx
%%DATADIR%%/vehicles/infantery/img0_04.pcx
%%DATADIR%%/vehicles/infantery/img0_05.pcx
%%DATADIR%%/vehicles/infantery/img0_06.pcx
%%DATADIR%%/vehicles/infantery/img0_07.pcx
%%DATADIR%%/vehicles/infantery/img0_08.pcx
%%DATADIR%%/vehicles/infantery/img0_09.pcx
%%DATADIR%%/vehicles/infantery/img0_10.pcx
%%DATADIR%%/vehicles/infantery/img0_11.pcx
%%DATADIR%%/vehicles/infantery/img0_12.pcx
%%DATADIR%%/vehicles/infantery/img1_00.pcx
%%DATADIR%%/vehicles/infantery/img1_01.pcx
%%DATADIR%%/vehicles/infantery/img1_02.pcx
%%DATADIR%%/vehicles/infantery/img1_03.pcx
%%DATADIR%%/vehicles/infantery/img1_04.pcx
%%DATADIR%%/vehicles/infantery/img1_05.pcx
%%DATADIR%%/vehicles/infantery/img1_06.pcx
%%DATADIR%%/vehicles/infantery/img1_07.pcx
%%DATADIR%%/vehicles/infantery/img1_08.pcx
%%DATADIR%%/vehicles/infantery/img1_09.pcx
%%DATADIR%%/vehicles/infantery/img1_10.pcx
%%DATADIR%%/vehicles/infantery/img1_11.pcx
%%DATADIR%%/vehicles/infantery/img1_12.pcx
%%DATADIR%%/vehicles/infantery/img2_00.pcx
%%DATADIR%%/vehicles/infantery/img2_01.pcx
%%DATADIR%%/vehicles/infantery/img2_02.pcx
%%DATADIR%%/vehicles/infantery/img2_03.pcx
%%DATADIR%%/vehicles/infantery/img2_04.pcx
%%DATADIR%%/vehicles/infantery/img2_05.pcx
%%DATADIR%%/vehicles/infantery/img2_06.pcx
%%DATADIR%%/vehicles/infantery/img2_07.pcx
%%DATADIR%%/vehicles/infantery/img2_08.pcx
%%DATADIR%%/vehicles/infantery/img2_09.pcx
%%DATADIR%%/vehicles/infantery/img2_10.pcx
%%DATADIR%%/vehicles/infantery/img2_11.pcx
%%DATADIR%%/vehicles/infantery/img2_12.pcx
%%DATADIR%%/vehicles/infantery/img3.xcf
%%DATADIR%%/vehicles/infantery/img3_00.pcx
%%DATADIR%%/vehicles/infantery/img3_01.pcx
%%DATADIR%%/vehicles/infantery/img3_02.pcx
%%DATADIR%%/vehicles/infantery/img3_03.pcx
%%DATADIR%%/vehicles/infantery/img3_04.pcx
%%DATADIR%%/vehicles/infantery/img3_05.pcx
%%DATADIR%%/vehicles/infantery/img3_06.pcx
%%DATADIR%%/vehicles/infantery/img3_07.pcx
%%DATADIR%%/vehicles/infantery/img3_08.pcx
%%DATADIR%%/vehicles/infantery/img3_09.pcx
%%DATADIR%%/vehicles/infantery/img3_10.pcx
%%DATADIR%%/vehicles/infantery/img3_11.pcx
%%DATADIR%%/vehicles/infantery/img3_12.pcx
%%DATADIR%%/vehicles/infantery/img4_00.pcx
%%DATADIR%%/vehicles/infantery/img4_01.pcx
%%DATADIR%%/vehicles/infantery/img4_02.pcx
%%DATADIR%%/vehicles/infantery/img4_03.pcx
%%DATADIR%%/vehicles/infantery/img4_04.pcx
%%DATADIR%%/vehicles/infantery/img4_05.pcx
%%DATADIR%%/vehicles/infantery/img4_06.pcx
%%DATADIR%%/vehicles/infantery/img4_07.pcx
%%DATADIR%%/vehicles/infantery/img4_08.pcx
%%DATADIR%%/vehicles/infantery/img4_09.pcx
%%DATADIR%%/vehicles/infantery/img4_10.pcx
%%DATADIR%%/vehicles/infantery/img4_11.pcx
%%DATADIR%%/vehicles/infantery/img4_12.pcx
%%DATADIR%%/vehicles/infantery/img5_00.pcx
%%DATADIR%%/vehicles/infantery/img5_01.pcx
%%DATADIR%%/vehicles/infantery/img5_02.pcx
%%DATADIR%%/vehicles/infantery/img5_03.pcx
%%DATADIR%%/vehicles/infantery/img5_04.pcx
%%DATADIR%%/vehicles/infantery/img5_05.pcx
%%DATADIR%%/vehicles/infantery/img5_06.pcx
%%DATADIR%%/vehicles/infantery/img5_07.pcx
%%DATADIR%%/vehicles/infantery/img5_08.pcx
%%DATADIR%%/vehicles/infantery/img5_09.pcx
%%DATADIR%%/vehicles/infantery/img5_10.pcx
%%DATADIR%%/vehicles/infantery/img5_11.pcx
%%DATADIR%%/vehicles/infantery/img5_12.pcx
%%DATADIR%%/vehicles/infantery/img6_00.pcx
%%DATADIR%%/vehicles/infantery/img6_01.pcx
%%DATADIR%%/vehicles/infantery/img6_02.pcx
%%DATADIR%%/vehicles/infantery/img6_03.pcx
%%DATADIR%%/vehicles/infantery/img6_04.pcx
%%DATADIR%%/vehicles/infantery/img6_05.pcx
%%DATADIR%%/vehicles/infantery/img6_06.pcx
%%DATADIR%%/vehicles/infantery/img6_07.pcx
%%DATADIR%%/vehicles/infantery/img6_08.pcx
%%DATADIR%%/vehicles/infantery/img6_09.pcx
%%DATADIR%%/vehicles/infantery/img6_10.pcx
%%DATADIR%%/vehicles/infantery/img6_11.pcx
%%DATADIR%%/vehicles/infantery/img6_12.pcx
%%DATADIR%%/vehicles/infantery/img7_00.pcx
%%DATADIR%%/vehicles/infantery/img7_01.pcx
%%DATADIR%%/vehicles/infantery/img7_02.pcx
%%DATADIR%%/vehicles/infantery/img7_03.pcx
%%DATADIR%%/vehicles/infantery/img7_04.pcx
%%DATADIR%%/vehicles/infantery/img7_05.pcx
%%DATADIR%%/vehicles/infantery/img7_06.pcx
%%DATADIR%%/vehicles/infantery/img7_07.pcx
%%DATADIR%%/vehicles/infantery/img7_08.pcx
%%DATADIR%%/vehicles/infantery/img7_09.pcx
%%DATADIR%%/vehicles/infantery/img7_10.pcx
%%DATADIR%%/vehicles/infantery/img7_11.pcx
%%DATADIR%%/vehicles/infantery/img7_12.pcx
%%DATADIR%%/vehicles/infantery/info.pcx
%%DATADIR%%/vehicles/infantery/store.pcx
%%DATADIR%%/vehicles/infantery/video.flc
%%DATADIR%%/vehicles/konstrukt/build.pcx
%%DATADIR%%/vehicles/konstrukt/build_shw.pcx
%%DATADIR%%/vehicles/konstrukt/data.xml
%%DATADIR%%/vehicles/konstrukt/img0.pcx
%%DATADIR%%/vehicles/konstrukt/img1.pcx
%%DATADIR%%/vehicles/konstrukt/img2.pcx
%%DATADIR%%/vehicles/konstrukt/img3.pcx
%%DATADIR%%/vehicles/konstrukt/img4.pcx
%%DATADIR%%/vehicles/konstrukt/img5.pcx
%%DATADIR%%/vehicles/konstrukt/img6.pcx
%%DATADIR%%/vehicles/konstrukt/img7.pcx
%%DATADIR%%/vehicles/konstrukt/info.pcx
%%DATADIR%%/vehicles/konstrukt/shw0.pcx
%%DATADIR%%/vehicles/konstrukt/shw1.pcx
%%DATADIR%%/vehicles/konstrukt/shw2.pcx
%%DATADIR%%/vehicles/konstrukt/shw3.pcx
%%DATADIR%%/vehicles/konstrukt/shw4.pcx
%%DATADIR%%/vehicles/konstrukt/shw5.pcx
%%DATADIR%%/vehicles/konstrukt/shw6.pcx
%%DATADIR%%/vehicles/konstrukt/shw7.pcx
%%DATADIR%%/vehicles/konstrukt/store.pcx
%%DATADIR%%/vehicles/konstrukt/video.flc
%%DATADIR%%/vehicles/minelayer/data.xml
%%DATADIR%%/vehicles/minelayer/img0.pcx
%%DATADIR%%/vehicles/minelayer/img1.pcx
%%DATADIR%%/vehicles/minelayer/img2.pcx
%%DATADIR%%/vehicles/minelayer/img3.pcx
%%DATADIR%%/vehicles/minelayer/img4.pcx
%%DATADIR%%/vehicles/minelayer/img5.pcx
%%DATADIR%%/vehicles/minelayer/img6.pcx
%%DATADIR%%/vehicles/minelayer/img7.pcx
%%DATADIR%%/vehicles/minelayer/info.pcx
%%DATADIR%%/vehicles/minelayer/shw0.pcx
%%DATADIR%%/vehicles/minelayer/shw1.pcx
%%DATADIR%%/vehicles/minelayer/shw2.pcx
%%DATADIR%%/vehicles/minelayer/shw3.pcx
%%DATADIR%%/vehicles/minelayer/shw4.pcx
%%DATADIR%%/vehicles/minelayer/shw5.pcx
%%DATADIR%%/vehicles/minelayer/shw6.pcx
%%DATADIR%%/vehicles/minelayer/shw7.pcx
%%DATADIR%%/vehicles/minelayer/store.pcx
%%DATADIR%%/vehicles/minelayer/video.flc
%%DATADIR%%/vehicles/missel/data.xml
%%DATADIR%%/vehicles/missel/img0.pcx
%%DATADIR%%/vehicles/missel/img1.pcx
%%DATADIR%%/vehicles/missel/img2.pcx
%%DATADIR%%/vehicles/missel/img3.pcx
%%DATADIR%%/vehicles/missel/img4.pcx
%%DATADIR%%/vehicles/missel/img5.pcx
%%DATADIR%%/vehicles/missel/img6.pcx
%%DATADIR%%/vehicles/missel/img7.pcx
%%DATADIR%%/vehicles/missel/info.pcx
%%DATADIR%%/vehicles/missel/shw0.pcx
%%DATADIR%%/vehicles/missel/shw1.pcx
%%DATADIR%%/vehicles/missel/shw2.pcx
%%DATADIR%%/vehicles/missel/shw3.pcx
%%DATADIR%%/vehicles/missel/shw4.pcx
%%DATADIR%%/vehicles/missel/shw5.pcx
%%DATADIR%%/vehicles/missel/shw6.pcx
%%DATADIR%%/vehicles/missel/shw7.pcx
%%DATADIR%%/vehicles/missel/store.pcx
%%DATADIR%%/vehicles/missel/video.flc
%%DATADIR%%/vehicles/missel_ship/data.xml
%%DATADIR%%/vehicles/missel_ship/img0.pcx
%%DATADIR%%/vehicles/missel_ship/img1.pcx
%%DATADIR%%/vehicles/missel_ship/img2.pcx
%%DATADIR%%/vehicles/missel_ship/img3.pcx
%%DATADIR%%/vehicles/missel_ship/img4.pcx
%%DATADIR%%/vehicles/missel_ship/img5.pcx
%%DATADIR%%/vehicles/missel_ship/img6.pcx
%%DATADIR%%/vehicles/missel_ship/img7.pcx
%%DATADIR%%/vehicles/missel_ship/info.pcx
%%DATADIR%%/vehicles/missel_ship/shw0.pcx
%%DATADIR%%/vehicles/missel_ship/shw1.pcx
%%DATADIR%%/vehicles/missel_ship/shw2.pcx
%%DATADIR%%/vehicles/missel_ship/shw3.pcx
%%DATADIR%%/vehicles/missel_ship/shw4.pcx
%%DATADIR%%/vehicles/missel_ship/shw5.pcx
%%DATADIR%%/vehicles/missel_ship/shw6.pcx
%%DATADIR%%/vehicles/missel_ship/shw7.pcx
%%DATADIR%%/vehicles/missel_ship/store.pcx
%%DATADIR%%/vehicles/missel_ship/video.flc
%%DATADIR%%/vehicles/mobile_aa/data.xml
%%DATADIR%%/vehicles/mobile_aa/img0.pcx
%%DATADIR%%/vehicles/mobile_aa/img1.pcx
%%DATADIR%%/vehicles/mobile_aa/img2.pcx
%%DATADIR%%/vehicles/mobile_aa/img3.pcx
%%DATADIR%%/vehicles/mobile_aa/img4.pcx
%%DATADIR%%/vehicles/mobile_aa/img5.pcx
%%DATADIR%%/vehicles/mobile_aa/img6.pcx
%%DATADIR%%/vehicles/mobile_aa/img7.pcx
%%DATADIR%%/vehicles/mobile_aa/info.pcx
%%DATADIR%%/vehicles/mobile_aa/shw0.pcx
%%DATADIR%%/vehicles/mobile_aa/shw1.pcx
%%DATADIR%%/vehicles/mobile_aa/shw2.pcx
%%DATADIR%%/vehicles/mobile_aa/shw3.pcx
%%DATADIR%%/vehicles/mobile_aa/shw4.pcx
%%DATADIR%%/vehicles/mobile_aa/shw5.pcx
%%DATADIR%%/vehicles/mobile_aa/shw6.pcx
%%DATADIR%%/vehicles/mobile_aa/shw7.pcx
%%DATADIR%%/vehicles/mobile_aa/store.pcx
%%DATADIR%%/vehicles/mobile_aa/video.flc
%%DATADIR%%/vehicles/pionier/build.pcx
%%DATADIR%%/vehicles/pionier/build_shw.pcx
%%DATADIR%%/vehicles/pionier/data.xml
%%DATADIR%%/vehicles/pionier/img0.pcx
%%DATADIR%%/vehicles/pionier/img1.pcx
%%DATADIR%%/vehicles/pionier/img2.pcx
%%DATADIR%%/vehicles/pionier/img3.pcx
%%DATADIR%%/vehicles/pionier/img4.pcx
%%DATADIR%%/vehicles/pionier/img5.pcx
%%DATADIR%%/vehicles/pionier/img6.pcx
%%DATADIR%%/vehicles/pionier/img7.pcx
%%DATADIR%%/vehicles/pionier/info.pcx
%%DATADIR%%/vehicles/pionier/shw0.pcx
%%DATADIR%%/vehicles/pionier/shw1.pcx
%%DATADIR%%/vehicles/pionier/shw2.pcx
%%DATADIR%%/vehicles/pionier/shw3.pcx
%%DATADIR%%/vehicles/pionier/shw4.pcx
%%DATADIR%%/vehicles/pionier/shw5.pcx
%%DATADIR%%/vehicles/pionier/shw6.pcx
%%DATADIR%%/vehicles/pionier/shw7.pcx
%%DATADIR%%/vehicles/pionier/store.pcx
%%DATADIR%%/vehicles/pionier/video.flc
%%DATADIR%%/vehicles/repair/data.xml
%%DATADIR%%/vehicles/repair/img0.pcx
%%DATADIR%%/vehicles/repair/img1.pcx
%%DATADIR%%/vehicles/repair/img2.pcx
%%DATADIR%%/vehicles/repair/img3.pcx
%%DATADIR%%/vehicles/repair/img4.pcx
%%DATADIR%%/vehicles/repair/img5.pcx
%%DATADIR%%/vehicles/repair/img6.pcx
%%DATADIR%%/vehicles/repair/img7.pcx
%%DATADIR%%/vehicles/repair/info.pcx
%%DATADIR%%/vehicles/repair/shw0.pcx
%%DATADIR%%/vehicles/repair/shw1.pcx
%%DATADIR%%/vehicles/repair/shw2.pcx
%%DATADIR%%/vehicles/repair/shw3.pcx
%%DATADIR%%/vehicles/repair/shw4.pcx
%%DATADIR%%/vehicles/repair/shw5.pcx
%%DATADIR%%/vehicles/repair/shw6.pcx
%%DATADIR%%/vehicles/repair/shw7.pcx
%%DATADIR%%/vehicles/repair/store.pcx
%%DATADIR%%/vehicles/repair/video.flc
%%DATADIR%%/vehicles/scanner/data.xml
%%DATADIR%%/vehicles/scanner/img0.pcx
%%DATADIR%%/vehicles/scanner/img1.pcx
%%DATADIR%%/vehicles/scanner/img2.pcx
%%DATADIR%%/vehicles/scanner/img3.pcx
%%DATADIR%%/vehicles/scanner/img4.pcx
%%DATADIR%%/vehicles/scanner/img5.pcx
%%DATADIR%%/vehicles/scanner/img6.pcx
%%DATADIR%%/vehicles/scanner/img7.pcx
%%DATADIR%%/vehicles/scanner/info.pcx
%%DATADIR%%/vehicles/scanner/overlay.pcx
%%DATADIR%%/vehicles/scanner/shw0.pcx
%%DATADIR%%/vehicles/scanner/shw1.pcx
%%DATADIR%%/vehicles/scanner/shw2.pcx
%%DATADIR%%/vehicles/scanner/shw3.pcx
%%DATADIR%%/vehicles/scanner/shw4.pcx
%%DATADIR%%/vehicles/scanner/shw5.pcx
%%DATADIR%%/vehicles/scanner/shw6.pcx
%%DATADIR%%/vehicles/scanner/shw7.pcx
%%DATADIR%%/vehicles/scanner/store.pcx
%%DATADIR%%/vehicles/scanner/video.flc
%%DATADIR%%/vehicles/scout/data.xml
%%DATADIR%%/vehicles/scout/img0.pcx
%%DATADIR%%/vehicles/scout/img1.pcx
%%DATADIR%%/vehicles/scout/img2.pcx
%%DATADIR%%/vehicles/scout/img3.pcx
%%DATADIR%%/vehicles/scout/img4.pcx
%%DATADIR%%/vehicles/scout/img5.pcx
%%DATADIR%%/vehicles/scout/img6.pcx
%%DATADIR%%/vehicles/scout/img7.pcx
%%DATADIR%%/vehicles/scout/info.pcx
%%DATADIR%%/vehicles/scout/shw0.pcx
%%DATADIR%%/vehicles/scout/shw1.pcx
%%DATADIR%%/vehicles/scout/shw2.pcx
%%DATADIR%%/vehicles/scout/shw3.pcx
%%DATADIR%%/vehicles/scout/shw4.pcx
%%DATADIR%%/vehicles/scout/shw5.pcx
%%DATADIR%%/vehicles/scout/shw6.pcx
%%DATADIR%%/vehicles/scout/shw7.pcx
%%DATADIR%%/vehicles/scout/store.pcx
%%DATADIR%%/vehicles/scout/video.flc
%%DATADIR%%/vehicles/sea_minelayer/data.xml
%%DATADIR%%/vehicles/sea_minelayer/img0.pcx
%%DATADIR%%/vehicles/sea_minelayer/img1.pcx
%%DATADIR%%/vehicles/sea_minelayer/img2.pcx
%%DATADIR%%/vehicles/sea_minelayer/img3.pcx
%%DATADIR%%/vehicles/sea_minelayer/img4.pcx
%%DATADIR%%/vehicles/sea_minelayer/img5.pcx
%%DATADIR%%/vehicles/sea_minelayer/img6.pcx
%%DATADIR%%/vehicles/sea_minelayer/img7.pcx
%%DATADIR%%/vehicles/sea_minelayer/info.pcx
%%DATADIR%%/vehicles/sea_minelayer/shw0.pcx
%%DATADIR%%/vehicles/sea_minelayer/shw1.pcx
%%DATADIR%%/vehicles/sea_minelayer/shw2.pcx
%%DATADIR%%/vehicles/sea_minelayer/shw3.pcx
%%DATADIR%%/vehicles/sea_minelayer/shw4.pcx
%%DATADIR%%/vehicles/sea_minelayer/shw5.pcx
%%DATADIR%%/vehicles/sea_minelayer/shw6.pcx
%%DATADIR%%/vehicles/sea_minelayer/shw7.pcx
%%DATADIR%%/vehicles/sea_minelayer/store.pcx
%%DATADIR%%/vehicles/sea_minelayer/video.flc
%%DATADIR%%/vehicles/sea_transport/data.xml
%%DATADIR%%/vehicles/sea_transport/img0.pcx
%%DATADIR%%/vehicles/sea_transport/img1.pcx
%%DATADIR%%/vehicles/sea_transport/img2.pcx
%%DATADIR%%/vehicles/sea_transport/img3.pcx
%%DATADIR%%/vehicles/sea_transport/img4.pcx
%%DATADIR%%/vehicles/sea_transport/img5.pcx
%%DATADIR%%/vehicles/sea_transport/img6.pcx
%%DATADIR%%/vehicles/sea_transport/img7.pcx
%%DATADIR%%/vehicles/sea_transport/info.pcx
%%DATADIR%%/vehicles/sea_transport/shw0.pcx
%%DATADIR%%/vehicles/sea_transport/shw1.pcx
%%DATADIR%%/vehicles/sea_transport/shw2.pcx
%%DATADIR%%/vehicles/sea_transport/shw3.pcx
%%DATADIR%%/vehicles/sea_transport/shw4.pcx
%%DATADIR%%/vehicles/sea_transport/shw5.pcx
%%DATADIR%%/vehicles/sea_transport/shw6.pcx
%%DATADIR%%/vehicles/sea_transport/shw7.pcx
%%DATADIR%%/vehicles/sea_transport/store.pcx
%%DATADIR%%/vehicles/sea_transport/video.flc
%%DATADIR%%/vehicles/sub/data.xml
%%DATADIR%%/vehicles/sub/img0.pcx
%%DATADIR%%/vehicles/sub/img1.pcx
%%DATADIR%%/vehicles/sub/img2.pcx
%%DATADIR%%/vehicles/sub/img3.pcx
%%DATADIR%%/vehicles/sub/img4.pcx
%%DATADIR%%/vehicles/sub/img5.pcx
%%DATADIR%%/vehicles/sub/img6.pcx
%%DATADIR%%/vehicles/sub/img7.pcx
%%DATADIR%%/vehicles/sub/info.pcx
%%DATADIR%%/vehicles/sub/shw0.pcx
%%DATADIR%%/vehicles/sub/shw1.pcx
%%DATADIR%%/vehicles/sub/shw2.pcx
%%DATADIR%%/vehicles/sub/shw3.pcx
%%DATADIR%%/vehicles/sub/shw4.pcx
%%DATADIR%%/vehicles/sub/shw5.pcx
%%DATADIR%%/vehicles/sub/shw6.pcx
%%DATADIR%%/vehicles/sub/shw7.pcx
%%DATADIR%%/vehicles/sub/store.pcx
%%DATADIR%%/vehicles/sub/video.flc
%%DATADIR%%/vehicles/surveyor/data.xml
%%DATADIR%%/vehicles/surveyor/img0.pcx
%%DATADIR%%/vehicles/surveyor/img1.pcx
%%DATADIR%%/vehicles/surveyor/img2.pcx
%%DATADIR%%/vehicles/surveyor/img3.pcx
%%DATADIR%%/vehicles/surveyor/img4.pcx
%%DATADIR%%/vehicles/surveyor/img5.pcx
%%DATADIR%%/vehicles/surveyor/img6.pcx
%%DATADIR%%/vehicles/surveyor/img7.pcx
%%DATADIR%%/vehicles/surveyor/info.pcx
%%DATADIR%%/vehicles/surveyor/shw0.pcx
%%DATADIR%%/vehicles/surveyor/shw1.pcx
%%DATADIR%%/vehicles/surveyor/shw2.pcx
%%DATADIR%%/vehicles/surveyor/shw3.pcx
%%DATADIR%%/vehicles/surveyor/shw4.pcx
%%DATADIR%%/vehicles/surveyor/shw5.pcx
%%DATADIR%%/vehicles/surveyor/shw6.pcx
%%DATADIR%%/vehicles/surveyor/shw7.pcx
%%DATADIR%%/vehicles/surveyor/store.pcx
%%DATADIR%%/vehicles/surveyor/video.flc
%%DATADIR%%/vehicles/tank/data.xml
%%DATADIR%%/vehicles/tank/img0.pcx
%%DATADIR%%/vehicles/tank/img1.pcx
%%DATADIR%%/vehicles/tank/img2.pcx
%%DATADIR%%/vehicles/tank/img3.pcx
%%DATADIR%%/vehicles/tank/img4.pcx
%%DATADIR%%/vehicles/tank/img5.pcx
%%DATADIR%%/vehicles/tank/img6.pcx
%%DATADIR%%/vehicles/tank/img7.pcx
%%DATADIR%%/vehicles/tank/info.pcx
%%DATADIR%%/vehicles/tank/shw0.pcx
%%DATADIR%%/vehicles/tank/shw1.pcx
%%DATADIR%%/vehicles/tank/shw2.pcx
%%DATADIR%%/vehicles/tank/shw3.pcx
%%DATADIR%%/vehicles/tank/shw4.pcx
%%DATADIR%%/vehicles/tank/shw5.pcx
%%DATADIR%%/vehicles/tank/shw6.pcx
%%DATADIR%%/vehicles/tank/shw7.pcx
%%DATADIR%%/vehicles/tank/store.pcx
%%DATADIR%%/vehicles/tank/video.flc
%%DATADIR%%/vehicles/trans_gold/data.xml
%%DATADIR%%/vehicles/trans_gold/img0.pcx
%%DATADIR%%/vehicles/trans_gold/img1.pcx
%%DATADIR%%/vehicles/trans_gold/img2.pcx
%%DATADIR%%/vehicles/trans_gold/img3.pcx
%%DATADIR%%/vehicles/trans_gold/img4.pcx
%%DATADIR%%/vehicles/trans_gold/img5.pcx
%%DATADIR%%/vehicles/trans_gold/img6.pcx
%%DATADIR%%/vehicles/trans_gold/img7.pcx
%%DATADIR%%/vehicles/trans_gold/info.pcx
%%DATADIR%%/vehicles/trans_gold/shw0.pcx
%%DATADIR%%/vehicles/trans_gold/shw1.pcx
%%DATADIR%%/vehicles/trans_gold/shw2.pcx
%%DATADIR%%/vehicles/trans_gold/shw3.pcx
%%DATADIR%%/vehicles/trans_gold/shw4.pcx
%%DATADIR%%/vehicles/trans_gold/shw5.pcx
%%DATADIR%%/vehicles/trans_gold/shw6.pcx
%%DATADIR%%/vehicles/trans_gold/shw7.pcx
%%DATADIR%%/vehicles/trans_gold/store.pcx
%%DATADIR%%/vehicles/trans_gold/video.flc
%%DATADIR%%/vehicles/trans_metal/data.xml
%%DATADIR%%/vehicles/trans_metal/img0.pcx
%%DATADIR%%/vehicles/trans_metal/img1.pcx
%%DATADIR%%/vehicles/trans_metal/img2.pcx
%%DATADIR%%/vehicles/trans_metal/img3.pcx
%%DATADIR%%/vehicles/trans_metal/img4.pcx
%%DATADIR%%/vehicles/trans_metal/img5.pcx
%%DATADIR%%/vehicles/trans_metal/img6.pcx
%%DATADIR%%/vehicles/trans_metal/img7.pcx
%%DATADIR%%/vehicles/trans_metal/info.pcx
%%DATADIR%%/vehicles/trans_metal/shw0.pcx
%%DATADIR%%/vehicles/trans_metal/shw1.pcx
%%DATADIR%%/vehicles/trans_metal/shw2.pcx
%%DATADIR%%/vehicles/trans_metal/shw3.pcx
%%DATADIR%%/vehicles/trans_metal/shw4.pcx
%%DATADIR%%/vehicles/trans_metal/shw5.pcx
%%DATADIR%%/vehicles/trans_metal/shw6.pcx
%%DATADIR%%/vehicles/trans_metal/shw7.pcx
%%DATADIR%%/vehicles/trans_metal/store.pcx
%%DATADIR%%/vehicles/trans_metal/video.flc
%%DATADIR%%/vehicles/trans_oil/data.xml
%%DATADIR%%/vehicles/trans_oil/img0.pcx
%%DATADIR%%/vehicles/trans_oil/img1.pcx
%%DATADIR%%/vehicles/trans_oil/img2.pcx
%%DATADIR%%/vehicles/trans_oil/img3.pcx
%%DATADIR%%/vehicles/trans_oil/img4.pcx
%%DATADIR%%/vehicles/trans_oil/img5.pcx
%%DATADIR%%/vehicles/trans_oil/img6.pcx
%%DATADIR%%/vehicles/trans_oil/img7.pcx
%%DATADIR%%/vehicles/trans_oil/info.pcx
%%DATADIR%%/vehicles/trans_oil/shw0.pcx
%%DATADIR%%/vehicles/trans_oil/shw1.pcx
%%DATADIR%%/vehicles/trans_oil/shw2.pcx
%%DATADIR%%/vehicles/trans_oil/shw3.pcx
%%DATADIR%%/vehicles/trans_oil/shw4.pcx
%%DATADIR%%/vehicles/trans_oil/shw5.pcx
%%DATADIR%%/vehicles/trans_oil/shw6.pcx
%%DATADIR%%/vehicles/trans_oil/shw7.pcx
%%DATADIR%%/vehicles/trans_oil/store.pcx
%%DATADIR%%/vehicles/trans_oil/video.flc
%%DATADIR%%/vehicles/vehicles.xml
@dirrm %%DATADIR%%/voices
@dirrm %%DATADIR%%/vehicles/trans_oil
@dirrm %%DATADIR%%/vehicles/trans_metal
@dirrm %%DATADIR%%/vehicles/trans_gold
@dirrm %%DATADIR%%/vehicles/tank
@dirrm %%DATADIR%%/vehicles/surveyor
@dirrm %%DATADIR%%/vehicles/sub
@dirrm %%DATADIR%%/vehicles/sea_transport
@dirrm %%DATADIR%%/vehicles/sea_minelayer
@dirrm %%DATADIR%%/vehicles/scout
@dirrm %%DATADIR%%/vehicles/scanner
@dirrm %%DATADIR%%/vehicles/repair
@dirrm %%DATADIR%%/vehicles/pionier
@dirrm %%DATADIR%%/vehicles/mobile_aa
@dirrm %%DATADIR%%/vehicles/missel_ship
@dirrm %%DATADIR%%/vehicles/missel
@dirrm %%DATADIR%%/vehicles/minelayer
@dirrm %%DATADIR%%/vehicles/konstrukt
@dirrm %%DATADIR%%/vehicles/infantery
@dirrm %%DATADIR%%/vehicles/gunboat
@dirrm %%DATADIR%%/vehicles/fighter
@dirrm %%DATADIR%%/vehicles/escort
@dirrm %%DATADIR%%/vehicles/corvet
@dirrm %%DATADIR%%/vehicles/commando
@dirrm %%DATADIR%%/vehicles/cluster
@dirrm %%DATADIR%%/vehicles/cargoship
@dirrm %%DATADIR%%/vehicles/bulldozer
@dirrm %%DATADIR%%/vehicles/bomber
@dirrm %%DATADIR%%/vehicles/awac
@dirrm %%DATADIR%%/vehicles/assault
@dirrm %%DATADIR%%/vehicles/apc
@dirrm %%DATADIR%%/vehicles/alien_tank
@dirrm %%DATADIR%%/vehicles/alien_ship
@dirrm %%DATADIR%%/vehicles/alien_plane
@dirrm %%DATADIR%%/vehicles/alien_assault
@dirrm %%DATADIR%%/vehicles/air_transport
@dirrm %%DATADIR%%/vehicles
@dirrm %%DATADIR%%/sounds
@dirrm %%DATADIR%%/save
@dirrm %%DATADIR%%/mve
@dirrm %%DATADIR%%/music
@dirrm %%DATADIR%%/maps
@dirrm %%DATADIR%%/languages
@dirrm %%DATADIR%%/gfx
@dirrm %%DATADIR%%/fx
@dirrm %%DATADIR%%/fonts
@dirrm %%DATADIR%%/buildings/training
@dirrm %%DATADIR%%/buildings/storage_oil
@dirrm %%DATADIR%%/buildings/storage_metal
@dirrm %%DATADIR%%/buildings/storage_gold
@dirrm %%DATADIR%%/buildings/shield
@dirrm %%DATADIR%%/buildings/seamine
@dirrm %%DATADIR%%/buildings/road
@dirrm %%DATADIR%%/buildings/research
@dirrm %%DATADIR%%/buildings/radar
@dirrm %%DATADIR%%/buildings/platform
@dirrm %%DATADIR%%/buildings/pad
@dirrm %%DATADIR%%/buildings/mine_deep
@dirrm %%DATADIR%%/buildings/mine
@dirrm %%DATADIR%%/buildings/landmine
@dirrm %%DATADIR%%/buildings/hangar
@dirrm %%DATADIR%%/buildings/habitat
@dirrm %%DATADIR%%/buildings/gun_turret
@dirrm %%DATADIR%%/buildings/gun_missel
@dirrm %%DATADIR%%/buildings/gun_ari
@dirrm %%DATADIR%%/buildings/gun_aa
@dirrm %%DATADIR%%/buildings/goldraff
@dirrm %%DATADIR%%/buildings/fac_small
@dirrm %%DATADIR%%/buildings/fac_ship
@dirrm %%DATADIR%%/buildings/fac_big
@dirrm %%DATADIR%%/buildings/fac_alien
@dirrm %%DATADIR%%/buildings/fac_air
@dirrm %%DATADIR%%/buildings/energy_small
@dirrm %%DATADIR%%/buildings/energy_big
@dirrm %%DATADIR%%/buildings/dock
@dirrm %%DATADIR%%/buildings/depot
@dirrm %%DATADIR%%/buildings/connector
@dirrm %%DATADIR%%/buildings/bridge
@dirrm %%DATADIR%%/buildings/block
@dirrm %%DATADIR%%/buildings/barracks
@dirrm %%DATADIR%%/buildings
@dirrm %%DATADIR%%
|