forked from BSData/wh40k-9e
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Imperium - White Scars.cat
2298 lines (2298 loc) · 176 KB
/
Imperium - White Scars.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="c010-4da2-5a55-a3be" name="Imperium - Adeptus Astartes - White Scars" revision="15" battleScribeVersion="2.03" authorName="BSData Developers" authorContact="Acebaur" authorUrl="https://discord.gg/KqPVhds" library="false" gameSystemId="28ec-711c-d87f-3aeb" gameSystemRevision="134" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<selectionEntries>
<selectionEntry id="38f8-60cb-7a29-7752" name="Khan on Bike" 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="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="1c0c-5eaf-a88d-ff3c" type="equalTo"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="9e43-6e51-2a4a-56cc" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="e277-184d-4e8a-6177" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="afd0-8fbc-ed15-2209" name="Khan on Bike" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">14"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">2+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">2+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">4</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">5</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">6</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">4</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">9</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
<profile id="4654-923a-b7bd-577d" name="Buckler" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">When resolving an attack made with a melee weapon against this model, add 1 to the saving throw. Invulnerable saves are not affected.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="ef99-0f7b-6247-26d9" name="Angels of Death" hidden="false" targetId="01a4-bec8-b573-fde7" type="rule"/>
<infoLink id="4a40-f20b-0d60-7df1" name="New InfoLink" hidden="false" targetId="242c-3bac-1ff3-48b0" type="profile"/>
<infoLink id="4bac-5f0e-8016-ec51" name="Rites of Battle" hidden="false" targetId="922c-75db-5ca4-3750" type="profile"/>
<infoLink id="df37-9212-c2df-2fd5" name="New InfoLink" hidden="false" targetId="c027-2e84-7468-0607" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="bac2-d222-5a4d-739e" name="New CategoryLink" hidden="false" targetId="c7b7-edbc-bc14-6238" primary="false"/>
<categoryLink id="634a-cf06-4dec-5c3f" name="New CategoryLink" hidden="false" targetId="ef18-746a-369f-43a4" primary="false"/>
<categoryLink id="133c-8d7b-589d-5e54" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
<categoryLink id="9030-5502-00b1-af72" name="New CategoryLink" hidden="false" targetId="84e2-9fa9-ebe6-1d18" primary="false"/>
<categoryLink id="d9db-abb0-5436-6900" name="New CategoryLink" hidden="false" targetId="8352-7f67-7e2b-3b4f" primary="false"/>
<categoryLink id="47bb-92ee-a2c7-3928" name="New CategoryLink" hidden="false" targetId="1c6f-0311-3eba-3180" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="292b-ccc2-9ed1-8bd4" name="Frag & Krak grenades" hidden="false" collective="false" import="true" targetId="cddf-945e-1335-e681" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4410-bb55-bdf0-3d26" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cb87-553b-b822-3bee" type="max"/>
</constraints>
</entryLink>
<entryLink id="3a24-ff64-7929-9dc3" name="Twin boltgun" hidden="false" collective="false" import="true" targetId="4c54-1c89-299c-05c5" type="selectionEntry">
<modifiers>
<modifier type="set" field="points" value="0.0"/>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="34da-d3b5-5be0-63ec" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="843d-c718-d5ec-f019" type="max"/>
</constraints>
</entryLink>
<entryLink id="c497-3de2-dfea-0eae" name="Relics" hidden="false" collective="false" import="true" targetId="e292-25b3-6cd4-f0ab" type="selectionEntryGroup"/>
<entryLink id="999f-47e2-04c7-b215" name="Khan's Spear" hidden="false" collective="false" import="true" targetId="5b1a-3abc-3943-d7d1" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9b76-f880-8f3c-6b92" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="6f87-0136-4f91-4a8d" type="max"/>
</constraints>
</entryLink>
<entryLink id="5bff-e7df-cbb8-c781" name="Warlord" hidden="false" collective="false" import="true" targetId="01cf-00c7-c4af-701b" type="selectionEntry"/>
<entryLink id="5f22-54d2-c8e5-741c" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="4f55-3af3-89ff-791e" type="selectionEntryGroup"/>
<entryLink id="5ffa-18c8-45e7-5297" name="Stratagem: Field Commander" hidden="false" collective="false" import="true" targetId="d043-3847-e963-fb5d" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="067e-6044-ef2a-3ee2" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="5332-a6be-89bd-736a" name="Stratagem: Hero of the Chapter" hidden="false" collective="false" import="true" targetId="5efd-6285-c9f7-2a5a" type="selectionEntry"/>
<entryLink id="482f-ec00-874a-0e45" name="Stratagem: Tempered by Wisdom" hidden="false" collective="false" import="true" targetId="4244-18c3-4660-9db5" type="selectionEntry"/>
<entryLink id="01e3-5833-cbb3-3bcd" name="Stratagem: Chapter Master" hidden="false" collective="false" import="true" targetId="bd73-ea51-1f7f-a39a" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="6.0"/>
<cost name="pts" typeId="points" value="110.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="cf7c-2f40-c736-021a" name="Kor'sarro Khan" 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="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="1c0c-5eaf-a88d-ff3c" type="equalTo"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="9e43-6e51-2a4a-56cc" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="4f2b-10b2-60d6-0c2b" type="max"/>
</constraints>
<profiles>
<profile id="db37-ef4c-73f4-278c" name="Kor'sarro Khan" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">6"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">2+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">2+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">4</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">4</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">6</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">5</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">9</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
<profile id="72e6-0479-8cb5-3a19" name="For the Khan!" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">Add 1 to wound rolls for attacks made with melee weapons by models in friendly WHITE SCARS units that have made a charge move or performed a Heroic Intervention this turn whilst their unit is within 6" of this model. </characteristic>
</characteristics>
</profile>
<profile id="f717-0635-719b-5125" name="Anzuq" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">When this model is chosen to shoot with in your Shooting phase, you can select one enemy unit that is not a VEHICLE and is within 12" of this model. Roll one D6; on a 4+ that unit suffers 1 mortal wound.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="5c83-41cf-f766-53e7" name="Rites of Battle" hidden="false" targetId="922c-75db-5ca4-3750" type="profile"/>
<infoLink id="0eb4-fd95-9061-dbd5" name="Iron Halo" hidden="false" targetId="242c-3bac-1ff3-48b0" type="profile"/>
<infoLink id="e87f-c027-b1cc-3811" name="Angels of Death" hidden="false" targetId="01a4-bec8-b573-fde7" type="rule"/>
<infoLink id="c45b-7eba-bbab-e8fe" name="Trophy Taker" hidden="false" targetId="5c2a-59e9-5291-4bb8" type="profile">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="cf7c-2f40-c736-021a" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="01cf-00c7-c4af-701b" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</infoLink>
</infoLinks>
<categoryLinks>
<categoryLink id="5515-eaed-82e5-c85c" name="Faction: Imperium" hidden="false" targetId="84e2-9fa9-ebe6-1d18" primary="false"/>
<categoryLink id="8d92-4b15-bc2c-c905" name="Faction: Adeptus Astartes" hidden="false" targetId="c7b7-edbc-bc14-6238" primary="false"/>
<categoryLink id="67a6-bf30-6d0f-b3dd" name="White Scars" hidden="false" targetId="4bc8-f25c-c7ca-5b6b" primary="false"/>
<categoryLink id="d5d6-3f71-e915-7e26" name="Character" hidden="false" targetId="ef18-746a-369f-43a4" primary="false"/>
<categoryLink id="4d60-51c4-4032-0425" name="Captain" hidden="false" targetId="8352-7f67-7e2b-3b4f" primary="false"/>
<categoryLink id="c462-9fe6-fb27-da54" name="Kor'sarro Khan" hidden="false" targetId="d5ca-2a13-4e72-72ba" primary="false"/>
<categoryLink id="968b-9a05-7f33-0b80" name="Infantry" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="510a-e8e2-f5d7-833e" name="Primaris" hidden="false" targetId="53b7-cff3-c3b4-d36a" primary="false"/>
<categoryLink id="6f1a-ff96-746f-5e78" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="0b68-e7b4-c3c8-b7ce" name="Moonfang" 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="2283-d3ce-4e41-d709" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="56f9-eb64-b543-0aa5" type="max"/>
</constraints>
<profiles>
<profile id="0bea-91a2-81c2-3c46" name="Moonfang" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">Melee</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Melee</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">+2</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-3</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">D3</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">When resolving an attack made with this weapon against a CHARACTER unit, you can re-roll the wound roll and you can re-roll the damage roll.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="e5e0-74de-8882-657a" name="Frag & Krak grenades" hidden="false" collective="false" import="true" targetId="cddf-945e-1335-e681" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4f23-7937-7f43-0d4d" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="eb63-eba9-04e2-915e" type="max"/>
</constraints>
</entryLink>
<entryLink id="1a1f-de86-f936-1ad3" name="Warlord" hidden="false" collective="false" import="true" targetId="01cf-00c7-c4af-701b" type="selectionEntry"/>
<entryLink id="d673-82b3-7b67-303f" name="Stratagem: Hero of the Chapter" hidden="false" collective="false" import="true" targetId="5efd-6285-c9f7-2a5a" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="110.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="6.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="b9c6-4c9f-9b89-0ea4" name="Kor'sarro Khan [Legends]" 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="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="1c0c-5eaf-a88d-ff3c" type="equalTo"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="9e43-6e51-2a4a-56cc" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="63b1-a6f1-b01c-8c39" type="max"/>
</constraints>
<profiles>
<profile id="804f-7184-16a3-bcdb" name="Kor'sarro Khan" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">6"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">2+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">2+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">4</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">4</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">5</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">4</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">9</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
<profile id="7de0-07d6-c927-e18c" name="For the Khan!" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">Add 1 to wound rolls for attacks made with melee weapons by models in friendly WHITE SCARS units that have made a charge move or performed a Heroic Intervention this turn whilst their unit is within 6" of this model. </characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="5692-a0ae-ce80-1eb4" name="Rites of Battle" hidden="false" targetId="922c-75db-5ca4-3750" type="profile"/>
<infoLink id="b29d-87e0-e1c4-d03e" name="Iron Halo" hidden="false" targetId="242c-3bac-1ff3-48b0" type="profile"/>
<infoLink id="d4f6-9ca7-53b1-2338" name="Angels of Death" hidden="false" targetId="01a4-bec8-b573-fde7" type="rule"/>
<infoLink id="f8dd-29c7-c85a-72c9" name="Trophy Taker" hidden="false" targetId="5c2a-59e9-5291-4bb8" type="profile">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="b9c6-4c9f-9b89-0ea4" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="01cf-00c7-c4af-701b" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</infoLink>
</infoLinks>
<categoryLinks>
<categoryLink id="ebe6-4251-0920-162f" name="Faction: Imperium" hidden="false" targetId="84e2-9fa9-ebe6-1d18" primary="false"/>
<categoryLink id="258a-5cfb-406e-2f5d" name="Faction: Adeptus Astartes" hidden="false" targetId="c7b7-edbc-bc14-6238" primary="false"/>
<categoryLink id="76fe-a2cd-fef1-3a07" name="White Scars" hidden="false" targetId="4bc8-f25c-c7ca-5b6b" primary="false"/>
<categoryLink id="b22a-e28f-da27-b98a" name="Character" hidden="false" targetId="ef18-746a-369f-43a4" primary="false"/>
<categoryLink id="9146-1311-17e7-55a6" name="Captain" hidden="false" targetId="8352-7f67-7e2b-3b4f" primary="false"/>
<categoryLink id="688f-e1be-129d-e266" name="Kor'sarro Khan" hidden="false" targetId="d5ca-2a13-4e72-72ba" primary="false"/>
<categoryLink id="2445-ba9a-0405-635b" name="Infantry" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="1dd2-a990-f939-c584" name="Primaris" hidden="false" targetId="53b7-cff3-c3b4-d36a" primary="false"/>
<categoryLink id="f6b3-34da-7873-4256" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="e637-0b69-07c3-9940" name="Moonfang" 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="7310-eb45-51da-486b" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="12ab-3079-3407-e948" type="max"/>
</constraints>
<profiles>
<profile id="797b-e81c-fba6-d5fb" name="Moonfang" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">Melee</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Melee</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">+2</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-3</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">D3</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">When resolving an attack made with this weapon against a CHARACTER unit, you can re-roll the wound roll and you can re-roll the damage roll.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="d7fa-4a5d-8314-4a62" name="Frag & Krak grenades" hidden="false" collective="false" import="true" targetId="cddf-945e-1335-e681" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d375-0457-8bff-9a4a" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b701-855e-8f7b-a6c3" type="max"/>
</constraints>
</entryLink>
<entryLink id="4b7e-7d57-8161-0aa7" name="Warlord" hidden="false" collective="false" import="true" targetId="01cf-00c7-c4af-701b" type="selectionEntry"/>
<entryLink id="9c5f-312a-8532-1a98" name="Stratagem: Hero of the Chapter" hidden="false" collective="false" import="true" targetId="5efd-6285-c9f7-2a5a" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="90.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="5.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="fdb5-313d-f40b-ab1e" name="Kor'sarro Khan on Moondrakkan [Legends]" 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="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="1c0c-5eaf-a88d-ff3c" type="equalTo"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="9e43-6e51-2a4a-56cc" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="e277-184d-4e8a-6177" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="357a-2af2-0edc-f87e" type="max"/>
</constraints>
<profiles>
<profile id="31e2-fb06-5ad7-2ba1" name="For the Khan!" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">Add 1 to the Strength characteristic of friendly WHITE SCARS units within 6" of Kor'sarro Khan when they attack in the Fight phase if they charged that turn.</characteristic>
</characteristics>
</profile>
<profile id="e5ec-e8cc-686f-ee6d" name="Kar'sarro Khan on Moondrakkan" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">14"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">2+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">2+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">4</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">5</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">6</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">4</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">9</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="27da-323e-91a8-f608" name="Angels of Death" hidden="false" targetId="01a4-bec8-b573-fde7" type="rule"/>
<infoLink id="f295-e9d0-b812-08e0" name="Rites of Battle" hidden="false" targetId="922c-75db-5ca4-3750" type="profile"/>
<infoLink id="af2a-f7ed-de18-b0a6" name="Iron Halo" hidden="false" targetId="242c-3bac-1ff3-48b0" type="profile"/>
<infoLink id="a044-58f0-206f-543f" name="Trophy Taker" hidden="false" targetId="5c2a-59e9-5291-4bb8" type="profile">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="fdb5-313d-f40b-ab1e" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="01cf-00c7-c4af-701b" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</infoLink>
<infoLink id="b8b6-7a8d-337d-efb6" name="Turbo-boost" hidden="false" targetId="c027-2e84-7468-0607" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="a561-6534-2d3d-b376" name="New CategoryLink" hidden="false" targetId="c7b7-edbc-bc14-6238" primary="false"/>
<categoryLink id="f29a-40b1-1337-829b" name="New CategoryLink" hidden="false" targetId="84e2-9fa9-ebe6-1d18" primary="false"/>
<categoryLink id="1fe3-ce89-db61-e6d8" name="New CategoryLink" hidden="false" targetId="4bc8-f25c-c7ca-5b6b" primary="false"/>
<categoryLink id="3550-71e0-083c-a5cf" name="New CategoryLink" hidden="false" targetId="8352-7f67-7e2b-3b4f" primary="false"/>
<categoryLink id="9ba9-84ce-d215-dad4" name="New CategoryLink" hidden="false" targetId="ef18-746a-369f-43a4" primary="false"/>
<categoryLink id="114a-d093-ed4b-4134" name="New CategoryLink" hidden="false" targetId="d5ca-2a13-4e72-72ba" primary="false"/>
<categoryLink id="8c96-d981-0af2-170f" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="29ab-7d2f-fd1a-adab" name="Moonfang" 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="ddd9-0cba-0a08-fd7d" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2c24-9689-76ad-6813" type="max"/>
</constraints>
<profiles>
<profile id="4954-c968-e686-dcb3" name="Moonfang" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">Melee</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Melee</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">User</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-3</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">D3</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">This weapon has Strength x2 if the target is a CHARACTER.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="083b-8242-c291-6cdf" name="Bolt pistol" hidden="false" collective="false" import="true" targetId="0334-f487-8229-0c1a" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1662-bd04-f950-b15f" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2664-ef11-ee8a-6f57" type="max"/>
</constraints>
</entryLink>
<entryLink id="54ed-bf14-9c50-d3e5" name="Frag & Krak grenades" hidden="false" collective="false" import="true" targetId="cddf-945e-1335-e681" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="85e0-8456-d449-7e39" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a9a9-fc8d-1b73-f962" type="max"/>
</constraints>
</entryLink>
<entryLink id="4fc2-d7e0-df8d-aa55" name="Warlord" hidden="false" collective="false" import="true" targetId="01cf-00c7-c4af-701b" type="selectionEntry"/>
<entryLink id="8ce3-e4a1-d52e-1030" name="Stratagem: Hero of the Chapter" hidden="false" collective="false" import="true" targetId="5efd-6285-c9f7-2a5a" type="selectionEntry"/>
<entryLink id="ef65-e72b-3d4a-c18c" name="Twin boltgun" hidden="false" collective="false" import="true" targetId="4c54-1c89-299c-05c5" type="selectionEntry">
<modifiers>
<modifier type="set" field="points" value="0.0"/>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c168-7b06-441c-454d" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="31b5-daf5-8b3b-cf76" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="7.0"/>
<cost name="pts" typeId="points" value="132.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="954c-2038-1404-00f9" name="Lieutenants" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="e277-184d-4e8a-6177" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cd32-f411-ffe9-d25d" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="3a91-a61f-172f-db78" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="5b1b-8b14-d355-d342" name="Lieutenant" hidden="false" collective="false" import="true" targetId="e176-3548-2126-02c8" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7421-a68e-9f48-d028" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="17d9-9b86-2e97-c0eb" type="min"/>
</constraints>
<infoLinks>
<infoLink id="164c-b647-fafa-37be" name="Company Heroes" hidden="false" targetId="eb6d-5525-bbe8-6d0a" type="profile"/>
<infoLink id="3aeb-b278-8112-0ed0" name="Angels of Death" hidden="false" targetId="01a4-bec8-b573-fde7" type="rule"/>
</infoLinks>
<entryLinks>
<entryLink id="5d75-3ed4-4b5e-aa55" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="80ed-10b8-d2d5-a5e0" type="selectionEntryGroup"/>
<entryLink id="60e1-a4a8-cb7f-03f5" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="453e-769a-4240-c489" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
</entryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="48ff-dab7-4fee-a1fc" name="Lieutenants in Phobos Armour" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="920d-94f5-a469-b1ef" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="df67-7639-38aa-90db" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="931c-58e5-c2e1-08a4" name="Lieutenant in Phobos Armour" hidden="false" collective="false" import="true" targetId="dacf-c1ae-563f-3632" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="842a-7fee-0cea-bf58" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6947-748f-97ae-44e6" type="min"/>
</constraints>
<infoLinks>
<infoLink id="23ce-2879-f1a7-13a3" name="Company Heroes" hidden="false" targetId="eb6d-5525-bbe8-6d0a" type="profile"/>
<infoLink id="ea73-8335-f696-e5ac" name="Angels of Death" hidden="false" targetId="01a4-bec8-b573-fde7" type="rule"/>
</infoLinks>
<entryLinks>
<entryLink id="d6c1-0628-b416-ff5f" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="80ed-10b8-d2d5-a5e0" type="selectionEntryGroup"/>
<entryLink id="aa6b-e2a2-5121-4288" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="453e-769a-4240-c489" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
</entryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="0e09-55a4-b2fe-62a7" name="Primaris Lieutenants" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="21bd-a586-484e-c7ee" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="0dbe-30d2-98ea-96b2" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="6589-7cab-88c5-6a61" name="Primaris Lieutenant" hidden="false" collective="false" import="true" targetId="13fa-cbe0-ef6c-a134" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e659-ca88-fd83-7c7c" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0512-605e-9e42-9968" type="min"/>
</constraints>
<infoLinks>
<infoLink id="f40d-0e4e-2008-dece" name="Company Heroes" hidden="false" targetId="eb6d-5525-bbe8-6d0a" type="profile"/>
<infoLink id="c5b8-9feb-6da0-160f" name="Angels of Death" hidden="false" targetId="01a4-bec8-b573-fde7" type="rule"/>
</infoLinks>
<entryLinks>
<entryLink id="a84d-56b7-8074-7c35" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="80ed-10b8-d2d5-a5e0" type="selectionEntryGroup"/>
<entryLink id="53cf-8671-c89b-879a" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="453e-769a-4240-c489" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
</entryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="490e-ab9a-01c8-604f" name="Primaris Lieutenants (Indomitus)" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="72ad-e364-9818-d65b" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="6755-3de3-e8d4-0e3d" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="b2f9-765b-b1b5-a81e" name="Primaris Lieutenant (Indomitus)" hidden="false" collective="false" import="true" targetId="1278-4d59-29b6-51a8" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="af89-155c-6920-ec9c" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b59c-c98b-990b-9933" type="min"/>
</constraints>
<infoLinks>
<infoLink id="6a65-25cb-bdb8-1dec" name="Company Heroes" hidden="false" targetId="eb6d-5525-bbe8-6d0a" type="profile"/>
<infoLink id="7599-30c7-a3d2-6806" name="Angels of Death" hidden="false" targetId="01a4-bec8-b573-fde7" type="rule"/>
</infoLinks>
<entryLinks>
<entryLink id="2eb4-4839-169f-ca4c" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="80ed-10b8-d2d5-a5e0" type="selectionEntryGroup"/>
<entryLink id="317c-d01a-6461-2a3d" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="453e-769a-4240-c489" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
</entryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="9012-f0e9-5ae6-45ae" name="Aggressor Squad" hidden="false" collective="false" import="true" targetId="0f7e-ce51-f92d-0138" type="selectionEntry">
<categoryLinks>
<categoryLink id="fb90-cb7a-4a75-7c57" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="f36b-12c7-bc19-e59a" name="Ancient in Terminator Armor" hidden="false" collective="false" import="true" targetId="5654-2e3b-1351-bed9" type="selectionEntry">
<entryLinks>
<entryLink id="5bfc-f26b-a13a-6331" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="80ed-10b8-d2d5-a5e0" type="selectionEntryGroup"/>
<entryLink id="1aa1-3a9a-3570-895b" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="453e-769a-4240-c489" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="88b7-7b10-eba9-33de" name="Apothecary" hidden="false" collective="false" import="true" targetId="4739-10df-55b8-6330" type="selectionEntry">
<categoryLinks>
<categoryLink id="c513-a6c7-d5be-e66d" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="0a3e-6b69-8385-2c40" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="80ed-10b8-d2d5-a5e0" type="selectionEntryGroup"/>
<entryLink id="628b-60eb-98c2-7780" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="453e-769a-4240-c489" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="538e-bb26-75f4-7507" name="Apothecary on Bike [Legends]" hidden="false" collective="false" import="true" targetId="23bd-4072-5b68-6be1" type="selectionEntry">
<categoryLinks>
<categoryLink id="11cc-02e2-780f-5b71" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="a38d-2a7e-683f-401d" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="80ed-10b8-d2d5-a5e0" type="selectionEntryGroup"/>
<entryLink id="ea1b-6ac1-6e4a-ea66" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="453e-769a-4240-c489" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="48d1-6825-2a08-2620" name="Assault Squad" hidden="false" collective="false" import="true" targetId="7c16-1429-b6d5-e6f1" type="selectionEntry">
<categoryLinks>
<categoryLink id="22e8-e6fe-1616-fe3b" name="New CategoryLink" hidden="false" targetId="c274d0b0-5866-44bc-9810-91c136ae7438" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="af27-8c64-5b02-8c83" name="Astraeus Super-heavy Tank" hidden="false" collective="false" import="true" targetId="2faf-85ff-2008-1a28" type="selectionEntry"/>
<entryLink id="2f93-9a97-e59d-c8be" name="Attack Bike Squad" hidden="false" collective="false" import="true" targetId="0b99-2404-285f-99db" type="selectionEntry">
<categoryLinks>
<categoryLink id="dc97-adb4-8173-2bf2" name="New CategoryLink" hidden="false" targetId="c274d0b0-5866-44bc-9810-91c136ae7438" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="cc4b-59c9-1fef-0fd2" name="Bike Squad" hidden="false" collective="false" import="true" targetId="a0f4-1ef1-00a6-b9a7" type="selectionEntry">
<categoryLinks>
<categoryLink id="5d97-89bd-256f-f2a5" name="New CategoryLink" hidden="false" targetId="c274d0b0-5866-44bc-9810-91c136ae7438" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="c345-ab8d-5a5f-1616" name="Caestus Assault Ram" hidden="false" collective="false" import="true" targetId="5c09-08ad-2a0f-fbc9" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="e277-184d-4e8a-6177" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="f164-6db5-c4c7-0d9e" name="Captain" hidden="false" collective="false" import="true" targetId="a0b8-6a5c-ea09-44f9" type="selectionEntry">
<categoryLinks>
<categoryLink id="e4ad-ea2a-0be8-7039" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="8a24-7796-f2ca-1fa2" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="80ed-10b8-d2d5-a5e0" type="selectionEntryGroup"/>
<entryLink id="3b49-13bb-5c6e-4dfc" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="453e-769a-4240-c489" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="a7cf-b905-9ccb-f5e2" name="Captain in Cataphractii Armor" hidden="false" collective="false" import="true" targetId="92b3-c77a-eff7-4d9b" type="selectionEntry">
<categoryLinks>
<categoryLink id="89ee-9e27-fb5f-dd0c" name="HQ" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="2b74-f476-63f9-3fea" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="80ed-10b8-d2d5-a5e0" type="selectionEntryGroup"/>
<entryLink id="4386-ffca-6cd9-9ba1" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="453e-769a-4240-c489" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="1cc4-a5d2-0936-e4ab" name="Captain in Gravis Armor" hidden="false" collective="false" import="true" targetId="5854-3db8-6043-ce0b" type="selectionEntry">
<categoryLinks>
<categoryLink id="fb79-4b56-7ff1-64f6" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="64f3-c792-c85c-03d2" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="80ed-10b8-d2d5-a5e0" type="selectionEntryGroup"/>
<entryLink id="730e-e2a5-3ae2-4ef6" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="453e-769a-4240-c489" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="461e-258a-fc2a-e1b7" name="Captain in Phobos Armour" hidden="false" collective="false" import="true" targetId="04ca-503e-38b7-0380" type="selectionEntry">
<categoryLinks>
<categoryLink id="a4c2-f6a6-3402-ada5" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="61f6-df03-1bdc-6190" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="80ed-10b8-d2d5-a5e0" type="selectionEntryGroup"/>
<entryLink id="1cac-37a8-197a-dde4" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="453e-769a-4240-c489" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="88a1-7aea-ed5b-0c3a" name="Captain in Terminator Armor" hidden="false" collective="false" import="true" targetId="79ab-3318-ac01-06d2" type="selectionEntry">
<categoryLinks>
<categoryLink id="0654-fae0-f89f-7010" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="3547-0ba9-8412-1caf" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="80ed-10b8-d2d5-a5e0" type="selectionEntryGroup"/>
<entryLink id="7869-9ccd-5918-7d21" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="453e-769a-4240-c489" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="d11f-3e22-80cc-942e" name="Captain on Bike" hidden="false" collective="false" import="true" targetId="2c58-b224-00e8-95f4" type="selectionEntry">
<categoryLinks>
<categoryLink id="a244-b98c-ee0a-e82d" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="e951-8805-a20d-f7fb" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="80ed-10b8-d2d5-a5e0" type="selectionEntryGroup"/>
<entryLink id="1d42-bdba-1712-fb29" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="453e-769a-4240-c489" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="3f2e-a2fe-0fba-16ef" name="Cataphractii Terminator Squad" hidden="false" collective="false" import="true" targetId="f928-d2b7-7b49-23fc" type="selectionEntry">
<categoryLinks>
<categoryLink id="b364-548a-5426-e6ec" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="86e7-2c41-30a7-b770" name="Centurion Assault Squad" hidden="false" collective="false" import="true" targetId="cd3c-39b0-b3be-0e35" type="selectionEntry">
<categoryLinks>
<categoryLink id="5bef-e42c-1bc2-e857" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="8f9b-729d-5594-576f" name="Centurion Devastator Squad" hidden="false" collective="false" import="true" targetId="c7a9-cbea-2263-acdc" type="selectionEntry">
<categoryLinks>
<categoryLink id="1ca0-8cd7-4ffc-30f3" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="fd7b-48f4-99d7-cc72" name="Chaplain" hidden="false" collective="false" import="true" targetId="400e-bbea-4690-6942" type="selectionEntry">
<categoryLinks>
<categoryLink id="d165-6e75-6553-7eb2" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="f4e1-55b4-c48b-25e2" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="80ed-10b8-d2d5-a5e0" type="selectionEntryGroup"/>
<entryLink id="3761-fb7f-76d6-ad42" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="453e-769a-4240-c489" type="selectionEntryGroup"/>
<entryLink id="27f1-4ae2-c69a-44a6" name="Litanies" hidden="false" collective="false" import="true" targetId="3338-4b29-3cbb-1d52" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="448d-52c0-e32f-c879" name="Chaplain in Terminator Armor" hidden="false" collective="false" import="true" targetId="6876-9f56-4e02-5400" type="selectionEntry">
<categoryLinks>
<categoryLink id="251d-a748-ea14-4b1b" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="4993-38a7-8fd7-a305" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="80ed-10b8-d2d5-a5e0" type="selectionEntryGroup"/>
<entryLink id="dad1-32cf-bdc0-76d6" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="453e-769a-4240-c489" type="selectionEntryGroup"/>
<entryLink id="d2da-7193-44c7-010f" name="Litanies" hidden="false" collective="false" import="true" targetId="3338-4b29-3cbb-1d52" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="9b88-14de-8bf1-73b0" name="Chaplain on Bike [Legends]" hidden="false" collective="false" import="true" targetId="f3b6-1ac6-0a68-68c7" type="selectionEntry">
<categoryLinks>
<categoryLink id="6a1c-8ae4-0a33-f57a" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="3996-3bee-10af-8c2e" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="80ed-10b8-d2d5-a5e0" type="selectionEntryGroup"/>
<entryLink id="9368-814a-e2f2-e98f" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="453e-769a-4240-c489" type="selectionEntryGroup"/>
<entryLink id="aacb-6215-ddae-3b87" name="Litanies" hidden="false" collective="false" import="true" targetId="3338-4b29-3cbb-1d52" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="a557-a416-e679-6188" name="Chaplain Venerable Dreadnought" hidden="false" collective="false" import="true" targetId="28af-fce8-2f9c-0145" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="e277-184d-4e8a-6177" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<selectionEntryGroups>
<selectionEntryGroup id="095e-bd52-d6ca-6d37" name="Stratagems" hidden="false" collective="false" import="true">
<entryLinks>
<entryLink id="f062-5817-0c39-a101" name="Stratagem: Examplar of the Promethean Creed" hidden="false" collective="false" import="true" targetId="9edb-b7f5-9254-9406" type="selectionEntry"/>
<entryLink id="469b-19b9-47c0-1dae" name="Exemplar of the Chapter" hidden="false" collective="false" import="true" targetId="1f37-5001-285a-f8bc" type="selectionEntry"/>
<entryLink id="7af6-54c7-950e-2513" name="Stratagem: Hero of the Chapter" hidden="false" collective="false" import="true" targetId="5efd-6285-c9f7-2a5a" type="selectionEntry"/>
<entryLink id="ebb4-2b05-7c67-ee1f" name="Stratagem: Master of the Trifold Path" hidden="false" collective="false" import="true" targetId="2552-31f8-0369-c524" type="selectionEntry"/>
<entryLink id="4441-4f13-05bc-a77c" name="Stratagem: Paragon of Iron" hidden="false" collective="false" import="true" targetId="c146-e947-0f2c-40e9" type="selectionEntry"/>
<entryLink id="8a2b-845a-d5fb-218c" name="Stratagem: Sentinel of Terra" hidden="false" collective="false" import="true" targetId="c7a9-567e-dac8-844d" type="selectionEntry"/>
<entryLink id="91da-adb0-feab-755c" name="Stratagem: Tempered by Wisdom" hidden="false" collective="false" import="true" targetId="4244-18c3-4660-9db5" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="6590-7669-2557-c3af" name="Stratagem: Field Commander" hidden="false" collective="false" import="true" targetId="d043-3847-e963-fb5d" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="067e-6044-ef2a-3ee2" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="7167-1c0a-94f8-7cd2" name="Warlord" hidden="false" collective="false" import="true" targetId="01cf-00c7-c4af-701b" type="selectionEntry"/>
<entryLink id="4b20-0b6e-d0f4-0e5d" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="453e-769a-4240-c489" type="selectionEntryGroup"/>
<entryLink id="ceed-0495-e14c-a037" name="Litanies" hidden="false" collective="false" import="true" targetId="3338-4b29-3cbb-1d52" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="ef83-25f4-790d-9f54" name="Company Ancient" hidden="false" collective="false" import="true" targetId="0e51-de2e-2557-b79e" type="selectionEntry">
<categoryLinks>
<categoryLink id="4243-fc8b-89c5-b70b" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="7d6c-e1d7-65e1-0927" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="80ed-10b8-d2d5-a5e0" type="selectionEntryGroup"/>
<entryLink id="3519-23da-de45-2b3b" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="453e-769a-4240-c489" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="eca2-ff57-9300-ca08" name="Company Ancient on Bike [Legends]" hidden="false" collective="false" import="true" targetId="1698-9139-721c-e72e" type="selectionEntry">
<categoryLinks>
<categoryLink id="a25c-2510-d248-d596" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="c53c-f439-70f8-16fe" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="80ed-10b8-d2d5-a5e0" type="selectionEntryGroup"/>
<entryLink id="170b-f256-1f6f-8954" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="453e-769a-4240-c489" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="887e-2ab2-0faa-e07c" name="Company Champion" hidden="false" collective="false" import="true" targetId="c4ab-433a-ad56-2172" type="selectionEntry">
<categoryLinks>
<categoryLink id="1c60-acfa-649c-e74e" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="a550-6a5b-bc13-8073" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="80ed-10b8-d2d5-a5e0" type="selectionEntryGroup"/>
<entryLink id="d946-b975-d874-f950" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="453e-769a-4240-c489" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="56e6-d6e1-b5bb-0b15" name="Company Champion on Bike [Legends]" hidden="false" collective="false" import="true" targetId="c2ef-5c4d-3f2a-13d2" type="selectionEntry">
<categoryLinks>
<categoryLink id="7223-7a11-54b6-9969" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="cf84-dc50-d911-38f5" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="80ed-10b8-d2d5-a5e0" type="selectionEntryGroup"/>
<entryLink id="18d1-052b-debf-5a63" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="453e-769a-4240-c489" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="e602-06f6-1ef3-e5fb" name="Company Veterans" hidden="false" collective="false" import="true" targetId="339f-3bb9-0c10-034b" type="selectionEntry">
<categoryLinks>
<categoryLink id="35d4-6932-70c1-09b3" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="689e-79c0-0aa7-541c" name="Company Veterans on Bikes [Legends]" hidden="false" collective="false" import="true" targetId="7510-80bd-46ea-1b7f" type="selectionEntry">
<categoryLinks>
<categoryLink id="e8e8-6533-d094-467a" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="bb25-e9b2-4007-1567" name="Contemptor Dreadnought" hidden="false" collective="false" import="true" targetId="5912-3f43-75c1-f85c" type="selectionEntry">
<categoryLinks>
<categoryLink id="ab6e-b8a4-e494-0bd9" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="38de-12da-9fe6-71d7" name="Contemptor Mortis Dreadnought" hidden="false" collective="false" import="true" targetId="2149-8a56-0274-5e59" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="e277-184d-4e8a-6177" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="966f-167f-9dc9-4f9b" name="Damocles Command Rhino" hidden="false" collective="false" import="true" targetId="7f53-6376-cd1f-8356" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="e277-184d-4e8a-6177" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="52f1-538f-7c09-2428" name="Deathstorm Drop Pod" hidden="false" collective="false" import="true" targetId="6d7b-340f-c91b-98ac" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="e277-184d-4e8a-6177" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="dc0d-7142-e356-5a2c" name="Deimos Pattern Relic Predator" hidden="false" collective="false" import="true" targetId="b048-66f2-3f07-e5ec" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="e277-184d-4e8a-6177" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="9f57-cbfb-4841-7055" name="Deimos Pattern Vindicator Laser Destroyer" hidden="false" collective="false" import="true" targetId="1cc4-d166-fe8b-d4c7" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="e277-184d-4e8a-6177" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="9097-7b14-2bb4-c056" name="Devastator Squad" hidden="false" collective="false" import="true" targetId="a60f-c03f-ebe1-fa2c" type="selectionEntry">
<categoryLinks>
<categoryLink id="21b9-97b9-3fce-fb32" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="8fc4-94e4-ba4f-8ec1" name="Dreadnought" hidden="false" collective="false" import="true" targetId="002e-7c43-59e8-3496" type="selectionEntry">
<categoryLinks>
<categoryLink id="e4d2-1c1c-a7d0-89c1" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="49bb-05a4-b467-5d73" name="Drop Pod" hidden="false" collective="false" import="true" targetId="6459-e87c-6b3f-56f2" type="selectionEntry">
<categoryLinks>
<categoryLink id="96f3-6ce2-edc3-481a" name="New CategoryLink" hidden="false" targetId="1b66-3f5f-6705-079a" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="63b7-8e1b-fa5e-cec5" name="Eliminator Squad" hidden="false" collective="false" import="true" targetId="1156-c71b-f255-6d86" type="selectionEntry">
<categoryLinks>
<categoryLink id="c0a6-7860-ff4e-9900" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="0050-d0e3-74c7-3291" name="Fire Raptor Assault Gunship" hidden="false" collective="false" import="true" targetId="e385-ed6c-8c89-72fa" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="e277-184d-4e8a-6177" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="5895-0377-dee6-b87e" name="Gifts of the Khans" hidden="false" collective="false" import="true" targetId="f431-6d3c-36c7-5bb2" type="selectionEntry"/>
<entryLink id="33c6-9185-4eea-a383" name="Hellblaster Squad" hidden="false" collective="false" import="true" targetId="ac7e-23cf-be74-f957" type="selectionEntry">
<categoryLinks>
<categoryLink id="ec3b-7cc7-a704-ad23" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="a0d7-80ee-6a8d-f9d8" name="Hunter" hidden="false" collective="false" import="true" targetId="af33-4263-38f9-ef56" type="selectionEntry">
<categoryLinks>
<categoryLink id="50f8-560d-e3ef-1cbe" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="7af7-2884-3335-5bfa" name="Imperial Space Marine [Legends]" hidden="false" collective="false" import="true" targetId="fde4-48fe-5b25-d8c3" type="selectionEntry">
<categoryLinks>
<categoryLink id="d590-e18f-6a63-9aaa" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="7d80-5820-8044-47d3" name="Chapter Relics" hidden="false" collective="false" import="true" targetId="80ed-10b8-d2d5-a5e0" type="selectionEntryGroup"/>
<entryLink id="c403-8f5a-88c6-627b" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="453e-769a-4240-c489" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
<entryLink id="3301-88a8-d930-0ab5" name="Impulsor" hidden="false" collective="false" import="true" targetId="9930-9131-25e4-fd41" type="selectionEntry"/>
<entryLink id="383b-a8fe-9792-ef0d" name="Inceptor Squad" hidden="false" collective="false" import="true" targetId="70bc-0516-df21-bbb8" type="selectionEntry">
<categoryLinks>
<categoryLink id="e3a2-2a76-e718-4408" name="New CategoryLink" hidden="false" targetId="c274d0b0-5866-44bc-9810-91c136ae7438" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="39bd-d24c-353e-a79e" name="Incursor Squad" hidden="false" collective="false" import="true" targetId="f4be-a57c-6bf3-1115" type="selectionEntry"/>
<entryLink id="2b26-b7ff-16ac-bcb5" name="Infernum Pattern Razorback" hidden="false" collective="false" import="true" targetId="6674-0cac-4050-84b9" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="e277-184d-4e8a-6177" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="8230-6e3b-12f3-fbd0" name="Infiltrator Squad" hidden="false" collective="false" import="true" targetId="4d98-5c31-6b1c-9002" type="selectionEntry">
<categoryLinks>
<categoryLink id="8065-a958-441d-3e2d" name="New CategoryLink" hidden="false" targetId="5d76b6f5-20ae-4d70-8f59-ade72a2add3a" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="b082-7bb9-c3a6-af7b" name="Intercessor Squad" hidden="false" collective="false" import="true" targetId="e89e-4431-97de-4b38" type="selectionEntry">
<categoryLinks>
<categoryLink id="38f5-3834-6136-6b6b" name="New CategoryLink" hidden="false" targetId="5d76b6f5-20ae-4d70-8f59-ade72a2add3a" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="d9c5-0250-d52f-2859" name="Invictor Tactical Warsuit" hidden="false" collective="false" import="true" targetId="2c7f-89cd-0078-fb70" type="selectionEntry"/>
<entryLink id="71d6-e532-456f-5bf6" name="Ironclad Dreadnought" hidden="false" collective="false" import="true" targetId="ddfd-70c4-fce9-b2ea" type="selectionEntry">
<categoryLinks>
<categoryLink id="6c70-5b10-becb-8870" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="92fb-f7a5-ef15-94ee" name="Khan's Champion" hidden="false" collective="false" import="true" targetId="0336-ac06-8968-e747" type="selectionEntry"/>
<entryLink id="a519-272f-c99d-d865" name="Land Raider" hidden="false" collective="false" import="true" targetId="1dc2-439f-a67f-ab18" type="selectionEntry">
<categoryLinks>
<categoryLink id="de7c-6aec-2653-4f8d" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="ca25-e208-27a9-6875" name="Land Raider Achilles" hidden="false" collective="false" import="true" targetId="cda6-03b8-b84c-777e" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="e277-184d-4e8a-6177" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="bc58-e4e3-c3f9-972c" name="Land Raider Crusader" hidden="false" collective="false" import="true" targetId="82a3-db47-e289-5c4a" type="selectionEntry">
<categoryLinks>
<categoryLink id="cae4-3584-bd28-be6e" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="9496-6ddf-6bbf-5ef2" name="Land Raider Excelsior [Legends]" hidden="false" collective="false" import="true" targetId="1bf2-8db1-fc7f-085e" type="selectionEntry">
<categoryLinks>
<categoryLink id="a7b3-a261-7caa-b866" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="b8df-eba1-f0b7-49b7" name="Land Raider Helios" hidden="false" collective="false" import="true" targetId="2d29-c013-02f4-1b69" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="e277-184d-4e8a-6177" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="7fbe-3107-4ce9-7806" name="Land Raider Prometheus" hidden="false" collective="false" import="true" targetId="63f2-ec41-a54f-9c67" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="e277-184d-4e8a-6177" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="1947-0e5e-593e-3647" name="Land Raider Redeemer" hidden="false" collective="false" import="true" targetId="5549-ba1d-add0-8c62" type="selectionEntry">
<categoryLinks>
<categoryLink id="698a-ab3c-0a83-c7a8" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="8b93-6c2f-29cc-ae3f" name="Land Raider Variant (Open Play)" hidden="false" collective="false" import="true" targetId="5ea6-c789-f6b9-5c00" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="cfc5-43e4-b02e-d1f9" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="e277-184d-4e8a-6177" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="dea5-558b-0346-6345" name="New CategoryLink" hidden="false" targetId="c7b7-edbc-bc14-6238" primary="false"/>
<categoryLink id="604d-0669-4c8d-0731" name="New CategoryLink" hidden="false" targetId="84e2-9fa9-ebe6-1d18" primary="false"/>
<categoryLink id="7af8-52a0-9ae5-1462" name="New CategoryLink" hidden="false" targetId="0366-7ccd-2513-2a38" primary="false"/>
<categoryLink id="3d74-9bab-219f-9ee1" name="New CategoryLink" hidden="false" targetId="c888f08a-6cea-4a01-8126-d374a9231554" primary="true"/>
<categoryLink id="90a4-35f2-233c-7d87" name="New CategoryLink" hidden="false" targetId="6cc4-1b62-8e8a-05cd" primary="false"/>
<categoryLink id="baa7-f8b3-0253-1cba" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="9970-ce6e-5488-c6e5" name="Land Speeder Storm" hidden="false" collective="false" import="true" targetId="0213-79bc-add0-1b5d" type="selectionEntry">
<categoryLinks>
<categoryLink id="0706-f137-c7e6-0bcf" name="New CategoryLink" hidden="false" targetId="1b66-3f5f-6705-079a" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="df1b-dd06-3c33-1b39" name="Land Speeder Tempest" hidden="false" collective="false" import="true" targetId="fe5a-52a1-e42a-51cd" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="e277-184d-4e8a-6177" type="equalTo"/>