-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathFortress_Europe_German.cat
5234 lines (5229 loc) · 383 KB
/
Fortress_Europe_German.cat
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
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<catalogue id="ef50-df93-9d30-fd28" name="Fortress Europe: German" revision="8" battleScribeVersion="2.03" authorName="Ulf Bernestedt" authorContact="[email protected] BSData Discord: https://discord.com/invite/UrrPB3T" authorUrl="https://github.com/BSData/flamesofwar" library="false" gameSystemId="976a-b687-1fdb-07ef" gameSystemRevision="21" xmlns="http://www.battlescribe.net/schema/catalogueSchema" type="catalogue">
<readme>Fortress Europe: Late-War Forces
Support the creators, buy the book!
-v8 Changes - mdcooledge
- Modified back end data to follow other German books.</readme>
<selectionEntries>
<selectionEntry id="ad16-e387-64eb-dce8" name="Panther Tank Company" hidden="false" collective="false" import="true" type="unit">
<categoryLinks>
<categoryLink id="bec3-4115-1ff7-f1d2" name="Combat Platoons" hidden="false" targetId="5630-abd3-15d8-5cc6" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="6643-c6dd-5f74-0e22" name="Armour" hidden="false" collective="false" import="true" defaultSelectionEntryId="fcf4-9c40-9e75-263e">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="639c-160f-a7a8-8465" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="5f6c-9d41-5e31-c3cc" type="max"/>
</constraints>
<entryLinks>
<entryLink id="fcf4-9c40-9e75-263e" name="Panther Tank Platoon (LG104)" hidden="false" collective="false" import="true" targetId="8f39-d788-82de-e346" type="selectionEntry"/>
<entryLink id="18d8-b238-56de-b55a" name="Tiger Tank Platoon (LG102)" hidden="false" collective="false" import="true" targetId="3c70-68a3-4454-824f" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="a85a-ca4a-f779-ce8e" name="Armour" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6827-c2b8-20bf-e029" type="max"/>
</constraints>
<entryLinks>
<entryLink id="12a1-dff3-355a-5374" name="Panther Tank Platoon (LG104)" hidden="false" collective="false" import="true" targetId="8f39-d788-82de-e346" type="selectionEntry"/>
<entryLink id="6929-208d-4b2d-691a" name="Panzer IV Mixed Tank Platoon (LG106)" hidden="false" collective="false" import="true" targetId="0361-b9a1-29bc-e6d7" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="ad04-d72f-cdbd-a1cf" name="Panther Tank Company HQ (LG103)" hidden="false" collective="false" import="true" targetId="5efa-3ada-1d64-707c" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="9ad4-2faa-fe54-8a2e" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="0665-321d-8f4c-a980" type="max"/>
</constraints>
</entryLink>
<entryLink id="2d6a-3e78-09ad-8303" name="Panther Tank Platoon (LG104)" hidden="false" collective="false" import="true" targetId="8f39-d788-82de-e346" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="9bc4-9f86-6fac-941a" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="8132-aa47-dd9d-41a9" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="19ce-597c-d407-531e" name="Tiger Tank Company" hidden="false" collective="false" import="true" type="unit">
<categoryLinks>
<categoryLink id="6b77-e066-7e06-8f9e" name="Combat Platoons" hidden="false" targetId="5630-abd3-15d8-5cc6" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="48f8-e99a-d4c7-1b68" name="Tiger Tank Platoon (LG102)" hidden="false" collective="false" import="true" targetId="3c70-68a3-4454-824f" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="090a-3df9-1f59-0e98" type="max"/>
</constraints>
</entryLink>
<entryLink id="a648-69e7-44a2-6d54" name="Tiger Tank Platoon (LG102)" hidden="false" collective="false" import="true" targetId="3c70-68a3-4454-824f" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="f6bc-72c8-9185-e073" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="0cdf-e768-4179-f41c" type="max"/>
</constraints>
</entryLink>
<entryLink id="2542-2f9b-5054-bf8e" name="Tiger Tank Platoon (LG102)" hidden="false" collective="false" import="true" targetId="3c70-68a3-4454-824f" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="3072-90d0-0208-5045" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="49dd-4767-3eba-1039" type="max"/>
</constraints>
</entryLink>
<entryLink id="c444-ff2d-d828-bf43" name="Tiger Tank Company HQ (LG101)" hidden="false" collective="false" import="true" targetId="4896-caae-52cf-2571" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="803d-5105-4038-eb1e" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="649c-e9fa-8a60-da9f" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="449d-85a0-9728-98a2" name="Panzer III & IV Mixed Tank Company" hidden="false" collective="false" import="true" type="upgrade">
<categoryLinks>
<categoryLink id="5262-a762-9613-2a6f" name="Combat Platoons" hidden="false" targetId="5630-abd3-15d8-5cc6" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="c30b-3af6-d018-4b3b" name="Armour" hidden="false" collective="false" import="true" defaultSelectionEntryId="19af-d840-5511-5f22">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="f891-a5f6-d381-5485" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="b56b-7901-032b-9686" type="max"/>
</constraints>
<entryLinks>
<entryLink id="19af-d840-5511-5f22" name="Panzer IV Mixed Tank Platoon (LG106)" hidden="false" collective="false" import="true" targetId="0361-b9a1-29bc-e6d7" type="selectionEntry"/>
<entryLink id="f09c-abb6-8c30-ac16" name="Panzer III Mixed Tank Platoon (LG107)" hidden="false" collective="false" import="true" targetId="4d81-afbe-1cd8-be10" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="d39b-5199-9da8-1445" name="Armour" hidden="false" collective="false" import="true" defaultSelectionEntryId="27cc-a9f1-7325-b992">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="7b46-3077-371a-f7c9" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="1029-0942-60e8-c911" type="max"/>
</constraints>
<entryLinks>
<entryLink id="27cc-a9f1-7325-b992" name="Panzer IV Mixed Tank Platoon (LG106)" hidden="false" collective="false" import="true" targetId="0361-b9a1-29bc-e6d7" type="selectionEntry"/>
<entryLink id="f485-69c6-6e3d-f3eb" name="Panzer III Mixed Tank Platoon (LG107)" hidden="false" collective="false" import="true" targetId="4d81-afbe-1cd8-be10" type="selectionEntry"/>
<entryLink id="d2a9-be84-b1bf-b86c" name="Tiger Tank Platoon (LG102)" hidden="false" collective="false" import="true" targetId="3c70-68a3-4454-824f" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="21f9-ea6f-eb57-7bc2" name="Armour" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="fe94-d602-d07f-12b9" type="max"/>
</constraints>
<entryLinks>
<entryLink id="71f8-3360-2a89-dfcf" name="Panzer IV Mixed Tank Platoon (LG106)" hidden="false" collective="false" import="true" targetId="0361-b9a1-29bc-e6d7" type="selectionEntry"/>
<entryLink id="080a-633f-a21e-a63f" name="Panzer III Mixed Tank Platoon (LG107)" hidden="false" collective="false" import="true" targetId="4d81-afbe-1cd8-be10" type="selectionEntry"/>
<entryLink id="086a-f37c-4a6a-d81f" name="Panther Tank Platoon (LG104)" hidden="false" collective="false" import="true" targetId="8f39-d788-82de-e346" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="ddf3-1d08-76aa-06b5" name="Armour" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="e45c-1bc1-11ca-1b47" type="max"/>
</constraints>
<entryLinks>
<entryLink id="63b6-8eb5-afc3-2811" name="Panzer IV Mixed Tank Platoon (LG106)" hidden="false" collective="false" import="true" targetId="0361-b9a1-29bc-e6d7" type="selectionEntry"/>
<entryLink id="7f25-45ae-dda5-1173" name="Panzer III Mixed Tank Platoon (LG107)" hidden="false" collective="false" import="true" targetId="4d81-afbe-1cd8-be10" type="selectionEntry"/>
<entryLink id="80c3-b8d9-3933-4750" name="Flammpanzer III Flame-Tank Platoon (LG108)" hidden="false" collective="false" import="true" targetId="ecbb-f7fa-9840-59f0" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="e8c2-666e-1995-9879" name="Panzer III & IV Mixed Tank Company HQ (LG105)" hidden="false" collective="false" import="true" targetId="7e97-7409-6a9a-bba9" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="e779-6627-949a-ef0c" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="c238-fca2-b13e-5f0f" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="8c48-f638-b52b-bd77" name="StuG Assault Gun Company" hidden="false" collective="false" import="true" type="upgrade">
<categoryLinks>
<categoryLink id="40a5-bb80-038e-1813" name="Combat Platoons" hidden="false" targetId="5630-abd3-15d8-5cc6" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="ef30-6d45-8984-a464" name="StuG Assault Gun Company HQ (LG109)" hidden="false" collective="false" import="true" targetId="fc3e-96db-7549-b299" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="5b91-5f9e-9289-3838" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="fcc2-a366-d73f-3562" type="max"/>
</constraints>
</entryLink>
<entryLink id="cc67-4656-9eef-5630" name="StuG Assault Gun Platoon (LG110)" hidden="false" collective="false" import="true" targetId="05d1-5c2d-7273-0d49" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="14f3-847c-abec-8fb4" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="340d-b412-5c2f-7dfa" type="max"/>
</constraints>
</entryLink>
<entryLink id="92be-88a0-6cae-3436" name="StuG Assault Gun Platoon (LG110)" hidden="false" collective="false" import="true" targetId="05d1-5c2d-7273-0d49" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="c75d-d7fb-7703-e71e" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="033b-217e-368a-a529" type="max"/>
</constraints>
</entryLink>
<entryLink id="7442-2807-5876-42b1" name="StuG Assault Gun Platoon (LG110)" hidden="false" collective="false" import="true" targetId="05d1-5c2d-7273-0d49" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="f116-35e7-231f-57b9" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="67e4-543f-a817-7d77" name="Panzergrenadier Company" hidden="false" collective="false" import="true" type="unit">
<categoryLinks>
<categoryLink id="cd16-00e2-19b8-12fc" name="Combat Platoons" hidden="false" targetId="5630-abd3-15d8-5cc6" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="5a45-5aaf-c3c6-139a" name="Artillery" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="43d3-1b4c-1200-6bab" type="max"/>
</constraints>
<entryLinks>
<entryLink id="8e3c-2c8e-ce8b-855f" name="8cm Mortar Section (LG116)" hidden="false" collective="false" import="true" targetId="8662-5a3a-601c-f398" type="selectionEntry"/>
<entryLink id="1532-84d7-9279-f377" name="Armoured 8cm Mortar Section (LG115)" hidden="false" collective="false" import="true" targetId="96d6-8f82-05a9-4041" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="874d-899d-f4e4-6963" name="Artillery" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1786-47bd-8d76-6e91" type="max"/>
</constraints>
<entryLinks>
<entryLink id="aac5-dd6f-34a3-d974" name="Armoured 7.5cm Gun Platoon (LG117)" hidden="false" collective="false" import="true" targetId="3cbf-d36d-263b-143c" type="selectionEntry"/>
<entryLink id="d8d0-d2f8-e7de-c065" name="7.5cm Gun Platoon (LG126)" hidden="false" collective="false" import="true" targetId="2a75-7194-aa79-3016" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="4581-ecab-0d32-ce2d" name="Artillery" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b8bc-7792-2b2a-98cf" type="max"/>
</constraints>
<entryLinks>
<entryLink id="4012-286d-8d2f-1620" name="Grille 15cm Gun Platoon (LG118)" hidden="false" collective="false" import="true" targetId="8683-0dcf-356f-308f" type="selectionEntry"/>
<entryLink id="6fc8-72d1-96a6-303c" name="15cm Gun Platoon (LG127)" hidden="false" collective="false" import="true" targetId="c028-b360-7cec-6805" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="f897-ac8e-e716-b88d" name="Anti-Tank" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="29fe-31f9-86a0-b7c9" type="max"/>
</constraints>
<entryLinks>
<entryLink id="418e-e4e1-e241-cc7a" name="5cm Tank-Hunter Platoon (LG124)" hidden="false" collective="false" import="true" targetId="fd04-d5fd-9c1f-9b38" type="selectionEntry"/>
<entryLink id="77bb-5a86-1148-64c4" name="7.5cm Tank-Hunter Platoon (LG131)" hidden="false" collective="false" import="true" targetId="af90-caa2-ae1e-da6c" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="cf99-239e-9c79-a2eb" name="Command Card:" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0387-7325-2810-a9e6" type="max"/>
</constraints>
<entryLinks>
<entryLink id="e85e-2fec-f1f8-7962" name="Pioneer Company" hidden="false" collective="false" import="true" targetId="3869-43a0-6551-42ba" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="a3b4-8fd4-3d71-a3f1" name="Panzergrenadier Company HQ (LG111)" hidden="false" collective="false" import="true" targetId="92f2-b646-d2de-5f7d" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="dbd8-0731-ea18-418b" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="9179-9879-c3ef-f48f" type="max"/>
</constraints>
</entryLink>
<entryLink id="fb07-6b76-83b3-6023" name="Panzergrenadier Platoon (LG113)" hidden="false" collective="false" import="true" targetId="2c5d-74e1-c36c-2a0c" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="26ab-c76c-954a-786b" type="max"/>
</constraints>
</entryLink>
<entryLink id="57e5-1438-b673-beba" name="Panzergrenadier Platoon (LG113)" hidden="false" collective="false" import="true" targetId="2c5d-74e1-c36c-2a0c" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="6ded-bac5-a842-7411" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="b2e4-0c03-7193-ac30" type="max"/>
</constraints>
</entryLink>
<entryLink id="1ad4-60d2-8f8d-7fd6" name="Panzergrenadier Platoon (LG113)" hidden="false" collective="false" import="true" targetId="2c5d-74e1-c36c-2a0c" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="8431-338d-7f85-4bf8" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="5932-53e0-67b6-0d14" type="max"/>
</constraints>
</entryLink>
<entryLink id="7566-d694-c62b-4677" name="Armoured sMG34 Machine-Gun Platoon (LG114)" hidden="false" collective="false" import="true" targetId="2a0f-9c4a-f454-9528" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="b380-3ec3-148e-b3e5" type="max"/>
</constraints>
</entryLink>
<entryLink id="fb8b-6c6e-698a-295b" name="Armoured Flame-Thrower Platoon (LG119)" hidden="false" collective="false" import="true" targetId="6e6c-f521-3715-179b" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="e739-a32a-38cc-6e20" type="max"/>
</constraints>
</entryLink>
<entryLink id="d815-a366-401a-04d5" name="Sd Kfz 10/4 Light AA Platoon (LG142)" hidden="false" collective="false" import="true" targetId="5f77-d952-6de8-e184" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="818b-210c-97a4-c812" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="e6ac-283f-c8d4-b3c4" name="Grenadier Company" hidden="false" collective="false" import="true" type="upgrade">
<categoryLinks>
<categoryLink id="54df-3bf1-e548-58b1" name="Combat Platoons" hidden="false" targetId="5630-abd3-15d8-5cc6" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="e632-a1c2-bcd7-27c3" name="Anti-Tank" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f9bb-cef1-e718-4fdf" type="max"/>
</constraints>
<entryLinks>
<entryLink id="920e-7e98-5ea9-25b6" name="3.7cm Tank-Hunter Platoon (LG123)" hidden="false" collective="false" import="true" targetId="2a54-7902-51f9-8e49" type="selectionEntry"/>
<entryLink id="e209-0d22-1a56-1767" name="5cm Tank-Hunter Platoon (LG124)" hidden="false" collective="false" import="true" targetId="fd04-d5fd-9c1f-9b38" type="selectionEntry"/>
<entryLink id="9fb5-14d9-a335-8eb5" name="7.5cm Tank-Hunter Platoon (LG131)" hidden="false" collective="false" import="true" targetId="af90-caa2-ae1e-da6c" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="c6b8-6129-f808-67d5" name="Command Card:" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9201-981b-2257-10ee" type="max"/>
</constraints>
<entryLinks>
<entryLink id="9b60-012d-5fec-6161" name="Pioneer Company" hidden="false" collective="false" import="true" targetId="3869-43a0-6551-42ba" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="b18d-748c-b30d-3233" name="Grenadier Company HQ (LG120)" hidden="false" collective="false" import="true" targetId="a150-8dc5-05e1-a0d8" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="6f84-6a51-226e-3295" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="8a96-e7d6-1915-7ec1" type="max"/>
</constraints>
</entryLink>
<entryLink id="8efd-cd98-2ff2-e359" name="Grenadier Platoon (LG121)" hidden="false" collective="false" import="true" targetId="5b61-6b64-8dc5-9156" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="48d1-5bcb-e74a-6ac6" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="8747-e3a5-bb10-807a" type="max"/>
</constraints>
</entryLink>
<entryLink id="81ab-02b6-ddd3-637a" name="Grenadier Platoon (LG121)" hidden="false" collective="false" import="true" targetId="5b61-6b64-8dc5-9156" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="32ff-7fd7-79fc-7fda" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="921a-87cd-f5e0-6885" type="max"/>
</constraints>
</entryLink>
<entryLink id="93d7-859b-ba57-165b" name="Grenadier Platoon (LG121)" hidden="false" collective="false" import="true" targetId="5b61-6b64-8dc5-9156" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="8e0c-f15f-5f52-2b33" type="max"/>
</constraints>
</entryLink>
<entryLink id="e22a-dde1-2fa7-0de2" name="sMG34 Machine-Gun Platoon (LG122)" hidden="false" collective="false" import="true" targetId="2b67-00d6-b128-5cb0" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="fcc7-bbb6-c710-f016" type="max"/>
</constraints>
</entryLink>
<entryLink id="0ee4-2f51-7938-eca1" name="8cm Mortar Platoon (LG125)" hidden="false" collective="false" import="true" targetId="a2ce-4d82-f836-da30" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="14f4-adfd-4fda-9efd" type="max"/>
</constraints>
</entryLink>
<entryLink id="ea71-50c6-954a-10da" name="7.5cm Gun Platoon (LG126)" hidden="false" collective="false" import="true" targetId="2a75-7194-aa79-3016" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="8585-df3e-8dd4-9e90" type="max"/>
</constraints>
</entryLink>
<entryLink id="23e6-2500-25a1-1bf3" name="15cm Gun Platoon (LG127)" hidden="false" collective="false" import="true" targetId="c028-b360-7cec-6805" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="7274-2607-be8d-e330" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="dedb-8ef7-aeeb-4150" name="Marder or Hornisse Tank-Hunter Platoon" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5c12-9485-72f1-ab4d" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="e45a-289a-3653-e084" name="New CategoryLink" hidden="false" targetId="9be3-4dab-91f0-f7c5" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="2425-5ba8-c512-e949" name="Unit Selection:" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f183-91a3-b903-2389" type="max"/>
</constraints>
<entryLinks>
<entryLink id="1f9f-39d5-83cc-bab3" name="Marder Tank-Hunter Platoon (LG130)" hidden="false" collective="false" import="true" targetId="bf83-a321-2004-a641" type="selectionEntry"/>
<entryLink id="9ef2-f32e-e6db-64ef" name="Hornisse Tank-Hunter Platoon (LG129)" hidden="false" collective="false" import="true" targetId="fdb5-7951-a0f5-1995" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="b5d2-2d76-3fb4-fbad" name="5cm, 7.5cm, or 8.8cm (Early) Tank-Hunter Platoon" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d323-357d-7e7c-fa23" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="0a8f-e824-8401-1c16" name="New CategoryLink" hidden="false" targetId="9be3-4dab-91f0-f7c5" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="edf2-1068-6aea-dbd8" name="Unit Selection:" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b900-a45d-91b2-e5da" type="max"/>
</constraints>
<entryLinks>
<entryLink id="ab89-bd0f-45c7-ca92" name="5cm Tank-Hunter Platoon (LG124)" hidden="false" collective="false" import="true" targetId="fd04-d5fd-9c1f-9b38" type="selectionEntry"/>
<entryLink id="5545-0065-e4cc-2c80" name="7.5cm Tank-Hunter Platoon (LG131)" hidden="false" collective="false" import="true" targetId="af90-caa2-ae1e-da6c" type="selectionEntry"/>
<entryLink id="d457-e5de-e2ba-2ed6" name="8.8cm (Early) Tank-Hunter Platoon (LG132)" hidden="false" collective="false" import="true" targetId="2420-6c0e-6a8b-9eab" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="9f7e-fccb-b6e9-48b3" name="Reconnaissance" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a4c3-46c0-1736-f576" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="5607-3899-dba6-4756" name="New CategoryLink" hidden="false" targetId="9be3-4dab-91f0-f7c5" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="afd7-6816-73ba-b8fd" name="Unit Selection:" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d665-263e-4366-5cfe" type="max"/>
</constraints>
<entryLinks>
<entryLink id="fc8f-7dab-3628-c497" name="Luchs Scout Troop (LG139)" hidden="false" collective="false" import="true" targetId="18b5-1aa8-4e94-9ea5" type="selectionEntry"/>
<entryLink id="1a78-b912-5f8a-68c2" name="Sd Kfz 221 & 222 Light Scout Troop (LG140)" hidden="false" collective="false" import="true" targetId="3720-c764-2285-0216" type="selectionEntry">
<categoryLinks>
<categoryLink id="64a2-047a-6453-97f7" name="Support Units" hidden="false" targetId="9be3-4dab-91f0-f7c5" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="45ab-f16c-9a78-4d84" name="Sd Kfz 231 Heavy Scout Troop (LG141)" hidden="false" collective="false" import="true" targetId="bb8a-0132-79a3-633f" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="ee74-aff3-cd81-0271" name="Aircraft" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="80af-96dd-723b-a140" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="f80d-87b1-00ab-78a5" name="New CategoryLink" hidden="false" targetId="9be3-4dab-91f0-f7c5" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="b0ae-f1a1-eefc-9471" name="Unit Selection:" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="98f5-9221-c0bf-b948" type="max"/>
</constraints>
<entryLinks>
<entryLink id="0bd4-07e6-d988-4a64" name="Ju 87 Stuka Dive Bomber Flight (LG145)" hidden="false" collective="false" import="true" targetId="1b8d-312a-22e5-4bf2" type="selectionEntry">
<categoryLinks>
<categoryLink id="0388-ec8a-6d70-7a9f" name="Support Units" hidden="false" targetId="9be3-4dab-91f0-f7c5" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="0047-0e46-3acc-75da" name="Hs 129 Battle Flight (LG147)" hidden="false" collective="false" import="true" targetId="9a1a-25a1-87dd-5af1" type="selectionEntry"/>
<entryLink id="4e42-9bc5-5d2e-013f" name="Ju 87 Stuka (3.7cm) Tank-Hunter Flight (LG146)" hidden="false" collective="false" import="true" targetId="ab59-5e7a-efcb-1089" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="3a70-09df-6734-6b30" name="Anti-Aircraft" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1d20-d6df-033d-79f4" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="4cbd-5af5-aa86-7f7f" name="New CategoryLink" hidden="false" targetId="9be3-4dab-91f0-f7c5" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="aec2-e609-a45d-751c" name="Unit Selection:" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0f39-502d-36e7-00fb" type="max"/>
</constraints>
<entryLinks>
<entryLink id="01bf-775c-fec6-a421" name="Sd Kfz 7/1 Quad AA Platoon (LG143)" hidden="false" collective="false" import="true" targetId="25d2-051f-4f83-6bdb" type="selectionEntry"/>
<entryLink id="8a98-1738-73a3-9f27" name="Sd Kfz 10/4 Light AA Platoon (LG142)" hidden="false" collective="false" import="true" targetId="5f77-d952-6de8-e184" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="89a0-370d-b7da-b9a5" name="10.5cm or Wespe Artillery Battery" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4083-35a4-35d1-68ea" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="3c69-01c9-3785-ea21" name="New CategoryLink" hidden="false" targetId="9be3-4dab-91f0-f7c5" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="45f6-5bd9-fba6-9c79" name="Unit Selection:" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="853d-148d-ff87-3853" type="max"/>
</constraints>
<entryLinks>
<entryLink id="2b18-9f78-3c39-0f3f" name="10.5cm Artillery Battery (LG136)" hidden="false" collective="false" import="true" targetId="00b7-e0b5-0dd0-1cac" type="selectionEntry">
<categoryLinks>
<categoryLink id="e294-5237-07b1-5d75" name="Support Units" hidden="false" targetId="9be3-4dab-91f0-f7c5" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="0ec8-fc06-a503-e799" name="Wespe Artillery Battery (LG134)" hidden="false" collective="false" import="true" targetId="1496-a109-0b54-0222" type="selectionEntry">
<categoryLinks>
<categoryLink id="453c-5a25-865f-9ed2" name="Support Units" hidden="false" targetId="9be3-4dab-91f0-f7c5" primary="false"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="a1db-a141-7911-df26" name="10.5cm or Hummel Artillery Battery" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0712-fff2-52cf-b60c" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="8be8-20a6-727c-0581" name="New CategoryLink" hidden="false" targetId="9be3-4dab-91f0-f7c5" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="5e71-9bff-4c34-537a" name="Unit Selection:" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4a87-7082-db1e-6942" type="max"/>
</constraints>
<entryLinks>
<entryLink id="2850-227c-dad1-7c70" name="10.5cm Artillery Battery (LG136)" hidden="false" collective="false" import="true" targetId="00b7-e0b5-0dd0-1cac" type="selectionEntry">
<categoryLinks>
<categoryLink id="1725-98f6-fcd1-2472" name="Support Units" hidden="false" targetId="9be3-4dab-91f0-f7c5" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="5fe4-f691-1fba-20ab" name="Hummel Artillery Battery (LG135)" hidden="false" collective="false" import="true" targetId="4fce-78b8-4f54-4090" type="selectionEntry">
<categoryLinks>
<categoryLink id="f294-3b56-fe81-9dcb" name="Support Units" hidden="false" targetId="9be3-4dab-91f0-f7c5" primary="false"/>
</categoryLinks>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="37cf-dc97-dcb6-d567" name="Reconnaissance" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="98db-a9f9-887c-b394" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="fbf1-82e5-b502-7239" name="New CategoryLink" hidden="false" targetId="9be3-4dab-91f0-f7c5" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="11d7-d20a-6de2-35c6" name="Unit Selection:" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="00f6-bf59-9e33-a8af" type="max"/>
</constraints>
<entryLinks>
<entryLink id="2b52-565a-f58b-fcc1" name="Luchs Scout Troop (LG139)" hidden="false" collective="false" import="true" targetId="18b5-1aa8-4e94-9ea5" type="selectionEntry"/>
<entryLink id="d91a-fa6c-6f5c-659d" name="Sd Kfz 221 & 222 Light Scout Troop (LG140)" hidden="false" collective="false" import="true" targetId="3720-c764-2285-0216" type="selectionEntry">
<categoryLinks>
<categoryLink id="190a-7c34-cf41-d195" name="Support Units" hidden="false" targetId="9be3-4dab-91f0-f7c5" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="425f-598f-9d1b-6ef0" name="Sd Kfz 231 Heavy Scout Troop (LG141)" hidden="false" collective="false" import="true" targetId="bb8a-0132-79a3-633f" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="1cf9-6aac-6dac-2184" name="Tiger Tank Platoon (LG102)" hidden="false" collective="false" import="true" targetId="3c70-68a3-4454-824f" type="selectionEntry">
<modifiers>
<modifier type="set" field="b85c-3805-8de4-37cd" value="0">
<comment>If Unit already exists in Force/Roster it can not be selected as a Formation Support.</comment>
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="3c70-68a3-4454-824f" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="b85c-3805-8de4-37cd" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="c831-e599-e183-2ce1" name="New CategoryLink" hidden="false" targetId="b531-2fd7-ec0e-d214" primary="true"/>
<categoryLink id="d9e9-595f-feae-3439" name="Support Units" hidden="false" targetId="9be3-4dab-91f0-f7c5" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="0175-eb85-5b94-51f4" name="Panther Tank Platoon (LG104)" hidden="false" collective="false" import="true" targetId="8f39-d788-82de-e346" type="selectionEntry">
<modifiers>
<modifier type="set" field="a7cd-e177-6bb4-95f1" value="0">
<comment>If Unit already exists in Force/Roster it can not be selected as a Formation Support.</comment>
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="8f39-d788-82de-e346" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="a7cd-e177-6bb4-95f1" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="880a-e55c-4eca-1fa2" name="New CategoryLink" hidden="false" targetId="b531-2fd7-ec0e-d214" primary="true"/>
<categoryLink id="964b-7d1f-e6ac-1112" name="Support Units" hidden="false" targetId="9be3-4dab-91f0-f7c5" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="2b19-c570-7a50-075c" name="Flammpanzer III Flame-Tank Platoon (LG108)" hidden="false" collective="false" import="true" targetId="ecbb-f7fa-9840-59f0" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="21f9-2769-c6f7-864f" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="76cd-d8b7-befc-cf6f" name="New CategoryLink" hidden="false" targetId="9be3-4dab-91f0-f7c5" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="ee16-2172-42c6-6e71" name="Panzer III Mixed Tank Platoon (LG107)" hidden="false" collective="false" import="true" targetId="4d81-afbe-1cd8-be10" type="selectionEntry">
<modifiers>
<modifier type="set" field="c31f-951e-ce51-81e4" value="0">
<comment>If Unit already exists in Force/Roster it can not be selected as a Formation Support.</comment>
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="4d81-afbe-1cd8-be10" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="c31f-951e-ce51-81e4" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="5f1e-79d8-1cd3-3536" name="New CategoryLink" hidden="false" targetId="b531-2fd7-ec0e-d214" primary="true"/>
<categoryLink id="5b80-90a8-6607-49f6" name="Support Units" hidden="false" targetId="9be3-4dab-91f0-f7c5" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="6a14-2b12-4d2a-83ad" name="Panzer IV Mixed Tank Platoon (LG106)" hidden="false" collective="false" import="true" targetId="0361-b9a1-29bc-e6d7" type="selectionEntry">
<modifiers>
<modifier type="set" field="7f0b-1df5-1008-ed87" value="0">
<comment>If Unit already exists in Force/Roster it can not be selected as a Formation Support.</comment>
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="0361-b9a1-29bc-e6d7" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="7f0b-1df5-1008-ed87" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="74b0-ec9c-9a5f-973c" name="New CategoryLink" hidden="false" targetId="b531-2fd7-ec0e-d214" primary="true"/>
<categoryLink id="db24-8973-1ce9-05e5" name="Support Units" hidden="false" targetId="9be3-4dab-91f0-f7c5" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="6833-2cca-42fa-594f" name="StuG Assault Gun Platoon (LG110)" hidden="false" collective="false" import="true" targetId="05d1-5c2d-7273-0d49" type="selectionEntry">
<modifiers>
<modifier type="set" field="1cb8-2cbe-1fbb-0d5a" value="0">
<comment>If Unit already exists in Force/Roster it can not be selected as a Formation Support.</comment>
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="05d1-5c2d-7273-0d49" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="1cb8-2cbe-1fbb-0d5a" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="a2d5-1e29-c7aa-ec6e" name="New CategoryLink" hidden="false" targetId="b531-2fd7-ec0e-d214" primary="true"/>
<categoryLink id="9c00-0067-6dfa-5d89" name="Support Units" hidden="false" targetId="9be3-4dab-91f0-f7c5" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="ace0-fc98-86e6-2b4d" name="Lucky" hidden="false" collective="false" import="true" targetId="ce1f-1ea0-c8a1-fb61" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="a6f0-11e1-ec47-be90" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="7cf3-e761-d282-4139" name="New CategoryLink" hidden="false" targetId="c5b6-63ee-3f81-25f2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="5da7-bbc5-4a8f-db7b" name="Panzergrenadier Platoon (LG113)" hidden="false" collective="false" import="true" targetId="2c5d-74e1-c36c-2a0c" type="selectionEntry">
<modifiers>
<modifier type="set" field="fa5f-49c5-8835-06b6" value="0">
<comment>If Unit already exists in Force/Roster it can not be selected as a Formation Support.</comment>
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="2c5d-74e1-c36c-2a0c" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="fa5f-49c5-8835-06b6" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="a77a-ceb1-326a-2967" name="New CategoryLink" hidden="false" targetId="b531-2fd7-ec0e-d214" primary="true"/>
<categoryLink id="6109-93a7-9540-49fa" name="Support Units" hidden="false" targetId="9be3-4dab-91f0-f7c5" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="8ec8-8d46-aaf0-c30e" name="Grenadier Platoon (LG121)" hidden="false" collective="false" import="true" targetId="5b61-6b64-8dc5-9156" type="selectionEntry">
<modifiers>
<modifier type="set" field="a20b-5935-bcc2-3c4c" value="0">
<comment>If Unit already exists in Force/Roster it can not be selected as a Formation Support.</comment>
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="5b61-6b64-8dc5-9156" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="a20b-5935-bcc2-3c4c" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="3e28-40c3-d079-2f94" name="New CategoryLink" hidden="false" targetId="b531-2fd7-ec0e-d214" primary="true"/>
<categoryLink id="8e47-8b6d-172e-eac6" name="Support Units" hidden="false" targetId="9be3-4dab-91f0-f7c5" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="60f3-6c53-d0a9-d002" name="Ferdinand Tank-Hunter Platoon (LG128)" hidden="false" collective="false" import="true" targetId="0e9c-fb5f-f144-eba4" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="2b12-4813-6824-5cd0" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="0d59-4aae-91dc-de3e" name="New CategoryLink" hidden="false" targetId="9be3-4dab-91f0-f7c5" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="f45a-79da-996c-0dc4" name="Brummbär Assault Tank Platoon (LG133)" hidden="false" collective="false" import="true" targetId="4426-1eb3-65d7-b19b" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a97a-6b1b-905b-8bc6" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="6ac6-1fe4-199a-c23d" name="New CategoryLink" hidden="false" targetId="9be3-4dab-91f0-f7c5" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="39e8-8001-5f0b-debe" name="15cm Nebelwerfer Battery (LG137)" hidden="false" collective="false" import="true" targetId="81d9-ae21-3b5a-69f9" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b124-7315-3ae7-391d" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="5e61-f0a3-e70e-8fa1" name="New CategoryLink" hidden="false" targetId="9be3-4dab-91f0-f7c5" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="b5d8-092e-edb5-8808" name="Panzer II OP Observation Post (LG138)" hidden="true" collective="false" import="true" targetId="d121-e1fc-4465-5aa2" type="selectionEntry">
<modifierGroups>
<modifierGroup>
<comment>Allows Unit to be visible and set max to 1 when at least one of the following Units is selected in Force.</comment>
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="81d9-ae21-3b5a-69f9" type="greaterThan"/>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="4fce-78b8-4f54-4090" type="greaterThan"/>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="00b7-e0b5-0dd0-1cac" type="greaterThan"/>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="1496-a109-0b54-0222" type="greaterThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
<modifiers>
<modifier type="set" field="hidden" value="false">
<comment>Allows Unit to be visible when one of the following Units is selected in Force.</comment>
</modifier>
<modifier type="set" field="0f64-dc2f-fac4-f80d" value="1"/>
</modifiers>
</modifierGroup>
</modifierGroups>
<constraints>
<constraint field="selections" scope="parent" value="-1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0f64-dc2f-fac4-f80d" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="124d-8cf4-8bbf-bb54" name="New CategoryLink" hidden="false" targetId="9be3-4dab-91f0-f7c5" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="de19-2bcf-c847-042e" name="8.8cm Heavy AA Platoon (LG144)" hidden="false" collective="false" import="true" targetId="3641-72ee-9e0d-fb58" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e185-4916-ae8e-cf2f" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<sharedSelectionEntries>
<selectionEntry id="ce1f-1ea0-c8a1-fb61" name="Lucky" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="972e-fe8e-970e-cb56" name="Lucky" hidden="false" typeId="5cbd-556d-67b5-1bd9" typeName="Command Card">
<characteristics>
<characteristic name="Info" typeId="bd5c-655e-1889-6af7">Some men have all the luck.</characteristic>
<characteristic name="Details" typeId="4091-e11a-c858-f46e">Discard this card to re-roll any one die. The second result must be used.</characteristic>
<characteristic name="Notes" typeId="75a6-20ee-1c76-640a">German, Force, Limited</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="1"/>
</costs>
</selectionEntry>
<selectionEntry id="3869-43a0-6551-42ba" name="Pioneer Company" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="9e53-d260-f6ed-72f3" name="Pioneer Company" hidden="false" typeId="5cbd-556d-67b5-1bd9" typeName="Command Card">
<characteristics>
<characteristic name="Info" typeId="bd5c-655e-1889-6af7">The pioneers of the German army proved their worth in clearing Soviet minefields and barbed wire ahead of the infantry assault, despite heavy enemy fire.</characteristic>
<characteristic name="Details" typeId="4091-e11a-c858-f46e">Infantry Teams in this Formation cross Minefields safely on a roll of 2+.
Infantry Units in this Formation Dig In on a roll of 2+.</characteristic>
<characteristic name="Notes" typeId="75a6-20ee-1c76-640a">German, Build, Formation (Grenadier Company, Panzer Grenadier Company)</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="3"/>
</costs>
</selectionEntry>
<selectionEntry id="0cf3-d6c8-c6e5-b7b3" name="Tiger Ace" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="cc0f-1b4d-e7a6-0c4f" name="0. Tiger Ace" hidden="false" typeId="5cbd-556d-67b5-1bd9" typeName="Command Card">
<characteristics>
<characteristic name="Info" typeId="bd5c-655e-1889-6af7">The elite crews of these Tiger tanks have learned many tricks on the Eastern Front.</characteristic>
<characteristic name="Details" typeId="4091-e11a-c858-f46e">Before Deploying this Unit, roll a die and give this Unit the following command card at no additional point cost:
1: Clever Hans
2: Deadly Gunner
3: Rapid Fire
4: Schnell!
5: Roll Over Them
6: Choose one of the above</characteristic>
<characteristic name="Notes" typeId="75a6-20ee-1c76-640a">German, Unit (Tiger Tank Company HQ, Tiger Tank Platoon)</characteristic>
</characteristics>
</profile>
<profile id="9438-9282-8dc7-29e3" name="2. Deadly Gunner" hidden="false" typeId="5cbd-556d-67b5-1bd9" typeName="Command Card">
<characteristics>
<characteristic name="Info" typeId="bd5c-655e-1889-6af7">With a deadly gunner in your Tiger, every shot hits exactly where it’s aimed.</characteristic>
<characteristic name="Details" typeId="4091-e11a-c858-f46e">The Unit Leader may re-roll one failed Firepower Test during the Shooting Step.
*Use the Tiger Ace Skill card to get this card.</characteristic>
<characteristic name="Notes" typeId="75a6-20ee-1c76-640a">German, Tiger Ace Skill</characteristic>
</characteristics>
</profile>
<profile id="cfe6-2c06-7559-42b6" name="1. Clever Hans" hidden="false" typeId="5cbd-556d-67b5-1bd9" typeName="Command Card">
<characteristics>
<characteristic name="Info" typeId="bd5c-655e-1889-6af7">It’s hard not to attract attention in agiant 56-tonne tank, but some crews have the knack. Smooth movement and staying to low ground can make even a Tiger tank hard to spot.</characteristic>
<characteristic name="Details" typeId="4091-e11a-c858-f46e">This Unit gains the Scout rule.
Scout: Teams remain Gone to Ground whileMoving unless they Shoot or Assault. *Use the Tiger Ace Skill card to get this card.</characteristic>
<characteristic name="Notes" typeId="75a6-20ee-1c76-640a">German, Tiger Ace Skill</characteristic>
</characteristics>
</profile>
<profile id="5992-b70e-7292-2982" name="3. Rapid Fire" hidden="false" typeId="5cbd-556d-67b5-1bd9" typeName="Command Card">
<characteristics>
<characteristic name="Info" typeId="bd5c-655e-1889-6af7">An ace gunner and an experienced loader allow a tank to engage and destroy numerous targets in a short span of time.</characteristic>
<characteristic name="Details" typeId="4091-e11a-c858-f46e">The Unit Leader’s Tiger tank has Halted ROF 3 with its 8.8cm gun.
*Use the Tiger Ace Skill card to get this card.</characteristic>
<characteristic name="Notes" typeId="75a6-20ee-1c76-640a">German, Tiger Ace Skill</characteristic>
</characteristics>
</profile>
<profile id="5312-32a0-326f-008f" name="4. Schnell!" hidden="false" typeId="5cbd-556d-67b5-1bd9" typeName="Command Card">
<characteristics>
<characteristic name="Info" typeId="bd5c-655e-1889-6af7">Most of their kills have been racked up through being in the right place at the right time!</characteristic>
<characteristic name="Details" typeId="4091-e11a-c858-f46e">This Unit passes Blitz Move tests on 2+.
*Use the Tiger Ace Skill card to get this card.</characteristic>
<characteristic name="Notes" typeId="75a6-20ee-1c76-640a">German, Tiger Ace Skill</characteristic>
</characteristics>
</profile>
<profile id="3066-ed9b-28f2-f1ec" name="5. Roll Over Them" hidden="false" typeId="5cbd-556d-67b5-1bd9" typeName="Command Card">
<characteristics>
<characteristic name="Info" typeId="bd5c-655e-1889-6af7">In a Tiger tank, it’s easy. You just roll over them. Keep moving and there’s nothing they can do to stop you.</characteristic>
<characteristic name="Details" typeId="4091-e11a-c858-f46e">This Unit Leader’s Tiger tank hits in Assaults on 2+.
*Use the Tiger Ace Skill card to get this card.</characteristic>
<characteristic name="Notes" typeId="75a6-20ee-1c76-640a">German, Tiger Ace Skill</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="3"/>
</costs>
</selectionEntry>
<selectionEntry id="a439-60eb-f975-594d" name="Softskin Transport" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0b34-79a4-ccae-30ff" type="max"/>
</constraints>
<profiles>
<profile id="a5fc-4d2d-1a75-ef41" name="Softskin Transport" hidden="false" typeId="7cf5-5c36-14cc-3c0d" typeName="Unarmoured Tank Unit">
<characteristics>
<characteristic name="Motivation" typeId="55ef-8653-887d-4642">4+</characteristic>
<characteristic name="Skill" typeId="229c-c44f-2910-c1d1">3+</characteristic>
<characteristic name="Is Hit On" typeId="acbb-3bc2-c667-6e4d">4+</characteristic>
<characteristic name="Save" typeId="6e6b-7d9e-7557-43cd">5+</characteristic>
<characteristic name="Tactical" typeId="6caa-857a-dce7-e965">-</characteristic>
<characteristic name="Terrain Dash" typeId="f188-5e37-f014-5069">10"/25cm</characteristic>
<characteristic name="Cross Country Dash" typeId="d2da-b73b-7a4a-ca53">18"/45cm</characteristic>
<characteristic name="Road Dash" typeId="271f-e64c-128c-5740">40"/100cm</characteristic>
<characteristic name="Cross" typeId="b443-5f9e-d0b5-48b0">4+</characteristic>
<characteristic name="Notes" typeId="5c4c-b4d7-c2d1-6a93">Passengers 2, Tractor, Softskin, Unarmoured.</characteristic>
</characteristics>
</profile>
<profile id="c83c-0b96-16d7-57ce" name="Softskin Transport" hidden="false" typeId="5cbd-556d-67b5-1bd9" typeName="Command Card">
<characteristics>
<characteristic name="Info" typeId="bd5c-655e-1889-6af7">Most of the German infantry on the Eastern Front marched on foot. However, somewere fully motorised with excellent German 4-wheel-drive trucks and half-tracks that allowed the infantry and guns to keep pace with the tanks on long marches.</characteristic>
<characteristic name="Details" typeId="4091-e11a-c858-f46e">This Infantry or Gun Unit may add a Softskin Transport Attachment. The number of vehicles in the Unit is as follows:
• Add one Softskin Transport for every two Infantry Teams in the Unit.
• Add one Softskin Transport for each Gun Team in the Unit.
The characteristics of a Softskin Transport are shown on the back of this card.</characteristic>
<characteristic name="Notes" typeId="75a6-20ee-1c76-640a">German, Build, Unit (Infantry or Gun)</characteristic>
</characteristics>
</profile>
</profiles>
<rules>
<rule id="e1b5-a917-b792-c431" name="Passengers 2" hidden="false">
<description>Team can carry two Infantry Teams as Passangers</description>
</rule>
<rule id="7c8a-7d8c-b476-6cf9" name="Tractor" hidden="false">
<description>Team can carry one Gun Team as Passangers.</description>
</rule>
<rule id="70d5-5a3e-cea7-be53" name="Softskin" hidden="false">
<description>If a Transport is Destroyed, any Passangers it is carrying are also Destroyed, and all Tranports must be Sent to the Rear immediately. All Passangers must Dismount from this Unit at the same time. Empty Tranpost Teams must be Sent to the Rear</description>
</rule>
<rule id="8927-ea76-ac26-a514" name="Unarmoured" hidden="false">
<description>Tram cannot Charge into Contact and must Break Off if Assaulted</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="1"/>
</costs>
</selectionEntry>
<selectionEntry id="3c70-68a3-4454-824f" name="Tiger Tank Platoon (LG102)" publicationId="b8e5-51cf-456c-eafb" page="40" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="030d-e973-99dd-6878" name="Tiger Tank Platoon" publicationId="b8e5-51cf-456c-eafb" page="40" hidden="false" typeId="55ec-3ef5-ca51-e647" typeName="Tank Unit">
<characteristics>
<characteristic name="Motivation" typeId="046a-7f27-8072-dedb">4+
Last Stand 2+
Remount 2+</characteristic>
<characteristic name="Skill" typeId="6334-745a-f712-a0aa">3+</characteristic>
<characteristic name="Is Hit On" typeId="3931-565d-e382-fda5">4+</characteristic>
<characteristic name="Armour Front" typeId="b88a-3ca6-9b40-ff73">9</characteristic>
<characteristic name="Armour Side & Rear" typeId="3712-51b3-aae3-94bd">8</characteristic>
<characteristic name="Armour Top" typeId="f551-1392-03e8-967d">2</characteristic>
<characteristic name="Tactical" typeId="ea9a-bf7d-68c5-e2d7">10"/25cm</characteristic>
<characteristic name="Terrain Dash" typeId="f7f4-9e66-c9ed-034b">12"/30cm</characteristic>
<characteristic name="Cross Country Dash" typeId="f73b-6fcf-b0d1-fde4">18"/45cm</characteristic>
<characteristic name="Road Dash" typeId="b5b1-c829-470a-af62">20"/50cm</characteristic>
<characteristic name="Cross" typeId="8be2-d5b6-ec4a-76d9">2+</characteristic>
<characteristic name="Notes" typeId="33d6-6375-9564-9985">Stormtroopers</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="9d1a-2d98-d1b5-7aa7" name="Tiger (8.8cm)" hidden="false" targetId="f2b0-38a8-b6af-adc8" type="profile"/>
<infoLink id="1df9-c2b3-08fa-6d02" name="Tiger (MGs)" hidden="false" targetId="4e6f-ae10-c7ab-b6bb" type="profile"/>
<infoLink id="7590-26eb-1ec4-71ae" name="Stormtroopers" hidden="false" targetId="65b8-ace5-2b18-a299" type="rule"/>
</infoLinks>
<selectionEntryGroups>
<selectionEntryGroup id="8aaf-47b0-f475-96ec" name="Unit Size:" hidden="false" collective="false" import="true" defaultSelectionEntryId="48a8-e269-ea2f-dbe0">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c3c4-1cb7-7d87-6380" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3a7a-e7c1-304f-86a3" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="6057-f10e-17a7-6cbf" name="3x Tiger (8.8cm)" hidden="false" collective="false" import="true" type="model">
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="36"/>
</costs>
</selectionEntry>
<selectionEntry id="19cb-2eed-d338-99aa" name="4x Tiger (8.8cm)" hidden="false" collective="false" import="true" type="model">
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="48"/>
</costs>
</selectionEntry>
<selectionEntry id="48a8-e269-ea2f-dbe0" name="2x Tiger (8.8cm)" hidden="false" collective="false" import="true" type="model">
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="24"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
<selectionEntryGroup id="869f-e2f5-133e-a5c2" name="Command Card:" hidden="false" collective="false" import="true">
<entryLinks>
<entryLink id="b1b2-232c-510b-a001" name="Tiger Ace" hidden="false" collective="false" import="true" targetId="0cf3-d6c8-c6e5-b7b3" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="2417-da33-2247-4c23" type="max"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="4896-caae-52cf-2571" name="Tiger Tank Company HQ (LG101)" publicationId="b8e5-51cf-456c-eafb" page="40" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="ecf1-9173-e601-c62a" name="Tiger Tank Company HQ" publicationId="b8e5-51cf-456c-eafb" page="40" hidden="false" typeId="55ec-3ef5-ca51-e647" typeName="Tank Unit">
<characteristics>
<characteristic name="Motivation" typeId="046a-7f27-8072-dedb">4+
Last Stand 2+
Remount 2+</characteristic>
<characteristic name="Skill" typeId="6334-745a-f712-a0aa">3+</characteristic>
<characteristic name="Is Hit On" typeId="3931-565d-e382-fda5">4+</characteristic>
<characteristic name="Armour Front" typeId="b88a-3ca6-9b40-ff73">9</characteristic>
<characteristic name="Armour Side & Rear" typeId="3712-51b3-aae3-94bd">8</characteristic>
<characteristic name="Armour Top" typeId="f551-1392-03e8-967d">2</characteristic>
<characteristic name="Tactical" typeId="ea9a-bf7d-68c5-e2d7">10"/25cm</characteristic>
<characteristic name="Terrain Dash" typeId="f7f4-9e66-c9ed-034b">12"/30cm</characteristic>
<characteristic name="Cross Country Dash" typeId="f73b-6fcf-b0d1-fde4">18"/45cm</characteristic>
<characteristic name="Road Dash" typeId="b5b1-c829-470a-af62">20"/50cm</characteristic>
<characteristic name="Cross" typeId="8be2-d5b6-ec4a-76d9">2+</characteristic>
<characteristic name="Notes" typeId="33d6-6375-9564-9985">Tank Formation, Stormtroopers</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="12cb-e636-23ee-09cb" name="Tiger (8.8cm)" hidden="false" targetId="f2b0-38a8-b6af-adc8" type="profile"/>
<infoLink id="4f00-35cd-2f78-0b64" name="Tiger (MGs)" hidden="false" targetId="4e6f-ae10-c7ab-b6bb" type="profile"/>
<infoLink id="4bef-375f-de3e-f443" name="Stormtroopers" hidden="false" targetId="65b8-ace5-2b18-a299" type="rule"/>
</infoLinks>
<selectionEntryGroups>
<selectionEntryGroup id="3e60-587f-feac-dba6" name="Unit Size:" hidden="false" collective="false" import="true" defaultSelectionEntryId="9dcb-b599-00b1-3fd4">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="de33-de4a-1b4d-e477" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9656-dfdb-b714-9b93" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="5e54-8a86-924f-5693" name="2x Tiger (8.8cm)" hidden="false" collective="false" import="true" type="model">
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="24"/>
</costs>
</selectionEntry>
<selectionEntry id="9dcb-b599-00b1-3fd4" name="1x Tiger (8.8cm)" hidden="false" collective="false" import="true" type="model">
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="12"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
<selectionEntryGroup id="c403-7a84-2069-0473" name="Command Card:" hidden="false" collective="false" import="true">
<entryLinks>
<entryLink id="e6b5-146c-da28-4f02" name="Tiger Ace" hidden="false" collective="false" import="true" targetId="0cf3-d6c8-c6e5-b7b3" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="72a2-98e6-46c2-2fca" type="max"/>