-
Notifications
You must be signed in to change notification settings - Fork 13
/
D-Day_American.cat
8182 lines (8176 loc) · 591 KB
/
D-Day_American.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="c97d-9ffb-d8c2-9cd8" name="D-Day: American" revision="11" battleScribeVersion="2.03" authorName="Ulf Bernestedt" authorContact="[email protected]" library="false" gameSystemId="976a-b687-1fdb-07ef" gameSystemRevision="16" xmlns="http://www.battlescribe.net/schema/catalogueSchema" type="catalogue">
<publications>
<publication id="567b-dc5a-c654-5ad4" name="D-Day American"/>
</publications>
<selectionEntries>
<selectionEntry id="aa4e-be3a-5103-59b1" name="M12 155mm or 105mm Field Artillery Battery" 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="2f23-186a-65e4-4eb7" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="a7da-67c9-f398-1473" name="New CategoryLink" hidden="false" targetId="9be3-4dab-91f0-f7c5" primary="false"/>
<categoryLink id="5fd5-be5b-804c-4be7" name="New CategoryLink" hidden="false" targetId="9be3-4dab-91f0-f7c5" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="937c-4854-e25a-3aae" name="Platoon" hidden="false" collective="false" import="true" defaultSelectionEntryId="0518-d8dc-ec19-cee1">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a76a-f646-a26e-2208" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="62e2-f8e3-9e48-0fdf" type="min"/>
</constraints>
<entryLinks>
<entryLink id="0518-d8dc-ec19-cee1" name="M12 155mm Artillery Battery" hidden="false" collective="false" import="true" targetId="accd-7f6e-fe88-df86" type="selectionEntry"/>
<entryLink id="9ad7-bdf4-fc58-e024" name="105mm Field Artillery Battery" hidden="false" collective="false" import="true" targetId="fc4f-276c-a224-770f" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="974f-0e91-78f7-ea25" name="L4 Grasshopper or M4 Sherman OP Observeration Post" hidden="true" collective="false" import="true" type="upgrade">
<modifierGroups>
<modifierGroup>
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="fc4f-276c-a224-770f" type="atLeast"/>
<condition field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="4296-7e5f-b54a-0cc7" type="atLeast"/>
<condition field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="3b48-7139-4ee4-4988" type="atLeast"/>
<condition field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="56fb-e8f2-e027-08b9" type="atLeast"/>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="accd-7f6e-fe88-df86" type="atLeast"/>
</conditions>
</conditionGroup>
</conditionGroups>
<modifiers>
<modifier type="set" field="hidden" value="false"/>
<modifier type="set" field="4ee7-03dc-7a5c-1b2c" value="1"/>
</modifiers>
</modifierGroup>
</modifierGroups>
<constraints>
<constraint field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4ee7-03dc-7a5c-1b2c" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="c4ee-da8d-3433-c951" name="New CategoryLink" hidden="false" targetId="9be3-4dab-91f0-f7c5" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="9bc4-468a-734b-3ede" name="Platoon" hidden="false" collective="false" import="true" defaultSelectionEntryId="166b-2636-3ff5-26f3">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="eca4-3be6-b653-5170" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e45d-638c-0503-ba93" type="max"/>
</constraints>
<entryLinks>
<entryLink id="166b-2636-3ff5-26f3" name="L4 Grashopper OP Observation Post" hidden="false" collective="false" import="true" targetId="7346-c81b-b2f3-3425" type="selectionEntry"/>
<entryLink id="52e4-2763-ca3d-2c1d" name="M4 Sherman OP Observation Post" hidden="false" collective="false" import="true" targetId="f020-6b93-0f73-96c3" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="f6b9-c878-175d-5708" name="Div Arty, All In!" hidden="false" collective="false" import="true" targetId="5b4a-c201-c5ea-e82b" type="selectionEntry">
<categoryLinks>
<categoryLink id="8f11-20ba-9c18-0ef1" name="Command Cards" hidden="false" targetId="c5b6-63ee-3f81-25f2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="b2cc-4ceb-a158-b428" name="French Resistance Raid" hidden="false" collective="false" import="true" targetId="f6c8-6752-d61a-d24d" type="selectionEntry">
<categoryLinks>
<categoryLink id="4294-ca61-9562-5cd9" name="New CategoryLink" hidden="false" targetId="c5b6-63ee-3f81-25f2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="107e-5fc0-e7f9-336c" name="Lucky" hidden="false" collective="false" import="true" targetId="cc09-bb6a-6216-2c3d" type="selectionEntry">
<categoryLinks>
<categoryLink id="bbe5-eb11-2fcb-e646" name="Command Cards" hidden="false" targetId="c5b6-63ee-3f81-25f2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="aef2-b358-887b-e977" name="Parachute Rifle Platoon" hidden="false" collective="false" import="true" targetId="9304-7c31-8244-4efe" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5f35-4dfd-21e4-3820" type="max"/>
</constraints>
</entryLink>
<entryLink id="5c0e-3155-c019-c7bf" name="Parachute Rifle Company" hidden="false" collective="false" import="true" targetId="521d-a4c0-069f-b275" type="selectionEntry"/>
<entryLink id="a8d5-d6f1-c16c-6bcf" name="Total Air Superiority" hidden="false" collective="false" import="true" targetId="79e1-d73d-4797-0b77" type="selectionEntry">
<categoryLinks>
<categoryLink id="df7f-c657-6a69-e636" name="Command Cards" hidden="false" targetId="c5b6-63ee-3f81-25f2" primary="true"/>
<categoryLink id="5af2-dae5-88ee-8cec" name="Command Cards" hidden="false" targetId="c5b6-63ee-3f81-25f2" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="b9da-d8fe-7748-6969" name="Naval Gunfire" hidden="false" collective="false" import="true" targetId="be14-fd16-f458-f844" type="selectionEntry">
<categoryLinks>
<categoryLink id="9f56-e292-b2e2-0dd2" name="Command Cards" hidden="false" targetId="c5b6-63ee-3f81-25f2" primary="true"/>
<categoryLink id="910f-5821-35ed-71cb" name="New CategoryLink" hidden="false" targetId="c5b6-63ee-3f81-25f2" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="5f0a-f11f-40c7-d507" name="P-47 Thunderbolt Fighter Flight" hidden="false" collective="false" import="true" targetId="26a7-5bd1-10c4-e08d" type="selectionEntry"/>
<entryLink id="7674-8337-4d1e-a28f" name="Ranger Platoon" hidden="false" collective="false" import="true" targetId="26c4-6dfd-347d-4b71" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="da1d-4dec-8883-ad01" type="max"/>
</constraints>
</entryLink>
<entryLink id="bfb3-c1cb-0726-b946" name="Ranger Company" hidden="false" collective="false" import="true" targetId="e9db-8afd-f417-db93" type="selectionEntry"/>
<entryLink id="0553-1238-d5fa-5266" name="M10 Tank Destroyer Company" hidden="false" collective="false" import="true" targetId="1c1f-dac1-c644-35b4" type="selectionEntry"/>
<entryLink id="76d0-f7ad-c613-f357" name="M10 Tank Destroyer Platoon MK2" hidden="false" collective="false" import="true" targetId="59c3-3306-e00a-09b2" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a6ca-e771-0dea-4997" type="max"/>
</constraints>
</entryLink>
<entryLink id="345a-6e48-e015-5b5e" name="M4 Sherman Tank Company" hidden="false" collective="false" import="true" targetId="e3da-8c2d-074b-7481" type="selectionEntry"/>
<entryLink id="0a09-ed4a-ee11-c42f" name="M4 Sherman Tank Platoon" hidden="false" collective="false" import="true" targetId="7dcc-a935-5f5b-1862" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a55a-a430-5eaf-4154" type="max"/>
</constraints>
</entryLink>
<entryLink id="55cb-1fe3-fba3-03a6" name="M5 Stuart Tank Platoon" hidden="false" collective="false" import="true" targetId="8a49-36ac-85de-bfd1" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7539-89fe-5906-9828" type="max"/>
</constraints>
</entryLink>
<entryLink id="a1a9-e895-d761-46d3" name="M4 Sherman (76mm) Tank Platoon" hidden="false" collective="false" import="true" targetId="63bd-4184-34cb-b147" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3a35-c725-52bc-c8d7" type="max"/>
</constraints>
</entryLink>
<entryLink id="fc85-f086-e69f-bc02" name="Veteran M4 Sherman Tank Platoon" hidden="false" collective="false" import="true" targetId="66be-f0a7-5916-49fe" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8e35-865c-40c9-d747" type="max"/>
</constraints>
</entryLink>
<entryLink id="49fa-053a-3e8f-736c" name="Veteran M4 Sherman Tank Company" hidden="false" collective="false" import="true" targetId="a737-0df8-44fc-aed4" type="selectionEntry"/>
<entryLink id="5833-ada6-4f85-e911" name="Veteran M4 Sherman (76mm) Tank Platoon" hidden="false" collective="false" import="true" targetId="4eb9-a9fa-0912-545e" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a99f-1b50-9af8-502b" type="max"/>
</constraints>
</entryLink>
<entryLink id="3461-08ce-877b-8d44" name="Veteran M5 Stuart Tank Platoon" hidden="false" collective="false" import="true" targetId="6cd9-d536-c7d6-86ca" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9dbd-0d5e-881a-0a8e" type="max"/>
</constraints>
</entryLink>
<entryLink id="3348-a65e-5d8a-768e" name="M5 Stuart Tank Company" hidden="false" collective="false" import="true" targetId="5034-ca2f-bc97-7bd9" type="selectionEntry"/>
<entryLink id="e369-c96e-13e6-1d9b" name="Veteran M5 Stuart Tank Company" hidden="false" collective="false" import="true" targetId="41c1-c944-a0e7-0d15" type="selectionEntry"/>
<entryLink id="d182-cc7d-3ce9-c379" name="Armoured Rifle Platoon" hidden="false" collective="false" import="true" targetId="a157-16e9-10d9-f3e4" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c85b-6f42-ec15-c6b8" type="max"/>
</constraints>
</entryLink>
<entryLink id="5bf3-dfdd-739a-712c" name="Armoured Rifle Company" hidden="false" collective="false" import="true" targetId="87a8-5adf-8ac5-9f95" type="selectionEntry"/>
<entryLink id="5284-2250-1f81-7105" name="Veteran Armoured Rifle Platoon" hidden="false" collective="false" import="true" targetId="a6a2-e58d-a90d-0479" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1018-2106-da0f-8e5e" type="max"/>
</constraints>
</entryLink>
<entryLink id="86ec-f683-5e11-0b62" name="Veteran Armoured Rifle Company" hidden="false" collective="false" import="true" targetId="beea-1b37-924f-c6ad" type="selectionEntry"/>
<entryLink id="6700-4831-b94e-d3f7" name="Rifle Company" hidden="false" collective="false" import="true" targetId="21bd-4715-bcc3-e405" type="selectionEntry"/>
<entryLink id="0a61-c574-fee8-20ab" name="Rifle Platoon" hidden="false" collective="false" import="true" targetId="55d9-d9eb-8935-03cb" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5e23-db71-88fe-4263" type="max"/>
</constraints>
</entryLink>
<entryLink id="fddc-f00c-368e-1c55" name="Veteran Rifle Platoon" hidden="false" collective="false" import="true" targetId="daa9-73c8-4b8e-3525" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="bb61-08c9-82cc-57a6" type="max"/>
</constraints>
</entryLink>
<entryLink id="ec9e-4c12-8747-6559" name="Veteran Rifle Company" hidden="false" collective="false" import="true" targetId="6e0e-f212-65f8-2866" type="selectionEntry"/>
<entryLink id="2d30-5984-014a-6551" name="4.2 Inch Chemical Mortars" hidden="false" collective="false" import="true" targetId="9f46-2303-4a05-35cb" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a5d5-9837-75d2-e6aa" type="max"/>
</constraints>
</entryLink>
<entryLink id="18e5-a388-94e0-1295" name="M15 & M16 AAA Platoon" hidden="false" collective="false" import="true" targetId="8cd3-2705-45f6-1a2a" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cbc7-a981-e0f8-5997" type="max"/>
</constraints>
</entryLink>
<entryLink id="cefd-3c20-e82e-648a" name="M7 Priest or 105mm Field Artillery Battery" hidden="false" collective="false" import="true" targetId="0916-4a22-1e79-fb05" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="2" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e9d9-a412-9866-0e9b" type="max"/>
</constraints>
</entryLink>
<entryLink id="c889-3c81-e7a7-953d" name="Engineer Combat Platoon" hidden="false" collective="false" import="true" targetId="56c8-0501-58dd-6111" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="dded-c4fe-e5b4-8d52" type="max"/>
</constraints>
</entryLink>
<entryLink id="df8e-0402-01dc-3530" name="Engineer Combat Company" hidden="false" collective="false" import="true" targetId="4e85-d8b9-ea5d-5636" type="selectionEntry"/>
<entryLink id="836b-afe3-bda9-7ba0" name="M8 Greyhound Cavalry Recon Patrol" hidden="false" collective="false" import="true" targetId="0eb7-501d-9603-49f0" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="2" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="664d-67c5-0440-5537" type="max"/>
</constraints>
</entryLink>
<entryLink id="2edb-95ea-2266-da65" name="Cavalry Recon Troop" hidden="false" collective="false" import="true" targetId="bf10-15eb-b033-5b4d" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="72a9-9c91-02bc-36cf" type="max"/>
</constraints>
</entryLink>
<entryLink id="01f3-5841-ee8a-0fff" name="Assault Boat Section" hidden="false" collective="false" import="true" targetId="2a66-aa4a-0586-b5ad" type="selectionEntry"/>
<entryLink id="f96a-d748-0101-8835" name="Assault Company" hidden="false" collective="false" import="true" targetId="2a22-6ee8-d80a-75c6" type="selectionEntry"/>
<entryLink id="33f1-2308-7f92-5d40" name="Veteran Assault Boat Section" hidden="false" collective="false" import="true" targetId="b5f5-2aa4-dff6-47a3" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="01bd-d619-f3cc-3064" type="max"/>
</constraints>
</entryLink>
<entryLink id="5ff3-7f08-b966-fcda" name="Veteran Assault Company" hidden="false" collective="false" import="true" targetId="2bb4-e694-c3d6-fdc6" type="selectionEntry"/>
<entryLink id="f313-083b-b307-6bed" name="Softskin Transport" hidden="false" collective="false" import="true" targetId="ba7a-13e4-780d-ec8a" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="045a-2000-7fe1-dbbd" type="max"/>
</constraints>
</entryLink>
<entryLink id="4d49-ba17-5fef-8358" name="Amphibious Transport" hidden="false" collective="false" import="true" targetId="d341-f518-7584-7eb5" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="95f8-3fbd-1e15-334b" type="max"/>
</constraints>
</entryLink>
<entryLink id="6d45-3515-8914-9c4c" name="Glider Rifle Company" hidden="false" collective="false" import="true" targetId="7f7f-d8d5-c6b7-ae57" type="selectionEntry"/>
<entryLink id="2b56-ea55-f986-1bf6" name="Glider Rifle Platoon" hidden="false" collective="false" import="true" targetId="24d7-74d6-49c4-973f" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d004-bd31-393a-f664" type="max"/>
</constraints>
</entryLink>
<entryLink id="5973-0d43-8a6d-a59f" name="3-inch Towed Tank Destroyer Platoon" hidden="false" collective="false" import="true" targetId="18c6-f0aa-fc2a-fc24" type="selectionEntry"/>
<entryLink id="1129-1971-79db-b519" name="FTP Platoon" hidden="false" collective="false" import="true" targetId="2b2b-ce88-9b85-ce6c" type="selectionEntry"/>
<entryLink id="2467-6539-df9a-9e90" name="FFI Platoon" hidden="false" collective="false" import="true" targetId="cce5-8584-2862-eaef" type="selectionEntry"/>
</entryLinks>
<sharedSelectionEntries>
<selectionEntry id="cc09-bb6a-6216-2c3d" name="Lucky" 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="d226-e763-8a62-7b2c" type="max"/>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5736-cafb-3fb2-e2f5" type="max"/>
</constraints>
<rules>
<rule id="0304-4068-d74c-c5b7" name="Lucky" hidden="false">
<description>One time per game, re-roll any 1 die.</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="1"/>
</costs>
</selectionEntry>
<selectionEntry id="5b4a-c201-c5ea-e82b" name="Div Arty, All In!" 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="c4e4-54aa-c934-fce4" type="max"/>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4606-90c9-a9f0-10cb" type="max"/>
</constraints>
<rules>
<rule id="3b62-8b8a-1c81-8a8c" name="Div Arty, All In!" hidden="false">
<description>Before Deployment, place up to 3 'All In!' markers
Once per game, during shooting step resolving bombardements, for each marker resolve 105mm Field Artillery Battery. No repeat or ToT.
Then remove all markers.</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="10"/>
</costs>
</selectionEntry>
<selectionEntry id="f6c8-6752-d61a-d24d" name="French Resistance Raid" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1da4-a9b1-1f0a-b000" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e700-8b46-29fb-ea7a" type="max"/>
</constraints>
<rules>
<rule id="8a59-f4cb-3f5f-c125" name="French Resistance Raid" hidden="false">
<description>One time per game, opponent must re-roll their reserve rolls</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="2"/>
</costs>
</selectionEntry>
<selectionEntry id="9304-7c31-8244-4efe" name="Parachute Rifle Platoon" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="8904-ab55-c757-a70c" name="60mm mortar team" hidden="false" typeId="33b6-a72a-2bd8-2565" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="c2e5-4990-8105-f793">32"/80cm</characteristic>
<characteristic name="Halted ROF" typeId="7f6e-6f8f-5f15-6e9d">ARTILLERY</characteristic>
<characteristic name="Moving ROF" typeId="f78e-b583-b3a5-754a"/>
<characteristic name="Anti-Tank" typeId="f57e-fa10-d0f9-e2dd">1</characteristic>
<characteristic name="Firepower" typeId="9cf3-a34f-60d9-1309">4+</characteristic>
<characteristic name="Notes" typeId="d939-5084-e654-44c6">Assault 4+, Heavy Weapon</characteristic>
</characteristics>
</profile>
<profile id="ac06-6f04-0608-191e" name="M1919 & M1 Garand rifle team" hidden="false" typeId="33b6-a72a-2bd8-2565" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="c2e5-4990-8105-f793">16"/40cm</characteristic>
<characteristic name="Halted ROF" typeId="7f6e-6f8f-5f15-6e9d">2</characteristic>
<characteristic name="Moving ROF" typeId="f78e-b583-b3a5-754a">1</characteristic>
<characteristic name="Anti-Tank" typeId="f57e-fa10-d0f9-e2dd">2</characteristic>
<characteristic name="Firepower" typeId="9cf3-a34f-60d9-1309">6</characteristic>
<characteristic name="Notes" typeId="d939-5084-e654-44c6"/>
</characteristics>
</profile>
<profile id="70b2-4b1d-40b1-a5dd" name="M1919 & M1 Garand rifle team" hidden="false" typeId="0917-e2f0-0c3e-b482" typeName="Infantry">
<characteristics>
<characteristic name="Motivation" typeId="4aa0-1b18-70af-9474">3+</characteristic>
<characteristic name="Skill" typeId="7258-881d-dc2d-e80b">3+</characteristic>
<characteristic name="Is Hit On" typeId="0641-f39f-6a33-7dcc">4+</characteristic>
<characteristic name="Save" typeId="4750-979d-b2bb-c536">3+</characteristic>
<characteristic name="Tactical" typeId="8027-bcf9-d953-3740">8"/20cm</characteristic>
<characteristic name="Terrain Dash" typeId="b93a-5d61-9a77-50cc">8"/20cm</characteristic>
<characteristic name="Cross Country Dash" typeId="4862-29d4-9ab9-76a0">14"/35cm</characteristic>
<characteristic name="Road Dash" typeId="75e3-9f15-03c8-7f95">14"/35cm</characteristic>
<characteristic name="Cross" typeId="2d03-7d6c-d869-db3f">AUTO</characteristic>
</characteristics>
</profile>
<profile id="a939-f6cd-0149-c14f" name="M1 Bazooka team" hidden="false" typeId="33b6-a72a-2bd8-2565" typeName="Weapon">
<comment>Para</comment>
<characteristics>
<characteristic name="Range" typeId="c2e5-4990-8105-f793">8"/20cm</characteristic>
<characteristic name="Halted ROF" typeId="7f6e-6f8f-5f15-6e9d">1</characteristic>
<characteristic name="Moving ROF" typeId="f78e-b583-b3a5-754a">1</characteristic>
<characteristic name="Anti-Tank" typeId="f57e-fa10-d0f9-e2dd">10</characteristic>
<characteristic name="Firepower" typeId="9cf3-a34f-60d9-1309">5+</characteristic>
<characteristic name="Notes" typeId="d939-5084-e654-44c6">Assault 4+, Slow Firing</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="f68b-1c52-0a7b-8162" name="Observer" hidden="false" targetId="8153-56ce-71c0-391b" type="rule"/>
<infoLink id="4a21-642f-e6ad-12e5" name="Slow Firing" hidden="false" targetId="e215-d5bf-83ce-606a" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="b0c1-4434-d59e-1cd5" name="New CategoryLink" hidden="false" targetId="9be3-4dab-91f0-f7c5" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="2dff-c0b2-2d92-9162" name="Add one M1 Bazooka team" 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="dc1a-71da-3b0b-cd0e" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="1"/>
</costs>
</selectionEntry>
<selectionEntry id="6cd5-fd58-498a-22c4" name="Add M1919 LMG" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="2" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1c51-24d3-58b7-e178" type="max"/>
</constraints>
<profiles>
<profile id="0302-5a60-fba3-4e23" name="M1919 LMG" hidden="false" typeId="33b6-a72a-2bd8-2565" typeName="Weapon">
<comment>og</comment>
<characteristics>
<characteristic name="Range" typeId="c2e5-4990-8105-f793">16"/40cm</characteristic>
<characteristic name="Halted ROF" typeId="7f6e-6f8f-5f15-6e9d">5</characteristic>
<characteristic name="Moving ROF" typeId="f78e-b583-b3a5-754a">2</characteristic>
<characteristic name="Anti-Tank" typeId="f57e-fa10-d0f9-e2dd">2</characteristic>
<characteristic name="Firepower" typeId="9cf3-a34f-60d9-1309">6</characteristic>
<characteristic name="Notes" typeId="d939-5084-e654-44c6">Assault 4+, Heavy Weapon</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="2d32-b69e-68cf-a758" name="Heavy Weapon" hidden="false" targetId="edf7-ad9c-029c-94fe" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="1"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="bcaf-c01c-c8d2-4120" name="Unit Size" publicationId="b8e5-51cf-456c-eafb" hidden="false" collective="false" import="true" defaultSelectionEntryId="5238-9111-b6d2-aedf">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e8e8-4c84-a191-a265" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b318-dc6c-f22a-aab7" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="5238-9111-b6d2-aedf" name="5x M1919 & M1 Garand, 1x M1 Bazooka, 1x 60mm Mortar" hidden="false" collective="false" import="true" type="upgrade">
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="11"/>
</costs>
</selectionEntry>
<selectionEntry id="2e4a-be9d-68ea-4e12" name="7x M1919 & M1 Garand, 1x M1 Bazooka, 1x 60mm Mortar" hidden="false" collective="false" import="true" type="upgrade">
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="14"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="30b3-a53c-63c5-996f" name="Upgrade from Cards" hidden="false" collective="false" import="true" targetId="1791-3aa3-d6a0-e951" type="selectionEntryGroup">
<selectionEntries>
<selectionEntry id="be7f-3e6a-9560-3178" name="Sticky Bombs" 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="20e2-e34d-4361-2fb7" type="max"/>
</constraints>
<rules>
<rule id="f0ad-530e-ce88-5bdf" name="Sticky Bombs" hidden="false">
<description>Discard. Infantry teams in unit are AT3 FP1+ against Top Arm, in assault until EoT</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="2"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="13a1-6a4d-59de-373c" name="Turner Turnbull" hidden="false" collective="false" import="true" targetId="0dfb-68c2-aa30-55a1" type="selectionEntry"/>
</entryLinks>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="521d-a4c0-069f-b275" name="Parachute Rifle Company" hidden="false" collective="false" import="true" type="upgrade">
<categoryLinks>
<categoryLink id="3bd9-072a-6899-d3c1" name="New CategoryLink" hidden="false" targetId="5630-abd3-15d8-5cc6" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="338e-1068-dbae-4d0c" name="Parachute Rifle Company HQ" publicationId="b8e5-51cf-456c-eafb" 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="9068-ba04-9b32-a967" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4576-a932-0dbc-254b" type="max"/>
</constraints>
<profiles>
<profile id="c9ef-1b0c-64f5-1b06" name="Thompson SMG team" hidden="false" typeId="0917-e2f0-0c3e-b482" typeName="Infantry">
<characteristics>
<characteristic name="Motivation" typeId="4aa0-1b18-70af-9474">3+</characteristic>
<characteristic name="Skill" typeId="7258-881d-dc2d-e80b">3+</characteristic>
<characteristic name="Is Hit On" typeId="0641-f39f-6a33-7dcc">4+</characteristic>
<characteristic name="Save" typeId="4750-979d-b2bb-c536">3+</characteristic>
<characteristic name="Tactical" typeId="8027-bcf9-d953-3740">8"/20cm</characteristic>
<characteristic name="Terrain Dash" typeId="b93a-5d61-9a77-50cc">8"/20cm</characteristic>
<characteristic name="Cross Country Dash" typeId="4862-29d4-9ab9-76a0">14"/35cm</characteristic>
<characteristic name="Road Dash" typeId="75e3-9f15-03c8-7f95">14"/35cm</characteristic>
<characteristic name="Cross" typeId="2d03-7d6c-d869-db3f">AUTO</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="1f2c-302f-dae5-c52b" name="Thompson SMG team" hidden="false" targetId="9145-3716-e597-f4cd" type="profile"/>
<infoLink id="dac4-e9aa-c7f1-f67e" name="Airborne" hidden="false" targetId="0934-1108-d913-4163" type="rule"/>
</infoLinks>
<selectionEntries>
<selectionEntry id="a792-9c54-28fe-e71d" name="2x Thompson SMG Team" 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="96ba-58f0-346d-d6a3" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a23d-7d6d-1331-aba3" type="max"/>
</constraints>
<infoLinks>
<infoLink id="d20f-cc60-9686-66cf" name="Pinned ROF 1" hidden="false" targetId="3284-2a9d-b7f4-e17a" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="3"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="c546-9e00-b908-9460" name="81mm Mortar Platoon" publicationId="b8e5-51cf-456c-eafb" 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="04e7-ef2c-5a9a-ac11" type="max"/>
</constraints>
<profiles>
<profile id="fc54-ecb2-ae03-3616" name="81mm mortar" hidden="false" typeId="0917-e2f0-0c3e-b482" typeName="Infantry">
<characteristics>
<characteristic name="Motivation" typeId="4aa0-1b18-70af-9474">3+</characteristic>
<characteristic name="Skill" typeId="7258-881d-dc2d-e80b">3+ Assault 4+</characteristic>
<characteristic name="Is Hit On" typeId="0641-f39f-6a33-7dcc">4+</characteristic>
<characteristic name="Save" typeId="4750-979d-b2bb-c536">3+</characteristic>
<characteristic name="Tactical" typeId="8027-bcf9-d953-3740">4"/10cm</characteristic>
<characteristic name="Terrain Dash" typeId="b93a-5d61-9a77-50cc">4"/10cm</characteristic>
<characteristic name="Cross Country Dash" typeId="4862-29d4-9ab9-76a0">6"/15cm</characteristic>
<characteristic name="Road Dash" typeId="75e3-9f15-03c8-7f95">8"/20cm</characteristic>
<characteristic name="Cross" typeId="2d03-7d6c-d869-db3f">AUTO</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="d8f8-ebec-83d4-0f01" name="81mm mortar team" hidden="false" targetId="fcc3-3e11-c95d-0bb9" type="profile"/>
<infoLink id="e912-954d-27df-f114" name="Smoke Bombardment" hidden="false" targetId="5450-1722-5ad1-1d61" type="rule"/>
<infoLink id="1869-72c1-608e-0801" name="Heavy Weapon" hidden="false" targetId="edf7-ad9c-029c-94fe" type="rule"/>
</infoLinks>
<selectionEntryGroups>
<selectionEntryGroup id="2a80-d25f-60a0-2768" name="Unit Size" hidden="false" collective="false" import="true" defaultSelectionEntryId="4f13-9d99-234d-c1cb">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e565-415a-56d6-76cd" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2012-d4b8-eee3-660e" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="4f13-9d99-234d-c1cb" name="2x 81mm mortar" hidden="false" collective="false" import="true" type="upgrade">
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="4"/>
</costs>
</selectionEntry>
<selectionEntry id="73ef-c6bb-fcd6-1aa5" name="4x 81mm mortar" hidden="false" collective="false" import="true" type="upgrade">
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="8"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="3b48-7139-4ee4-4988" name="75mm Artillery Battery" publicationId="b8e5-51cf-456c-eafb" 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="81bd-02d0-75ad-338a" type="max"/>
</constraints>
<profiles>
<profile id="7ff4-12a0-ee38-da7f" name="75mm pack howitzer" hidden="false" typeId="7c70-b6af-9e5a-e7f6" typeName="Gun">
<characteristics>
<characteristic name="Motivation" typeId="0954-f596-53ea-4ef7">3+</characteristic>
<characteristic name="Skill" typeId="a907-592d-ab2d-5ead">3+ Assault 4+</characteristic>
<characteristic name="Is Hit On" typeId="1f89-085b-464b-c60f">4+</characteristic>
<characteristic name="Save" typeId="ae14-5890-03de-a715">4+</characteristic>
<characteristic name="Tactical" typeId="3bad-79bd-27aa-4539">4"/10cm</characteristic>
<characteristic name="Terrain Dash" typeId="a400-d543-6fb9-26d0">4"/10cm</characteristic>
<characteristic name="Cross Country Dash" typeId="34ca-877a-8ffa-1006">6"/15cm</characteristic>
<characteristic name="Road Dash" typeId="d283-e066-839c-fbd7">8"/20cm</characteristic>
<characteristic name="Cross" typeId="3f9c-89f9-0b29-0585">3+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="ac7c-c7ea-1051-4b29" name="75mm pack howitzer" hidden="false" targetId="cc96-a852-a93b-b47d" type="profile"/>
<infoLink id="8832-d23a-c972-bf5c" name="Smoke Bombardment" hidden="false" targetId="5450-1722-5ad1-1d61" type="rule"/>
<infoLink id="4431-113a-81bb-fd2a" name="Time on Target" hidden="false" targetId="362d-f3a8-928b-fba2" type="rule"/>
<infoLink id="b04e-2f98-c427-9a7d" name="75mm pack howitzer Direct Fire" hidden="false" targetId="d12a-fbe0-7f5d-9fa2" type="profile"/>
<infoLink id="f63f-a6d5-e169-030b" name="Gun" hidden="false" targetId="139e-9d64-28a3-a3dd" type="rule"/>
<infoLink id="73cc-4c33-9917-36bc" name="Smoke" hidden="false" targetId="6f51-dbfe-55b0-a6d0" type="rule"/>
<infoLink id="3dbb-dee4-ea67-8dbc" name="Forward Firing" hidden="false" targetId="fa9d-68f6-57d9-dc5d" type="rule"/>
</infoLinks>
<selectionEntryGroups>
<selectionEntryGroup id="c865-6191-3076-9fe6" name="Unit Size" hidden="false" collective="false" import="true" defaultSelectionEntryId="4392-1927-54be-a06e">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3f5c-03d6-b028-8b5f" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="79d6-8fff-d0b4-f66f" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="4392-1927-54be-a06e" name="2x 75mm pack howitzer" hidden="false" collective="false" import="true" type="upgrade">
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="6"/>
</costs>
</selectionEntry>
<selectionEntry id="dbd6-8a47-b6d0-06cf" name="4x 75mm pack howitzer" hidden="false" collective="false" import="true" type="upgrade">
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="12"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="c371-c4c5-1e3e-e7ad" name="57mm Anti-Tank Platoon" publicationId="b8e5-51cf-456c-eafb" 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="8d9a-c92c-2cc0-5e09" type="max"/>
</constraints>
<profiles>
<profile id="68aa-0be9-ff8e-f808" name="57mm gun" hidden="false" typeId="7c70-b6af-9e5a-e7f6" typeName="Gun">
<characteristics>
<characteristic name="Motivation" typeId="0954-f596-53ea-4ef7">3+</characteristic>
<characteristic name="Skill" typeId="a907-592d-ab2d-5ead">3+ Assault 4+</characteristic>
<characteristic name="Is Hit On" typeId="1f89-085b-464b-c60f">4+</characteristic>
<characteristic name="Save" typeId="ae14-5890-03de-a715">3+</characteristic>
<characteristic name="Tactical" typeId="3bad-79bd-27aa-4539">2"/5cm</characteristic>
<characteristic name="Terrain Dash" typeId="a400-d543-6fb9-26d0">2"/5cm</characteristic>
<characteristic name="Cross Country Dash" typeId="34ca-877a-8ffa-1006">4"/10cm</characteristic>
<characteristic name="Road Dash" typeId="d283-e066-839c-fbd7">6"/15cm</characteristic>
<characteristic name="Cross" typeId="3f9c-89f9-0b29-0585">5+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="6ec6-cabe-db1e-02e2" name="57mm gun" hidden="false" targetId="5e3b-7c42-828b-e12c" type="profile"/>
<infoLink id="07cc-4fae-6947-6c75" name="No HE" hidden="false" targetId="b000-d0f1-08fd-0d43" type="rule"/>
<infoLink id="63a7-6b99-9a7d-5f48" name="Gun" hidden="false" targetId="139e-9d64-28a3-a3dd" type="rule"/>
<infoLink id="179d-2fb2-57b7-73a1" name="Gun Shield" hidden="false" targetId="2f2d-c5a9-ef7e-1b5e" type="rule"/>
<infoLink id="405b-46f8-caa4-93d9" name="Forward Firing" hidden="false" targetId="fa9d-68f6-57d9-dc5d" type="rule"/>
</infoLinks>
<selectionEntryGroups>
<selectionEntryGroup id="0a08-6f62-63d2-3896" name="Unit Size" hidden="false" collective="false" import="true" defaultSelectionEntryId="4b9a-187a-c7db-873a">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="06cb-cb83-9aaa-b8b2" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7401-e398-ac71-da42" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="4b9a-187a-c7db-873a" name="2x 57mm gun" hidden="false" collective="false" import="true" type="upgrade">
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="5"/>
</costs>
</selectionEntry>
<selectionEntry id="fbb2-0519-e60e-e359" name="4x 57mm gun" hidden="false" collective="false" import="true" type="upgrade">
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="10"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="8ac5-2e71-6c93-b585" name="Jeep Recon Patrol" publicationId="b8e5-51cf-456c-eafb" 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="fd98-2ed0-fcc4-f02a" type="max"/>
</constraints>
<profiles>
<profile id="503c-6303-25ca-8d2a" name="Jeep (.50 cal MG)" publicationId="567b-dc5a-c654-5ad4" hidden="false" typeId="7cf5-5c36-14cc-3c0d" typeName="Unarmoured Tank">
<characteristics>
<characteristic name="Motivation" typeId="55ef-8653-887d-4642">3+ Last Stand 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">4+</characteristic>
<characteristic name="Tactical" typeId="6caa-857a-dce7-e965">12"/30cm</characteristic>
<characteristic name="Terrain Dash" typeId="f188-5e37-f014-5069">12"/30cm</characteristic>
<characteristic name="Cross Country Dash" typeId="d2da-b73b-7a4a-ca53">20"/50cm</characteristic>
<characteristic name="Road Dash" typeId="271f-e64c-128c-5740">48"/120cm</characteristic>
<characteristic name="Cross" typeId="b443-5f9e-d0b5-48b0">4+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="64c7-c409-2831-69e2" name="Jeep (.50 cal MG)" hidden="false" targetId="3228-2d38-a747-e65a" type="profile"/>
<infoLink id="5fbc-4202-24ee-095c" name="Spearhead" hidden="false" targetId="70fc-43a3-1ed1-1b01" type="rule"/>
<infoLink id="16c2-159a-7077-54ea" name="Self-Defence AA" hidden="false" targetId="6c0b-8d39-70b6-9d1c" type="rule"/>
<infoLink id="ae97-dafb-2d4c-ad56" name="Scout" hidden="false" targetId="967a-118e-dc01-7e0b" type="rule"/>
</infoLinks>
<selectionEntryGroups>
<selectionEntryGroup id="9166-e20a-2dfd-6639" name="Unit Size" hidden="false" collective="false" import="true" defaultSelectionEntryId="84e2-c62c-eb1f-b7cd">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1ff3-7a02-84b0-e443" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4b40-58d3-26e1-e773" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="84e2-c62c-eb1f-b7cd" name="2x Jeep (.50 cal MG)" hidden="false" collective="false" import="true" type="upgrade">
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="2"/>
</costs>
</selectionEntry>
<selectionEntry id="9689-970e-1262-5327" name="4x Jeep (.50 cal MG)" hidden="false" collective="false" import="true" type="upgrade">
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="4"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="ab0b-e126-0f21-6378" name="Parachute Rifle Platoon" hidden="false" collective="false" import="true" targetId="9304-7c31-8244-4efe" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="2" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0331-9504-7d02-a2dd" type="min"/>
<constraint field="selections" scope="parent" value="3" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9a29-5729-9c6b-ff31" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="79e1-d73d-4797-0b77" name="Total Air Superiority" hidden="false" collective="false" import="true" type="upgrade">
<rules>
<rule id="512f-5738-ea9e-72a9" name="Fighter interdiction" hidden="false">
<description>Opponent needs 5+ instead of 4+ for aircraft arrival</description>
</rule>
<rule id="916f-8911-8264-5010" name="Perfect Timing" hidden="false">
<description>Discard card. You need 3+ instead of 4+ for aircraft arrival this turn.</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="3"/>
</costs>
</selectionEntry>
<selectionEntry id="be14-fd16-f458-f844" name="Naval Gunfire" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="28a1-2d62-e28d-b4bd" name="Naval Gunfire" hidden="false" typeId="33b6-a72a-2bd8-2565" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="c2e5-4990-8105-f793">UNLIMITED</characteristic>
<characteristic name="Halted ROF" typeId="7f6e-6f8f-5f15-6e9d">ARTILLERY</characteristic>
<characteristic name="Moving ROF" typeId="f78e-b583-b3a5-754a">ARTILLERY</characteristic>
<characteristic name="Anti-Tank" typeId="f57e-fa10-d0f9-e2dd">4</characteristic>
<characteristic name="Firepower" typeId="9cf3-a34f-60d9-1309">AUTO</characteristic>
<characteristic name="Notes" typeId="d939-5084-e654-44c6"/>
</characteristics>
</profile>
</profiles>
<rules>
<rule id="80cf-d9bc-fb3b-ab7f" name="Naval Gunfire" hidden="false">
<description>Each Shooting step, choose Formation HQ or Observer
On a 5+ (4+ for teams from Assault, Vet Assault or Ranger Companies) they can spot for the gun
No range marker left after shot</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="12"/>
</costs>
</selectionEntry>
<selectionEntry id="0dfb-68c2-aa30-55a1" name="Turner Turnbull" hidden="false" collective="false" import="true" type="upgrade">
<rules>
<rule id="ec1d-e2bd-8e87-b51d" name="Turner Turnbull" hidden="false">
<description>M1919 & m1 garand teams in this unit may re-roll failed to hit in defensive fire.</description>
</rule>
</rules>
<entryLinks>
<entryLink id="a4c3-322a-1c33-9aac" name="Unique Warrior" hidden="false" collective="false" import="true" targetId="3bf7-7a62-ca18-c39d" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="3"/>
</costs>
</selectionEntry>
<selectionEntry id="26a7-5bd1-10c4-e08d" name="P-47 Thunderbolt Fighter Flight" publicationId="567b-dc5a-c654-5ad4" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d386-2e24-220e-56a2" type="max"/>
</constraints>
<profiles>
<profile id="05b1-e411-17cd-9eff" name="P-47 Thunderbolt" publicationId="567b-dc5a-c654-5ad4" hidden="false" typeId="d8ed-85c5-35d4-eb3c" typeName="Aircraft">
<characteristics>
<characteristic name="Motivation" typeId="ec3b-729b-2af4-7bed">4+</characteristic>
<characteristic name="Skill" typeId="e506-9161-836a-5e2d">4+</characteristic>
<characteristic name="Is Hit On" typeId="9691-8132-58f7-5f86">5+</characteristic>
<characteristic name="Save" typeId="3a7a-29d5-008e-09f7">3+</characteristic>
<characteristic name="Tactical" typeId="8791-6355-ebcf-f430">UNLIMITED</characteristic>
<characteristic name="Terrain Dash" typeId="e6d2-8608-f213-ef1f"/>
<characteristic name="Cross Country Dash" typeId="037d-b1be-ca62-5c3e"/>
<characteristic name="Road Dash" typeId="207b-99f1-9a35-12d8"/>
<characteristic name="Cross" typeId="07b3-6909-7897-f282">AUTO</characteristic>
</characteristics>
</profile>
<profile id="989d-f1f7-f25f-b628" name=".50 cal MGs" hidden="false" typeId="33b6-a72a-2bd8-2565" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="c2e5-4990-8105-f793">8"/20cm</characteristic>
<characteristic name="Halted ROF" typeId="7f6e-6f8f-5f15-6e9d">-</characteristic>
<characteristic name="Moving ROF" typeId="f78e-b583-b3a5-754a">4</characteristic>
<characteristic name="Anti-Tank" typeId="f57e-fa10-d0f9-e2dd">5</characteristic>
<characteristic name="Firepower" typeId="9cf3-a34f-60d9-1309">5+</characteristic>
<characteristic name="Notes" typeId="d939-5084-e654-44c6"/>
</characteristics>
</profile>
<profile id="1046-2b41-88c3-f3f4" name="500 lb bombs" hidden="false" typeId="33b6-a72a-2bd8-2565" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="c2e5-4990-8105-f793">6"/15cm</characteristic>
<characteristic name="Halted ROF" typeId="7f6e-6f8f-5f15-6e9d">ARTILLERY</characteristic>
<characteristic name="Moving ROF" typeId="f78e-b583-b3a5-754a"/>
<characteristic name="Anti-Tank" typeId="f57e-fa10-d0f9-e2dd">3</characteristic>
<characteristic name="Firepower" typeId="9cf3-a34f-60d9-1309">2+</characteristic>
<characteristic name="Notes" typeId="d939-5084-e654-44c6">Bomb</characteristic>
</characteristics>
</profile>
<profile id="46c0-212d-2d72-2e18" name="HVAR rockets" hidden="false" typeId="33b6-a72a-2bd8-2565" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="c2e5-4990-8105-f793">12"/30cm</characteristic>
<characteristic name="Halted ROF" typeId="7f6e-6f8f-5f15-6e9d">ARTILLERY</characteristic>
<characteristic name="Moving ROF" typeId="f78e-b583-b3a5-754a"/>
<characteristic name="Anti-Tank" typeId="f57e-fa10-d0f9-e2dd">5</characteristic>
<characteristic name="Firepower" typeId="9cf3-a34f-60d9-1309">4+</characteristic>
<characteristic name="Notes" typeId="d939-5084-e654-44c6">Rockets</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="fda3-6065-948c-a74b" name="New CategoryLink" hidden="false" targetId="9be3-4dab-91f0-f7c5" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="c584-6cf7-71a6-325a" name="2x P-47 Thunderbolt" 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="95ad-1465-83a9-fe82" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="12c9-48fb-d39b-2aa0" type="max"/>
</constraints>
<infoLinks>
<infoLink id="6a84-9b2c-8cec-d2ae" name="Bombs" hidden="false" targetId="78a2-7146-034e-a601" type="rule"/>
<infoLink id="191f-f93a-36d2-7bee" name="Rockets" hidden="false" targetId="e8ff-3c3f-0f0a-04c2" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="9"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="f4bf-74a3-a4ea-22cd" name="Upgrade from Cards" hidden="false" collective="false" import="true" targetId="1791-3aa3-d6a0-e951" type="selectionEntryGroup">
<selectionEntries>
<selectionEntry id="6674-d53c-196f-6c7c" name="370th Fighter Group" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="f71a-a017-c60c-5640" name="370th Fighter Group" hidden="false" typeId="33b6-a72a-2bd8-2565" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="c2e5-4990-8105-f793">6"/15cm</characteristic>
<characteristic name="Halted ROF" typeId="7f6e-6f8f-5f15-6e9d">ARTILLERY</characteristic>
<characteristic name="Moving ROF" typeId="f78e-b583-b3a5-754a">ARTILLERY</characteristic>
<characteristic name="Anti-Tank" typeId="f57e-fa10-d0f9-e2dd">1</characteristic>
<characteristic name="Firepower" typeId="9cf3-a34f-60d9-1309">AUTO</characteristic>
<characteristic name="Notes" typeId="d939-5084-e654-44c6">Napalm Bombs</characteristic>
</characteristics>
</profile>
</profiles>
<rules>
<rule id="c2c6-b8b4-925b-050d" name="Napalm Bombs" hidden="false">
<description>No penalty for 1 or 2 weapons firing. Only this unit can spot it. Infantry, Gun & Unarmoured tank teams reroll success. Arm. Tanks use Top Armour</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="3"/>
</costs>
</selectionEntry>
<selectionEntry id="c7c1-969d-6c89-553d" name="2000 lbs Bomb Load" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="0224-b6f4-9dda-5abb" name="2000 lbs Bomb Load" hidden="false" typeId="33b6-a72a-2bd8-2565" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="c2e5-4990-8105-f793">6"/15cm</characteristic>
<characteristic name="Halted ROF" typeId="7f6e-6f8f-5f15-6e9d">ARTILLERY</characteristic>
<characteristic name="Moving ROF" typeId="f78e-b583-b3a5-754a">ARTILLERY</characteristic>
<characteristic name="Anti-Tank" typeId="f57e-fa10-d0f9-e2dd">4</characteristic>
<characteristic name="Firepower" typeId="9cf3-a34f-60d9-1309">2+</characteristic>
<characteristic name="Notes" typeId="d939-5084-e654-44c6">Bombs</characteristic>
</characteristics>
</profile>
</profiles>
<rules>
<rule id="0430-5175-9cf3-516a" name="Bombs" hidden="false">
<description>No penalty for having only 1 or 2 weapons firing</description>
</rule>
<rule id="8dfe-2647-75ba-be93" name="2000 lbs Bomb Load" hidden="false">
<description>Replace bombs & rockets w/ profile</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="1"/>
</costs>
</selectionEntry>
</selectionEntries>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="9c3b-4bda-4b6b-ec2d" name="Norman 'Dutch' Cota" hidden="false" collective="false" import="true" type="upgrade">
<comment>apply to rangers, rifle or any assault company</comment>
<rules>
<rule id="d479-184a-a09d-c788" name="Norman 'Dutch' Cota" hidden="false">
<description>When assult involving this Formation Commander is falling back from assault, roll motivation. If success, immediately rally (unpinning) and charge a second time</description>
</rule>
</rules>
<entryLinks>
<entryLink id="7af6-b5c2-baac-6f7f" name="Unique Warrior" hidden="false" collective="false" import="true" targetId="3bf7-7a62-ca18-c39d" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="2"/>
</costs>
</selectionEntry>
<selectionEntry id="b944-d34b-02f7-34ae" name="James Earl Rudder" hidden="false" collective="false" import="true" type="upgrade">
<rules>
<rule id="88a3-1834-e361-4ea6" name="James Earl Rudder" hidden="false">
<description>Ranger Platoons in this formation w/ Blood'n'Guts exchange for Brash and Bold ratings
Motivation
counterattack +2
rally 3+</description>
</rule>
</rules>
<entryLinks>
<entryLink id="e80b-b583-6c17-5070" name="Warrior" hidden="false" collective="false" import="true" targetId="3bf7-7a62-ca18-c39d" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="2"/>
</costs>
</selectionEntry>
<selectionEntry id="e9db-8afd-f417-db93" name="Ranger Company" hidden="false" collective="false" import="true" type="upgrade">
<categoryLinks>
<categoryLink id="5e85-c07e-93bd-16e9" name="New CategoryLink" hidden="false" targetId="5630-abd3-15d8-5cc6" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="d7c1-b98f-b725-0705" name="Ranger Company HQ" publicationId="b8e5-51cf-456c-eafb" 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="56df-0559-8051-1275" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6f97-d989-457d-58f3" type="max"/>
</constraints>
<infoLinks>
<infoLink id="e188-709d-1d77-91ef" name="Thompson SMG team" hidden="false" targetId="9145-3716-e597-f4cd" type="profile"/>
<infoLink id="5f95-71f3-e503-f9d1" name="Rangers Lead The Way" hidden="false" targetId="58c8-f0e0-9bca-a3a3" type="rule"/>
<infoLink id="76a7-b939-56ea-1586" name="Ranger" hidden="false" targetId="9e13-a72e-9726-e8cb" type="profile">
<modifiers>
<modifier type="set" field="4aa0-1b18-70af-9474" value="3+ Counterattack 2+ Rally 3+">
<conditions>
<condition field="selections" scope="e9db-8afd-f417-db93" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b944-d34b-02f7-34ae" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
</infoLink>
</infoLinks>
<selectionEntries>
<selectionEntry id="3fe4-1eff-1b07-585e" name="1x Thompson SMG Team" 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="de1e-40da-96ac-3426" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4cf9-12c9-a2e7-1da8" type="max"/>
</constraints>
<infoLinks>
<infoLink id="4463-e0ea-d4bb-ebb7" name="Pinned ROF 1" hidden="false" targetId="3284-2a9d-b7f4-e17a" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="1"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="80e7-be34-fe21-ba97" name="Ranger Mortar Platoon" publicationId="b8e5-51cf-456c-eafb" 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="4e55-0cf7-e91e-e686" type="max"/>
</constraints>
<infoLinks>
<infoLink id="f513-65fa-b1e0-12bf" name="81mm mortar team" hidden="false" targetId="fcc3-3e11-c95d-0bb9" type="profile"/>
<infoLink id="b30e-dbab-ee80-ae3f" name="Smoke Bombardment" hidden="false" targetId="5450-1722-5ad1-1d61" type="rule"/>
<infoLink id="dc00-2ef3-cb52-3fb2" name="Heavy Weapon" hidden="false" targetId="edf7-ad9c-029c-94fe" type="rule"/>
<infoLink id="b023-c8ee-6f86-25d0" name="Rangers Lead The Way" hidden="false" targetId="58c8-f0e0-9bca-a3a3" type="rule"/>
<infoLink id="be33-b55b-45e9-0f09" name="Ranger" hidden="false" targetId="9e13-a72e-9726-e8cb" type="profile">
<modifiers>
<modifier type="set" field="4aa0-1b18-70af-9474" value="3+ Counterattack 2+ Rally 3+">
<conditions>
<condition field="selections" scope="e9db-8afd-f417-db93" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b944-d34b-02f7-34ae" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
</infoLink>
</infoLinks>
<selectionEntryGroups>
<selectionEntryGroup id="b676-1342-cd73-6a89" name="Unit Size" hidden="false" collective="false" import="true" defaultSelectionEntryId="f126-14d7-33f4-0087">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cc75-c0af-64fe-4a8c" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5f56-f117-d964-fccf" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="f126-14d7-33f4-0087" name="2x 81mm mortar" hidden="false" collective="false" import="true" type="upgrade">
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="3"/>
</costs>
</selectionEntry>
<selectionEntry id="88e3-65f9-c2df-58f9" name="4x 81mm mortar" hidden="false" collective="false" import="true" type="upgrade">
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="6"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="2560-2950-5a40-c254" name="Ranger Platoon" hidden="false" collective="false" import="true" targetId="26c4-6dfd-347d-4b71" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="2" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="187a-ca10-cd0e-53e1" type="min"/>
<constraint field="selections" scope="parent" value="2" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="206f-18cf-5b45-0da8" type="max"/>
</constraints>
<infoLinks>
<infoLink id="fd24-b3d7-f5ce-c021" name="Ranger" hidden="false" targetId="9e13-a72e-9726-e8cb" type="profile">
<modifiers>
<modifier type="set" field="4aa0-1b18-70af-9474" value="3+ Counterattack 2+ Rally 3+">
<conditions>
<condition field="selections" scope="e9db-8afd-f417-db93" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b944-d34b-02f7-34ae" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
</infoLink>
</infoLinks>
</entryLink>
<entryLink id="9c6c-a3ec-4027-a63e" name="Upgrade from Cards" hidden="false" collective="false" import="true" targetId="1791-3aa3-d6a0-e951" type="selectionEntryGroup">
<entryLinks>
<entryLink id="1ee6-0bd9-d296-a000" name="James Earl Rudder" hidden="false" collective="false" import="true" targetId="b944-d34b-02f7-34ae" type="selectionEntry"/>
<entryLink id="dc4a-a97e-7e75-a0c3" name="Norman 'Dutch' Cota" hidden="false" collective="false" import="true" targetId="9c3b-4bda-4b6b-ec2d" type="selectionEntry"/>
</entryLinks>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="995a-4d67-6920-bfe4" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="26c4-6dfd-347d-4b71" name="Ranger Platoon" hidden="false" collective="false" import="true" type="unit">
<comment>Need to find a way to make the M1/Mortar/Bazooka Swaps make more sense</comment>
<infoLinks>
<infoLink id="0dde-7fdc-6eb7-ced1" name="Rangers Lead The Way" hidden="false" targetId="58c8-f0e0-9bca-a3a3" type="rule"/>
<infoLink id="ea1c-083c-bf4d-ce61" name="Observer" hidden="false" targetId="8153-56ce-71c0-391b" type="rule"/>
<infoLink id="be7e-3635-2f72-17da" name="Ranger" hidden="false" targetId="9e13-a72e-9726-e8cb" type="profile">