generated from BSData/TemplateDataRepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Codex - Ultramarines.cat
5839 lines (5829 loc) · 416 KB
/
Codex - Ultramarines.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="138e-c671-3180-f615" name="Codex - Ultramarines" revision="18" battleScribeVersion="2.03" authorName="Boff" authorContact="https://github.com/BSData/wh40k-2nd-edition" authorUrl="https://github.com/BSData/wh40k-2nd-edition" library="false" gameSystemId="9ea8-c89d-9104-ed03" gameSystemRevision="24" xmlns="http://www.battlescribe.net/schema/catalogueSchema" type="catalogue">
<readme>Ultramarines Codex</readme>
<categoryEntries>
<categoryEntry id="8be3-6d17-d7d3-faa0" name="Characters" hidden="false"/>
<categoryEntry id="3017-162b-c153-6519" name="Squads" hidden="false"/>
<categoryEntry id="2ce9-bd7e-1b19-0211" name="Support" hidden="false"/>
</categoryEntries>
<forceEntries>
<forceEntry id="4e7e-9512-b2cc-1777" name="Ultramarines" hidden="false">
<categoryLinks>
<categoryLink id="2582-0bc8-11cf-7525" name="Characters" hidden="false" targetId="8be3-6d17-d7d3-faa0" primary="false">
<constraints>
<constraint field="points" scope="parent" value="50" percentValue="true" shared="true" includeChildSelections="false" includeChildForces="false" id="ece7-8c0b-82a5-da1f" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="2940-7d20-9161-51b2" name="Squads" hidden="false" targetId="3017-162b-c153-6519" primary="false">
<constraints>
<constraint field="points" scope="parent" value="25" percentValue="true" shared="true" includeChildSelections="false" includeChildForces="false" id="ac3d-637c-7e97-b104" type="min"/>
</constraints>
</categoryLink>
<categoryLink id="5855-5fc8-484c-f0fd" name="Support" hidden="false" targetId="2ce9-bd7e-1b19-0211" primary="false">
<constraints>
<constraint field="points" scope="parent" value="50" percentValue="true" shared="true" includeChildSelections="false" includeChildForces="false" id="25d5-5f16-f434-7dc6" type="max"/>
</constraints>
</categoryLink>
</categoryLinks>
</forceEntry>
<forceEntry id="bb80-dc7e-117d-28d5" name="Ultramarines - Ally List" hidden="false">
<categoryLinks>
<categoryLink id="40fd-3c18-e095-5ed7" name="Allies" hidden="false" targetId="6741-c4c6-274e-36cf" primary="false">
<modifiers>
<modifier type="set" field="f52b-cc76-583d-abd2" value="50">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b686-76f8-6874-e3e9" type="atLeast"/>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="6186-0c50-3540-dc37" type="atLeast"/>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9fec-6f81-5e76-3592" type="atLeast"/>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="261d-dcfd-16cf-3caf" type="atLeast"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="set" field="f52b-cc76-583d-abd2" value="25">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ef00-5e3b-a59a-902f" type="atLeast"/>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="a949-140a-176f-6700" type="atLeast"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="points" scope="roster" value="0" percentValue="true" shared="true" includeChildSelections="false" includeChildForces="false" id="f52b-cc76-583d-abd2" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="54b8-24c0-1103-3ca8" name="Support" hidden="false" targetId="2ce9-bd7e-1b19-0211" primary="false">
<modifiers>
<modifier type="set" field="83a9-cd51-4052-715b" value="50">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b686-76f8-6874-e3e9" type="atLeast"/>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="6186-0c50-3540-dc37" type="atLeast"/>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9fec-6f81-5e76-3592" type="atLeast"/>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="261d-dcfd-16cf-3caf" type="atLeast"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="points" scope="roster" value="0" percentValue="true" shared="true" includeChildSelections="false" includeChildForces="false" id="83a9-cd51-4052-715b" type="max"/>
</constraints>
</categoryLink>
</categoryLinks>
</forceEntry>
</forceEntries>
<entryLinks>
<entryLink id="e1eb-4981-2689-1fc2" name="Space Marine Captain" hidden="false" collective="false" import="true" targetId="e664-c21f-4492-a7dc" type="selectionEntry"/>
<entryLink id="cc3a-a216-fc10-2c17" name="Terminator Captain" hidden="false" collective="false" import="true" targetId="381f-f866-3d8a-4e03" type="selectionEntry"/>
<entryLink id="4028-1f96-bf7c-4dd5" name="Company Standard" hidden="false" collective="false" import="true" targetId="dd11-eede-074e-7b62" type="selectionEntry"/>
<entryLink id="5b77-7958-e17c-c5cc" name="Chaplain" hidden="false" collective="false" import="true" targetId="54de-be57-4ec3-3913" type="selectionEntry"/>
<entryLink id="caa2-825b-c930-880d" name="Librarian" hidden="false" collective="false" import="true" targetId="4f11-67fa-3adf-e0e1" type="selectionEntry"/>
<entryLink id="0782-1c4c-04a4-e7da" name="Apothecary" hidden="false" collective="false" import="true" targetId="d503-8428-85ee-d4d6" type="selectionEntry"/>
<entryLink id="37e9-66a3-96b3-80ed" name="Techmarine" hidden="false" collective="false" import="true" targetId="ee10-1b3b-ecac-e1e7" type="selectionEntry"/>
<entryLink id="bce2-9dc4-98dc-b27b" name="Tactical Squad" hidden="false" collective="false" import="true" targetId="e300-75bb-3598-67fd" type="selectionEntry"/>
<entryLink id="fad1-8ce2-00ac-a5ac" name="Terminator Squad" hidden="false" collective="false" import="true" targetId="cddd-3cb1-aeb7-7edb" type="selectionEntry"/>
<entryLink id="5a40-e578-67a0-559d" name="Veteran Space Marine Squad" hidden="false" collective="false" import="true" targetId="c3f2-31fd-d3f0-c0f3" type="selectionEntry"/>
<entryLink id="7f79-e45e-796f-bd65" name="Assault Squad" hidden="false" collective="false" import="true" targetId="8d0e-3b8b-18d7-f3d9" type="selectionEntry"/>
<entryLink id="7049-3c96-bb90-ffb2" name="Scout Squad" hidden="false" collective="false" import="true" targetId="6e2c-c4c7-fac2-94e8" type="selectionEntry"/>
<entryLink id="1f58-136a-d4c3-417a" name="Devastator Squad" hidden="false" collective="false" import="true" targetId="65b2-1949-1b47-113e" type="selectionEntry"/>
<entryLink id="7474-68bd-8271-bb55" name="Bike Squadron" hidden="false" collective="false" import="true" targetId="ed88-0736-5a4c-2795" type="selectionEntry"/>
<entryLink id="1674-25b6-2ff8-5f1e" name="Space Marine Dreadnought" hidden="false" collective="false" import="true" targetId="beec-c8b6-3175-e050" type="selectionEntry"/>
<entryLink id="b663-3da1-82aa-a0f9" name="Tarantula" hidden="false" collective="false" import="true" targetId="4165-53ae-0eed-f9bd" type="selectionEntry"/>
<entryLink id="8f76-aea0-97b5-5c49" name="Rapier Laser Destroyer" hidden="false" collective="false" import="true" targetId="7cef-91cc-d553-c1af" type="selectionEntry"/>
<entryLink id="6102-ed83-8bac-9abc" name="Space Marine Whirlwind" hidden="false" collective="false" import="true" targetId="9691-6ae2-65f7-ba31" type="selectionEntry"/>
<entryLink id="5733-4daf-8199-0286" name="Space Marine Land Raider" hidden="false" collective="false" import="true" targetId="aeb6-ea8f-40f7-a5ba" type="selectionEntry"/>
<entryLink id="70e5-b789-a855-189b" name="Space Marine Predator" hidden="false" collective="false" import="true" targetId="43cb-628a-f96c-84ad" type="selectionEntry"/>
<entryLink id="7379-1451-ec38-eeaf" name="Space Marine Rhino" hidden="false" collective="false" import="true" targetId="00cb-45a0-d102-67c7" type="selectionEntry"/>
<entryLink id="ac2d-974b-df42-8497" name="Space Marine Attack Bike" hidden="false" collective="false" import="true" targetId="f5af-7608-d010-83e6" type="selectionEntry"/>
<entryLink id="14f3-e204-bf99-eb06" name="Space Marine Razorback" hidden="false" collective="false" import="true" targetId="9ecc-e264-2619-a029" type="selectionEntry"/>
<entryLink id="d4cd-764a-14f3-4d1f" name="Space Marine Land Speeder" hidden="false" collective="false" import="true" targetId="4769-a098-b8e1-e70b" type="selectionEntry"/>
<entryLink id="7111-161d-b342-ccd1" name="Chief Librarian Tigurius" hidden="false" collective="false" import="true" targetId="145c-21a0-1469-dae3" type="selectionEntry"/>
<entryLink id="3856-a54a-63c5-9d0e" name="Marneus Calgar Master of the Ultramarines" hidden="false" collective="false" import="true" targetId="a1dd-ee6c-ab43-cd6e" type="selectionEntry"/>
<entryLink id="28f3-e3e3-bc82-defc" name="Ultramarines Chaplain Cassius" hidden="false" collective="false" import="true" targetId="4e2b-02c3-08b1-cb32" type="selectionEntry"/>
<entryLink id="abd6-929c-9265-5f30" name="Ancient Helveticus, Bearer of the Battle Standard of Macragge" hidden="false" collective="false" import="true" targetId="6029-55f6-5155-dcdc" type="selectionEntry"/>
<entryLink id="4590-992c-ef24-1fe7" name="Captain Invictus of the Ultramarines First Company" hidden="false" collective="false" import="true" targetId="ef78-2d4e-0226-4956" type="selectionEntry"/>
<entryLink id="770b-0f6c-3fc5-36e7" name="Legion of the Damned" hidden="false" collective="false" import="true" targetId="f319-a6b6-5a68-93de" type="selectionEntry"/>
<entryLink id="cb70-5453-cea8-0d26" name="Space Marine Combat Squad" hidden="false" collective="false" import="true" targetId="0255-ad3f-50ec-4514" type="selectionEntry"/>
</entryLinks>
<rules>
<rule id="957a-483e-3a28-6e67" name="Break Tests" publicationId="4590-6ba9-5482-a1fa" page="49" hidden="false">
<description>To reflect their strong morale and determination Space Marines are not subject to the normal rules for broken troops. Instead the following rules apply:
Space Marine units take Break tests as normal. However, if they fail their test they are not
broken and forced to flee, like other troops, but are shaken instead. Shaken troops may never move towards the enemy but may shoot, fight hand-to-hand combat and use psychic powers normally. Shaken troops may move away from the enemy if you wish, but do not have to do so, and individual models may pivot on the spot to face an enemy. If surrounded and therefore unable to move without approaching an enemy, they cannot move at all except to pivot on the spot.
lf shaken Space Marines are fighting in hand-to-hand combat then they may not use follow-up moves to engage other enemy models. The exception is that they may use a follow-up move to fight an enemy model which is already engaged against another Space Marine (the loyalty of a Space Marine for his brothers outweighs his trepidation). Shaken Space Marines may use a follow-up move to get behind cover even if this means moving closer to an enemy.
Once it has become shaken a Space Marine squad may recover by taking and passing a Rally test at the end of its turn. The usual conditions apply: ie, the squad may not attempt to rally if it is not behind cover or if the closest friendly models are broken.
If a Space Marine squad is shaken and fails a further Break test then it is broken and forced to flee exactly like any other troops. The advantage of the Space Marines is that they can effectively fail two Break tests before they are broken, representing their steadfastness and courage in the face of death. Once broken, a Space Marine squad may rally like any other unit, and if successful is restored to normal fighting condition in the same way.</description>
</rule>
<rule id="4c73-8d8b-c14a-b338" name="Rapid Fire" publicationId="4590-6ba9-5482-a1fa" page="49" hidden="false">
<description>If a Space Marine doesn't move at all and is not in close combat, they can use Rapid Fire. Each Space Marine may fire their storm bolter, boltgun, or bolt pistol twice instead of once as normal. Other members in the squad using different weapons may still fire normally.</description>
</rule>
</rules>
<sharedSelectionEntries>
<selectionEntry id="e664-c21f-4492-a7dc" name="Space Marine Captain" publicationId="4590-6ba9-5482-a1fa" page="63" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="set-primary" field="category" value="6741-c4c6-274e-36cf">
<conditions>
<condition field="forces" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="bb80-dc7e-117d-28d5" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5721-3574-fdd2-92dc" type="max"/>
</constraints>
<infoLinks>
<infoLink id="f9cf-b065-2ef3-121d" name="Space Marine Captain" hidden="false" targetId="a062-3411-7dbb-6498" type="rule"/>
<infoLink id="202b-c22a-7fa4-a389" name="Space Marine Captain" hidden="false" targetId="cb12-f2d1-4d04-b663" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="b906-fc4b-6ca2-c186" name="Characters" hidden="false" targetId="8be3-6d17-d7d3-faa0" primary="true"/>
<categoryLink id="7baa-fafc-9bc1-eee0" name="Ultramarines" hidden="false" targetId="6186-0c50-3540-dc37" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="d287-d3e0-7898-3151" name="Armour" hidden="false" collective="false" import="true" defaultSelectionEntryId="dbad-f8f5-3675-e380">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8b9c-095b-1952-9bec" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="307f-3c0c-5269-4f44" type="min"/>
</constraints>
<entryLinks>
<entryLink id="dbad-f8f5-3675-e380" name="Power Armour" hidden="false" collective="false" import="true" targetId="ccac-ef01-d557-349f" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="065d-de4e-7305-e618" type="max"/>
</constraints>
<infoLinks>
<infoLink id="3858-cdaa-a8ae-f78d" name="Frag Grenade" hidden="false" targetId="122b-b17a-4e87-5994" type="profile"/>
<infoLink id="1f3a-4fb8-88c1-1e4a" name="Bolt Pistol" hidden="false" targetId="3741-3592-b694-79b4" type="profile"/>
</infoLinks>
</entryLink>
<entryLink id="6f5b-2a19-7eab-a688" name="Terminator Loadouts" hidden="false" collective="false" import="true" targetId="18f8-d102-5ac5-4e6c" type="selectionEntryGroup">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8232-c82f-0c41-2bc6" type="max"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="f6e3-9541-a1a1-46f2" name="Weapons" hidden="false" collective="false" import="true">
<entryLinks>
<entryLink id="c373-7f18-dc19-46ad" name="Assault Weapons" hidden="false" collective="false" import="true" targetId="cd0a-6a8d-1f46-a6db" type="selectionEntryGroup">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="18f8-d102-5ac5-4e6c" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</entryLink>
<entryLink id="489b-1e73-8c0d-be23" name="Special Weapons" hidden="false" collective="false" import="true" targetId="717e-c382-eaca-bd29" type="selectionEntryGroup">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="18f8-d102-5ac5-4e6c" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="18a2-29a8-adc4-2f58" type="max"/>
</constraints>
</entryLink>
<entryLink id="ac1a-42a4-aadf-1155" name="Grenades" hidden="false" collective="false" import="true" targetId="e531-ba57-c468-3f1f" type="selectionEntryGroup">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="18f8-d102-5ac5-4e6c" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="4a6a-2ba5-e485-a412" name="Space Marine Bike" hidden="false" collective="false" import="true" targetId="1b22-fc76-8ed0-5765" type="selectionEntry"/>
<entryLink id="27ad-e18b-ce3c-34c1" name="Army Commander" hidden="false" collective="false" import="true" targetId="4a27-f4c3-792f-0d8a" type="selectionEntry"/>
<entryLink id="7ab1-75fa-4f34-8403" name="Wargear Cards" hidden="false" collective="false" import="true" targetId="578d-7254-ab21-8b13" type="selectionEntryGroup">
<constraints>
<constraint field="selections" scope="parent" value="4" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="87e1-3760-0162-9e1f" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="96"/>
</costs>
</selectionEntry>
<selectionEntry id="1b22-fc76-8ed0-5765" name="Space Marine Bike" publicationId="4590-6ba9-5482-a1fa" page="63" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="true" childId="18f8-d102-5ac5-4e6c" type="equalTo"/>
<condition field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="true" childId="5150-28df-c4a9-c2ca" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="89e3-d901-e580-7006" type="max"/>
</constraints>
<infoLinks>
<infoLink id="46a1-9964-8507-f1e8" name="Space Marine Bike Damage Table" hidden="false" targetId="94d9-fb22-095a-edae" type="rule"/>
<infoLink id="e377-819e-b915-b19e" name="Space Marine Bike" hidden="false" targetId="1c64-2eb5-83c1-06f7" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="a260-187a-4e5a-3118" name="Squads" hidden="false" targetId="3017-162b-c153-6519" primary="true"/>
<categoryLink id="406a-9654-7e88-f22e" name="Ultramarines" hidden="false" targetId="6186-0c50-3540-dc37" primary="false"/>
<categoryLink id="e47c-e309-2e07-0ebf" name="Skimmer/Bike" hidden="false" targetId="9187-ca83-9433-d2c7" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="7728-28bb-1e48-e0b5" name="Auto-Launcher" hidden="false" collective="false" import="true" targetId="222b-075f-d34c-7093" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="eec8-9373-6245-78d8" type="max"/>
</constraints>
<entryLinks>
<entryLink id="a10d-0b8e-135b-146f" name="Frag Grenade" hidden="false" collective="false" import="true" targetId="cc7b-eac9-7cc5-a156" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7ac5-935d-8ecf-59c0" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ffcf-39e1-b65d-f6c2" type="max"/>
</constraints>
</entryLink>
<entryLink id="cac2-4efd-7c8b-c631" name="Krak Grenade" hidden="false" collective="false" import="true" targetId="7ac5-935d-8ecf-59c0" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="cc7b-eac9-7cc5-a156" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="abbb-62ad-65b1-6106" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="5"/>
</costs>
</entryLink>
<entryLink id="18e4-9575-01ce-e90f" name="Targeter" hidden="false" collective="false" import="true" targetId="a17e-632e-5e7d-1882" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="be30-e37c-36ea-3c46" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f653-3fe3-14af-bc7e" type="max"/>
</constraints>
</entryLink>
<entryLink id="02fc-f2c4-ffa9-df6f" name="Twin Linked Bolters" hidden="false" collective="false" import="true" targetId="dd32-5d68-e4bc-9dff" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8d80-7c4c-4825-f2a3" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="73be-293c-accb-0c42" type="min"/>
</constraints>
</entryLink>
<entryLink id="838b-388a-bbb6-7fe0" name="Vehicle Wargear Cards" hidden="false" collective="false" import="true" targetId="fcf7-39a4-11f3-7097" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="20"/>
</costs>
</selectionEntry>
<selectionEntry id="83c6-0497-f2a5-786c" name="Terminator Armour: Lightning Claws" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9ef4-cc7d-984b-fbb5" type="max"/>
</constraints>
<entryLinks>
<entryLink id="5533-77fc-e924-1476" name="Terminator Armour" hidden="false" collective="false" import="true" targetId="9d43-a036-5991-2470" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6579-c3b0-54f9-1860" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2e3b-f61f-e373-8b07" type="max"/>
</constraints>
</entryLink>
<entryLink id="7f4c-afe9-f2f1-cf17" name="Lightning Claws" hidden="false" collective="false" import="true" targetId="ff45-72d3-781e-6006" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1d1a-cfb4-5c72-386d" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e301-2e34-e863-45f7" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="49"/>
</costs>
</selectionEntry>
<selectionEntry id="5190-2497-81f6-91ee" name="Terminator Armour: Storm Bolter & Chainfist" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cdc4-ee84-b682-77ac" type="max"/>
</constraints>
<entryLinks>
<entryLink id="1160-8651-9fa4-6775" name="Terminator Armour" hidden="false" collective="false" import="true" targetId="9d43-a036-5991-2470" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d943-a6c4-3263-f59f" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="eec3-0f8f-2f28-6a2b" type="max"/>
</constraints>
</entryLink>
<entryLink id="5354-f96f-36a5-ac14" name="Storm Bolter" hidden="false" collective="false" import="true" targetId="8b0c-9093-dc69-c9e8" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d3f5-21f6-3aad-06f4" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3aa0-deb9-07ee-5df6" type="max"/>
</constraints>
</entryLink>
<entryLink id="f93b-f124-aada-bb1a" name="Chainfist" hidden="false" collective="false" import="true" targetId="3913-2299-4778-933b" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a9cb-28c0-269e-d92d" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6501-5ec8-4dbb-c8bc" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="51"/>
</costs>
</selectionEntry>
<selectionEntry id="68e7-ac3b-8038-57ae" name="Terminator Armour: Storm Bolter & Power Fist" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="27fb-7114-e044-97c1" type="max"/>
</constraints>
<entryLinks>
<entryLink id="d324-70aa-f364-1cb9" name="Terminator Armour" hidden="false" collective="false" import="true" targetId="9d43-a036-5991-2470" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2165-d9fa-286f-1f5a" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3d16-0bf5-e190-20d4" type="max"/>
</constraints>
</entryLink>
<entryLink id="b9bb-9af9-3a18-6b62" name="Storm Bolter" hidden="false" collective="false" import="true" targetId="8b0c-9093-dc69-c9e8" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8df9-f6fe-1985-8a8b" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="aca6-ce68-5512-b021" type="max"/>
</constraints>
</entryLink>
<entryLink id="ccc9-399f-be86-c50e" name="Power Fist" hidden="false" collective="false" import="true" targetId="d6c8-382a-4d74-36af" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="acdf-0488-6720-663d" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f826-45ff-efc5-4117" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="49"/>
</costs>
</selectionEntry>
<selectionEntry id="98ab-649c-68da-3e50" name="Terminator Armour: Thunder Hammer & Storm Shield" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7d10-e22a-0b2c-5d2b" type="max"/>
</constraints>
<entryLinks>
<entryLink id="f941-f81d-1356-6f32" name="Thunder Hammer" hidden="false" collective="false" import="true" targetId="bc7d-3f6b-9ee5-8e42" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="59be-3974-b6ed-80f3" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="42d9-76c9-629a-f325" type="max"/>
</constraints>
</entryLink>
<entryLink id="32e6-1901-7df7-7870" name="Storm Shield" hidden="false" collective="false" import="true" targetId="5b69-dbfc-8a02-2d96" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="43b4-859f-9761-3066" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fb6a-93ef-55b9-d2e8" type="max"/>
</constraints>
</entryLink>
<entryLink id="3d7c-6543-3753-a8f9" name="Terminator Armour" hidden="false" collective="false" import="true" targetId="9d43-a036-5991-2470" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5a68-4dec-3a5a-d466" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0608-19a2-83f5-d9ac" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="55"/>
</costs>
</selectionEntry>
<selectionEntry id="7343-d9df-b4cc-2667" name="Terminator Armour: Storm Bolter & Power Sword" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ae92-b096-1348-45dc" type="max"/>
</constraints>
<entryLinks>
<entryLink id="69e7-1af9-129d-ebbe" name="Terminator Armour" hidden="false" collective="false" import="true" targetId="9d43-a036-5991-2470" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0188-1fb9-092b-f6a2" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="75b6-47f9-6da3-feeb" type="max"/>
</constraints>
</entryLink>
<entryLink id="2d90-5ab2-80d4-1f5b" name="Storm Bolter" hidden="false" collective="false" import="true" targetId="8b0c-9093-dc69-c9e8" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7fb1-ad8c-7600-017f" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8278-549c-8ded-2cb8" type="max"/>
</constraints>
</entryLink>
<entryLink id="7ac9-3211-0d2f-6a4b" name="Power Sword" hidden="false" collective="false" import="true" targetId="4e44-58a0-2af5-519c" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3b15-985f-dd2d-3ead" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="df7c-ea32-250f-ef66" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="45"/>
</costs>
</selectionEntry>
<selectionEntry id="ccac-ef01-d557-349f" name="Power Armour" publicationId="4590-6ba9-5482-a1fa" hidden="false" collective="false" import="true" type="upgrade">
<entryLinks>
<entryLink id="038a-95b2-6358-bb89" name="Power Armour" hidden="false" collective="false" import="true" targetId="223b-6b82-1907-d976" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0f52-436b-3148-fa7f" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="73a1-a777-19f9-1951" name="Terminator Armour Loadouts" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="true" id="f355-53c4-2666-c20e" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="512c-ebb0-4b52-c41a" name="Terminator Armour: Lightning Claws" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c7d7-9628-f5ab-4e1b" type="max"/>
</constraints>
<entryLinks>
<entryLink id="f178-f6a4-7b01-3bbf" name="Terminator Armour" hidden="false" collective="false" import="true" targetId="9d43-a036-5991-2470" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cfd9-78f8-7b50-1ab0" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8640-848a-48bd-574b" type="max"/>
</constraints>
</entryLink>
<entryLink id="e89a-3bee-e757-dddd" name="Lightning Claws" hidden="false" collective="false" import="true" targetId="ff45-72d3-781e-6006" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8477-b586-1fb9-24b2" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6164-8d85-ee90-aec5" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="49"/>
</costs>
</selectionEntry>
<selectionEntry id="a0d2-cae5-0b9a-434b" name="Terminator Armour: Storm Bolter & Chainfist" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d230-d2bb-296f-854c" type="max"/>
</constraints>
<entryLinks>
<entryLink id="b0ae-e278-e496-00b9" name="Terminator Armour" hidden="false" collective="false" import="true" targetId="9d43-a036-5991-2470" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ad05-6b1f-f476-f7a7" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5581-b5b1-e931-1ba2" type="max"/>
</constraints>
</entryLink>
<entryLink id="1749-47c8-3acd-6031" name="Storm Bolter" hidden="false" collective="false" import="true" targetId="8b0c-9093-dc69-c9e8" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="85b8-e85f-b6d8-4ce3" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5295-0fdb-a474-3942" type="max"/>
</constraints>
</entryLink>
<entryLink id="a0d7-a6d1-8483-266b" name="Chainfist" hidden="false" collective="false" import="true" targetId="3913-2299-4778-933b" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c5ed-2102-55e7-30e0" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b54c-42ec-77f2-8165" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="51"/>
</costs>
</selectionEntry>
<selectionEntry id="eddd-5120-e7ff-0f99" name="Terminator Armour: Storm Bolter & Power Fist" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="aacd-76e6-aed5-c4d5" type="max"/>
</constraints>
<entryLinks>
<entryLink id="8f85-de69-e6d5-9c12" name="Terminator Armour" hidden="false" collective="false" import="true" targetId="9d43-a036-5991-2470" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="eb91-1570-2222-33e6" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cd09-d73a-eefd-1524" type="max"/>
</constraints>
</entryLink>
<entryLink id="510c-6c44-5df9-528e" name="Storm Bolter" hidden="false" collective="false" import="true" targetId="8b0c-9093-dc69-c9e8" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4838-544b-58a6-6fc8" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4b17-8353-24d3-f630" type="max"/>
</constraints>
</entryLink>
<entryLink id="9654-d915-0075-4120" name="Power Fist" hidden="false" collective="false" import="true" targetId="d6c8-382a-4d74-36af" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7297-b004-78ed-c75f" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e658-0f84-2629-2061" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="49"/>
</costs>
</selectionEntry>
<selectionEntry id="fb14-a951-3318-d105" name="Terminator Armour: Storm Bolter & Power Sword" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e128-dd4c-895c-5777" type="max"/>
</constraints>
<entryLinks>
<entryLink id="c0db-66a5-4275-3876" name="Terminator Armour" hidden="false" collective="false" import="true" targetId="9d43-a036-5991-2470" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7977-828c-e4f4-ec97" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0388-98c7-ecaf-6131" type="max"/>
</constraints>
</entryLink>
<entryLink id="9764-0a7d-aa19-6a20" name="Storm Bolter" hidden="false" collective="false" import="true" targetId="8b0c-9093-dc69-c9e8" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3728-7944-eac5-8e71" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4a16-d85f-63b4-4d80" type="max"/>
</constraints>
</entryLink>
<entryLink id="b845-0213-0a83-8bbe" name="Power Sword" hidden="false" collective="false" import="true" targetId="4e44-58a0-2af5-519c" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6fc4-83f8-7bdc-b0f6" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9988-5c6c-1122-0515" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="45"/>
</costs>
</selectionEntry>
<selectionEntry id="9308-8a33-34b7-9776" name="Terminator Armour: Thunder Hammer & Storm Shield" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="33d5-7b0d-f7bd-fe70" type="max"/>
</constraints>
<entryLinks>
<entryLink id="126b-8fc8-86a6-3cf9" name="Thunder Hammer" hidden="false" collective="false" import="true" targetId="bc7d-3f6b-9ee5-8e42" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9bf9-616f-3e95-49b7" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="856b-1504-3dc7-f0fc" type="max"/>
</constraints>
</entryLink>
<entryLink id="a352-8e8f-004b-f164" name="Storm Shield" hidden="false" collective="false" import="true" targetId="5b69-dbfc-8a02-2d96" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b894-8302-2129-4c0e" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9315-5f60-a292-4d60" type="max"/>
</constraints>
</entryLink>
<entryLink id="884a-6bfa-263f-0492" name="Terminator Armour" hidden="false" collective="false" import="true" targetId="9d43-a036-5991-2470" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6411-0210-7df3-deee" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5868-b176-b35e-422e" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="55"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="4a27-f4c3-792f-0d8a" name="Army Commander" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="19d8-c54d-e91d-25ed" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="57f7-0f1a-8ab2-bbfd" type="max"/>
</constraints>
<infoLinks>
<infoLink id="8544-c7ec-8855-0527" name="Army Commander" hidden="false" targetId="742e-aa63-7b0f-8b56" type="profile">
<modifiers>
<modifier type="set" field="d0c8-e08c-1828-77b4" value="5"/>
</modifiers>
</infoLink>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="381f-f866-3d8a-4e03" name="Terminator Captain" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="set" field="6986-c5af-d5a6-4800" value="0">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="cddd-3cb1-aeb7-7edb" type="lessThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="set-primary" field="category" value="6741-c4c6-274e-36cf">
<conditions>
<condition field="forces" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="bb80-dc7e-117d-28d5" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6986-c5af-d5a6-4800" type="max"/>
</constraints>
<infoLinks>
<infoLink id="2c27-2456-83d0-8c4c" name="Terminator Captain" hidden="false" targetId="d5f2-e9ed-7e30-3aba" type="rule"/>
<infoLink id="d7a5-1edc-2a0d-27ab" name="Terminator Captain" hidden="false" targetId="2dc3-d17f-62db-35ae" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="a06b-ec94-ded9-1ba8" name="Characters" hidden="false" targetId="8be3-6d17-d7d3-faa0" primary="true"/>
<categoryLink id="f309-a572-181b-e5d8" name="Ultramarines" hidden="false" targetId="6186-0c50-3540-dc37" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="6456-95a1-6a24-9fcc" name="Termninator Armour" hidden="false" collective="false" import="true" defaultSelectionEntryId="29ed-c23d-e62b-17a2">
<entryLinks>
<entryLink id="29ed-c23d-e62b-17a2" name="Terminator Armour" hidden="false" collective="false" import="true" targetId="9d43-a036-5991-2470" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e635-93c2-d536-651c" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="70f7-f059-67df-b7cb" type="min"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="4cc1-bdcf-e5e4-fdf2" name="Melee Weapon" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="50b3-0859-b16d-e59f" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3631-43f8-9569-6535" type="min"/>
</constraints>
<entryLinks>
<entryLink id="fb89-951a-35c4-c16b" name="Terminator Assault Weapons" hidden="false" collective="false" import="true" targetId="d13f-8fc7-8fe2-9420" type="selectionEntryGroup"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="d47a-710d-73e7-f708" name="Ranged Weapon" hidden="false" collective="false" import="true" defaultSelectionEntryId="a77c-0a95-11bf-15bc">
<entryLinks>
<entryLink id="a77c-0a95-11bf-15bc" name="Storm Bolter" hidden="false" collective="false" import="true" targetId="8b0c-9093-dc69-c9e8" type="selectionEntry">
<modifierGroups>
<modifierGroup>
<comment>Remove bolter when dual melee</comment>
<modifiers>
<modifier type="increment" field="31a3-b06d-869a-8abc" value="1">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="4e44-58a0-2af5-519c" type="equalTo"/>
<condition field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="3913-2299-4778-933b" type="equalTo"/>
<condition field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="d6c8-382a-4d74-36af" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="decrement" field="47b7-f293-21af-9d8c" value="1">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="fe7e-3beb-6d63-4daa" type="equalTo"/>
<condition field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="ff45-72d3-781e-6006" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</modifierGroup>
</modifierGroups>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="47b7-f293-21af-9d8c" type="max"/>
<constraint field="selections" scope="parent" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="31a3-b06d-869a-8abc" type="min"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="60f7-9706-91fe-9134" name="Army Commander" hidden="false" collective="false" import="true" targetId="4a27-f4c3-792f-0d8a" type="selectionEntry"/>
<entryLink id="003d-eded-835a-6fe8" name="Wargear Cards" hidden="false" collective="false" import="true" targetId="578d-7254-ab21-8b13" type="selectionEntryGroup">
<constraints>
<constraint field="selections" scope="parent" value="4" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="15f9-beb5-ed88-8a83" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="125"/>
</costs>
</selectionEntry>
<selectionEntry id="dd11-eede-074e-7b62" name="Company Standard" publicationId="4590-6ba9-5482-a1fa" page="63" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="set-primary" field="category" value="6741-c4c6-274e-36cf">
<conditions>
<condition field="forces" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="bb80-dc7e-117d-28d5" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f392-4fa0-fdc9-c023" type="max"/>
</constraints>
<infoLinks>
<infoLink id="c25a-6a22-8d4a-5359" name="Company Standard" hidden="false" targetId="326a-48ad-fa0e-3bf5" type="rule"/>
<infoLink id="3923-41fa-5689-7693" name="Company Standard" hidden="false" targetId="ff4f-cb9c-ec73-ae35" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="1ee6-ec59-8f5b-fe1e" name="Characters" hidden="false" targetId="8be3-6d17-d7d3-faa0" primary="true"/>
<categoryLink id="1210-cff0-57fc-c37b" name="Ultramarines" hidden="false" targetId="6186-0c50-3540-dc37" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="486b-b6e2-d0e3-abe9" name="Armour" hidden="false" collective="false" import="true" defaultSelectionEntryId="21da-74c3-8089-c5a0">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3e9c-02f6-0b0c-7eca" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="55f6-a033-0572-17bc" type="min"/>
</constraints>
<entryLinks>
<entryLink id="21da-74c3-8089-c5a0" name="Power Armour" hidden="false" collective="false" import="true" targetId="ccac-ef01-d557-349f" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="061b-580a-46e6-a8be" type="max"/>
</constraints>
<infoLinks>
<infoLink id="91ac-d838-4213-512b" name="Frag Grenade" hidden="false" targetId="122b-b17a-4e87-5994" type="profile"/>
<infoLink id="1d01-cd97-e27a-31bb" name="Bolt Pistol" hidden="false" targetId="3741-3592-b694-79b4" type="profile"/>
</infoLinks>
</entryLink>
<entryLink id="07e0-bdab-b44e-a604" name="Terminator Loadouts" hidden="false" collective="false" import="true" targetId="18f8-d102-5ac5-4e6c" type="selectionEntryGroup">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4839-605b-1fa8-0b4a" type="max"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="6a7d-88f2-050f-061e" name="Weapons" hidden="false" collective="false" import="true">
<entryLinks>
<entryLink id="c2c8-7ec6-63f5-f6af" name="Assault Weapons" hidden="false" collective="false" import="true" targetId="cd0a-6a8d-1f46-a6db" type="selectionEntryGroup">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="18f8-d102-5ac5-4e6c" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</entryLink>
<entryLink id="0066-19b1-81ef-be0c" name="Special Weapons" hidden="false" collective="false" import="true" targetId="717e-c382-eaca-bd29" type="selectionEntryGroup">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="18f8-d102-5ac5-4e6c" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1210-5589-d4f5-f9d8" type="max"/>
</constraints>
</entryLink>
<entryLink id="1423-3f0f-244d-52cf" name="Grenades" hidden="false" collective="false" import="true" targetId="e531-ba57-c468-3f1f" type="selectionEntryGroup"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="ccb6-48bc-9c8d-eac3" name="Space Marine Bike" hidden="false" collective="false" import="true" targetId="1b22-fc76-8ed0-5765" type="selectionEntry"/>
<entryLink id="25f9-8a18-c645-ce71" name="Wargear Cards" hidden="false" collective="false" import="true" targetId="578d-7254-ab21-8b13" type="selectionEntryGroup">
<constraints>
<constraint field="selections" scope="parent" value="2" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0112-f3ad-9ee1-3418" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="55"/>
</costs>
</selectionEntry>
<selectionEntry id="54de-be57-4ec3-3913" name="Chaplain" publicationId="4590-6ba9-5482-a1fa" page="64" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="set-primary" field="category" value="6741-c4c6-274e-36cf">
<conditions>
<condition field="forces" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="bb80-dc7e-117d-28d5" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<infoLinks>
<infoLink id="23a6-24d6-c712-2f9b" name="Chaplain" hidden="false" targetId="7301-bdcb-4049-1f7f" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="d842-1b6b-4937-7932" name="Characters" hidden="false" targetId="8be3-6d17-d7d3-faa0" primary="true"/>
<categoryLink id="4756-62bf-2539-ea62" name="Ultramarines" hidden="false" targetId="6186-0c50-3540-dc37" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="208a-2b90-038b-3fd2" name="Chaplain Wargear" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0d8a-6447-408a-08c3" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fca4-7c74-e1b3-bc46" type="max"/>
</constraints>
<entryLinks>
<entryLink id="e8f8-cdbf-e2a4-d353" name="Crozius Arcanum" hidden="false" collective="false" import="true" targetId="66d4-a295-9b7a-29f5" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="007d-0634-55da-c572" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="073e-9c05-a7f8-a522" type="max"/>
</constraints>
</entryLink>
<entryLink id="315b-6605-9da6-dad0" name="Rosarius" hidden="false" collective="false" import="true" targetId="391b-3edc-8774-7593" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5a09-563a-49ee-0cef" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d296-c269-8ec3-cb1b" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="75ad-878f-b458-09a5" name="Armour" hidden="false" collective="false" import="true" defaultSelectionEntryId="0c05-63aa-4c97-5fdf">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f82b-9a5e-ce5c-1852" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="55ee-ca95-8d58-f93f" type="min"/>
</constraints>
<entryLinks>
<entryLink id="0c05-63aa-4c97-5fdf" name="Power Armour" hidden="false" collective="false" import="true" targetId="ccac-ef01-d557-349f" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7a25-8459-a4ca-8476" type="max"/>
</constraints>
<infoLinks>
<infoLink id="1850-abd4-bbad-9fa8" name="Frag Grenade" hidden="false" targetId="122b-b17a-4e87-5994" type="profile"/>
<infoLink id="3367-e746-3537-2af9" name="Bolt Pistol" hidden="false" targetId="3741-3592-b694-79b4" type="profile"/>
</infoLinks>
</entryLink>
<entryLink id="abbf-696d-dfee-a4f6" name="Chaplain Terminator Armour" hidden="false" collective="false" import="true" targetId="5150-28df-c4a9-c2ca" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="2f1a-e405-ee27-b480" name="Chaplain Type" hidden="false" collective="false" import="true" defaultSelectionEntryId="f5e4-2ba9-0d2e-a257">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4ec0-830c-38c1-2b2c" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="41d0-7ddc-8718-8af4" type="min"/>
</constraints>
<entryLinks>
<entryLink id="4fb3-151c-5149-5503" name="Chaplain Mighty Hero" hidden="false" collective="false" import="true" targetId="54f7-3050-8549-73cd" type="selectionEntry">
<costs>
<cost name="pts" typeId="points" value="125"/>
</costs>
</entryLink>
<entryLink id="c5a0-1919-7987-0653" name="Chaplain Hero" hidden="false" collective="false" import="true" targetId="391c-e735-5489-764c" type="selectionEntry">
<costs>
<cost name="pts" typeId="points" value="84"/>
</costs>
</entryLink>
<entryLink id="f5e4-2ba9-0d2e-a257" name="Chaplain Champion" hidden="false" collective="false" import="true" targetId="22ed-c8f0-09ea-f115" type="selectionEntry">
<costs>
<cost name="pts" typeId="points" value="53"/>
</costs>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="c9e8-f5a7-3502-ed5d" name="Weapons" hidden="false" collective="false" import="true">
<entryLinks>
<entryLink id="4b1a-17c0-dc18-5c81" name="Assault Weapons" hidden="false" collective="false" import="true" targetId="cd0a-6a8d-1f46-a6db" type="selectionEntryGroup">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="5150-28df-c4a9-c2ca" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</entryLink>
<entryLink id="afd5-f246-69e5-9e9a" name="Special Weapons" hidden="false" collective="false" import="true" targetId="717e-c382-eaca-bd29" type="selectionEntryGroup">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="5150-28df-c4a9-c2ca" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c8a3-16e7-a406-55e7" type="max"/>
</constraints>
</entryLink>
<entryLink id="83b1-44d6-5e49-9992" name="Grenades" hidden="false" collective="false" import="true" targetId="e531-ba57-c468-3f1f" type="selectionEntryGroup">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="5150-28df-c4a9-c2ca" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="52d4-e9b7-7bab-c095" name="Space Marine Bike" hidden="false" collective="false" import="true" targetId="1b22-fc76-8ed0-5765" type="selectionEntry"/>
<entryLink id="8b3d-dcd3-a74e-8c4a" name="Wargear Cards" hidden="false" collective="false" import="true" targetId="578d-7254-ab21-8b13" type="selectionEntryGroup">
<constraints>
<constraint field="selections" scope="parent" value="3" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="de06-6110-4ce2-26f2" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="54f7-3050-8549-73cd" name="Chaplain Mighty Hero" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="31b8-67ac-47d9-0218" name="Chaplain Might Hero" hidden="false" targetId="a219-5475-ffb0-5879" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="391c-e735-5489-764c" name="Chaplain Hero" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="9e6a-83e3-7190-01ea" name="Chaplain Hero" hidden="false" targetId="9cea-5838-2fdb-8516" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="22ed-c8f0-09ea-f115" name="Chaplain Champion" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="7e1c-0538-c89e-c9a2" name="Chaplain Champion" hidden="false" targetId="83f2-5241-8821-9221" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="84ba-28f4-5e04-4fed" name="Chaplain Wargear" hidden="false" collective="false" import="true" type="upgrade">
<entryLinks>
<entryLink id="118e-2978-d70a-6e3a" name="Crozius Arcanum" hidden="false" collective="false" import="true" targetId="66d4-a295-9b7a-29f5" type="selectionEntry"/>
<entryLink id="484c-6101-b896-0466" name="Rosarius" hidden="false" collective="false" import="true" targetId="391b-3edc-8774-7593" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="5150-28df-c4a9-c2ca" name="Chaplain Terminator Armour" hidden="false" collective="false" import="true" type="upgrade">
<entryLinks>
<entryLink id="d7c2-146e-376e-7669" name="Terminator Armour" hidden="false" collective="false" import="true" targetId="9d43-a036-5991-2470" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fef3-66b9-1da0-caa2" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6776-e23a-5706-7bcd" type="min"/>
</constraints>
</entryLink>
<entryLink id="e5d6-9d4b-d177-9575" name="Storm Bolter" hidden="false" collective="false" import="true" targetId="8b0c-9093-dc69-c9e8" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d0cc-f692-cb98-6957" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="89c4-7191-7ecc-9e18" type="min"/>
</constraints>