forked from BSData/horus-heresy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
(HH) Army of Dark Compliance List.cat
10265 lines (10261 loc) · 741 KB
/
(HH) Army of Dark Compliance List.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="90aa-c2c8-ffb0-AoDC" name="(HH V1) Armies of Dark Compliance" revision="5" battleScribeVersion="2.03" authorName="https://github.com/BSData/horus-heresy/graphs/contributors" authorContact="" authorUrl="http://battlescribedata.appspot.com/#/repo/horus-heresy" library="false" gameSystemId="ca571888-56a9-c58e-ddaf-54f4713538bc" gameSystemRevision="164" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<categoryEntries>
<categoryEntry id="1bcc0dc0-daee-dd60-6d6b-8510ffb8202f" name="Lords of War" hidden="false"/>
<categoryEntry id="5297-7e0f-fa0b-3537" name="Allegiance" hidden="false"/>
</categoryEntries>
<selectionEntries>
<selectionEntry id="5a9e-6c6d-c357-0f70" name="Mournival Rules" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="6cda-a9c1-63bf-c14d" type="min"/>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="6fa5-84ab-120d-eca8" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="85d6-b968-20a1-233f" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="a3f8-0cf8-e2af-9f3c" name="Mournival Rules" hidden="false" targetId="dbe0-716f-797c-66f7" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="9e37-8b0c-2c91-602b" name="Mournival Rules Active" hidden="false" collective="false" import="true" targetId="c859-6b16-c533-7e97" type="selectionEntry">
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="b35e-5cb0-9679-b942" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0dca-fb38-49a3-d4c1" type="max"/>
</constraints>
</entryLink>
<entryLink id="f22a-c222-8e50-ea20" name="Additional Psychic Disciplines" hidden="false" collective="false" import="true" targetId="be86-7cb9-6f78-eb14" type="selectionEntry"/>
<entryLink id="c837-5d82-5ab8-b5ae" name="Mournival Experiemental Rules on" hidden="false" collective="false" import="true" targetId="8d39-af5d-fcc9-9c1f" type="selectionEntry">
<categoryLinks>
<categoryLink id="eb51-58a0-a4b8-e376" name="Mournival Rules" hidden="false" targetId="dbe0-716f-797c-66f7" primary="false"/>
</categoryLinks>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="346e-4f96-da50-f2c4" name="Arvus Lighter, Auxilia" hidden="false" collective="false" import="true" targetId="2f44-0ed6-d014-be2f" type="selectionEntry">
<modifiers>
<modifier type="set" field="maxSelections" value="-1"/>
</modifiers>
<categoryLinks>
<categoryLink id="b00c-f941-d5a4-2f4c" name="New CategoryLink" hidden="false" targetId="8a8c-ed20-7427-ddff" primary="false"/>
<categoryLink id="5b90-a808-fdaf-b195" name="New CategoryLink" hidden="false" targetId="85b6-80c2-d782-96bd" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="2053-cb6b-3b78-bc64" name="Rogue Psyker" hidden="false" collective="false" import="true" targetId="90d3-fb2c-d7c2-6482" type="selectionEntry">
<categoryLinks>
<categoryLink id="e908-1a7a-1b5a-10e0" name="New CategoryLink" hidden="false" targetId="8a8c-ed20-7427-ddff" primary="false"/>
<categoryLink id="7cab-53c3-ab21-6789" name="New CategoryLink" hidden="false" targetId="a91b-7f8f-d085-e564" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="7ec7-1723-3c29-3726" name="Mutant Spawn" hidden="false" collective="false" import="true" targetId="0717-c810-5a7f-841d" type="selectionEntry">
<categoryLinks>
<categoryLink id="1724-767a-1ffd-b323" name="New CategoryLink" hidden="false" targetId="8a8c-ed20-7427-ddff" primary="false"/>
<categoryLink id="9e14-5640-5102-f299" name="New CategoryLink" hidden="false" targetId="9704-4a93-21b2-be00" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="a4ea-2697-ec1a-2e14" name="Militia Auxiliary Battle Tank Attack Squadron" hidden="false" collective="false" import="true" targetId="837d-73be-55e0-e5d1" type="selectionEntry">
<categoryLinks>
<categoryLink id="e2f5-b193-9013-6e48" name="New CategoryLink" hidden="false" targetId="8a8c-ed20-7427-ddff" primary="false"/>
<categoryLink id="67e2-6e2f-362d-b003" name="New CategoryLink" hidden="false" targetId="9704-4a93-21b2-be00" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="0dc0-34c1-8aec-964e" name="Medicae Detachment, Imperialis Militia" hidden="false" collective="false" import="true" targetId="02ca-0436-4d29-a606" type="selectionEntry">
<categoryLinks>
<categoryLink id="bb3f-a122-b38b-6881" name="New CategoryLink" hidden="false" targetId="8a8c-ed20-7427-ddff" primary="false"/>
<categoryLink id="c7f0-eae0-daed-f54c" name="New CategoryLink" hidden="false" targetId="7757-4995-3312-d330" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="cf71-2ecd-9e7b-7127" name="Heavy Ordnance Battery, Auxilia" hidden="false" collective="false" import="true" targetId="3119-6513-bb98-1a37" type="selectionEntry">
<categoryLinks>
<categoryLink id="2b1b-c8ae-f918-f497" name="New CategoryLink" hidden="false" targetId="8a8c-ed20-7427-ddff" primary="false"/>
<categoryLink id="de8d-9e43-3d0c-905c" name="New CategoryLink" hidden="false" targetId="9704-4a93-21b2-be00" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="d314-1e56-8598-2f48" name="Malcador Heavy Tank, Auxilia" hidden="false" collective="false" import="true" targetId="c564-b56c-977c-64bd" type="selectionEntry">
<categoryLinks>
<categoryLink id="ffce-c460-f223-44f3" name="New CategoryLink" hidden="false" targetId="8a8c-ed20-7427-ddff" primary="false"/>
<categoryLink id="138b-0357-0ffc-e2bc" name="New CategoryLink" hidden="false" targetId="9704-4a93-21b2-be00" primary="true"/>
<categoryLink id="8b43-2166-fd3a-f781" name="Vehicle:" hidden="false" targetId="03d8-3acd-b7ca-5649" primary="false"/>
<categoryLink id="1853-9487-e9ca-8c9f" name="Vehicle (Unit):" hidden="false" targetId="3a7d-72fe-146e-fe7d" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="6ba7-d9d9-6fc1-b9cc" name="Ogryn Brute Squad, Auxilia" hidden="false" collective="false" import="true" targetId="0390-b19f-2fd3-a817" type="selectionEntry">
<categoryLinks>
<categoryLink id="3e66-4160-5624-7fef" name="New CategoryLink" hidden="false" targetId="8a8c-ed20-7427-ddff" primary="false"/>
<categoryLink id="1623-6078-5a18-e21e" name="New CategoryLink" hidden="false" targetId="7757-4995-3312-d330" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="5d41-f9b4-a1c0-253a" name="Stormhammer Super-heavy Assault Tank, Auxilia" hidden="false" collective="false" import="true" targetId="0dd2-3783-8b42-8ea4" type="selectionEntry">
<categoryLinks>
<categoryLink id="5d41-f9b4-a1c0-253a-1bcc0dc0-daee-dd60-6d6b-8510ffb8202f" hidden="false" targetId="1bcc0dc0-daee-dd60-6d6b-8510ffb8202f" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="d11b-5df0-04e8-0742" name="Thunderbolt Heavy Fighter, Auxilia" hidden="false" collective="false" import="true" targetId="ba9a-493a-cf26-21c9" type="selectionEntry">
<categoryLinks>
<categoryLink id="f01c-95a4-ee59-e1d8" name="New CategoryLink" hidden="false" targetId="8a8c-ed20-7427-ddff" primary="false"/>
<categoryLink id="d8fd-8bec-beec-f4e7" name="New CategoryLink" hidden="false" targetId="85b6-80c2-d782-96bd" primary="true"/>
<categoryLink id="84cd-ebc2-5d7c-e19d" name="Flyer:" hidden="false" targetId="cef1-24f3-c9c2-81cc" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="b77d-0b6c-c241-2e5e" name="Enginseer Auxilia" hidden="false" collective="false" import="true" targetId="f2a9-6662-7cb6-8de7" type="selectionEntry">
<categoryLinks>
<categoryLink id="c539-f851-10ee-1d08" name="New CategoryLink" hidden="false" targetId="8a8c-ed20-7427-ddff" primary="false"/>
<categoryLink id="5974-eff9-7229-f0bf" name="New CategoryLink" hidden="false" targetId="7757-4995-3312-d330" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="4f2c-675c-c36b-fd73" name="Force Commander" hidden="false" collective="false" import="true" targetId="343f-b1ae-c962-4f62" type="selectionEntry">
<categoryLinks>
<categoryLink id="9030-9c62-f930-57ca" name="New CategoryLink" hidden="false" targetId="8a8c-ed20-7427-ddff" primary="false"/>
<categoryLink id="00b8-943c-fc7f-35d7" name="New CategoryLink" hidden="false" targetId="a91b-7f8f-d085-e564" primary="true"/>
<categoryLink id="5f21-b6ec-07a0-726e" name="Compulsory HQ:" hidden="false" targetId="3e18-4c14-6f98-44ed" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="2175-c124-e720-01d9" name="Platoon Command Cadre, Imperialis Militia" hidden="false" collective="false" import="true" targetId="ee8f-fcde-88df-7261" type="selectionEntry">
<categoryLinks>
<categoryLink id="84f4-7c94-6dc1-67f3" name="New CategoryLink" hidden="false" targetId="8a8c-ed20-7427-ddff" primary="false"/>
<categoryLink id="54f3-3526-0f23-e4b4" name="New CategoryLink" hidden="false" targetId="a91b-7f8f-d085-e564" primary="true"/>
<categoryLink id="4420-227b-6a3b-7c06" name="Compulsory HQ:" hidden="false" targetId="3e18-4c14-6f98-44ed" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="1fa1-cabb-e243-4c37" name="Rapier Battery, Imperialis Militia" hidden="false" collective="false" import="true" targetId="0ed3-b2fd-0ca7-588b" type="selectionEntry">
<categoryLinks>
<categoryLink id="7fea-fb3c-14e4-2701" name="New CategoryLink" hidden="false" targetId="8a8c-ed20-7427-ddff" primary="false"/>
<categoryLink id="89bb-8d72-89b5-d3ad" name="New CategoryLink" hidden="false" targetId="9704-4a93-21b2-be00" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="e257-2315-b28f-51d5" name="Sentinel Scout Squadron, Imperialis Auxilia " hidden="false" collective="false" import="true" targetId="6de2-2bf3-3277-afab" type="selectionEntry">
<categoryLinks>
<categoryLink id="27bf-f871-286c-7ffd" name="New CategoryLink" hidden="false" targetId="8a8c-ed20-7427-ddff" primary="false"/>
<categoryLink id="e2fa-7923-f6e4-0713" name="New CategoryLink" hidden="false" targetId="85b6-80c2-d782-96bd" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="5aed-133b-01f6-4342" name="Fire Support Squad, Imperialis Militia" hidden="false" collective="false" import="true" targetId="43bb-4acf-c78a-8a35" type="selectionEntry">
<categoryLinks>
<categoryLink id="cea8-0318-73b4-c3a4" name="New CategoryLink" hidden="false" targetId="8a8c-ed20-7427-ddff" primary="false"/>
<categoryLink id="662d-95a8-901f-36c9" name="New CategoryLink" hidden="false" targetId="220b-7c51-58b3-6ac0" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="450e-3771-b9c4-d45a" name="Grenadier Squad, Imperialis Militia" hidden="false" collective="false" import="true" targetId="f299-898a-b637-0aa2" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="3cc2-fa8b-3467-7e3a" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="b8fa-4097-71f7-ea75" name="New CategoryLink" hidden="false" targetId="8a8c-ed20-7427-ddff" primary="false"/>
<categoryLink id="be99-eb62-b1de-a184" name="New CategoryLink" hidden="false" targetId="220b-7c51-58b3-6ac0" primary="true"/>
<categoryLink id="102a-4539-f085-b801" name="Compulsory Troops:" hidden="false" targetId="2ff1-c144-57a5-03dc" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="45d2-5ca3-10d0-9fbf" name="Reconnaissance Squad, Imperialis Militia" hidden="false" collective="false" import="true" targetId="a05b-1aaf-314c-cbba" type="selectionEntry">
<categoryLinks>
<categoryLink id="86e6-4f3e-6904-f0b6" name="New CategoryLink" hidden="false" targetId="8a8c-ed20-7427-ddff" primary="false"/>
<categoryLink id="b678-94f3-d194-428a" name="New CategoryLink" hidden="false" targetId="220b-7c51-58b3-6ac0" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="450b-1c5e-e369-8ed7" name="Infantry Squad, Imperialis Militia" hidden="false" collective="false" import="true" targetId="c542-ddd4-6b6b-f761" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="d18f-6d15-942c-0ac5" type="equalTo"/>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="3cc2-fa8b-3467-7e3a" type="equalTo"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="3cc2-fa8b-3467-7e3a" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="a204-a0f7-82f2-2511" name="New CategoryLink" hidden="false" targetId="8a8c-ed20-7427-ddff" primary="false"/>
<categoryLink id="b2d4-04cf-370a-9ef1" name="New CategoryLink" hidden="false" targetId="220b-7c51-58b3-6ac0" primary="true"/>
<categoryLink id="c993-cb51-4d06-0312" name="Compulsory Troops:" hidden="false" targetId="2ff1-c144-57a5-03dc" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="e381-4952-92d7-7075" name="Inducted Levy Squad" hidden="true" collective="false" import="true" targetId="7689-6fdc-260e-d041" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="d18f-6d15-942c-0ac5" type="equalTo"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="96b4-3842-f492-d7cb" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="0c31-b855-5b99-9942" name="New CategoryLink" hidden="false" targetId="8a8c-ed20-7427-ddff" primary="false"/>
<categoryLink id="3dca-98fe-0c60-b481" name="New CategoryLink" hidden="false" targetId="220b-7c51-58b3-6ac0" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="90ea-0e8c-c102-189f" name="Inducted Levy Squad" hidden="false" collective="false" import="true" targetId="7689-6fdc-260e-d041" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="d18f-6d15-942c-0ac5" type="equalTo"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="96b4-3842-f492-d7cb" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="729d-bdfc-01d1-f2be" name="New CategoryLink" hidden="false" targetId="8a8c-ed20-7427-ddff" primary="false"/>
<categoryLink id="22a0-c50e-301a-202e" name="New CategoryLink" hidden="false" targetId="220b-7c51-58b3-6ac0" primary="true"/>
<categoryLink id="4562-db31-0368-7208" name="Compulsory Troops:" hidden="false" targetId="2ff1-c144-57a5-03dc" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="7f35-980b-9183-31f6" name="Infantry Squad, Imperialis Militia" hidden="true" collective="false" import="true" targetId="c542-ddd4-6b6b-f761" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="d18f-6d15-942c-0ac5" type="equalTo"/>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="3cc2-fa8b-3467-7e3a" type="equalTo"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="3cc2-fa8b-3467-7e3a" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="209c-eaf9-4bf5-08f9" name="New CategoryLink" hidden="false" targetId="8a8c-ed20-7427-ddff" primary="false"/>
<categoryLink id="74c5-2141-2e22-d705" name="New CategoryLink" hidden="false" targetId="220b-7c51-58b3-6ac0" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="4e4e-f6f4-33e0-f927" name="Grenadier Squad, Imperialis Militia" hidden="true" collective="false" import="true" targetId="f299-898a-b637-0aa2" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="4a06-7162-96b8-e9ec" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="8ada-9fa1-429d-2adc" name="New CategoryLink" hidden="false" targetId="8a8c-ed20-7427-ddff" primary="false"/>
<categoryLink id="c1bc-275b-9ca5-0319" name="New CategoryLink" hidden="false" targetId="220b-7c51-58b3-6ac0" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="b7e3-0ac5-2743-f84d" name="Terrax Pattern Termite Assault Drill" hidden="false" collective="false" import="true" targetId="1b44-8c50-86ae-9a67" type="selectionEntry">
<categoryLinks>
<categoryLink id="2659-6295-0de9-2205" name="New CategoryLink" hidden="false" targetId="85b6-80c2-d782-96bd" primary="true"/>
<categoryLink id="d64e-c9fd-f3e9-bd37" name="Imperialis Cults and Militia" hidden="false" targetId="8a8c-ed20-7427-ddff" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="b7d1-0929-9df6-36cd" name="Carnodon Strike Squadron" hidden="false" collective="false" import="true" targetId="8bbc-b165-3c51-623d" type="selectionEntry">
<categoryLinks>
<categoryLink id="a80e-9616-0f30-3d3a" name="New CategoryLink" hidden="false" targetId="9704-4a93-21b2-be00" primary="true"/>
<categoryLink id="52af-e97e-949f-40fe" name="Imperialis Cults and Militia" hidden="false" targetId="8a8c-ed20-7427-ddff" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="bf29-1737-feca-6c29" name="Militia Land Speeder Squadron" hidden="true" collective="false" import="true" targetId="7617-bc44-a31d-b389" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="c859-6b16-c533-7e97" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="f3cd-acfc-57df-5c62" name="New CategoryLink" hidden="false" targetId="85b6-80c2-d782-96bd" primary="true"/>
<categoryLink id="b82d-d491-5703-f7b0" name="Imperialis Cults and Militia" hidden="false" targetId="8a8c-ed20-7427-ddff" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="4589-2034-b7aa-dad6" name="Militia Mounted Squadron" hidden="true" collective="false" import="true" targetId="222a-94eb-eda4-afe1" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="c859-6b16-c533-7e97" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="a349-063c-33c1-5a34" name="New CategoryLink" hidden="false" targetId="85b6-80c2-d782-96bd" primary="true"/>
<categoryLink id="f563-ead2-3fab-f8b8" name="Imperialis Cults and Militia" hidden="false" targetId="8a8c-ed20-7427-ddff" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="bad2-bba3-abb6-d599" name="Allied Detachment" hidden="false" collective="false" import="true" targetId="c91a-6e83-93ce-54ac" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="eefe-6292-095f-911f" type="min"/>
</constraints>
</entryLink>
</entryLinks>
<sharedSelectionEntries>
<selectionEntry id="1072-a486-548b-2be7" name="Abhuman Helots" publicationId="ca571888--pubN91142" page="73" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="maxInForce" type="max"/>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="maxInRoster" type="max"/>
</constraints>
<rules>
<rule id="8d0f-72d7-9756-f981" name="Abhuman Helots" hidden="false">
<description>All eligible units and models receive an increase of +1 to their Toughness value but also lower their Initiative value by -1 (to a minimum of 1).</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="points" value="35.0"/>
</costs>
</selectionEntry>
<selectionEntry id="93a4-c515-6894-0cda" name="Advanced Weapons" publicationId="ca571888--pubN91142" page="72" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d18f-6d15-942c-0ac5" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<rules>
<rule id="9066-81bf-e6dd-0afc" name="Advanced Weapons" publicationId="ca571888--pubN68042" page="188" hidden="false">
<description>The strength of laspistols, lascarbines, lasrifles, laslocks and rotor cannon used by Grenadier and Platoon Command Cadre squads with this Provenance may be increased by +1 for +20 points per squad (BS Note: Bonus included in profile). If this option is taken, all such squads in the army must be upgraded. In addition, Grenadier and Platoon Command Cadres with this Provenance may take either a Rhino or Land Raider Proteus as their Dedicated Transports, so long as they number 10 models or less, or a Termite Assault Drill, so long as they number 12 models or less. See the Legiones Astartes: Age of Darkness Army List for details and points costs. Efforts should be made to model this upgrade accordingly with suitably ornate or enhanced weapons.</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="points" value="20.0"/>
</costs>
</selectionEntry>
<selectionEntry id="6628-02a8-0a86-1278" name="Alchem-jackers" publicationId="ca571888--pubN91142" page="72" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="maxInForce" type="max"/>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="maxInRoster" type="max"/>
</constraints>
<rules>
<rule id="7602-3b1e-cadd-29ce" name="Alchem-jackers" hidden="false">
<description>All units with this Provenance do not suffer negative modifiers to their Leadership value in the Assault phase and, in addition, if they fail a Morale check owing to casualties in the Shooting phase, they become pinned instead of Falling Back.</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="points" value="35.0"/>
</costs>
</selectionEntry>
<selectionEntry id="2f44-0ed6-d014-be2f" name="Arvus Lighter, Auxilia" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<profiles>
<profile id="6287-e2ab-a241-882d" name="Auxilia Arvus Lighter" publicationId="ca571888--pubN68042" page="202" hidden="false" typeId="56656869636c6523232344415441232323" typeName="Vehicle">
<characteristics>
<characteristic name="BS" typeId="425323232344415441232323">3</characteristic>
<characteristic name="Front" typeId="46726f6e7423232344415441232323">11</characteristic>
<characteristic name="Side" typeId="5369646523232344415441232323">11</characteristic>
<characteristic name="Rear" typeId="5265617223232344415441232323">10</characteristic>
<characteristic name="HP" typeId="485023232344415441232323">3</characteristic>
<characteristic name="Type" typeId="5479706523232344415441232323">Flyer (Hover, Transport)</characteristic>
</characteristics>
</profile>
<profile id="7759-4e5c-6f3c-08c5" name="Auxilia Arvus Lighter (Transport)" publicationId="ca571888--pubN68042" page="202" hidden="false" typeId="307d-047f-ca13-706b" typeName="Transport">
<characteristics>
<characteristic name="Capacity" typeId="8285-4205-b6cd-8473">12</characteristic>
<characteristic name="Fire Points" typeId="b270-a7f9-22b2-3702">None</characteristic>
<characteristic name="Access Points" typeId="d17b-0342-b1dc-b8e7">Access hatch on the rear</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="0b31-831f-5490-ccfc" name="New InfoLink" hidden="false" targetId="d219-2314-4834-c054" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="48b1-5202-bd58-1ea8" name="New CategoryLink" hidden="false" targetId="8a8c-ed20-7427-ddff" primary="false"/>
<categoryLink id="4b6b-4d63-136e-862f" name="New CategoryLink" hidden="false" targetId="03d8-3acd-b7ca-5649" primary="false"/>
<categoryLink id="b989-fd59-0a3d-2800" name="New CategoryLink" hidden="false" targetId="6193-f23d-d93c-2e99" primary="false"/>
<categoryLink id="69c6-f264-1b68-bfe9" name="Flyer:" hidden="false" targetId="cef1-24f3-c9c2-81cc" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="5985-12b4-d6b2-a55f" name="May take any of the following:" hidden="false" collective="false" import="true">
<selectionEntries>
<selectionEntry id="ebf8-c8ba-74aa-8d9e" name="Flare/chaff launcher" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<infoLinks>
<infoLink id="a0bc-b1e2-f3ce-36ee" name="Chaff/Flare Launchers" hidden="false" targetId="c3bb10b0-0ad1-3d7e-5b6e-20b2f57fbaba" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="10.0"/>
</costs>
</selectionEntry>
<selectionEntry id="388c-053b-b5ff-244f" name="Armoured Cockpit" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<infoLinks>
<infoLink id="66c1-a010-bc45-b029" name="Armoured Cockpit" hidden="false" targetId="06710a9d-a2a8-638f-91b0-2af2fb3e95c2" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="15.0"/>
</costs>
</selectionEntry>
<selectionEntry id="0bfd-8552-e0fd-54a8" name="Illum Flares" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<infoLinks>
<infoLink id="a531-cb95-c80d-7aa0" hidden="false" targetId="3751-727c-d4e3-9cef" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="5.0"/>
</costs>
</selectionEntry>
<selectionEntry id="e442-ae2d-e683-83dd" name="Searchlight" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="1.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
<selectionEntryGroup id="406b-99cc-5df7-a639" name="May take one of the following:" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="7c18-8d6c-67ec-d47d" name="Multi-laser" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<infoLinks>
<infoLink id="643a-3bbc-3de0-c5c9" name="Multi-laser" hidden="false" targetId="92be-1bfc-f355-f214" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="10.0"/>
</costs>
</selectionEntry>
<selectionEntry id="e185-451b-a916-d58c" name="Autocannon" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<infoLinks>
<infoLink id="c13f-2b33-51fa-0d05" name="Autocannon" hidden="false" targetId="d55f-eed0-800f-5789" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="10.0"/>
</costs>
</selectionEntry>
<selectionEntry id="7a0c-70ee-18a5-b9a8" name="Lascannon" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<infoLinks>
<infoLink id="9662-fa77-1754-1d07" name="New InfoLink" hidden="false" targetId="1cce-972c-022a-2590" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="20.0"/>
</costs>
</selectionEntry>
<selectionEntry id="42ef-2cc3-4d2b-0c41" name="Twin-linked Multi-laser" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<infoLinks>
<infoLink id="ba11-0ada-b529-5487" name="Twin-Linked Multi-laser" hidden="false" targetId="8010-122f-a8d0-0bf7" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="15.0"/>
</costs>
</selectionEntry>
<selectionEntry id="b6c1-cb35-f11c-2c5a" name="Twin-linked Lascannon" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<infoLinks>
<infoLink id="6409-6c9f-4f10-57bb" name="New InfoLink" hidden="false" targetId="1cce-972c-022a-2590" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="25.0"/>
</costs>
</selectionEntry>
<selectionEntry id="270f-136f-21ba-90f6" name="Twin-linked Autocannon" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<profiles>
<profile id="ef73-3bf7-4081-7fbb" name="Twin-Linked Autocannon" publicationId="ca571888--pubN106502" page="176" hidden="false" typeId="576561706f6e23232344415441232323" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="52616e676523232344415441232323">48"</characteristic>
<characteristic name="Strength" typeId="537472656e67746823232344415441232323">7</characteristic>
<characteristic name="AP" typeId="415023232344415441232323">4</characteristic>
<characteristic name="Type" typeId="5479706523232344415441232323">Heavy 2, Twin-Linked</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="1d7f-d85a-ed1b-fa69" name="Twin-linked" hidden="false" targetId="10a8-8d89-0bec-3e21" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="15.0"/>
</costs>
</selectionEntry>
<selectionEntry id="07e9-41af-85ca-6825" name="Two Hellstrike Missiles" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<infoLinks>
<infoLink id="b9dc-eef5-9363-13ab" hidden="false" targetId="8d1e-6e6e-93c0-4885" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="20.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="75.0"/>
</costs>
</selectionEntry>
<selectionEntry id="46fa-9f49-315a-2044" name="Gorgon Heavy Transporter, Auxilia" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="add" field="category" value="9335-93c1-6af7-feb0">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="7e48-c376-8ffe-8ae7" type="instanceOf"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="7b39-af6b-52e1-b4d7" type="instanceOf"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="089f-7e79-bde1-90dd" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<profiles>
<profile id="0c6f-4e11-46fe-35f9" name="Auxilia Gorgon Heavy Transporter" publicationId="ca571888--pubN68042" page="198" hidden="false" typeId="56656869636c6523232344415441232323" typeName="Vehicle">
<characteristics>
<characteristic name="BS" typeId="425323232344415441232323">3</characteristic>
<characteristic name="Front" typeId="46726f6e7423232344415441232323">14</characteristic>
<characteristic name="Side" typeId="5369646523232344415441232323">14</characteristic>
<characteristic name="Rear" typeId="5265617223232344415441232323">10</characteristic>
<characteristic name="HP" typeId="485023232344415441232323">9</characteristic>
<characteristic name="Type" typeId="5479706523232344415441232323">Super-heavy Vehicle</characteristic>
</characteristics>
</profile>
<profile id="db8b-e8af-2466-da5e" name="Gorgon Heavy Transporter, Auxilia" hidden="false" typeId="307d-047f-ca13-706b" typeName="Transport">
<characteristics>
<characteristic name="Capacity" typeId="8285-4205-b6cd-8473">40</characteristic>
<characteristic name="Fire Points" typeId="b270-a7f9-22b2-3702">Although it appears Open-topped, passengers may not fire out of the Auxilia Gorgon Heavy Transporter</characteristic>
<characteristic name="Access Points" typeId="d17b-0342-b1dc-b8e7">Although it appears Open-topped, passengers may only embark and disembark from the front ramp access hatch. Up to two units may embark or disembark per turn.</characteristic>
</characteristics>
</profile>
</profiles>
<rules>
<rule id="9590-7442-e99f-755b" name="Heavy Armoured Prow" publicationId="ca571888--pubN68042" page="198" hidden="false">
<description>The Auxilia Gorgon has a 5++ Invulnerable save from attacks that strike the Front armour, increasing to a 4++ against attacks with the Blast and Template type.</description>
</rule>
<rule id="0ee8-f432-4e8b-83be" name="Reduced Blast" publicationId="ca571888--pubN68042" page="198" hidden="false">
<description>If the Gorgon is destroyed, rolls on the Super-heavy catastrophic damage table receive a -2 modifier (min of 1).</description>
</rule>
</rules>
<categoryLinks>
<categoryLink id="d58b-ef61-875a-07d4" name="New CategoryLink" hidden="false" targetId="8a8c-ed20-7427-ddff" primary="false"/>
<categoryLink id="0a60-fb9a-c943-1634" name="Super-Heavy Vehicle:" hidden="false" targetId="b485-d6f7-226e-90cb" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="bf60-73d2-1b7a-3903" name="May be given the following upgrades:" hidden="false" collective="false" import="true">
<selectionEntries>
<selectionEntry id="4055-59fe-f199-12ec" name="Hunter Killer Missile" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<infoLinks>
<infoLink id="1744-d33f-8ffd-7041" name="Hunter-killer Missile" hidden="false" targetId="a117-de7b-6200-3076" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="5.0"/>
</costs>
</selectionEntry>
<selectionEntry id="a9e3-bd36-5d3f-4b04" name="Armoured Ceramite" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<infoLinks>
<infoLink id="cad6-3a34-90c1-522d" name="Armoured Ceramite" hidden="false" targetId="2e87b8ca-7cd1-78b9-2116-246015e7935e" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="25.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
<selectionEntryGroup id="e549-3648-0367-cd7c" name="May replace both its twin-linked autocannons with:" hidden="false" collective="false" import="true" defaultSelectionEntryId="08f3-ccd9-24b8-7ed5">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="62dc-d748-38bb-1765" type="min"/>
</constraints>
<selectionEntries>
<selectionEntry id="489f-ea4a-9b34-625f" name="Two twin-linked multi-lasers" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<infoLinks>
<infoLink id="0a64-4d28-1008-f64a" name="Twin-linked" hidden="false" targetId="10a8-8d89-0bec-3e21" type="rule"/>
<infoLink id="838e-dcad-ba8f-b41c" name="Twin-Linked Multi-laser" hidden="false" targetId="8010-122f-a8d0-0bf7" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="ddf9-543c-f8a6-7e21" name="Two twin-linked lascannons" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<infoLinks>
<infoLink id="b19c-0593-51a1-e806" name="Twin-linked" hidden="false" targetId="10a8-8d89-0bec-3e21" type="rule"/>
<infoLink id="ab86-21fc-65c5-b3c1" name="Lascannon" hidden="false" targetId="1cce-972c-022a-2590" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="20.0"/>
</costs>
</selectionEntry>
<selectionEntry id="08f3-ccd9-24b8-7ed5" name="Two Twin-Linked Autocannons" 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="c578-48fc-ae20-a091" type="max"/>
</constraints>
<infoLinks>
<infoLink id="a179-5299-81d0-ae6c" name="Twin-linked" hidden="false" targetId="10a8-8d89-0bec-3e21" type="rule"/>
<infoLink id="de38-b8fc-52bc-cefd" name="Autocannon" hidden="false" targetId="d55f-eed0-800f-5789" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
<selectionEntryGroup id="3117-26fc-d7ce-e276" name="May replace the Gorgon mortar battery with two forward and two rearward sponson-mounted weapons:" hidden="false" collective="false" import="true" defaultSelectionEntryId="7f1e-0d63-5d60-3cba">
<modifiers>
<modifier type="set" field="maxSelections" value="1">
<conditions>
<condition field="selections" scope="46fa-9f49-315a-2044" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="7f1e-0d63-5d60-3cba" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="4.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9bcc-63e4-5a2f-7b77" type="min"/>
</constraints>
<selectionEntries>
<selectionEntry id="4c42-8bc6-c7d4-f16f" name="Autocannon" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<infoLinks>
<infoLink id="70ba-399f-d64f-f527" name="Autocannon" hidden="false" targetId="d55f-eed0-800f-5789" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="10.0"/>
</costs>
</selectionEntry>
<selectionEntry id="e2fe-d08e-69ac-9a9c" name="Heavy Flamers" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<infoLinks>
<infoLink id="2399-c815-e8b9-2348" name="Heavy Flamer" hidden="false" targetId="c554-a05e-607c-5831" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="cd02-3bca-326b-d101" name="Heavy Bolters" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<infoLinks>
<infoLink id="ab5c-0949-e27b-422e" name="Heavy Bolter" hidden="false" targetId="271e-6286-86cc-06dd" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="ad62-337a-05fc-3e15" name="Multi-lasers" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<infoLinks>
<infoLink id="fd05-ba8f-07f7-217c" name="Multi-laser" hidden="false" targetId="92be-1bfc-f355-f214" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="10.0"/>
</costs>
</selectionEntry>
<selectionEntry id="22c0-23fb-d791-9c51" name="Lascannon" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<infoLinks>
<infoLink id="1cf0-3533-800b-3b77" name="Lascannon" hidden="false" targetId="1cce-972c-022a-2590" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="20.0"/>
</costs>
</selectionEntry>
<selectionEntry id="7f1e-0d63-5d60-3cba" name="Gorgon Mortar Battery" 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="ebce-8cec-e722-69cb" type="max"/>
</constraints>
<profiles>
<profile id="80be-bcff-3ca5-c8b1" name="Gorgon Mortar Battery" hidden="false" typeId="576561706f6e23232344415441232323" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="52616e676523232344415441232323">12"-24"</characteristic>
<characteristic name="Strength" typeId="537472656e67746823232344415441232323">5</characteristic>
<characteristic name="AP" typeId="415023232344415441232323">5</characteristic>
<characteristic name="Type" typeId="5479706523232344415441232323">Heavy 4, Blast(3"), Barrage, Pinning, One Use</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="275.0"/>
</costs>
</selectionEntry>
<selectionEntry id="e27e-c832-69b2-1872" name="Blade and Fury" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="8836-1dde-d860-bd88" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<rules>
<rule id="b61c-3f9c-4486-eb71" name="Blade and Fury" publicationId="ca571888--pubN68042" page="189" hidden="false">
<description>Unit gains +1 Attack.</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="points" value="25.0"/>
</costs>
</selectionEntry>
<selectionEntry id="c9ee-665f-aaee-6ece" name="Cult Horde" publicationId="ca571888--pubN91142" page="73 (FAQ July 18 update)" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="maxInForce" value="0.0">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d18f-6d15-942c-0ac5" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="maxInForce" type="max"/>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="maxInRoster" type="max"/>
</constraints>
<rules>
<rule id="4e3d-b549-b1f9-29ba" name="Cult Horde" hidden="false">
<description>All eligible units and models with this Provenance gain Hatred and Stubborn special rules. However, they must always charge an enemy if they are able, and may even charge if they have fired weapons in the Shooting phase which would make them ineligible to do so (counting as making a disordered charge in this case). Affected models and units with this Provenance may only make Snap Shots with their shooting attacks and cannot voluntarily Go to Ground. Grenadier squads may not be taken in an army which uses this Provenance and this Provenance may not be used in conjunction with the Survivors of the Dark Age Provenance.</description>
</rule>
</rules>
<infoLinks>
<infoLink id="3712-0b2b-48de-f2ba" name="Hatred" hidden="false" targetId="7c6c-4e25-e4d4-9728" type="rule"/>
<infoLink id="3314-b4d5-bec4-260f" name="Stubborn" hidden="false" targetId="7be5-30af-1a02-0a89" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="35.0"/>
</costs>
</selectionEntry>
<selectionEntry id="3e9e-38b2-3633-713a" name="Cyber-augmetics" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="maxInForce" value="0.0">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="a77a-bcf8-90fd-d9e5" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="maxInForce" type="max"/>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="maxInRoster" type="max"/>
</constraints>
<rules>
<rule id="1d63-3437-f1af-0c63" name="Cyber-augmetics" hidden="false">
<description>All eligible units and models receive an invulnerable save of 6+ (or may improve an existing invulnerable save by +1 to a maximum of 3+). Units and models with this Provenance however must reduce any Run and Sweeping Advance rolls they make by -1. This Provenance may not be chosen in conjunction with the Gene-crafted Provenance</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="points" value="35.0"/>
</costs>
</selectionEntry>
<selectionEntry id="debc-cc0e-8478-6cb5" name="Discipline Collars" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="1072-a486-548b-2be7" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<infoLinks>
<infoLink id="807e-dc79-18eb-5a6b" hidden="false" targetId="b1d7-7a56-cb11-5749" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="20.0"/>
</costs>
</selectionEntry>
<selectionEntry id="8836-1dde-d860-bd88" name="Feral Warriors" publicationId="ca571888--pubN91142" page="73" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="maxInForce" type="max"/>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="maxInRoster" type="max"/>
</constraints>
<rules>
<rule id="cf7d-6702-f032-9b62" name="Feral Warriors" hidden="false">
<description>All eligible units and models receive a +1 bonus to their WS (to a maximum of 4) – Ogryns instead receive +1 Attack. A detachment with this Provenance cannot have more units with the Vehicle type in total than it does those with the Infantry type.</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="points" value="35.0"/>
</costs>
</selectionEntry>
<selectionEntry id="2512-6bcd-7038-84bd" name="Frenzon Dispensers" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="6628-02a8-0a86-1278" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<rules>
<rule id="6310-973a-8cf7-2051" name="Frenzon Dispensers" publicationId="ca571888--pubN68042" page="188" hidden="false">
<description>Unit gains Rage and must make Sweeping Advances if able.</description>
</rule>
</rules>
<infoLinks>
<infoLink id="fc19-3fde-3350-2226" name="Rage" hidden="false" targetId="988c-d4d0-9418-1165" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="25.0"/>
</costs>
</selectionEntry>
<selectionEntry id="a77a-bcf8-90fd-d9e5" name="Gene-crafted" publicationId="ca571888--pubN91142" page="72" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="maxInForce" value="0">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="3e9e-38b2-3633-713a" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="maxInForce" type="max"/>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="maxInRoster" type="max"/>
</constraints>
<rules>
<rule id="96ed-605e-e457-8aaf" name="Gene-crafted" hidden="false">
<description>All eligible units and models receive +1 to their Strength and Initiative values (to a maximum of 4, or 6 in the case of an Ogryn’s Strength). Units and models with this Provenance may not benefit from the Feel No Pain special rule from any source (such as Auxilia Medicae Orderlies, etc).</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="points" value="100.0"/>
</costs>
</selectionEntry>
<selectionEntry id="3738-7adf-ea3d-8a7e" name="Land Raider Proteus" publicationId="ca571888--pubN80998" page="0" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="add" field="category" value="9335-93c1-6af7-feb0">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="7e48-c376-8ffe-8ae7" type="instanceOf"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="7b39-af6b-52e1-b4d7" type="instanceOf"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="089f-7e79-bde1-90dd" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<profiles>
<profile id="023e-84d8-f3ba-eae3" name="Land Raider Proteus" publicationId="ca571888--pubN66500" page="218" hidden="false" typeId="56656869636c6523232344415441232323" typeName="Vehicle">
<characteristics>
<characteristic name="BS" typeId="425323232344415441232323">4</characteristic>
<characteristic name="Front" typeId="46726f6e7423232344415441232323">14</characteristic>
<characteristic name="Side" typeId="5369646523232344415441232323">14</characteristic>
<characteristic name="Rear" typeId="5265617223232344415441232323">14</characteristic>
<characteristic name="HP" typeId="485023232344415441232323">4</characteristic>
<characteristic name="Type" typeId="5479706523232344415441232323">Tank</characteristic>
</characteristics>
</profile>
<profile id="5749-8581-2678-3b9a" name="Land Raider Proteus (Transport)" publicationId="ca571888--pubN80998" page="52" hidden="false" typeId="307d-047f-ca13-706b" typeName="Transport">
<modifiers>
<modifier type="set" field="8285-4205-b6cd-8473" value="8">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="cb97-4e0b-bc32-987b" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="Capacity" typeId="8285-4205-b6cd-8473">10.</characteristic>
<characteristic name="Fire Points" typeId="b270-a7f9-22b2-3702">None.</characteristic>
<characteristic name="Access Points" typeId="d17b-0342-b1dc-b8e7">2. One on each side of the hull.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="abcb-58eb-63ae-4c6b" name="Machine Spirit" hidden="false" targetId="1578-d22a-060c-4700" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="c994-87da-b9bc-3bed" name="New CategoryLink" hidden="false" targetId="6193-f23d-d93c-2e99" primary="false"/>
<categoryLink id="b079-5854-e467-7b95" name="New CategoryLink" hidden="false" targetId="03d8-3acd-b7ca-5649" primary="false"/>
<categoryLink id="5d4d-aeaf-552f-d8b9" name="Dedicated Transport:" hidden="false" targetId="0615-bc0a-fe41-6e0f" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="cb97-4e0b-bc32-987b" name="Explorator Augury Web" page="0" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<profiles>
<profile id="a977-8028-470e-afbe" name="Explorator Augury Web" publicationId="ca571888--pubN66500" page="219" hidden="false" typeId="57617267656172204974656d23232344415441232323" typeName="Wargear Item">
<characteristics>
<characteristic name="Description" typeId="4465736372697074696f6e23232344415441232323">At the start of the controlling player's turn, prior to any reserve rolls, declare which mode is being used - it remains until their next player turn. Disruption Mode: the oppsoing player suffers -1 to their reserve rolls. Relay Mode: Owning player's reserve rolls may be re-rolled, whether successful or not. Reduces transport capacity to 8. </characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="04f2-0385-c4d2-183d" name="New InfoLink" hidden="false" targetId="9b30-1da3-eb8d-ce7a" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="50.0"/>
</costs>
</selectionEntry>
<selectionEntry id="6db7-b5b9-2204-f31c" name="Twin-linked Lascannon Sponsons" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="0c0e-dee5-41c6-62d4" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="a3b8-93ed-704f-4309" type="max"/>
</constraints>
<infoLinks>
<infoLink id="0990-708c-00f9-1d37" name="New InfoLink" hidden="false" targetId="1cce-972c-022a-2590" type="profile"/>
<infoLink id="079d-630c-77c8-1571" name="Twin-linked" hidden="false" targetId="10a8-8d89-0bec-3e21" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="f2a6-c441-7d2d-76da" name="May take a Pintle-Mounted Weapon:" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="ef74-0a8e-96db-5a83" name="Twin-Linked Bolter" page="0" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="5.0"/>
</costs>
</selectionEntry>
<selectionEntry id="b954-32fc-4615-b6ed" name="Combi-Weapon" page="0" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="5.0"/>
</costs>
</selectionEntry>
<selectionEntry id="7716-0dbe-9bb6-d68e" name="Heavy Bolter" page="0" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>