generated from BSData/TemplateDataRepo
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Pacific - Japan - Island Garrison.cat
3775 lines (3764 loc) · 260 KB
/
Pacific - Japan - Island Garrison.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="6839-ef48-5b0a-e694" name="Pacific - Japan - Island Garrison" revision="4" battleScribeVersion="2.03" library="false" gameSystemId="0a75-76ce-f956-7a9d" gameSystemRevision="7" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<categoryEntries>
<categoryEntry id="af48-7a52-d9bf-5ae9" name="Infantry Platoon" hidden="false">
<modifiers>
<modifier type="increment" field="009f-a2b6-bf2a-b9a0" value="1.0">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="d842-fd8f-4744-0a94" scope="force" value="350.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="any" type="greaterThan"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="562a-1814-54ca-6409" type="atMost"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="c484-aff7-4a79-92ba" type="atMost"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="increment" field="009f-a2b6-bf2a-b9a0" value="2.0">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="d842-fd8f-4744-0a94" scope="force" value="750.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="any" type="greaterThan"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="562a-1814-54ca-6409" type="atMost"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="c484-aff7-4a79-92ba" type="atMost"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="increment" field="009f-a2b6-bf2a-b9a0" value="5.0">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="d842-fd8f-4744-0a94" scope="force" value="1500.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="any" type="greaterThan"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="562a-1814-54ca-6409" type="atMost"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="c484-aff7-4a79-92ba" type="atMost"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="increment" field="03f3-104d-577c-3987" value="1.0">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="d842-fd8f-4744-0a94" scope="force" value="350.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="any" type="greaterThan"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="562a-1814-54ca-6409" type="atMost"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="c484-aff7-4a79-92ba" type="atMost"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="increment" field="03f3-104d-577c-3987" value="1.0">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="d842-fd8f-4744-0a94" scope="force" value="1500.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="any" type="greaterThan"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="562a-1814-54ca-6409" type="atMost"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="c484-aff7-4a79-92ba" type="atMost"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="increment" field="03f3-104d-577c-3987" value="1.0">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="d842-fd8f-4744-0a94" scope="force" value="750.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="any" type="greaterThan"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="562a-1814-54ca-6409" type="atMost"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="c484-aff7-4a79-92ba" type="atMost"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="03f3-104d-577c-3987" type="min"/>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="009f-a2b6-bf2a-b9a0" type="max"/>
</constraints>
</categoryEntry>
</categoryEntries>
<selectionEntries>
<selectionEntry id="8061-447f-47c7-4c96" name="Kempeitai Officer" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="35d5-d3ac-8b2a-70de" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="73c5-53e8-b18e-eb07" type="max"/>
</constraints>
<infoLinks>
<infoLink id="655c-51ec-f63b-aef8" name="Kempeitai Officer" hidden="false" targetId="9257-de70-fad6-6037" type="profile"/>
<infoLink id="054c-9463-7795-8594" name="Elite" hidden="false" targetId="e191-f37f-274b-c725" type="rule"/>
<infoLink id="653a-2c87-fe6e-d09e" name="Experience - Elite" hidden="false" targetId="121d-5ca4-f8c7-9d10" type="rule"/>
<infoLink id="3a6a-d7e8-730b-5a72" name="Fight Damn You!" hidden="false" targetId="1f61-e4f9-c8e2-e2c7" type="rule"/>
<infoLink id="1342-d396-82bf-674e" name="Senior Officer" hidden="false" targetId="aca9-bca6-75d1-68de" type="rule"/>
<infoLink id="34ca-1d2e-cf65-f8ac" name="Unique" hidden="false" targetId="c2e8-0f62-4a80-1a76" type="rule"/>
<infoLink id="ed14-8dc9-b3c4-6c04" name="Basic Infantry Small Arms" hidden="false" targetId="f0b3-6f37-bcd0-2d22" type="infoGroup"/>
</infoLinks>
<categoryLinks>
<categoryLink id="9823-098c-1515-ca6e" name="New CategoryLink" hidden="false" targetId="0891-5f08-126a-7f90" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="343c-e386-182c-08f4" name="'Fight, Damn You!'" hidden="false" collective="false" import="true" targetId="31e8-cd06-ed3c-0427" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="d842-fd8f-4744-0a94" value="18.0"/>
<cost name="Men" typeId="2abb-d074-7103-5ec3" value="2.0"/>
<cost name="Officers" typeId="2612-abd7-eb77-6a12" value="1.0"/>
<cost name="BR" typeId="25f6-2f9f-8a1e-518d" value="0.0"/>
<cost name="Scouts" typeId="30b9-666e-c128-9771" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="44ac-cb9a-ed11-4bf0" name="Tatakai!" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="35d5-d3ac-8b2a-70de" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9e5c-714f-1011-0299" type="max"/>
</constraints>
<rules>
<rule id="964e-8d94-f64e-7389" name="Tatakai!" hidden="false">
<description>This Battlegroup is determined to fight to the very end, no retreat, no surrender. At the start of the game, roll a D6 and add the result to the Battlegroup's total BR. Also, the Battlegroup gains +1 to its Command and Control rolls.</description>
</rule>
</rules>
<categoryLinks>
<categoryLink id="c07a-a5a0-ef66-8169" name="New CategoryLink" hidden="false" targetId="0891-5f08-126a-7f90" primary="true"/>
<categoryLink id="960f-8672-a550-8aff" name="Forward Headquarters -1" hidden="false" targetId="f3a0-fac0-cac3-0f1a" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="9ccd-3868-4ea2-4441" name="Roll 1D6 for +BR Rating; select result here" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d62d-330e-dfc0-7bfc" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c2bd-912d-8f7c-7fdd" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="c197-b9ce-e01e-3d14" name="1" hidden="false" collective="false" import="true" type="upgrade">
<costs>
<cost name="BR" typeId="25f6-2f9f-8a1e-518d" value="1.0"/>
<cost name="pts" typeId="d842-fd8f-4744-0a94" value="0.0"/>
<cost name="Men" typeId="2abb-d074-7103-5ec3" value="0.0"/>
<cost name="Officers" typeId="2612-abd7-eb77-6a12" value="0.0"/>
<cost name="Scouts" typeId="30b9-666e-c128-9771" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="e8b1-1cba-53f2-6454" name="2" hidden="false" collective="false" import="true" type="upgrade">
<costs>
<cost name="BR" typeId="25f6-2f9f-8a1e-518d" value="2.0"/>
<cost name="pts" typeId="d842-fd8f-4744-0a94" value="0.0"/>
<cost name="Men" typeId="2abb-d074-7103-5ec3" value="0.0"/>
<cost name="Officers" typeId="2612-abd7-eb77-6a12" value="0.0"/>
<cost name="Scouts" typeId="30b9-666e-c128-9771" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="8c3b-f99b-4c87-f6b1" name="3" hidden="false" collective="false" import="true" type="upgrade">
<costs>
<cost name="BR" typeId="25f6-2f9f-8a1e-518d" value="3.0"/>
<cost name="pts" typeId="d842-fd8f-4744-0a94" value="0.0"/>
<cost name="Men" typeId="2abb-d074-7103-5ec3" value="0.0"/>
<cost name="Officers" typeId="2612-abd7-eb77-6a12" value="0.0"/>
<cost name="Scouts" typeId="30b9-666e-c128-9771" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="cc28-6cbb-d150-bdc3" name="4" hidden="false" collective="false" import="true" type="upgrade">
<costs>
<cost name="BR" typeId="25f6-2f9f-8a1e-518d" value="4.0"/>
<cost name="pts" typeId="d842-fd8f-4744-0a94" value="0.0"/>
<cost name="Men" typeId="2abb-d074-7103-5ec3" value="0.0"/>
<cost name="Officers" typeId="2612-abd7-eb77-6a12" value="0.0"/>
<cost name="Scouts" typeId="30b9-666e-c128-9771" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="04d8-711b-2d60-eaff" name="5" hidden="false" collective="false" import="true" type="upgrade">
<costs>
<cost name="BR" typeId="25f6-2f9f-8a1e-518d" value="5.0"/>
<cost name="pts" typeId="d842-fd8f-4744-0a94" value="0.0"/>
<cost name="Men" typeId="2abb-d074-7103-5ec3" value="0.0"/>
<cost name="Officers" typeId="2612-abd7-eb77-6a12" value="0.0"/>
<cost name="Scouts" typeId="30b9-666e-c128-9771" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="1a27-6e95-031b-09be" name="6" hidden="false" collective="false" import="true" type="upgrade">
<costs>
<cost name="BR" typeId="25f6-2f9f-8a1e-518d" value="6.0"/>
<cost name="pts" typeId="d842-fd8f-4744-0a94" value="0.0"/>
<cost name="Men" typeId="2abb-d074-7103-5ec3" value="0.0"/>
<cost name="Officers" typeId="2612-abd7-eb77-6a12" value="0.0"/>
<cost name="Scouts" typeId="30b9-666e-c128-9771" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="d842-fd8f-4744-0a94" value="20.0"/>
<cost name="BR" typeId="25f6-2f9f-8a1e-518d" value="0.0"/>
<cost name="Men" typeId="2abb-d074-7103-5ec3" value="0.0"/>
<cost name="Officers" typeId="2612-abd7-eb77-6a12" value="1.0"/>
<cost name="Scouts" typeId="30b9-666e-c128-9771" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="35d5-d3ac-8b2a-70de" name="'Kofuku Shinai'" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="44ac-cb9a-ed11-4bf0" type="atLeast"/>
</conditions>
</modifier>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="8061-447f-47c7-4c96" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3cf4-7b8a-fc16-404d" type="max"/>
</constraints>
<rules>
<rule id="cde3-f886-f79e-2c84" name="'Kofuku Shinai'" hidden="false">
<description>This battlegroup's commander is already resigned to fighting to the last man rather than accepting retreat, surrender, and dishonour. This battle will be their final stand and every man is expected to fight with suicidal bravery and take an enemy soldier with them.
- The Battlegroup's total BR is increased by 2D6 at the start of the game
- The Battlegroup is already lost and does not have to be reduced below 25% of its starting BR total to conduct a Bazai! charge. They can use a Banzai! counter (if drawn) at the start of any turn the commander wishes.
- By taking this special rule other options throughout the army list may also be taken, as noted.</description>
</rule>
</rules>
<categoryLinks>
<categoryLink id="03e3-fde4-116a-307a" name="New CategoryLink" hidden="false" targetId="0891-5f08-126a-7f90" primary="true"/>
<categoryLink id="c478-18c8-def2-68dd" name="Forward Headquarters -1" hidden="false" targetId="f3a0-fac0-cac3-0f1a" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="3c8b-5613-8583-2b03" name="Roll 2D6 BR" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f720-1ca2-fc97-6143" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5b7e-4006-81a9-a0f4" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="77ad-c0db-1a6e-5df9" name="2" hidden="false" collective="false" import="true" type="upgrade">
<costs>
<cost name="BR" typeId="25f6-2f9f-8a1e-518d" value="2.0"/>
<cost name="pts" typeId="d842-fd8f-4744-0a94" value="0.0"/>
<cost name="Men" typeId="2abb-d074-7103-5ec3" value="0.0"/>
<cost name="Officers" typeId="2612-abd7-eb77-6a12" value="0.0"/>
<cost name="Scouts" typeId="30b9-666e-c128-9771" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="71a9-cdb2-ff1a-7b75" name="3" hidden="false" collective="false" import="true" type="upgrade">
<costs>
<cost name="BR" typeId="25f6-2f9f-8a1e-518d" value="3.0"/>
<cost name="pts" typeId="d842-fd8f-4744-0a94" value="0.0"/>
<cost name="Men" typeId="2abb-d074-7103-5ec3" value="0.0"/>
<cost name="Officers" typeId="2612-abd7-eb77-6a12" value="0.0"/>
<cost name="Scouts" typeId="30b9-666e-c128-9771" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="d2f8-b270-a46e-492e" name="4" hidden="false" collective="false" import="true" type="upgrade">
<costs>
<cost name="BR" typeId="25f6-2f9f-8a1e-518d" value="4.0"/>
<cost name="pts" typeId="d842-fd8f-4744-0a94" value="0.0"/>
<cost name="Men" typeId="2abb-d074-7103-5ec3" value="0.0"/>
<cost name="Officers" typeId="2612-abd7-eb77-6a12" value="0.0"/>
<cost name="Scouts" typeId="30b9-666e-c128-9771" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="3471-bf68-be2c-6fda" name="5" hidden="false" collective="false" import="true" type="upgrade">
<costs>
<cost name="BR" typeId="25f6-2f9f-8a1e-518d" value="5.0"/>
<cost name="pts" typeId="d842-fd8f-4744-0a94" value="0.0"/>
<cost name="Men" typeId="2abb-d074-7103-5ec3" value="0.0"/>
<cost name="Officers" typeId="2612-abd7-eb77-6a12" value="0.0"/>
<cost name="Scouts" typeId="30b9-666e-c128-9771" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="2b9f-28ab-d89a-23f8" name="6" hidden="false" collective="false" import="true" type="upgrade">
<costs>
<cost name="BR" typeId="25f6-2f9f-8a1e-518d" value="6.0"/>
<cost name="pts" typeId="d842-fd8f-4744-0a94" value="0.0"/>
<cost name="Men" typeId="2abb-d074-7103-5ec3" value="0.0"/>
<cost name="Officers" typeId="2612-abd7-eb77-6a12" value="0.0"/>
<cost name="Scouts" typeId="30b9-666e-c128-9771" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="c148-85d9-686a-7513" name="7" hidden="false" collective="false" import="true" type="upgrade">
<costs>
<cost name="BR" typeId="25f6-2f9f-8a1e-518d" value="7.0"/>
<cost name="pts" typeId="d842-fd8f-4744-0a94" value="0.0"/>
<cost name="Men" typeId="2abb-d074-7103-5ec3" value="0.0"/>
<cost name="Officers" typeId="2612-abd7-eb77-6a12" value="0.0"/>
<cost name="Scouts" typeId="30b9-666e-c128-9771" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="4d0c-db43-602f-6a47" name="8" hidden="false" collective="false" import="true" type="upgrade">
<costs>
<cost name="BR" typeId="25f6-2f9f-8a1e-518d" value="8.0"/>
<cost name="pts" typeId="d842-fd8f-4744-0a94" value="0.0"/>
<cost name="Men" typeId="2abb-d074-7103-5ec3" value="0.0"/>
<cost name="Officers" typeId="2612-abd7-eb77-6a12" value="0.0"/>
<cost name="Scouts" typeId="30b9-666e-c128-9771" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="5710-6369-e560-6bb2" name="9" hidden="false" collective="false" import="true" type="upgrade">
<costs>
<cost name="BR" typeId="25f6-2f9f-8a1e-518d" value="9.0"/>
<cost name="pts" typeId="d842-fd8f-4744-0a94" value="0.0"/>
<cost name="Men" typeId="2abb-d074-7103-5ec3" value="0.0"/>
<cost name="Officers" typeId="2612-abd7-eb77-6a12" value="0.0"/>
<cost name="Scouts" typeId="30b9-666e-c128-9771" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="fcbc-352f-9596-06b4" name="10" hidden="false" collective="false" import="true" type="upgrade">
<costs>
<cost name="BR" typeId="25f6-2f9f-8a1e-518d" value="10.0"/>
<cost name="pts" typeId="d842-fd8f-4744-0a94" value="0.0"/>
<cost name="Men" typeId="2abb-d074-7103-5ec3" value="0.0"/>
<cost name="Officers" typeId="2612-abd7-eb77-6a12" value="0.0"/>
<cost name="Scouts" typeId="30b9-666e-c128-9771" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="5292-3cde-a2c1-a75e" name="11" hidden="false" collective="false" import="true" type="upgrade">
<costs>
<cost name="BR" typeId="25f6-2f9f-8a1e-518d" value="11.0"/>
<cost name="pts" typeId="d842-fd8f-4744-0a94" value="0.0"/>
<cost name="Men" typeId="2abb-d074-7103-5ec3" value="0.0"/>
<cost name="Officers" typeId="2612-abd7-eb77-6a12" value="0.0"/>
<cost name="Scouts" typeId="30b9-666e-c128-9771" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="c9b9-3d4c-9b8e-5fae" name="12" hidden="false" collective="false" import="true" type="upgrade">
<costs>
<cost name="BR" typeId="25f6-2f9f-8a1e-518d" value="12.0"/>
<cost name="pts" typeId="d842-fd8f-4744-0a94" value="0.0"/>
<cost name="Men" typeId="2abb-d074-7103-5ec3" value="0.0"/>
<cost name="Officers" typeId="2612-abd7-eb77-6a12" value="0.0"/>
<cost name="Scouts" typeId="30b9-666e-c128-9771" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="d842-fd8f-4744-0a94" value="25.0"/>
<cost name="BR" typeId="25f6-2f9f-8a1e-518d" value="0.0"/>
<cost name="Men" typeId="2abb-d074-7103-5ec3" value="0.0"/>
<cost name="Officers" typeId="2612-abd7-eb77-6a12" value="0.0"/>
<cost name="Scouts" typeId="30b9-666e-c128-9771" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="6d85-828d-b633-f883" name="'Nikaku' Suicide Bomber" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="35d5-d3ac-8b2a-70de" type="atMost"/>
</conditions>
</modifier>
</modifiers>
<infoLinks>
<infoLink id="e04c-cfa5-f325-6aea" name="'Nikaku' Suicide Bomber" hidden="false" targetId="8c98-d8a5-e7d2-561e" type="profile"/>
<infoLink id="3bf8-922c-145f-7b0a" name="Assault Troops" hidden="false" targetId="4b1b-6db2-75f2-9f1a" type="rule"/>
<infoLink id="c2e2-c56b-a20b-d339" name="Elite" hidden="false" targetId="e191-f37f-274b-c725" type="rule"/>
<infoLink id="df65-5bd1-7fcd-9847" name="Experience - Elite" hidden="false" targetId="121d-5ca4-f8c7-9d10" type="rule"/>
<infoLink id="5da5-acaf-5ab0-01d4" name="Hidden" hidden="false" targetId="2cf8-2a7f-a7d9-e1e5" type="rule"/>
<infoLink id="56ee-787f-bfcc-3a58" name="Nikaku" hidden="false" targetId="dee1-bd44-e0ab-92dd" type="rule"/>
<infoLink id="8865-7f7d-5395-52b2" name="Unarmed" hidden="false" targetId="c28e-5901-8c13-c057" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="76b9-995c-95d9-f775" name="New CategoryLink" hidden="false" targetId="a529-162f-ec0b-e961" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="6570-7599-e662-6a49" name="Anti-Tank Grenades" hidden="false" collective="false" import="true" targetId="0059-a435-10a0-70af" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="d842-fd8f-4744-0a94" value="12.0"/>
<cost name="BR" typeId="25f6-2f9f-8a1e-518d" value="1.0"/>
<cost name="Men" typeId="2abb-d074-7103-5ec3" value="1.0"/>
<cost name="Officers" typeId="2612-abd7-eb77-6a12" value="0.0"/>
<cost name="Scouts" typeId="30b9-666e-c128-9771" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="5c08-027e-27b2-88fd" name="Amphibious Assault" hidden="false" collective="false" import="true" type="upgrade">
<rules>
<rule id="7e08-3310-bb88-dc62" name="Amphibious Assault Scenario" hidden="false">
<description>**Alarm!: For the first 2 turns, the defender only rolls D6 for orders with no modifiers for officers or re-rolls.
**Breakthrough: For every 3 units the attacker moves into the back half of the mainland, the defender draws a BR counter.
**Terrain: On the attacker's table edge, you can optionally include 15-20" of ocean. Next should be between 5-20" of beach sand with no terrain or cover on it.
1. Split the attacker's forces into 3 waves.
2. Defender deploys 2D6* units in the back half of the non-beach land. The rest of the defender's forces are deployed front half of the non-beach land. He may pre-measure distances as he deploys. * In Company-sized games, roll 3D6. In Battalion-sized games, roll 4D6
3. Attacker deploys his 1st wave forces in the sea no closer than 10" to shore or D6" from the table edge if playing without the sea. The 2nd wave is deployed no closer than 20" from the shore or else put in reserve. The 3rd wave is deployed no closer than 30" from the shore or else put in reserve. Reserves begin arriving on turn 2. 3rd wave units can't arrive from reserve until all 2nd wave units have arrived. D6* units arrive from reserve each turn. * In Company-sized games, roll 2D6. In Battalion-sized games, roll 3D6.
4. Place D3* objectives on the table. * In Battalion-sized games, place D6 objectives instead. Starting with the attacker, each player takes turns placing objectives anywhere on the non-beach land. Objectives can't be within 10" of each other.
5. Roll a D6. On a 1-5, the attacker gets first turn. On a 6, the defender gets first turn.</description>
</rule>
</rules>
<infoLinks>
<infoLink id="cae7-293c-9c96-daf7" name="Attack/Defense Scenario" hidden="false" targetId="c064-74c6-58e8-1ed6" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="fecb-3fcd-dbc4-915f" name="New CategoryLink" hidden="false" targetId="ebca-908c-0f01-08c6" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="e366-4800-7439-3b63" name="Defender" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8a62-f90d-c673-541e" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5f31-41aa-5f95-6baa" type="min"/>
</constraints>
<infoLinks>
<infoLink id="ba97-5f8d-66c9-2b18" name="Defender" hidden="false" targetId="4eea-aee8-23e8-a3d7" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="26c0-bbc6-0596-b7ad" name="Attack Defense Scenario" hidden="false" targetId="8d31-1ade-d61e-89b6" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="d842-fd8f-4744-0a94" value="0.0"/>
<cost name="BR" typeId="25f6-2f9f-8a1e-518d" value="0.0"/>
<cost name="Men" typeId="2abb-d074-7103-5ec3" value="0.0"/>
<cost name="Officers" typeId="2612-abd7-eb77-6a12" value="0.0"/>
<cost name="Scouts" typeId="30b9-666e-c128-9771" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="a096-9164-e700-a7be" name="Tidal Conditions - Roll D6" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f9d1-a106-6565-f5b4" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="adcc-98a6-1a9e-d71f" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="f4b8-62b3-3de0-5c3a" name="1 - High Swell" hidden="false" collective="false" import="true" type="upgrade">
<rules>
<rule id="c1eb-19a9-4366-6cf5" name="High Swell" hidden="false">
<description>All movement at sea counts as difficult terrain. The defender may request each difficult terrain test be re-rolled once.</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="d842-fd8f-4744-0a94" value="0.0"/>
<cost name="BR" typeId="25f6-2f9f-8a1e-518d" value="0.0"/>
<cost name="Men" typeId="2abb-d074-7103-5ec3" value="0.0"/>
<cost name="Officers" typeId="2612-abd7-eb77-6a12" value="0.0"/>
<cost name="Scouts" typeId="30b9-666e-c128-9771" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="cb26-6a89-7f6b-2763" name="2-4 - Low Swell" hidden="false" collective="false" import="true" type="upgrade">
<rules>
<rule id="461f-35c1-986c-1b03" name="Low Swell" hidden="false">
<description>All movement at sea counts as difficult terrain.</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="d842-fd8f-4744-0a94" value="0.0"/>
<cost name="BR" typeId="25f6-2f9f-8a1e-518d" value="0.0"/>
<cost name="Men" typeId="2abb-d074-7103-5ec3" value="0.0"/>
<cost name="Officers" typeId="2612-abd7-eb77-6a12" value="0.0"/>
<cost name="Scouts" typeId="30b9-666e-c128-9771" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="29b1-3a93-83bc-dd27" name="5-6 - Mill Pond" hidden="false" collective="false" import="true" type="upgrade">
<rules>
<rule id="21ef-2543-8540-c45a" name="Mill Pond" hidden="false">
<description>Vehicles at sea move as normal.</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="d842-fd8f-4744-0a94" value="0.0"/>
<cost name="BR" typeId="25f6-2f9f-8a1e-518d" value="0.0"/>
<cost name="Men" typeId="2abb-d074-7103-5ec3" value="0.0"/>
<cost name="Officers" typeId="2612-abd7-eb77-6a12" value="0.0"/>
<cost name="Scouts" typeId="30b9-666e-c128-9771" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="d842-fd8f-4744-0a94" value="0.0"/>
<cost name="BR" typeId="25f6-2f9f-8a1e-518d" value="0.0"/>
<cost name="Men" typeId="2abb-d074-7103-5ec3" value="0.0"/>
<cost name="Officers" typeId="2612-abd7-eb77-6a12" value="0.0"/>
<cost name="Scouts" typeId="30b9-666e-c128-9771" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="26c8-0267-1d61-c221" name="Amphibious Infantry Platoon" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="5feb-9d83-1513-d5cd" name="Assault Troops" hidden="false" targetId="4b1b-6db2-75f2-9f1a" type="rule"/>
<infoLink id="b5a0-24f4-4f53-35f6" name="Elite" hidden="false" targetId="e191-f37f-274b-c725" type="rule"/>
<infoLink id="d320-6829-87e5-3ef9" name="Experience - Elite" hidden="false" targetId="121d-5ca4-f8c7-9d10" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="0eb5-3225-a79e-099f" name="New CategoryLink" hidden="false" targetId="a529-162f-ec0b-e961" primary="true"/>
<categoryLink id="b3ed-74b3-c161-cfd1" name="Infantry Platoon" hidden="false" targetId="af48-7a52-d9bf-5ae9" primary="false"/>
<categoryLink id="ac85-a31d-5b4a-49fb" name="Infantry +3" hidden="false" targetId="14cb-9885-1510-86f6" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="a7b9-6e32-2b55-4c1b" name="Amphibious Platoon Command Squad" hidden="false" collective="true" import="true" type="unit">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="be2e-52ea-5a4e-e614" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ca36-22ce-4982-b8d5" type="min"/>
</constraints>
<infoLinks>
<infoLink id="597c-40cd-6503-d282" name="Amphibious Platoon Command Squad" hidden="false" targetId="5087-e6a0-d448-fe88" type="profile"/>
<infoLink id="6a11-e944-af39-2519" name="Basic Infantry Small Arms" hidden="false" targetId="f0b3-6f37-bcd0-2d22" type="infoGroup"/>
<infoLink id="1140-151b-c26e-e03b" name="Officer" hidden="false" targetId="6fce-6bdd-4a46-f6da" type="rule"/>
<infoLink id="e363-f505-766c-c4f2" name="Mortar Spotter" hidden="false" targetId="9031-a725-1c93-3f1d" type="rule"/>
</infoLinks>
<costs>
<cost name="Men" typeId="2abb-d074-7103-5ec3" value="2.0"/>
<cost name="Officers" typeId="2612-abd7-eb77-6a12" value="1.0"/>
<cost name="pts" typeId="d842-fd8f-4744-0a94" value="0.0"/>
<cost name="BR" typeId="25f6-2f9f-8a1e-518d" value="0.0"/>
<cost name="Scouts" typeId="30b9-666e-c128-9771" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="34ef-b884-2375-2183" name="Grenade Launcher Battery" hidden="false" collective="true" import="true" type="unit">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2f81-8612-3a42-1107" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6680-61bf-a62f-7fe1" type="max"/>
</constraints>
<infoLinks>
<infoLink id="b5ac-846f-1df1-4106" name="Basic Infantry Small Arms" hidden="false" targetId="f0b3-6f37-bcd0-2d22" type="infoGroup"/>
<infoLink id="6100-0163-02cc-2002" name="Grenade Launcher Battery (9)" hidden="false" targetId="9ec4-5257-2a5b-eb72" type="profile"/>
<infoLink id="f3fa-617d-263d-4025" name="Multiple Mortar Squads" hidden="false" targetId="3c02-e21d-3ec5-a3eb" type="rule"/>
</infoLinks>
<selectionEntries>
<selectionEntry id="b0d2-235b-0871-22bb" name="Type 89 Grenade Launcher" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="da75-5ee7-9bbc-d1b8" type="max"/>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="edb0-0344-2c7a-4baa" type="min"/>
</constraints>
<infoLinks>
<infoLink id="1906-1900-a45c-d5b8" name="Type 89 50mm Light Mortar" hidden="false" targetId="b53f-0a2d-c94e-3c59" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="d842-fd8f-4744-0a94" value="0.0"/>
<cost name="BR" typeId="25f6-2f9f-8a1e-518d" value="0.0"/>
<cost name="Officers" typeId="2612-abd7-eb77-6a12" value="0.0"/>
<cost name="Men" typeId="2abb-d074-7103-5ec3" value="0.0"/>
<cost name="Scouts" typeId="30b9-666e-c128-9771" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="Men" typeId="2abb-d074-7103-5ec3" value="9.0"/>
<cost name="pts" typeId="d842-fd8f-4744-0a94" value="0.0"/>
<cost name="BR" typeId="25f6-2f9f-8a1e-518d" value="0.0"/>
<cost name="Officers" typeId="2612-abd7-eb77-6a12" value="0.0"/>
<cost name="Scouts" typeId="30b9-666e-c128-9771" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="e5c4-79c9-7c21-6532" name="Rifle Section" hidden="false" collective="true" import="true" type="unit">
<constraints>
<constraint field="selections" scope="parent" value="4.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="29f3-3726-93b9-71c4" type="max"/>
<constraint field="selections" scope="parent" value="4.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8082-b4f4-1e69-7831" type="min"/>
</constraints>
<infoLinks>
<infoLink id="cd09-5f37-63e4-79e5" name="Basic Infantry Small Arms" hidden="false" targetId="f0b3-6f37-bcd0-2d22" type="infoGroup"/>
<infoLink id="c1b4-06ce-57bc-435d" name="Amphibious Rifle Section" hidden="false" targetId="b63e-6369-4766-f8d5" type="profile"/>
</infoLinks>
<costs>
<cost name="Men" typeId="2abb-d074-7103-5ec3" value="7.0"/>
<cost name="pts" typeId="d842-fd8f-4744-0a94" value="0.0"/>
<cost name="BR" typeId="25f6-2f9f-8a1e-518d" value="0.0"/>
<cost name="Officers" typeId="2612-abd7-eb77-6a12" value="0.0"/>
<cost name="Scouts" typeId="30b9-666e-c128-9771" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="221f-d2e6-cb10-19b6" name="Platoon Support Options" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2382-66e8-18b7-3179" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="03cb-4350-bed6-859a" name="Combat Medic" hidden="false" collective="true" import="true" type="unit">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d481-7cad-0203-08bc" type="max"/>
</constraints>
<infoLinks>
<infoLink id="bd71-f428-da07-eb24" name="Combat Medic" hidden="false" targetId="9483-fb35-75d5-78b3" type="profile"/>
<infoLink id="44fb-2987-6f4a-b12b" name="Medic" hidden="false" targetId="eb76-f1f1-bfc5-0a95" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="d842-fd8f-4744-0a94" value="10.0"/>
<cost name="Men" typeId="2abb-d074-7103-5ec3" value="1.0"/>
<cost name="BR" typeId="25f6-2f9f-8a1e-518d" value="0.0"/>
<cost name="Officers" typeId="2612-abd7-eb77-6a12" value="0.0"/>
<cost name="Scouts" typeId="30b9-666e-c128-9771" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="ba08-3d56-0636-eef4" name="Heavy MG Team" hidden="false" collective="true" import="true" type="unit">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d4fa-9345-8b95-bab5" type="max"/>
</constraints>
<infoLinks>
<infoLink id="533f-d6e5-fe73-c587" name="Heavy Machine Gun Team" hidden="false" targetId="f317-7126-69b7-9a9f" type="profile"/>
<infoLink id="62de-a04b-a9ab-bf52" name="Type 92 (Heavy MG)" hidden="false" targetId="b4bf-d377-ee18-8ba0" type="profile"/>
<infoLink id="7add-208f-bce2-5bd9" name="Type 99 Arisaka (Rifle)" hidden="false" targetId="833f-4d76-9465-5596" type="profile"/>
</infoLinks>
<selectionEntries>
<selectionEntry id="f071-b075-1b44-5884" name="Add 3-man Loader Team" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9283-c358-a92a-13d0" type="max"/>
</constraints>
<infoLinks>
<infoLink id="92c9-1eb7-8a1d-22e3" name="Loader Team" hidden="false" targetId="97de-c016-3c90-8dfb" type="profile"/>
<infoLink id="6828-a0ef-69e3-4fc7" name="Type 99 Arisaka (Rifle)" hidden="false" targetId="833f-4d76-9465-5596" type="profile"/>
<infoLink id="6773-c0e2-663c-35a1" name="Loader Team" hidden="false" targetId="f9fc-eaf5-5f58-f4bd" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="d842-fd8f-4744-0a94" value="10.0"/>
<cost name="Men" typeId="2abb-d074-7103-5ec3" value="3.0"/>
<cost name="BR" typeId="25f6-2f9f-8a1e-518d" value="0.0"/>
<cost name="Officers" typeId="2612-abd7-eb77-6a12" value="0.0"/>
<cost name="Scouts" typeId="30b9-666e-c128-9771" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="pts" typeId="d842-fd8f-4744-0a94" value="27.0"/>
<cost name="BR" typeId="25f6-2f9f-8a1e-518d" value="1.0"/>
<cost name="Men" typeId="2abb-d074-7103-5ec3" value="3.0"/>
<cost name="Officers" typeId="2612-abd7-eb77-6a12" value="0.0"/>
<cost name="Scouts" typeId="30b9-666e-c128-9771" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="f805-01da-8f7d-67b6" name="Infantry Gun" hidden="false" collective="true" import="true" type="unit">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="57ac-2c1f-5504-8736" type="max"/>
</constraints>
<infoLinks>
<infoLink id="46bb-589a-eb4b-a9d5" name="Type 99 Arisaka (Rifle)" hidden="false" targetId="833f-4d76-9465-5596" type="profile"/>
<infoLink id="08a5-fe02-acdd-f390" name="Artillery Gun Crew [Light]" hidden="false" targetId="bdb8-c944-759c-a6ba" type="profile"/>
</infoLinks>
<selectionEntries>
<selectionEntry id="60e7-bd4f-49b0-b7ac" name="Add 3-man Loader Team" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="761b-cb44-f187-fb7e" type="max"/>
</constraints>
<infoLinks>
<infoLink id="4f7e-7a83-728f-e7ec" name="Loader Team" hidden="false" targetId="97de-c016-3c90-8dfb" type="profile"/>
<infoLink id="5ac3-9e8a-f569-e035" name="Type 99 Arisaka (Rifle)" hidden="false" targetId="833f-4d76-9465-5596" type="profile"/>
<infoLink id="9a95-a12d-c77e-5495" name="Loader Team" hidden="false" targetId="f9fc-eaf5-5f58-f4bd" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="d842-fd8f-4744-0a94" value="10.0"/>
<cost name="Men" typeId="2abb-d074-7103-5ec3" value="3.0"/>
<cost name="BR" typeId="25f6-2f9f-8a1e-518d" value="0.0"/>
<cost name="Officers" typeId="2612-abd7-eb77-6a12" value="0.0"/>
<cost name="Scouts" typeId="30b9-666e-c128-9771" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="b841-22c8-bc75-7129" name="Infantry Gun" hidden="false" collective="false" import="true" defaultSelectionEntryId="111e-4012-2399-ec26">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c675-9f14-936a-e42e" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="86c5-ae24-7d66-bd8e" type="min"/>
</constraints>
<selectionEntries>
<selectionEntry id="111e-4012-2399-ec26" name="Type 92 70mmL11 Gun" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="d272-636e-2677-de3d" name="70mmL11" hidden="false" targetId="17b6-9385-8b79-7ff5" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="d842-fd8f-4744-0a94" value="0.0"/>
<cost name="BR" typeId="25f6-2f9f-8a1e-518d" value="0.0"/>
<cost name="Men" typeId="2abb-d074-7103-5ec3" value="0.0"/>
<cost name="Officers" typeId="2612-abd7-eb77-6a12" value="0.0"/>
<cost name="Scouts" typeId="30b9-666e-c128-9771" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="98a1-57f5-0e44-0196" name="Type 41 75mmL18 Gun" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="5327-8981-9ad7-37e5" name="75mmL18" hidden="false" targetId="b342-9baa-b1a0-1bbb" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="d842-fd8f-4744-0a94" value="0.0"/>
<cost name="BR" typeId="25f6-2f9f-8a1e-518d" value="0.0"/>
<cost name="Men" typeId="2abb-d074-7103-5ec3" value="0.0"/>
<cost name="Officers" typeId="2612-abd7-eb77-6a12" value="0.0"/>
<cost name="Scouts" typeId="30b9-666e-c128-9771" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="d842-fd8f-4744-0a94" value="25.0"/>
<cost name="BR" typeId="25f6-2f9f-8a1e-518d" value="1.0"/>
<cost name="Men" typeId="2abb-d074-7103-5ec3" value="3.0"/>
<cost name="Officers" typeId="2612-abd7-eb77-6a12" value="0.0"/>
<cost name="Scouts" typeId="30b9-666e-c128-9771" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="fce6-8ff1-9f33-2d01" name="Anti-Tank Gun" hidden="false" collective="true" import="true" type="unit">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d967-0937-767f-e8a3" type="max"/>
</constraints>
<infoLinks>
<infoLink id="81d0-77e1-3f18-fccb" name="37mmL36" hidden="false" targetId="098b-6381-ce40-aa3a" type="profile"/>
<infoLink id="c156-bbb9-8626-8f7e" name="Anti-Tank Gun Crew [V.Light]" hidden="false" targetId="f184-73c7-f1e0-6019" type="profile"/>
<infoLink id="b0cd-08d0-ce89-e17f" name="Type 99 Arisaka (Rifle)" hidden="false" targetId="833f-4d76-9465-5596" type="profile"/>
</infoLinks>
<selectionEntries>
<selectionEntry id="fb1f-d44e-497a-3f68" name="Add 3-man Loader Team" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7b4c-3b8b-59e4-d624" type="max"/>
</constraints>
<infoLinks>
<infoLink id="1e3c-3a03-c5dd-3aab" name="Loader Team" hidden="false" targetId="97de-c016-3c90-8dfb" type="profile"/>
<infoLink id="e9a6-331f-3f74-9630" name="Type 99 Arisaka (Rifle)" hidden="false" targetId="833f-4d76-9465-5596" type="profile"/>
<infoLink id="6b5c-16c5-a84b-06f4" name="Loader Team" hidden="false" targetId="f9fc-eaf5-5f58-f4bd" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="d842-fd8f-4744-0a94" value="10.0"/>
<cost name="Men" typeId="2abb-d074-7103-5ec3" value="3.0"/>
<cost name="BR" typeId="25f6-2f9f-8a1e-518d" value="0.0"/>
<cost name="Officers" typeId="2612-abd7-eb77-6a12" value="0.0"/>
<cost name="Scouts" typeId="30b9-666e-c128-9771" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="pts" typeId="d842-fd8f-4744-0a94" value="26.0"/>
<cost name="BR" typeId="25f6-2f9f-8a1e-518d" value="1.0"/>
<cost name="Men" typeId="2abb-d074-7103-5ec3" value="3.0"/>
<cost name="Officers" typeId="2612-abd7-eb77-6a12" value="0.0"/>
<cost name="Scouts" typeId="30b9-666e-c128-9771" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="7469-c0a2-dd9d-89e4" name="Demolition Team" hidden="false" collective="true" import="true" type="unit">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="96f9-3ac2-3524-855f" type="max"/>
</constraints>
<infoLinks>
<infoLink id="4022-b29b-22fa-2113" name="Demolition Team" hidden="false" targetId="8464-85c4-aedc-ecb8" type="profile"/>
<infoLink id="b4cd-3431-cd08-fd33" name="Type 99 Arisaka (Rifle)" hidden="false" targetId="833f-4d76-9465-5596" type="profile"/>
<infoLink id="9603-77df-e69e-8ba9" name="Demolitions Charges" hidden="false" targetId="fcbd-62df-6253-71ac" type="rule"/>
<infoLink id="a2b8-24df-ddfb-7333" name="Elite" hidden="false" targetId="e191-f37f-274b-c725" type="rule"/>
<infoLink id="1e18-1ace-c2e8-9e79" name="Nikaku" hidden="false" targetId="dee1-bd44-e0ab-92dd" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="d842-fd8f-4744-0a94" value="18.0"/>
<cost name="Men" typeId="2abb-d074-7103-5ec3" value="2.0"/>
<cost name="Officers" typeId="2612-abd7-eb77-6a12" value="0.0"/>
<cost name="BR" typeId="25f6-2f9f-8a1e-518d" value="0.0"/>
<cost name="Scouts" typeId="30b9-666e-c128-9771" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="dfd4-700b-f079-3ab3" name="Anti-Tank Section" hidden="false" collective="true" import="true" type="unit">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="91d5-7f2d-49a6-3a0e" type="max"/>
</constraints>
<infoLinks>
<infoLink id="d2ae-547f-203e-68d8" name="Basic Infantry Small Arms" hidden="false" targetId="f0b3-6f37-bcd0-2d22" type="infoGroup"/>
<infoLink id="d833-1a1e-cc6c-b8a5" name="Anti-Tank Team" hidden="false" targetId="e579-085d-dd95-9f46" type="profile"/>
<infoLink id="1ffa-67f2-b8dc-b5b0" name="Nikaku" hidden="false" targetId="dee1-bd44-e0ab-92dd" type="rule"/>
</infoLinks>
<entryLinks>
<entryLink id="0c81-7d52-fe41-59b2" name="Anti-Tank Grenades" hidden="false" collective="false" import="true" targetId="0059-a435-10a0-70af" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="Men" typeId="2abb-d074-7103-5ec3" value="2.0"/>
<cost name="pts" typeId="d842-fd8f-4744-0a94" value="12.0"/>
<cost name="BR" typeId="25f6-2f9f-8a1e-518d" value="0.0"/>
<cost name="Officers" typeId="2612-abd7-eb77-6a12" value="0.0"/>
<cost name="Scouts" typeId="30b9-666e-c128-9771" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="d842-fd8f-4744-0a94" value="191.0"/>
<cost name="BR" typeId="25f6-2f9f-8a1e-518d" value="20.0"/>
<cost name="Men" typeId="2abb-d074-7103-5ec3" value="0.0"/>
<cost name="Officers" typeId="2612-abd7-eb77-6a12" value="0.0"/>
<cost name="Scouts" typeId="30b9-666e-c128-9771" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="ffe7-6720-f257-8dd2" name="Anti-Tank Spider Hole" hidden="false" collective="false" import="true" type="unit">
<infoLinks>
<infoLink id="f637-4fd9-4c05-6325" name="Spider Hole" hidden="false" targetId="cd11-b155-7a4a-7f9c" type="profile"/>
<infoLink id="3734-3fbe-b279-7d78" name="Elite" hidden="false" targetId="e191-f37f-274b-c725" type="rule"/>
<infoLink id="6dce-2b45-16e5-21ca" name="Experience - Elite" hidden="false" targetId="121d-5ca4-f8c7-9d10" type="rule"/>
<infoLink id="37bb-2007-5cf6-7b31" name="Hidden" hidden="false" targetId="2cf8-2a7f-a7d9-e1e5" type="rule"/>
<infoLink id="1049-e5a9-d209-3ff3" name="Nikaku" hidden="false" targetId="dee1-bd44-e0ab-92dd" type="rule"/>
<infoLink id="b4b4-6ec4-47b6-9d10" name="Anti-Tank Spider Hole" hidden="false" targetId="8e09-10fc-62a8-b7bd" type="rule"/>
<infoLink id="01cf-51df-5c90-2cd4" name="Type 99 Arisaka (Rifle)" hidden="false" targetId="833f-4d76-9465-5596" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="789d-3580-d567-732e" name="New CategoryLink" hidden="false" targetId="b6a3-9f91-0350-5714" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="cea6-3d83-e918-adfb" name="Anti-Tank Grenades" hidden="false" collective="false" import="true" targetId="0059-a435-10a0-70af" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="d842-fd8f-4744-0a94" value="18.0"/>
<cost name="Men" typeId="2abb-d074-7103-5ec3" value="1.0"/>
<cost name="BR" typeId="25f6-2f9f-8a1e-518d" value="0.0"/>
<cost name="Officers" typeId="2612-abd7-eb77-6a12" value="0.0"/>
<cost name="Scouts" typeId="30b9-666e-c128-9771" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="5009-ed64-3401-c962" name="Artillery Gun" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="b408-5795-728b-21c8" name="Elite" hidden="false" targetId="e191-f37f-274b-c725" type="rule"/>
<infoLink id="0929-45d5-0035-9436" name="Experience - Elite" hidden="false" targetId="121d-5ca4-f8c7-9d10" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="d642-7c71-903d-8112" name="New CategoryLink" hidden="false" targetId="3513-6f08-58bc-2d59" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="0e90-f66c-87fb-4526" name="Add 3-man Loader Team" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a481-59b5-e2a6-cf3f" type="max"/>
</constraints>
<infoLinks>
<infoLink id="3dca-d61b-65f9-f7c2" name="Loader Team" hidden="false" targetId="97de-c016-3c90-8dfb" type="profile"/>
<infoLink id="cd9e-f0e3-8cb9-969d" name="Type 99 Arisaka (Rifle)" hidden="false" targetId="833f-4d76-9465-5596" type="profile"/>
<infoLink id="86da-4bfe-5363-f056" name="Loader Team" hidden="false" targetId="f9fc-eaf5-5f58-f4bd" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="d842-fd8f-4744-0a94" value="10.0"/>
<cost name="Men" typeId="2abb-d074-7103-5ec3" value="3.0"/>
<cost name="BR" typeId="25f6-2f9f-8a1e-518d" value="0.0"/>
<cost name="Officers" typeId="2612-abd7-eb77-6a12" value="0.0"/>
<cost name="Scouts" typeId="30b9-666e-c128-9771" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="9491-2bbc-cb11-c5c6" name="Artillery Gun" hidden="false" collective="false" import="true" defaultSelectionEntryId="2d2f-d72b-0f2b-54d3">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8ec3-7b74-5c36-a8ba" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e319-7240-e2e5-694a" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="2d2f-d72b-0f2b-54d3" name="Type 38 75mmL31 Artillery Gun" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="b4d0-6fee-94c2-de4a" name="75mmL31" hidden="false" targetId="88e8-5ad0-aedc-f8ce" type="profile"/>
<infoLink id="8d55-23e9-3275-8746" name="Artillery Gun Crew [Light]" hidden="false" targetId="bdb8-c944-759c-a6ba" type="profile"/>
</infoLinks>
<costs>
<cost name="Men" typeId="2abb-d074-7103-5ec3" value="3.0"/>
<cost name="pts" typeId="d842-fd8f-4744-0a94" value="35.0"/>
<cost name="BR" typeId="25f6-2f9f-8a1e-518d" value="2.0"/>
<cost name="Officers" typeId="2612-abd7-eb77-6a12" value="0.0"/>
<cost name="Scouts" typeId="30b9-666e-c128-9771" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="95b2-a7af-7312-1d16" name="Type 90 75mmL38 Artillery Gun" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="7790-4980-042e-a491" name="Artillery Gun Crew [Light]" hidden="false" targetId="bdb8-c944-759c-a6ba" type="profile"/>
<infoLink id="babd-7597-624c-6569" name="75mmL38" hidden="false" targetId="e1b5-8da7-da9b-3a98" type="profile"/>
</infoLinks>
<costs>
<cost name="Men" typeId="2abb-d074-7103-5ec3" value="3.0"/>
<cost name="pts" typeId="d842-fd8f-4744-0a94" value="39.0"/>
<cost name="BR" typeId="25f6-2f9f-8a1e-518d" value="2.0"/>
<cost name="Officers" typeId="2612-abd7-eb77-6a12" value="0.0"/>
<cost name="Scouts" typeId="30b9-666e-c128-9771" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="d842-fd8f-4744-0a94" value="0.0"/>
<cost name="BR" typeId="25f6-2f9f-8a1e-518d" value="0.0"/>
<cost name="Men" typeId="2abb-d074-7103-5ec3" value="0.0"/>
<cost name="Officers" typeId="2612-abd7-eb77-6a12" value="0.0"/>
<cost name="Scouts" typeId="30b9-666e-c128-9771" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="7c96-fd28-242f-3c81" name="Artillery Observation Post" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c91f-1ef3-7ee6-e04e" type="max"/>
</constraints>
<infoLinks>
<infoLink id="6a40-4279-f6bc-acb2" name="Artillery Spotter" hidden="false" targetId="71b0-1be2-e377-c5c9" type="rule"/>
<infoLink id="6312-9fa3-3536-99a1" name="Elite" hidden="false" targetId="e191-f37f-274b-c725" type="rule"/>
<infoLink id="299e-2e58-a201-d4b3" name="Experience - Elite" hidden="false" targetId="121d-5ca4-f8c7-9d10" type="rule"/>
<infoLink id="3c0c-34b6-93db-f4f0" name="Unique" hidden="false" targetId="c2e8-0f62-4a80-1a76" type="rule"/>
<infoLink id="a36f-5d41-e227-a0a4" name="Officer" hidden="false" targetId="6fce-6bdd-4a46-f6da" type="rule"/>
<infoLink id="5e2c-d41c-88e4-0a32" name="Artillery Observation Post" hidden="false" targetId="4ef0-61c7-2756-89f9" type="rule"/>
<infoLink id="d562-0226-9bdd-793c" name="Basic Infantry Small Arms" hidden="false" targetId="f0b3-6f37-bcd0-2d22" type="infoGroup"/>
<infoLink id="6543-cdc4-2dbd-2f60" name="Forward Observer Team" hidden="false" targetId="5661-2c1a-e383-af6e" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="b5ba-b587-dc0f-f70c" name="New CategoryLink" hidden="false" targetId="b6a3-9f91-0350-5714" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="d842-fd8f-4744-0a94" value="37.0"/>
<cost name="BR" typeId="25f6-2f9f-8a1e-518d" value="1.0"/>
<cost name="Men" typeId="2abb-d074-7103-5ec3" value="2.0"/>
<cost name="Officers" typeId="2612-abd7-eb77-6a12" value="1.0"/>
<cost name="Scouts" typeId="30b9-666e-c128-9771" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="0cc6-4bfd-c4c9-a156" name="Booby Trap Labyrinth" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a4d0-3aea-f93c-3f68" type="max"/>
</constraints>
<infoLinks>
<infoLink id="0f7a-3ef5-cb4c-3d2c" name="Booby Trap Labyrinth" hidden="false" targetId="2138-12b8-1d68-9c7f" type="rule"/>
<infoLink id="190f-0225-f89a-6c3d" name="Unique" hidden="false" targetId="c2e8-0f62-4a80-1a76" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="7205-d519-36ce-fb8f" name="New CategoryLink" hidden="false" targetId="b6a3-9f91-0350-5714" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="d842-fd8f-4744-0a94" value="20.0"/>
<cost name="BR" typeId="25f6-2f9f-8a1e-518d" value="0.0"/>
<cost name="Men" typeId="2abb-d074-7103-5ec3" value="0.0"/>
<cost name="Officers" typeId="2612-abd7-eb77-6a12" value="0.0"/>
<cost name="Scouts" typeId="30b9-666e-c128-9771" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="c5dc-3ff2-c7ca-5f61" name="Booby Trap Terrain" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="968e-ee1e-7aee-21e6" type="max"/>
</constraints>
<infoLinks>
<infoLink id="ec61-326a-0083-1e90" name="Unique" hidden="false" targetId="c2e8-0f62-4a80-1a76" type="rule"/>
<infoLink id="e144-b1cd-1c48-0076" name="Booby Trapped Terrain" hidden="false" targetId="12b0-3086-f2ef-d1eb" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="42f0-e83e-05ea-5495" name="New CategoryLink" hidden="false" targetId="b6a3-9f91-0350-5714" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="d842-fd8f-4744-0a94" value="25.0"/>
<cost name="BR" typeId="25f6-2f9f-8a1e-518d" value="0.0"/>
<cost name="Men" typeId="2abb-d074-7103-5ec3" value="0.0"/>
<cost name="Officers" typeId="2612-abd7-eb77-6a12" value="0.0"/>
<cost name="Scouts" typeId="30b9-666e-c128-9771" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="2b55-67f5-5fb8-6265" name="Cautious Enemy" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5cf8-5422-d610-a293" type="max"/>
</constraints>
<rules>
<rule id="e0dc-1e9c-b688-8f98" name="Cautious Enemy" hidden="false">
<description>The enemy forces you are facing expect that the war will soon be over and aren't willing to risk high casualties and unnecessary losses. At the start of the game reduce the enemy player's BR total by a D6.</description>
</rule>
</rules>
<categoryLinks>
<categoryLink id="c554-3544-fa33-8cc5" name="New CategoryLink" hidden="false" targetId="0891-5f08-126a-7f90" primary="true"/>
<categoryLink id="92be-fd4d-6499-977a" name="Forward Headquarters -1" hidden="false" targetId="f3a0-fac0-cac3-0f1a" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="d842-fd8f-4744-0a94" value="15.0"/>
<cost name="BR" typeId="25f6-2f9f-8a1e-518d" value="0.0"/>
<cost name="Men" typeId="2abb-d074-7103-5ec3" value="0.0"/>
<cost name="Officers" typeId="2612-abd7-eb77-6a12" value="0.0"/>
<cost name="Scouts" typeId="30b9-666e-c128-9771" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="b190-967e-79a2-0512" name="Coastal 'Fortress Artillery' Casemate" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="5c08-027e-27b2-88fd" type="atMost"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2866-d9b1-3ccb-8106" type="max"/>
</constraints>
<infoLinks>
<infoLink id="3323-fe0f-3af4-db36" name="Coastal 'Fortress Artillery' Casemate" hidden="false" targetId="da94-cb85-1a23-5200" type="rule"/>
<infoLink id="100c-edf4-d0db-bd61" name="Unique" hidden="false" targetId="c2e8-0f62-4a80-1a76" type="rule"/>
<infoLink id="4462-5c09-683b-28be" name="Experience - Veteran" hidden="false" targetId="e6e7-c5b9-d445-da99" type="rule"/>
<infoLink id="0e2a-ad96-8cdc-45d7" name="Loader Team" hidden="false" targetId="f9fc-eaf5-5f58-f4bd" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="72fb-3804-f869-77aa" name="New CategoryLink" hidden="false" targetId="b6a3-9f91-0350-5714" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="f09e-85a7-c925-dd63" name="Naval Gun" hidden="false" collective="false" import="true" defaultSelectionEntryId="147e-3391-11c2-f046">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1668-0dd5-195b-bfab" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a521-e1ee-2e36-c0a5" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="147e-3391-11c2-f046" name="150mmL40 Naval Gun" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="8884-c056-4e1f-77b3" name="150mmL40" hidden="false" targetId="81f2-2874-225f-9256" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="d842-fd8f-4744-0a94" value="0.0"/>
<cost name="BR" typeId="25f6-2f9f-8a1e-518d" value="0.0"/>