forked from BSData/horus-heresy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2022 - LA - White Scars.cat
1685 lines (1684 loc) · 130 KB
/
2022 - LA - 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="caa9-c50e-8eed-2259" name="LA - V: White Scars" revision="6" battleScribeVersion="2.03" library="false" gameSystemId="28d4-bd2e-4858-ece6" gameSystemRevision="13" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<entryLinks>
<entryLink id="a738-6a11-dfe7-286c" name=" V: White Scars" hidden="false" collective="false" import="false" targetId="e01e-5cdd-e512-8353" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="91db-4591-14fb-9b51" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e400-7749-453c-4152" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="0a52-da7d-b209-7c15" name="New CategoryLink" hidden="false" targetId="e90d-e5a8-f42d-da84" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="2053-c79e-817a-32cb" name="Dark Sons of Death " hidden="false" collective="false" import="false" targetId="4372-ad51-04a6-97ce" 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="8d56-d960-0687-7fee" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="7689-dc44-a435-02ec" name="New CategoryLink" hidden="false" targetId="7aee-565f-b0ae-294e" primary="true"/>
<categoryLink id="6621-bf90-3035-c248" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="ef8a-7d90-01fc-4eb4" name="Ebon Keshig Cohort" hidden="false" collective="false" import="false" targetId="eb44-e977-2ce5-b239" type="selectionEntry">
<categoryLinks>
<categoryLink id="2046-6c03-bfac-0631" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
<categoryLink id="981c-8d75-2230-8fc6" name="New CategoryLink" hidden="false" targetId="7aee-565f-b0ae-294e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="f531-b3bf-a683-bbe1" name="Falcon's Claws" hidden="false" collective="false" import="false" targetId="c598-7fda-13d0-7523" 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="d344-d97b-4687-8a62" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="1a18-cd46-d204-85ed" name="New CategoryLink" hidden="false" targetId="20ef-cd01-a8da-376e" primary="true"/>
<categoryLink id="f3ec-1651-a78e-9b79" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="6d08-1a34-76e4-2256" name="Golden Keshig Squadron" hidden="false" collective="false" import="false" targetId="1d55-faa7-caa5-a132" type="selectionEntry">
<categoryLinks>
<categoryLink id="98eb-50a0-d89c-664a" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
<categoryLink id="90d1-acd8-eff5-467f" name="New CategoryLink" hidden="false" targetId="7aee-565f-b0ae-294e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="866d-e6ce-71a2-0476" name="Kyzagan Assualt Speeder Squadron" hidden="false" collective="false" import="false" targetId="e37e-09ea-50c6-2daa" type="selectionEntry">
<categoryLinks>
<categoryLink id="395e-8bb9-faa9-afd6" name="New CategoryLink" hidden="false" targetId="20ef-cd01-a8da-376e" primary="true"/>
<categoryLink id="bfe2-c28e-eb07-add1" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="23a4-cb25-4fc5-5c3c" name="Qin Xa" hidden="false" collective="false" import="false" targetId="5ac0-277f-15da-5f29" 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="d0b6-712f-0b12-a308" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="3282-02f6-67ab-9faf" name="New CategoryLink" hidden="false" targetId="4f85-eb33-30c9-8f51" primary="true"/>
<categoryLink id="f73e-34e5-fa25-642e" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
<categoryLink id="9189-508b-565b-fd20" name="Compulsory HQ:" hidden="false" targetId="f823-8c1d-6a87-26a1" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="2159-2614-e411-5aa2" name="Jaghatai Khan" hidden="false" collective="false" import="false" targetId="4b3a-8550-a3aa-1b91" 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="d0b6-712f-0b12-a308" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="cb05-ddea-48b7-7034" name="New CategoryLink" hidden="false" targetId="ad5f-31db-8bc7-5c46" primary="true"/>
<categoryLink id="f969-cbdf-b170-b089" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="2b7a-a60d-fbc4-7000" name="Tsolmon Khan" hidden="false" collective="false" import="false" targetId="5000-1882-b74b-03fe" type="selectionEntry">
<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="false" childId="d0b6-712f-0b12-a308" type="equalTo"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d344-d97b-4687-8a62" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="a7da-28a9-5f15-d931" name="New CategoryLink" hidden="false" targetId="4f85-eb33-30c9-8f51" primary="true"/>
<categoryLink id="a7ae-0458-9ffb-c783" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
<categoryLink id="a9bd-8e73-b3dc-7062" name="Compulsory HQ:" hidden="false" targetId="f823-8c1d-6a87-26a1" primary="false"/>
</categoryLinks>
</entryLink>
</entryLinks>
<sharedSelectionEntries>
<selectionEntry id="1d55-faa7-caa5-a132" name="Golden Keshig Squadron" hidden="false" collective="false" import="true" type="unit">
<infoLinks>
<infoLink id="e887-5cf7-ee58-54d8" name="Legiones Astartes (White Scars) " hidden="false" targetId="4b54-8bd0-9fdd-cbc4" type="rule"/>
<infoLink id="c8d3-862c-8c71-0d69" name="Hit & Run" hidden="false" targetId="5986-e960-d432-affd" type="rule"/>
<infoLink id="3c4d-1ce4-e689-c196" name="Relentless" hidden="false" targetId="7adf-ac9a-5035-522d" type="rule"/>
<infoLink id="1441-6471-603c-56df" name="Hammer of Wrath (X)" hidden="false" targetId="aec0-c3aa-1e4e-1779" type="rule">
<modifiers>
<modifier type="set" field="name" value="Hammer of Wrath (1)"/>
</modifiers>
</infoLink>
</infoLinks>
<categoryLinks>
<categoryLink id="4083-4f2a-5da9-39f9" name="Legiones Astartes" hidden="false" targetId="11f2-472f-c1d1-9ae9" primary="false"/>
<categoryLink id="b4a8-ec8a-7485-af38" name="Cavalry Sub-type:" hidden="false" targetId="6d79-a3e4-381f-7b0f" primary="false"/>
<categoryLink id="7dc2-f06d-83d7-3f15" name="Heavy" hidden="false" targetId="9231-183c-b97b-63f9" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="c46b-3bf0-77df-39bb" name="Golden Keshig Rider" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="5.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3e73-4232-d09b-6e61" type="max"/>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4ccc-dfe2-8604-b692" type="min"/>
</constraints>
<profiles>
<profile id="1129-c6a8-eeb6-2cca" name="Golden Keshig Rider" hidden="false" typeId="4bb2-cb95-e6c8-5a21" typeName="Unit">
<characteristics>
<characteristic name="Unit Type" typeId="ddd7-6f5c-a939-b69e">Cavalry (Antigrav, Heavy)</characteristic>
<characteristic name="Move" typeId="893e-2d76-8f04-44e5">15"</characteristic>
<characteristic name="WS" typeId="cc42-7ed5-7092-5c84">5</characteristic>
<characteristic name="BS" typeId="74ae-c840-0036-d244">4</characteristic>
<characteristic name="S" typeId="e478-41d4-a092-48a8">4</characteristic>
<characteristic name="T" typeId="c32b-5fdd-3fbe-9b1f">4</characteristic>
<characteristic name="W" typeId="57ee-1126-32a9-5672">2</characteristic>
<characteristic name="I" typeId="62d3-22d7-2d49-52dc">4</characteristic>
<characteristic name="A" typeId="f111-2ce5-dd12-d6b0">1</characteristic>
<characteristic name="Ld" typeId="e8a6-1da9-d384-8727">8</characteristic>
<characteristic name="Save" typeId="e593-6b3c-f169-04f0">2+</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="40.0"/>
</costs>
</selectionEntry>
<selectionEntry id="b55b-c197-71d3-9c84" name="Golden Keshig Champion" 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="7e6e-d6be-8533-0527" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2e7e-00b8-d83c-5b82" type="max"/>
</constraints>
<profiles>
<profile id="fad2-07ca-a41b-17d7" name="Golden Keshig Champion" hidden="false" typeId="4bb2-cb95-e6c8-5a21" typeName="Unit">
<characteristics>
<characteristic name="Unit Type" typeId="ddd7-6f5c-a939-b69e">Cavalry (Antigrav, Heavy, Character)</characteristic>
<characteristic name="Move" typeId="893e-2d76-8f04-44e5">15"</characteristic>
<characteristic name="WS" typeId="cc42-7ed5-7092-5c84">5</characteristic>
<characteristic name="BS" typeId="74ae-c840-0036-d244">4</characteristic>
<characteristic name="S" typeId="e478-41d4-a092-48a8">4</characteristic>
<characteristic name="T" typeId="c32b-5fdd-3fbe-9b1f">4</characteristic>
<characteristic name="W" typeId="57ee-1126-32a9-5672">2</characteristic>
<characteristic name="I" typeId="62d3-22d7-2d49-52dc">4</characteristic>
<characteristic name="A" typeId="f111-2ce5-dd12-d6b0">2</characteristic>
<characteristic name="Ld" typeId="e8a6-1da9-d384-8727">9</characteristic>
<characteristic name="Save" typeId="e593-6b3c-f169-04f0">2+</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="597d-1cf2-1be6-94af" name="Character" hidden="false" targetId="f75a-d5c1-59ba-5c5a" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="8126-aa08-3eb9-d49d" name="May exchange their Chainsword for:" hidden="false" collective="false" import="true" defaultSelectionEntryId="a0d6-d7e7-83b1-cb65">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b46e-c4d9-ca76-13d7" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cf28-d4d8-836a-0dff" type="max"/>
</constraints>
<entryLinks>
<entryLink id="86b7-6104-9b45-be96" name="Power Axe" hidden="false" collective="false" import="true" targetId="c066-2ace-f68c-e440" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="10.0"/>
</costs>
</entryLink>
<entryLink id="b624-c3bf-eb93-9016" name="Power Sword" hidden="false" collective="false" import="true" targetId="a3cd-aa97-a148-2309" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="10.0"/>
</costs>
</entryLink>
<entryLink id="1af1-e366-390b-6e03" name="Power Maul" hidden="false" collective="false" import="true" targetId="0df4-c67e-cf64-82e0" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="10.0"/>
</costs>
</entryLink>
<entryLink id="ee7d-5ca3-25bd-5843" name="Charnabal Glaive" hidden="false" collective="false" import="true" targetId="c07c-35e6-4616-ef25" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="10.0"/>
</costs>
</entryLink>
<entryLink id="86e4-d6af-8315-b714" name="Charnabal Sabre" hidden="false" collective="false" import="true" targetId="30c2-57eb-5bbe-be0b" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="10.0"/>
</costs>
</entryLink>
<entryLink id="19b5-858b-6297-9e9b" name="Charnabal Tabar" hidden="false" collective="false" import="true" targetId="4611-c33e-f360-7246" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="10.0"/>
</costs>
</entryLink>
<entryLink id="8874-b16c-1c6f-aaa7" name="Thunder Hammer" hidden="false" collective="false" import="true" targetId="838c-4002-713d-d7c6" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="25.0"/>
</costs>
</entryLink>
<entryLink id="a0d6-d7e7-83b1-cb65" name="Chainsword" hidden="false" collective="false" import="true" targetId="06e7-a6ae-ed1c-eb03" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="60.0"/>
</costs>
</selectionEntry>
<selectionEntry id="9637-087c-e481-7838" name="One Golden Keshig Rider may take a Legion Vexilla" 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="f377-438e-370c-5bc7" type="max"/>
</constraints>
<entryLinks>
<entryLink id="bae9-9831-d4f6-052f" name="Legion Vexilla" hidden="false" collective="false" import="true" targetId="21b1-2a90-9826-1782" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="10.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="9595-fa8a-8b5b-17f0" name="Any Golden Keshig Rider may Exchange their Chainsword for:" hidden="false" collective="false" import="true">
<modifiers>
<modifier type="increment" field="994a-cda5-7416-970b" value="1.0">
<conditions>
<condition field="selections" scope="1d55-faa7-caa5-a132" value="3.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="c46b-3bf0-77df-39bb" type="equalTo"/>
</conditions>
</modifier>
<modifier type="increment" field="994a-cda5-7416-970b" value="2.0">
<conditions>
<condition field="selections" scope="1d55-faa7-caa5-a132" value="4.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="c46b-3bf0-77df-39bb" type="equalTo"/>
</conditions>
</modifier>
<modifier type="increment" field="994a-cda5-7416-970b" value="3.0">
<conditions>
<condition field="selections" scope="1d55-faa7-caa5-a132" value="5.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="c46b-3bf0-77df-39bb" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="994a-cda5-7416-970b" type="max"/>
</constraints>
<entryLinks>
<entryLink id="50f8-fd08-245c-423d" name="Power Axe" hidden="false" collective="false" import="true" targetId="c066-2ace-f68c-e440" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="10.0"/>
</costs>
</entryLink>
<entryLink id="2c6d-483c-e960-440b" name="Power Sword" hidden="false" collective="false" import="true" targetId="a3cd-aa97-a148-2309" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="10.0"/>
</costs>
</entryLink>
<entryLink id="ffef-6ce1-cdd7-f418" name="Power Maul" hidden="false" collective="false" import="true" targetId="0df4-c67e-cf64-82e0" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="10.0"/>
</costs>
</entryLink>
<entryLink id="a7e1-c3c9-889f-612a" name="Charnabal Glaive" hidden="false" collective="false" import="true" targetId="c07c-35e6-4616-ef25" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="10.0"/>
</costs>
</entryLink>
<entryLink id="b45e-c625-1401-2b2d" name="Charnabal Sabre" hidden="false" collective="false" import="true" targetId="30c2-57eb-5bbe-be0b" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="10.0"/>
</costs>
</entryLink>
<entryLink id="1d5c-9a80-b18c-d980" name="Charnabal Tabar" hidden="false" collective="false" import="true" targetId="4611-c33e-f360-7246" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="10.0"/>
</costs>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="6847-cd7b-91b2-bdf7" name="Shamshir Jetbike" hidden="false" collective="false" import="true" targetId="567d-4386-3196-ca89" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="eab3-f1a0-4a10-001e" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8596-e30c-cc5a-71d4" type="max"/>
</constraints>
</entryLink>
<entryLink id="b46c-7212-bb0c-05d6" name="Chainsword" hidden="false" collective="false" import="true" targetId="06e7-a6ae-ed1c-eb03" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6167-7c91-d4a5-ddbb" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c824-c3df-69ac-e3e1" type="max"/>
</constraints>
</entryLink>
<entryLink id="29ac-e481-8b15-f657" name="Kontos Power Lance" hidden="false" collective="false" import="true" targetId="4b94-8a68-f284-604c" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f2e4-05b8-96ab-bf4e" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9c79-d771-9cc0-9507" type="max"/>
</constraints>
</entryLink>
<entryLink id="25e2-2bc5-a36e-6249" name="Bolt Pistol" hidden="false" collective="false" import="true" targetId="e5ae-6872-37aa-8600" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="95fb-866c-c2a4-e3ab" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="afe3-c472-a8cc-13b4" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="eb44-e977-2ce5-b239" name="Ebon Keshig Cohort" hidden="false" collective="false" import="true" type="unit">
<rules>
<rule id="71fa-da0d-0056-9072" name="Kharash" hidden="false">
<description>No enemy player may ever score any Victory points for the destruction of a unit with this special rule regardless of the scenario player or any victory conditions in effect. In addition, a model with this special rule may not join any unit that is not composed entirely of models that also have the Kharash special rule, nor may a model that does not have the Kharash special rule join a unit that includes any models with that special rule.</description>
</rule>
</rules>
<infoLinks>
<infoLink id="325c-8472-62d0-fdaa" name="Bulky (X)" hidden="false" targetId="676c-7b75-4b6f-9405" type="rule">
<modifiers>
<modifier type="set" field="name" value="Bulky (2)"/>
</modifiers>
</infoLink>
<infoLink id="1ba0-a67e-6d94-0648" name="Legiones Astartes (White Scars) " hidden="false" targetId="4b54-8bd0-9fdd-cbc4" type="rule"/>
<infoLink id="0916-f905-53e9-821a" name="Relentless" hidden="false" targetId="7adf-ac9a-5035-522d" type="rule"/>
<infoLink id="3f6b-4aee-fc05-663c" name="Stubborn" hidden="false" targetId="7989-1f2c-a43d-82ae" type="rule"/>
<infoLink id="459b-c053-f14b-cc59" name="Feel No Pain (X)" hidden="false" targetId="ec46-ff29-32e0-c2aa" type="rule">
<modifiers>
<modifier type="set" field="name" value="Feel No Pain (5+)"/>
</modifiers>
</infoLink>
</infoLinks>
<categoryLinks>
<categoryLink id="3eca-813c-b5fa-62bb" name="Infantry:" hidden="false" targetId="8b4f-bfe2-ce7b-f1b1" primary="false"/>
<categoryLink id="3cb7-2f9b-6a21-e130" name="Legiones Astartes" hidden="false" targetId="11f2-472f-c1d1-9ae9" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="a095-4971-0f84-f40b" name="Kharash" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="10.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f33e-7b06-1115-3b0d" type="max"/>
<constraint field="selections" scope="parent" value="5.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="635d-e9af-400a-4bd2" type="min"/>
</constraints>
<profiles>
<profile id="a138-c23f-03db-90fc" name="Kharash" hidden="false" typeId="4bb2-cb95-e6c8-5a21" typeName="Unit">
<characteristics>
<characteristic name="Unit Type" typeId="ddd7-6f5c-a939-b69e">Infantry</characteristic>
<characteristic name="Move" typeId="893e-2d76-8f04-44e5">8"</characteristic>
<characteristic name="WS" typeId="cc42-7ed5-7092-5c84">4</characteristic>
<characteristic name="BS" typeId="74ae-c840-0036-d244">4</characteristic>
<characteristic name="S" typeId="e478-41d4-a092-48a8">4</characteristic>
<characteristic name="T" typeId="c32b-5fdd-3fbe-9b1f">4</characteristic>
<characteristic name="W" typeId="57ee-1126-32a9-5672">2</characteristic>
<characteristic name="I" typeId="62d3-22d7-2d49-52dc">4</characteristic>
<characteristic name="A" typeId="f111-2ce5-dd12-d6b0">3</characteristic>
<characteristic name="Ld" typeId="e8a6-1da9-d384-8727">10</characteristic>
<characteristic name="Save" typeId="e593-6b3c-f169-04f0">2+</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="40.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="41bd-3348-cc4d-b69c" name="Any model in the unit may exchange its Power Glaive for:" hidden="false" collective="false" import="true">
<modifiers>
<modifier type="increment" field="6692-52a1-e951-93fa" value="1.0">
<repeats>
<repeat field="selections" scope="eb44-e977-2ce5-b239" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="a095-4971-0f84-f40b" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6692-52a1-e951-93fa" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="ac1b-e3ee-31e3-08be" name="Combi-bolter and power Weapon" hidden="false" collective="false" import="true" type="upgrade">
<selectionEntryGroups>
<selectionEntryGroup id="7289-331a-7dcf-921d" name="Power Weapon" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="70a9-262f-fc7c-da08" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2813-bdfb-3095-b922" type="max"/>
</constraints>
<entryLinks>
<entryLink id="a786-a8ad-8c66-0207" name="Power Sword" hidden="false" collective="false" import="true" targetId="a3cd-aa97-a148-2309" type="selectionEntry"/>
<entryLink id="faef-8567-c889-844b" name="Power Maul" hidden="false" collective="false" import="true" targetId="0df4-c67e-cf64-82e0" type="selectionEntry"/>
<entryLink id="7e4c-7fcc-7d3b-7ce7" name="Power Axe" hidden="false" collective="false" import="true" targetId="c066-2ace-f68c-e440" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="da2a-ff18-e1a4-bbab" name="May replace Combi-bolter with:" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="eb7f-09ba-ea9c-1f23" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fe45-7c9c-17bd-4d44" type="max"/>
</constraints>
<entryLinks>
<entryLink id="278c-5913-c864-449a" name="Combi-Bolter" hidden="false" collective="false" import="true" targetId="a498-c66f-9eb7-ca9a" type="selectionEntry"/>
<entryLink id="da39-c557-dea3-329a" name="Volkite Charger" hidden="false" collective="false" import="true" targetId="6f6e-ad55-e093-6503" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="2.0"/>
</costs>
</entryLink>
<entryLink id="066f-3e86-22cc-f5b4" name="Minor Combi-Weapon - Flamer" hidden="false" collective="false" import="true" targetId="34c4-db99-db36-0f2a" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="5.0"/>
</costs>
</entryLink>
<entryLink id="c017-3fdb-5a99-8797" name="Magna Combi-Weapon - Meltagun" hidden="false" collective="false" import="true" targetId="0d1c-227e-a3f8-cd63" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="10.0"/>
</costs>
</entryLink>
<entryLink id="f212-e632-624d-d3b5" name="Magna Combi-Weapon - Plasma Gun" hidden="false" collective="false" import="true" targetId="cc98-8596-c713-516c" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="10.0"/>
</costs>
</entryLink>
<entryLink id="82fc-f866-07c2-f1ed" name="Minor Combi-Weapon - Grenade Launcher" hidden="false" collective="false" import="true" targetId="aa3c-f5a5-9ce9-1497" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="5.0"/>
</costs>
</entryLink>
<entryLink id="5306-21b2-9e4b-7b61" name="Minor Combi-Weapon - Volkite Charger" hidden="false" collective="false" import="true" targetId="7e5c-3d25-5c88-32e0" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="5.0"/>
</costs>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="5.0"/>
</costs>
</selectionEntry>
<selectionEntry id="018e-faa6-a202-7a4f" name="Combi-bolter and Powerfist" hidden="false" collective="false" import="true" type="upgrade">
<selectionEntryGroups>
<selectionEntryGroup id="aa36-e3ff-a0d3-f390" name="May replace Combi-bolter with:" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0d46-64f8-8a56-0320" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7b93-28a0-7cf7-2b5c" type="max"/>
</constraints>
<entryLinks>
<entryLink id="9432-53d9-d9cb-9a8a" name="Combi-Bolter" hidden="false" collective="false" import="true" targetId="a498-c66f-9eb7-ca9a" type="selectionEntry"/>
<entryLink id="6f00-7be5-8091-81fc" name="Volkite Charger" hidden="false" collective="false" import="true" targetId="6f6e-ad55-e093-6503" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="2.0"/>
</costs>
</entryLink>
<entryLink id="4c04-443d-6d69-000c" name="Minor Combi-Weapon - Flamer" hidden="false" collective="false" import="true" targetId="34c4-db99-db36-0f2a" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="5.0"/>
</costs>
</entryLink>
<entryLink id="b9e5-9e03-d972-d085" name="Magna Combi-Weapon - Meltagun" hidden="false" collective="false" import="true" targetId="0d1c-227e-a3f8-cd63" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="10.0"/>
</costs>
</entryLink>
<entryLink id="5e7d-d3e8-79e0-d7ee" name="Magna Combi-Weapon - Plasma Gun" hidden="false" collective="false" import="true" targetId="cc98-8596-c713-516c" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="10.0"/>
</costs>
</entryLink>
<entryLink id="f935-4760-7d53-7418" name="Minor Combi-Weapon - Grenade Launcher" hidden="false" collective="false" import="true" targetId="aa3c-f5a5-9ce9-1497" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="5.0"/>
</costs>
</entryLink>
<entryLink id="c0a2-d725-a0bc-3136" name="Minor Combi-Weapon - Volkite Charger" hidden="false" collective="false" import="true" targetId="7e5c-3d25-5c88-32e0" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="5.0"/>
</costs>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="20cd-e876-c305-6537" name="Power Fist" hidden="false" collective="false" import="true" targetId="768d-b89b-7328-d749" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ef44-935b-1463-3505" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0a80-5bf2-a2b4-7f50" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="15.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
<selectionEntryGroup id="c4bc-8e61-133e-1079" name="Any model may take:" hidden="false" collective="false" import="true">
<modifiers>
<modifier type="increment" field="7c2b-e61c-c23e-b9b3" value="1.0">
<repeats>
<repeat field="selections" scope="eb44-e977-2ce5-b239" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="a095-4971-0f84-f40b" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7c2b-e61c-c23e-b9b3" type="max"/>
</constraints>
<entryLinks>
<entryLink id="fcf6-ca97-e5b8-6c7c" name="Grenade Harness" hidden="false" collective="false" import="true" targetId="251a-860d-2c4d-62cc" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="10.0"/>
</costs>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="31ab-88a1-49f3-397d" name="Power Glaive" hidden="false" collective="false" import="true" targetId="d917-8a5f-8459-8b0f" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c623-7825-95fa-1118" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9491-a63d-fd3f-d236" type="max"/>
</constraints>
</entryLink>
<entryLink id="6daa-1be2-cb94-a444" name="Tartaros Terminator Armour" hidden="false" collective="false" import="true" targetId="f850-d0af-8663-ccac" type="selectionEntry"/>
<entryLink id="50eb-2dfb-3a05-c127" name="Legion Vexilla" hidden="false" collective="false" import="true" targetId="21b1-2a90-9826-1782" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d239-ecbb-9075-ce33" type="max"/>
</constraints>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="10.0"/>
</costs>
</entryLink>
</entryLinks>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="e37e-09ea-50c6-2daa" name="Kyzagan Assualt Speeder Squadron" hidden="false" collective="false" import="true" type="unit">
<infoLinks>
<infoLink id="c506-b0b4-47ec-6f9d" name="Legiones Astartes (White Scars) " hidden="false" targetId="4b54-8bd0-9fdd-cbc4" type="rule"/>
<infoLink id="9346-5998-1eca-3eef" name="Deep Strike" hidden="false" targetId="f1e1-986f-c783-ca9e" type="rule"/>
<infoLink id="eda2-b2ca-cb80-009e" name="Relentless" hidden="false" targetId="7adf-ac9a-5035-522d" type="rule"/>
<infoLink id="0525-14a3-f2e2-6605" name="Firing Protocols (X)" hidden="false" targetId="32a3-f599-5c92-2945" type="rule">
<modifiers>
<modifier type="set" field="name" value="Firing Protocols (4)"/>
</modifiers>
</infoLink>
<infoLink id="14f6-8348-74ea-a0ff" name="Harbingers of the Legion" hidden="false" targetId="6ab3-174e-0869-da70" type="rule"/>
<infoLink id="be04-0e29-8c87-d11a" name="Outflank" hidden="false" targetId="bfbf-e75c-49a2-0285" type="rule"/>
<infoLink id="f543-146d-d77f-dd23" name="Hit & Run" hidden="false" targetId="5986-e960-d432-affd" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="74d4-f605-7461-db43" name="Cavalry:" hidden="false" targetId="6d79-a3e4-381f-7b0f" primary="false"/>
<categoryLink id="ce3b-6d6a-0eca-ace7" name="Heavy" hidden="false" targetId="9231-183c-b97b-63f9" primary="false"/>
<categoryLink id="0b3c-e0ff-0485-b240" name="Legiones Astartes" hidden="false" targetId="11f2-472f-c1d1-9ae9" primary="false"/>
<categoryLink id="059a-9e08-d32a-bc1f" name="Deep Strike:" hidden="false" targetId="0d4f-ff28-d819-a512" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="60de-1577-35ed-5a0b" name="Kyzagan Assault Speeder" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0dc9-d596-f8b3-9e8e" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fa71-5621-aff4-ac24" type="min"/>
</constraints>
<profiles>
<profile id="a56d-7fe2-97b3-2b86" name="Kyzagan Assault Speeder" hidden="false" typeId="4bb2-cb95-e6c8-5a21" typeName="Unit">
<characteristics>
<characteristic name="Unit Type" typeId="ddd7-6f5c-a939-b69e">Cavalry (Antigrav, Heavy)</characteristic>
<characteristic name="Move" typeId="893e-2d76-8f04-44e5">15"</characteristic>
<characteristic name="WS" typeId="cc42-7ed5-7092-5c84">4</characteristic>
<characteristic name="BS" typeId="74ae-c840-0036-d244">4</characteristic>
<characteristic name="S" typeId="e478-41d4-a092-48a8">4</characteristic>
<characteristic name="T" typeId="c32b-5fdd-3fbe-9b1f">7</characteristic>
<characteristic name="W" typeId="57ee-1126-32a9-5672">4</characteristic>
<characteristic name="I" typeId="62d3-22d7-2d49-52dc">4</characteristic>
<characteristic name="A" typeId="f111-2ce5-dd12-d6b0">2</characteristic>
<characteristic name="Ld" typeId="e8a6-1da9-d384-8727">9</characteristic>
<characteristic name="Save" typeId="e593-6b3c-f169-04f0">2+</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="105.0"/>
</costs>
</selectionEntry>
<selectionEntry id="43ff-1354-e17c-df7d" name="Any model may take up to two Hunter-killer Missiles:" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="increment" field="c443-a3e0-c5f0-27a8" value="1.0">
<repeats>
<repeat field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="model" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="set" field="name" value="2x Hunter-Killer Missile"/>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c443-a3e0-c5f0-27a8" type="max"/>
</constraints>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="5.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="30c1-cb86-8f71-cc50" name="Chainsword" hidden="false" collective="false" import="true" targetId="06e7-a6ae-ed1c-eb03" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2b57-9f60-dbe7-576e" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="52ac-e3d6-ed6b-5309" type="max"/>
</constraints>
</entryLink>
<entryLink id="5e37-c6f0-d1cb-6aeb" name="Power Armour" hidden="false" collective="false" import="true" targetId="2d9d-480e-7c14-1a6f" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4133-05e1-bbf4-9c45" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6750-e903-66ff-c153" type="max"/>
</constraints>
</entryLink>
<entryLink id="7ef1-87db-89ea-86b2" name="Bolt Pistol" hidden="false" collective="false" import="true" targetId="e5ae-6872-37aa-8600" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3b8d-1009-4e7f-d688" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="109e-c72e-b091-8d2b" type="max"/>
</constraints>
</entryLink>
<entryLink id="77ad-648d-63a9-ca15" name="Reaper Autocannon" hidden="false" collective="false" import="true" targetId="b87f-48de-6ced-043b" type="selectionEntry">
<modifiers>
<modifier type="set" field="name" value="2x Reaper Autocannons"/>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d3eb-63df-d025-f869" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3833-9402-4c5a-32fb" type="max"/>
</constraints>
</entryLink>
<entryLink id="1313-619d-8661-8a60" name="Kheres Assault Cannon" hidden="false" collective="false" import="true" targetId="fe77-2e74-160d-c7af" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3c7e-fc33-2e6a-ee98" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d340-3b7e-1ba9-b3b1" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="5ac0-277f-15da-5f29" name="Qin Xa" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="4529-c7c2-0eb5-4dcd" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="87b8-ba68-482d-dca9" name="Infantry:" hidden="false" targetId="8b4f-bfe2-ce7b-f1b1" primary="false"/>
<categoryLink id="906f-612d-b9f1-c6ae" name="Legiones Astartes" hidden="false" targetId="11f2-472f-c1d1-9ae9" primary="false"/>
<categoryLink id="a84b-ed0b-c0f9-e88a" name="Master of the Keshig" hidden="false" targetId="372b-4586-83da-2145" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="206b-bdce-668d-8411" name="Qin Xa" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="5c64-e058-60ec-a2f9" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="23dd-96f8-f041-681a" type="min"/>
</constraints>
<profiles>
<profile id="1f58-6fa0-8344-6080" name="Qin Xa" hidden="false" typeId="4bb2-cb95-e6c8-5a21" typeName="Unit">
<characteristics>
<characteristic name="Unit Type" typeId="ddd7-6f5c-a939-b69e">Infantry (Character, Unique)</characteristic>
<characteristic name="Move" typeId="893e-2d76-8f04-44e5">8"</characteristic>
<characteristic name="WS" typeId="cc42-7ed5-7092-5c84">6</characteristic>
<characteristic name="BS" typeId="74ae-c840-0036-d244">4</characteristic>
<characteristic name="S" typeId="e478-41d4-a092-48a8">4</characteristic>
<characteristic name="T" typeId="c32b-5fdd-3fbe-9b1f">4</characteristic>
<characteristic name="W" typeId="57ee-1126-32a9-5672">4</characteristic>
<characteristic name="I" typeId="62d3-22d7-2d49-52dc">6</characteristic>
<characteristic name="A" typeId="f111-2ce5-dd12-d6b0">5</characteristic>
<characteristic name="Ld" typeId="e8a6-1da9-d384-8727">10</characteristic>
<characteristic name="Save" typeId="e593-6b3c-f169-04f0">2+</characteristic>
</characteristics>
</profile>
</profiles>
<rules>
<rule id="ccce-710a-ee3e-931f" name="The Tails of the Dragon" hidden="false">
<description>The Tails of the Dragon are two separate but identical weapons, and the bonus for wielding two melee weapons has already been included in Qin Xa’s profile. When attacking with the Tails of the Dragon in close combat, select one of the profiles to use from those shown below for both weapons at the start of each of the controlling player’s Assault phases, before any attacks are made.</description>
</rule>
</rules>
<infoLinks>
<infoLink id="20e6-10cd-a922-db01" name="Bulky (X)" hidden="false" targetId="676c-7b75-4b6f-9405" type="rule">
<modifiers>
<modifier type="set" field="name" value="Bulky (2)"/>
</modifiers>
</infoLink>
<infoLink id="638c-4489-52d6-3c02" name="Counter-Attack (X)" hidden="false" targetId="fd6d-2a76-10e0-936a" type="rule">
<modifiers>
<modifier type="set" field="name" value="Counter Attack (2)"/>
</modifiers>
</infoLink>
<infoLink id="d230-18ac-5cf9-299f" name="Furious Charge (X)" hidden="false" targetId="2821-9269-862f-0554" type="rule">
<modifiers>
<modifier type="set" field="name" value="Furious Charge (1)"/>
</modifiers>
</infoLink>
<infoLink id="87d2-fb5f-dd51-6135" name="Legiones Astartes (White Scars) " hidden="false" targetId="4b54-8bd0-9fdd-cbc4" type="rule"/>
<infoLink id="fac2-2ccc-4a48-6a82" name="Relentless" hidden="false" targetId="7adf-ac9a-5035-522d" type="rule"/>
<infoLink id="e17d-ef99-6194-a113" name="Stubborn" hidden="false" targetId="7989-1f2c-a43d-82ae" type="rule"/>
</infoLinks>
<selectionEntries>
<selectionEntry id="76d2-0deb-4c9e-f4bf" name="The Tails of the Dragon" 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="513b-6d00-c413-62aa" type="min"/>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2f9a-6b07-5c79-196b" type="max"/>
</constraints>
<profiles>
<profile id="751f-1d36-d560-ba9a" name="Split the Mountain" hidden="false" typeId="1a1a-e592-2849-a5c0" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="95ba-cda7-b831-6066">-</characteristic>
<characteristic name="Strength" typeId="24d9-b8e1-a355-2458">+3</characteristic>
<characteristic name="AP" typeId="f7a6-e0d8-7973-cd8d">2</characteristic>
<characteristic name="Type" typeId="2f86-c8b4-b3b4-3ff9">Melee, Unwieldy, Master-crafted</characteristic>
</characteristics>
</profile>
<profile id="62f1-c303-cd64-11a4" name="Part the Horse's Mane" hidden="false" typeId="1a1a-e592-2849-a5c0" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="95ba-cda7-b831-6066">-</characteristic>
<characteristic name="Strength" typeId="24d9-b8e1-a355-2458">+1</characteristic>
<characteristic name="AP" typeId="f7a6-e0d8-7973-cd8d">2</characteristic>
<characteristic name="Type" typeId="2f86-c8b4-b3b4-3ff9">Melee, Precision Strikes (3+), Master-crafted</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="6f14-16c2-87c6-129a" name="Unwieldy" hidden="false" targetId="1570-c21a-881f-8b8a" type="rule"/>
<infoLink id="2474-bcfc-0fc3-cd24" name="Master-crafted" hidden="false" targetId="6de0-55b0-bf21-48b9" type="rule"/>
<infoLink id="a74a-3c86-affb-0e3a" name="Precision Strikes (X)" hidden="false" targetId="2206-8497-8fe1-e973" type="rule"/>
</infoLinks>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="8660-954f-abb5-9eb4" name="Grenade Harness" hidden="false" collective="false" import="true" targetId="251a-860d-2c4d-62cc" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c11b-3348-632e-68c3" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d0ee-f59e-0c3a-6f07" type="min"/>
</constraints>
</entryLink>
<entryLink id="2e4b-ff4b-316a-f3a0" name="Iron Halo" hidden="false" collective="false" import="true" targetId="b081-bf3c-f43d-4bd5" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b274-44ca-83a9-b85d" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="83ff-61e0-c15e-198e" type="min"/>
</constraints>
</entryLink>
<entryLink id="f0ba-5a38-9ad7-56c9" name="Tartaros Terminator Armour" hidden="false" collective="false" import="true" targetId="f850-d0af-8663-ccac" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e007-fded-6214-8726" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f24c-d109-d46b-0c4a" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="7667-3f97-01a5-f106" name="Warlord" hidden="false" collective="false" import="true" targetId="0176-56a3-d590-b103" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cc06-6b4c-8289-7b7f" type="max"/>
</constraints>
<profiles>
<profile id="2c69-0ca4-69bb-b220" name="Chosen of the Khagan" hidden="false" typeId="a0e6-a7b4-d55d-85b8" typeName="Warlord Trait">
<characteristics>
<characteristic name="Text" typeId="c68e-2cda-b67b-baca">If Qin Xa is the army’s Warlord, once per battle the controlling player may choose to either bring a single eligible friendly unit or group of friendly units assigned to a Deep Strike Assault or Flanking Assault into play from Reserve automatically instead of rolling or have it remain in Reserve for that turn (this may not be used to bring a unit or units into play on a turn when a Reserves roll could not normally be made for them). In addition, an army whose Warlord has this trait may make an additional Reaction during the Assault phase as long as the Warlord has not been removed as a casualty.</characteristic>
</characteristics>
</profile>
</profiles>
</entryLink>
<entryLink id="8312-51a3-b031-cff3" name="Retinue" hidden="false" collective="false" import="true" targetId="2dd0-7045-8ae5-f394" type="selectionEntryGroup"/>
<entryLink id="fca3-9be2-4739-1a75" name="Master of the Legion" hidden="false" collective="false" import="true" targetId="0068-6b0a-0086-3d6b" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="da5f-0725-0b3b-07b0" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9385-f3ab-570f-a819" type="min"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="220.0"/>
</costs>
</selectionEntry>
<selectionEntry id="4b3a-8550-a3aa-1b91" name="Jaghatai Khan" publicationId="817a-6288-e016-7469" page="182" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="add" field="category" value="6d79-a3e4-381f-7b0f">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="f1e4-7799-685b-0c23" type="equalTo"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="8b4f-bfe2-ce7b-f1b1">
<conditions>
<condition field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="f1e4-7799-685b-0c23" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="4a08-e7f1-f263-1e3d" name="Legiones Astartes" hidden="false" targetId="11f2-472f-c1d1-9ae9" primary="false"/>
<categoryLink id="3ab5-6177-9c3f-8d9f" name="Independant Character" hidden="false" targetId="4f07-3d45-4f28-a0c6" primary="false"/>
<categoryLink id="b60e-9e47-4955-11b4" name="Primarch:" hidden="false" targetId="ad5f-31db-8bc7-5c46" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="cfe5-8d24-1773-41ab" name="Jaghatai Khan" publicationId="817a-6288-e016-7469" page="182" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c5ec-a0a9-9efc-2f56" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a6f6-518f-ecca-72cb" type="max"/>
</constraints>
<profiles>
<profile id="e2e9-a081-489c-2660" name="Jaghatai Khan" hidden="false" typeId="4bb2-cb95-e6c8-5a21" typeName="Unit">
<modifiers>
<modifier type="set" field="893e-2d76-8f04-44e5" value="18">
<conditions>
<condition field="selections" scope="4b3a-8550-a3aa-1b91" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="f1e4-7799-685b-0c23" type="greaterThan"/>
</conditions>
</modifier>
<modifier type="set" field="57ee-1126-32a9-5672" value="7">
<conditions>
<condition field="selections" scope="4b3a-8550-a3aa-1b91" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="f1e4-7799-685b-0c23" type="greaterThan"/>
</conditions>
</modifier>
<modifier type="set" field="ddd7-6f5c-a939-b69e" value="Primarch (Unique, Antigrav)">
<conditions>
<condition field="selections" scope="4b3a-8550-a3aa-1b91" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="f1e4-7799-685b-0c23" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="Unit Type" typeId="ddd7-6f5c-a939-b69e">Primarch (Unique)</characteristic>
<characteristic name="Move" typeId="893e-2d76-8f04-44e5">9</characteristic>
<characteristic name="WS" typeId="cc42-7ed5-7092-5c84">7</characteristic>
<characteristic name="BS" typeId="74ae-c840-0036-d244">6</characteristic>
<characteristic name="S" typeId="e478-41d4-a092-48a8">6</characteristic>
<characteristic name="T" typeId="c32b-5fdd-3fbe-9b1f">6</characteristic>
<characteristic name="W" typeId="57ee-1126-32a9-5672">6</characteristic>
<characteristic name="I" typeId="62d3-22d7-2d49-52dc">8</characteristic>
<characteristic name="A" typeId="f111-2ce5-dd12-d6b0">6</characteristic>
<characteristic name="Ld" typeId="e8a6-1da9-d384-8727">10</characteristic>
<characteristic name="Save" typeId="e593-6b3c-f169-04f0">2+</characteristic>
</characteristics>
</profile>
</profiles>
<rules>
<rule id="6f4f-e9bb-992e-f94b" name="Lightning From Blue Skies" hidden="false">
<description>When held in Reserve, do not roll for Jaghatai Khan or any unit he is considered to be part of while in Reserve. Instead, at the beginning of any of the controlling player's turns except the first, Jaghatai Khan and any unit he has joined may be brought into play from Reserves without making a Reserves Roll. If Jaghatai Khan is part of a Flanking Assault then this rule applies to all units that are part of that Flanking Assault - but does not apply to a Deep Strike Assault, Drop Pod Assault, or Subterranean Assault that includes Jaghatai Khan. </description>
</rule>
</rules>
<infoLinks>
<infoLink id="a8dc-6571-ceea-2aad" name="Crusader" hidden="false" targetId="c705-0829-75f6-a785" type="rule"/>
<infoLink id="ff7c-57b8-8b75-7ee1" name="Move Through Cover" hidden="false" targetId="2b6f-bfec-759e-1746" type="rule"/>
<infoLink id="7bde-e3f6-b3fa-d653" name="Hit & Run" hidden="false" targetId="5986-e960-d432-affd" type="rule"/>
<infoLink id="4dd1-8415-c195-d10b" name="Pathfinder" hidden="false" targetId="ec97-7aa8-49f5-b298" type="rule"/>
</infoLinks>
<selectionEntries>
<selectionEntry id="739d-d366-7344-bd3a" name="Storm's Voice" 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="32c5-c051-273c-9d24" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="afbf-9b42-b8fa-e0d0" type="min"/>
</constraints>
<profiles>
<profile id="47ae-cce0-65d5-bb47" name="Storm's Voice" hidden="false" typeId="1a1a-e592-2849-a5c0" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="95ba-cda7-b831-6066">12"</characteristic>
<characteristic name="Strength" typeId="24d9-b8e1-a355-2458">6</characteristic>
<characteristic name="AP" typeId="f7a6-e0d8-7973-cd8d">4</characteristic>
<characteristic name="Type" typeId="2f86-c8b4-b3b4-3ff9">Pistol 2, Rending (5+), Deflagrate, Concussive (1), Master-crafted</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="cf55-eca8-0f79-a646" name="Rending (X)" hidden="false" targetId="0ac9-fab7-aef3-de1d" type="rule">
<modifiers>
<modifier type="set" field="name" value="Rending (5+)"/>
</modifiers>
</infoLink>
<infoLink id="acbb-8ad3-52f4-41e3" name="Deflagrate" hidden="false" targetId="60bc-f79a-67ae-be4f" type="rule"/>
<infoLink id="ba54-3521-2a11-8e8e" name="Concussive (X)" hidden="false" targetId="7ce5-1bfb-64e6-f826" type="rule">
<modifiers>
<modifier type="set" field="name" value="Concussive (1)"/>
</modifiers>
</infoLink>
<infoLink id="e46c-3b47-f233-5545" name="Master-crafted" hidden="false" targetId="6de0-55b0-bf21-48b9" type="rule"/>
</infoLinks>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="cf69-2a95-2f98-2f97" name="The White Tiger Dao" 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="6d3d-4ded-ec25-8fd8" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="afd4-90d6-2533-04ba" type="max"/>
</constraints>
<profiles>
<profile id="17f2-1f76-2160-c9ed" name="The White Tiger Dao" hidden="false" typeId="1a1a-e592-2849-a5c0" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="95ba-cda7-b831-6066">- </characteristic>
<characteristic name="Strength" typeId="24d9-b8e1-a355-2458">+1</characteristic>
<characteristic name="AP" typeId="f7a6-e0d8-7973-cd8d">2</characteristic>
<characteristic name="Type" typeId="2f86-c8b4-b3b4-3ff9">Melee, Duellist's Edge (1), Furious Charge (2), Murderous Strike (5+), Master-crafted</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="ba1e-c2be-8595-4c88" name="Duellist’s Edge (X)" hidden="false" targetId="7bf3-86ce-04c2-e6ba" type="rule">
<modifiers>
<modifier type="set" field="name" value="Duellist's Edge (1)"/>
</modifiers>
</infoLink>
<infoLink id="17b8-dd98-a422-54e2" name="Furious Charge (X)" hidden="false" targetId="2821-9269-862f-0554" type="rule">
<modifiers>
<modifier type="set" field="name" value="Furious Charge (2)"/>
</modifiers>
</infoLink>
<infoLink id="602b-be3a-59fc-f3df" name="Murderous Strike (X)" hidden="false" targetId="93b9-1454-0e7c-42ae" type="rule">
<modifiers>
<modifier type="set" field="name" value="Murderous Strike (5+)"/>
</modifiers>
</infoLink>
<infoLink id="feb3-abac-30ee-7e4e" name="Master-crafted" hidden="false" targetId="6de0-55b0-bf21-48b9" type="rule"/>
</infoLinks>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="d363-43e5-c28f-e16c" name="The Wildfire Panoply" 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="cbe7-c815-1af7-76de" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="57fd-5400-3bd9-7013" type="max"/>
</constraints>
<profiles>
<profile id="2999-7ff1-c51c-a802" name="The Wildfire Panoply" hidden="false" typeId="2a1f-7837-f0ef-be44" typeName="Wargear Item">
<characteristics>
<characteristic name="Description" typeId="347e-ee4a-764f-6be3">The Wildfire Panoply provides a 2+ Armour Save, a 4+ Invulnerable Save during the Shooting phase and a 3+ Invulnerable Save duing both the Movement phase and the Assault phase. </characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="eeae-f3ea-1788-89cf" name="Frag Grenades" hidden="false" collective="false" import="true" targetId="cf9c-327b-3449-00d7" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fd84-33d2-2cd7-1aad" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ea30-b06f-8eb9-a011" type="min"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="f1e4-7799-685b-0c23" name="Sojutsu Pattern Voidbike" publicationId="817a-6288-e016-7469" page="183" 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="ac73-803c-ccbf-4767" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2eff-f1c6-23d9-7039" type="min"/>
</constraints>
<rules>
<rule id="6e15-5cbf-f46c-2ac0" name="Sojutsu Pattern Voidbike" hidden="false">
<description>Falls Back 3D6" instead of 2D6"
May join units that include models with the Cavalry Unit Type despite the usual restrictions, and any rules that target the Cavalry Unit Type are considered to affect Jaghatai Khan as if he had that type. </description>
</rule>
</rules>
<infoLinks>
<infoLink id="43d5-4859-91b6-9026" name="Antigrav Sub-type" hidden="false" targetId="e1d7-0fe8-59f4-af89" type="rule"/>
<infoLink id="a7b6-576e-a227-84d4" name="Firing Protocols (X)" hidden="false" targetId="32a3-f599-5c92-2945" type="rule">
<modifiers>
<modifier type="set" field="name" value="Firing Protocols (3)"/>
</modifiers>
</infoLink>
<infoLink id="d8f0-118d-2cc9-9946" name="Hammer of Wrath (X)" hidden="false" targetId="aec0-c3aa-1e4e-1779" type="rule">
<modifiers>
<modifier type="set" field="name" value="Hammer of Wrarth (2)"/>
</modifiers>
</infoLink>
</infoLinks>
<entryLinks>
<entryLink id="b6b9-f060-71f5-4f0a" name="Heavy Bolter" hidden="false" collective="false" import="true" targetId="07fd-c24a-9235-4206" type="selectionEntry">
<modifiers>
<modifier type="append" field="name" value=" - Master-crafted"/>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e0f6-5ad7-9b11-ff27" type="max"/>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="64d7-4c38-ddfc-e997" type="min"/>
</constraints>
<infoLinks>
<infoLink id="c27e-e50c-2b01-d927" name="Master-crafted" hidden="false" targetId="6de0-55b0-bf21-48b9" type="rule"/>
</infoLinks>
</entryLink>
</entryLinks>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="25.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="e074-0347-f0b3-b329" name="Warlord" hidden="false" collective="false" import="true" targetId="0176-56a3-d590-b103" type="selectionEntry">
<constraints>