generated from BSData/TemplateDataRepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path17 Word Bearers.cat
1862 lines (1861 loc) · 145 KB
/
17 Word Bearers.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="2afc-5be1-bc21-e806" name="17 Word Bearers" revision="11" battleScribeVersion="2.03" library="false" gameSystemId="218d-602b-768b-7f56" gameSystemRevision="13" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<comment>Category: Lorgar in main lib, as constraint on archeotech pistol</comment>
<categoryEntries>
<categoryEntry id="f92c-ae4c-6bab-d8cb" name="Daemon" hidden="false"/>
<categoryEntry id="332d-1d90-f4c3-2c8b" name="Mhara Gal" hidden="false"/>
<categoryEntry id="6948-7b90-1028-a17c" name="Gal Vorbak" hidden="false"/>
<categoryEntry id="554d-9445-3776-3b12" name="The Ashen Circle" hidden="false"/>
<categoryEntry id="2d04-7095-1c6c-cd63" name="Erebus" hidden="false"/>
<categoryEntry id="8bc1-82cb-b530-b4ca" name="Diabolist" hidden="false"/>
<categoryEntry id="8648-9c26-7692-a0c8" name="17 World Bearers" hidden="false"/>
<categoryEntry id="318b-0682-610f-57c6" name="Kor Phaeton" hidden="false"/>
<categoryEntry id="521d-59bd-b457-0fb9" name="Hol Beloth" hidden="false"/>
<categoryEntry id="aa6f-df88-22d0-5f7a" name="Zardu Layak" hidden="false"/>
<categoryEntry id="23e0-534e-e6b9-7d8d" name="Blade Slaves" hidden="false"/>
<categoryEntry id="92e4-cc2d-0d31-8218" name="Argel Tal" hidden="false"/>
</categoryEntries>
<entryLinks>
<entryLink id="5b5c-0cf2-2923-9091" name="Mhara Gal Tainted Dreadnought" hidden="true" collective="false" import="true" targetId="7f4a-6f91-f858-af69" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="feb2-eae6-5181-5b9e" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="334b-9637-98a2-ad8b" name="New CategoryLink" hidden="false" targetId="c39a-99d8-e84f-b5f9" primary="true"/>
<categoryLink id="124f-0126-9c41-cfbf" name="Vehicle" hidden="false" targetId="7484-8228-82e5-5b9f" primary="false"/>
<categoryLink id="b7fa-d135-0066-e1c8" name="Daemon" hidden="false" targetId="f92c-ae4c-6bab-d8cb" primary="false"/>
<categoryLink id="f13b-9d2d-59e8-d398" name="Dreadnought" hidden="false" targetId="11ae-5fb6-64c0-730c" primary="false"/>
<categoryLink id="5891-5d9b-07ac-83ca" name="Mhara Gal" hidden="false" targetId="332d-1d90-f4c3-2c8b" primary="false"/>
<categoryLink id="6a04-d2ac-ff9e-d3fc" name="Traitor" hidden="false" targetId="8e10-6a5e-d7db-c85d" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="3af3-7452-47f2-565f" name="Gal Vorbak" hidden="true" collective="false" import="true" targetId="daed-d2c0-b8de-e2f2" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="feb2-eae6-5181-5b9e" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="f301-9a07-b03e-f01c" name="New CategoryLink" hidden="false" targetId="c39a-99d8-e84f-b5f9" primary="true"/>
<categoryLink id="05ab-5ba0-bd44-6bdf" name="Infantry" hidden="false" targetId="c9bb-6ccb-efae-6184" primary="false"/>
<categoryLink id="1252-0b85-aff3-458b" name="Daemon" hidden="false" targetId="f92c-ae4c-6bab-d8cb" primary="false"/>
<categoryLink id="5739-a0dc-d13e-8468" name="Gal Vorbak" hidden="false" targetId="6948-7b90-1028-a17c" primary="false"/>
<categoryLink id="d125-87d2-0b67-5019" name="Traitor" hidden="false" targetId="8e10-6a5e-d7db-c85d" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="b1d3-c493-a30e-1656" name="The Ashen Circle" hidden="false" collective="false" import="true" targetId="606e-7911-a9fc-4070" type="selectionEntry">
<categoryLinks>
<categoryLink id="51be-47d9-499e-6b7c" name="New CategoryLink" hidden="false" targetId="4912-b312-83e0-ea3e" primary="true"/>
<categoryLink id="f490-2a8a-a9a0-36dd" name="Infantry" hidden="false" targetId="c9bb-6ccb-efae-6184" primary="false"/>
<categoryLink id="0bf7-eccd-7700-279c" name="Core" hidden="false" targetId="dc0f-a3bb-f2c4-93ad" primary="false"/>
<categoryLink id="8c60-20db-0dca-ae82" name="Elite" hidden="false" targetId="c39a-99d8-e84f-b5f9" primary="false"/>
<categoryLink id="f1d1-7367-2cc8-43d3" name="Jump Pack" hidden="false" targetId="ee19-27ba-2661-90fe" primary="false"/>
<categoryLink id="6b0e-bc3c-1278-81f4" name="Fly" hidden="false" targetId="150d-38e7-8c25-f30c" primary="false"/>
<categoryLink id="69d1-b097-44e0-251e" name="Astartes" hidden="false" targetId="8eb7-c779-b4ba-c4ec" primary="false"/>
<categoryLink id="4ca6-fb41-6c64-be73" name="Void Hardened" hidden="false" targetId="ff02-cf36-1c2d-ab9b" primary="false"/>
<categoryLink id="1401-2de1-34ef-be61" name="The Ashen Circle" hidden="false" targetId="554d-9445-3776-3b12" primary="false"/>
<categoryLink id="d1cf-d65d-5dc4-7aaf" name="Destroyer" hidden="false" targetId="d3aa-7976-a889-502d" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="a894-4906-2741-81fc" name="High Chaplain Erebus" hidden="false" collective="false" import="true" targetId="2200-b060-dbbc-da24" type="selectionEntry">
<categoryLinks>
<categoryLink id="8c09-196f-a63e-8104" name="New CategoryLink" hidden="false" targetId="1a28-aa9c-3555-8be9" primary="true"/>
<categoryLink id="a176-f637-ce46-4461" name="Traitor" hidden="false" targetId="8e10-6a5e-d7db-c85d" primary="false"/>
<categoryLink id="05e3-5868-d3f0-55fc" name="Infantry" hidden="false" targetId="c9bb-6ccb-efae-6184" primary="false"/>
<categoryLink id="b004-b2d0-67cf-b1b0" name="Character" hidden="false" targetId="0749-dd2b-52eb-0bb0" primary="false"/>
<categoryLink id="b5a5-ef95-da44-a6c1" name="Astartes" hidden="false" targetId="8eb7-c779-b4ba-c4ec" primary="false"/>
<categoryLink id="9615-1c9a-9378-e578" name="Consul" hidden="false" targetId="d6e2-65fc-5769-3375" primary="false"/>
<categoryLink id="1260-0e75-3e5b-c7f2" name="Chaplain" hidden="false" targetId="8c6d-9c90-f0f4-1017" primary="false"/>
<categoryLink id="4c40-9e48-3b26-4dfd" name="Master of the Legion" hidden="false" targetId="5142-9e49-4ae3-54f8" primary="false"/>
<categoryLink id="b77a-03e2-2830-fe47" name="Erebus" hidden="false" targetId="2d04-7095-1c6c-cd63" primary="false"/>
<categoryLink id="06e3-3935-cf4b-7445" name="Diabolist" hidden="false" targetId="8bc1-82cb-b530-b4ca" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="0cff-e35d-d27f-b5fb" name="Kor Phaeron" hidden="false" collective="false" import="true" targetId="0a27-b26a-373c-5967" type="selectionEntry">
<modifiers>
<modifier type="remove" field="category" value="26c1-e6bf-4904-500b">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="7bdd-b422-98d0-07cc" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="6caf-604f-0664-b346" name="HQ" hidden="false" targetId="1a28-aa9c-3555-8be9" primary="true"/>
<categoryLink id="0c58-0a0a-6a5e-3803" name="Infantry" hidden="false" targetId="c9bb-6ccb-efae-6184" primary="false"/>
<categoryLink id="4bee-e4c6-1d87-ffc8" name="Character" hidden="false" targetId="0749-dd2b-52eb-0bb0" primary="false"/>
<categoryLink id="27bd-01f3-b9c0-2adf" name="Astartes" hidden="false" targetId="8eb7-c779-b4ba-c4ec" primary="false"/>
<categoryLink id="74bc-4260-98c6-87f8" name="Praetor" hidden="false" targetId="c46a-7ccd-8c8b-bac2" primary="false"/>
<categoryLink id="8e7c-487d-cd37-6f34" name="Diabolist" hidden="false" targetId="8bc1-82cb-b530-b4ca" primary="false"/>
<categoryLink id="bf7b-94ad-5307-a3a4" name="Master of the Legion" hidden="false" targetId="5142-9e49-4ae3-54f8" primary="false"/>
<categoryLink id="a47d-1dcb-ec67-ad35" name="Kor Phaeton" hidden="false" targetId="318b-0682-610f-57c6" primary="false"/>
<categoryLink id="398a-950c-c4b6-48f8" name="Traitor" hidden="false" targetId="8e10-6a5e-d7db-c85d" primary="false"/>
<categoryLink id="fe4b-5ac4-82ea-df69" name="Warlord" hidden="false" targetId="26c1-e6bf-4904-500b" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="a84e-dbc4-b67c-7ccc" name="Lorgar Aurelian" hidden="false" collective="false" import="true" targetId="7bdd-b422-98d0-07cc" type="selectionEntry">
<categoryLinks>
<categoryLink id="3929-d362-a885-5038" name="Warlord" hidden="false" targetId="26c1-e6bf-4904-500b" primary="false"/>
<categoryLink id="1208-d8d5-4a08-dba3" name="Infantry" hidden="false" targetId="c9bb-6ccb-efae-6184" primary="false"/>
<categoryLink id="ea50-c705-1d06-3bfa" name="Character" hidden="false" targetId="0749-dd2b-52eb-0bb0" primary="false"/>
<categoryLink id="f4fa-2df4-dbbd-1573" name="Monster" hidden="false" targetId="20be-1fc6-2109-1f7e" primary="false"/>
<categoryLink id="6af3-fa3a-85a9-0b69" name="Astartes" hidden="false" targetId="8eb7-c779-b4ba-c4ec" primary="false"/>
<categoryLink id="d453-5d84-a33e-5559" name="Primarch" hidden="false" targetId="549b-ebaa-4b3d-3eb9" primary="false"/>
<categoryLink id="7070-fe4f-7610-6416" name="Master of the Legion" hidden="false" targetId="5142-9e49-4ae3-54f8" primary="false"/>
<categoryLink id="5f37-a0ef-4c27-5f8c" name="Psyker" hidden="false" targetId="8278-c2c7-5e4d-036c" primary="false"/>
<categoryLink id="6aad-4e3a-7a10-a74b" name="Lorgar" hidden="false" targetId="1583-9bed-5d49-650e" primary="false"/>
<categoryLink id="6145-88da-c7fb-a9f3" name="New CategoryLink" hidden="false" targetId="1912-f8ea-2f8e-8a02" primary="true"/>
<categoryLink id="7b4a-ae35-0969-cbb2" name="Traitor" hidden="false" targetId="8e10-6a5e-d7db-c85d" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="a6af-b644-d397-7ffe" name="Hol Beloth" hidden="false" collective="false" import="true" targetId="811c-e9de-2fa1-50fd" type="selectionEntry">
<categoryLinks>
<categoryLink id="7e9c-b3ac-1743-b261" name="Traitor" hidden="false" targetId="8e10-6a5e-d7db-c85d" primary="false"/>
<categoryLink id="45dc-06c5-3f1f-5398" name="Infantry" hidden="false" targetId="c9bb-6ccb-efae-6184" primary="false"/>
<categoryLink id="c68a-ca2e-50f1-7443" name="Character" hidden="false" targetId="0749-dd2b-52eb-0bb0" primary="false"/>
<categoryLink id="dac4-d657-6394-a3dd" name="Astartes" hidden="false" targetId="8eb7-c779-b4ba-c4ec" primary="false"/>
<categoryLink id="4c02-8b16-a67d-816c" name="Praetor" hidden="false" targetId="c46a-7ccd-8c8b-bac2" primary="false"/>
<categoryLink id="5448-55c5-b6fe-96fd" name="Master of the Legion" hidden="false" targetId="5142-9e49-4ae3-54f8" primary="false"/>
<categoryLink id="43c5-b8a6-4e45-2542" name="Hol Beloth" hidden="false" targetId="521d-59bd-b457-0fb9" primary="false"/>
<categoryLink id="6f7f-98f9-4480-f822" name="New CategoryLink" hidden="false" targetId="1a28-aa9c-3555-8be9" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="129b-1ee9-9962-8645" name="Zardu Layak" hidden="false" collective="false" import="true" targetId="dc59-a63c-c13e-da3b" type="selectionEntry">
<categoryLinks>
<categoryLink id="1b49-10c4-4844-ea88" name="New CategoryLink" hidden="false" targetId="1a28-aa9c-3555-8be9" primary="true"/>
<categoryLink id="d5f7-df17-7579-a381" name="Traitor" hidden="false" targetId="8e10-6a5e-d7db-c85d" primary="false"/>
<categoryLink id="347b-51d4-11e0-eda5" name="Infantry" hidden="false" targetId="c9bb-6ccb-efae-6184" primary="false"/>
<categoryLink id="bd88-2846-0a76-29c8" name="Character" hidden="false" targetId="0749-dd2b-52eb-0bb0" primary="false"/>
<categoryLink id="2b8e-0595-206c-201e" name="Astartes" hidden="false" targetId="8eb7-c779-b4ba-c4ec" primary="false"/>
<categoryLink id="fc31-84fe-42a1-9248" name="Psyker" hidden="false" targetId="8278-c2c7-5e4d-036c" primary="false"/>
<categoryLink id="c9bd-dd6f-7345-8e08" name="Consul" hidden="false" targetId="d6e2-65fc-5769-3375" primary="false"/>
<categoryLink id="d7cc-0539-86eb-1540" name="Diabolist" hidden="false" targetId="8bc1-82cb-b530-b4ca" primary="false"/>
<categoryLink id="76df-01ed-64d6-722f" name="Daemon" hidden="false" targetId="f92c-ae4c-6bab-d8cb" primary="false"/>
<categoryLink id="6bcc-6d18-c132-11da" name="Master of the Legion" hidden="false" targetId="5142-9e49-4ae3-54f8" primary="false"/>
<categoryLink id="0818-582d-1386-f761" name="Zardu Layak" hidden="false" targetId="aa6f-df88-22d0-5f7a" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="03f0-b727-341e-d2bd" name="The Ashen Circle" hidden="true" collective="false" import="true" targetId="606e-7911-a9fc-4070" type="selectionEntry">
<comment>Ashen Circle as TROOP choice for Zardu Layak</comment>
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="dc59-a63c-c13e-da3b" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="e145-9e33-1cca-d9a2" name="New CategoryLink" hidden="false" targetId="eb42-9caf-a22d-c897" primary="true"/>
<categoryLink id="de77-a9a2-b246-a30e" name="Astartes" hidden="false" targetId="8eb7-c779-b4ba-c4ec" primary="false"/>
<categoryLink id="7dbe-4c39-ce49-3a82" name="Core" hidden="false" targetId="dc0f-a3bb-f2c4-93ad" primary="false"/>
<categoryLink id="b534-0486-cb2f-691c" name="Elite" hidden="false" targetId="c39a-99d8-e84f-b5f9" primary="false"/>
<categoryLink id="d372-25f8-0f11-b9a2" name="Fly" hidden="false" targetId="150d-38e7-8c25-f30c" primary="false"/>
<categoryLink id="19c2-5e4f-0611-3369" name="Infantry" hidden="false" targetId="c9bb-6ccb-efae-6184" primary="false"/>
<categoryLink id="f311-5ba3-c5b4-ac94" name="Jump Pack" hidden="false" targetId="ee19-27ba-2661-90fe" primary="false"/>
<categoryLink id="9c83-03af-da05-93e9" name="Void Hardened" hidden="false" targetId="ff02-cf36-1c2d-ab9b" primary="false"/>
<categoryLink id="5ed5-f36b-d8dc-b412" name="The Ashen Circle" hidden="false" targetId="554d-9445-3776-3b12" primary="false"/>
<categoryLink id="cff7-6fcd-2123-20c5" name="Destroyer" hidden="false" targetId="d3aa-7976-a889-502d" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="6f2e-45b1-54ae-e291" name="Argel Tal - possessed form" hidden="false" collective="false" import="true" targetId="9055-0639-ccf8-e8bb" type="selectionEntry">
<categoryLinks>
<categoryLink id="ba59-9eb6-5633-784e" name="New CategoryLink" hidden="false" targetId="1a28-aa9c-3555-8be9" primary="true"/>
<categoryLink id="c627-ebe1-aebc-298c" name="Infantry" hidden="false" targetId="c9bb-6ccb-efae-6184" primary="false"/>
<categoryLink id="9c45-7775-e4b4-15fa" name="Astartes" hidden="false" targetId="8eb7-c779-b4ba-c4ec" primary="false"/>
<categoryLink id="e57c-072f-2684-d9a9" name="Daemon" hidden="false" targetId="f92c-ae4c-6bab-d8cb" primary="false"/>
<categoryLink id="24d1-6639-9f82-d080" name="Master of the Legion" hidden="false" targetId="5142-9e49-4ae3-54f8" primary="false"/>
<categoryLink id="0fcd-c9e2-3dbb-bf85" name="Argel Tal" hidden="false" targetId="92e4-cc2d-0d31-8218" primary="false"/>
<categoryLink id="8282-284d-66ed-efca" name="Traitor" hidden="false" targetId="8e10-6a5e-d7db-c85d" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="c5da-4306-6f11-c4c1" name="Gal Vorbak" hidden="true" collective="false" import="true" targetId="daed-d2c0-b8de-e2f2" type="selectionEntry">
<comment>TROOP choice for Argel Tal as warlord</comment>
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="d42a-9dd1-4585-8ed0" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="3ff8-8adf-3f18-b92c" name="Infantry" hidden="false" targetId="c9bb-6ccb-efae-6184" primary="false"/>
<categoryLink id="c5f9-c26c-538b-e31a" name="Daemon" hidden="false" targetId="f92c-ae4c-6bab-d8cb" primary="false"/>
<categoryLink id="afa2-0024-83b2-78b4" name="Gal Vorbak" hidden="false" targetId="6948-7b90-1028-a17c" primary="false"/>
<categoryLink id="5625-1ee9-875a-8b3b" name="Traitor" hidden="false" targetId="8e10-6a5e-d7db-c85d" primary="false"/>
<categoryLink id="a9b9-e01b-31f4-7d5d" name="New CategoryLink" hidden="false" targetId="eb42-9caf-a22d-c897" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
<sharedSelectionEntries>
<selectionEntry id="7f4a-6f91-f858-af69" name="Mhara Gal Tainted Dreadnought" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="eea6-ec8d-e911-2daa" name="Dark Fury" hidden="false" typeId="2324-ae93-2fea-0b85" typeName="Ability">
<characteristics>
<characteristic name="Effect" typeId="3117-79f3-eb21-c725">If this model is equipped with two melee weapons, it gains +1 Attack.</characteristic>
</characteristics>
</profile>
<profile id="34e5-8b69-243b-ae1e" name="Howling Death" hidden="false" typeId="2324-ae93-2fea-0b85" typeName="Ability">
<characteristics>
<characteristic name="Effect" typeId="3117-79f3-eb21-c725">If a unit has any models slain by a mhara gal, the unit subtracts 2 from its Leadership for the rest of the turn. This modifier is not cumulative.</characteristic>
</characteristics>
</profile>
<profile id="e4a1-019a-02fa-1ac1" name="Accursed" hidden="false" typeId="2324-ae93-2fea-0b85" typeName="Ability">
<characteristics>
<characteristic name="Effect" typeId="3117-79f3-eb21-c725">Enemy units within 6” of the mhara gal suffer a -1 penalty to their Leadership. At the start of each friendly Psychic phase PSYKER and/or DAEMON units within 6” of the Mhara gal (not including the Mhara gal) must roll a D6, on a 4+ they suffer a mortal wound.</characteristic>
</characteristics>
</profile>
<profile id="e08e-243b-f031-9e2b" name="Shroud of Dark Fire" hidden="false" typeId="2324-ae93-2fea-0b85" typeName="Ability">
<characteristics>
<characteristic name="Effect" typeId="3117-79f3-eb21-c725">This model has a 4+ invulnerable save.</characteristic>
</characteristics>
</profile>
<profile id="e97f-70c2-090c-dbc6" name="The Earth Recoils" hidden="false" typeId="2324-ae93-2fea-0b85" typeName="Ability">
<characteristics>
<characteristic name="Effect" typeId="3117-79f3-eb21-c725"> This unit may move through ruins as if it had the INFANTRY keyword. However, it may still not move above the ground floor.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="8185-ab07-ac98-77f0" name="Duty Eternal" hidden="false" targetId="36e3-3525-d90a-6fc0" type="profile"/>
<infoLink id="04b1-e397-1995-15b4" name="Explodes (3"/1)" hidden="false" targetId="0bcb-4fc4-74ea-7d50" type="profile"/>
</infoLinks>
<selectionEntries>
<selectionEntry id="2b1c-ace2-0e33-b01f" name="Mhara Gal Tainted Dreadnought" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="cb69-63a2-8c91-58b3" name="Mhara Gal Tainted Dreadnought" hidden="false" typeId="67c9-ee36-a193-36de" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="37d7-d298-a04a-4e6c">8"</characteristic>
<characteristic name="WS" typeId="e065-bda1-02de-6f2e">3+</characteristic>
<characteristic name="BS" typeId="8003-bae2-5072-d024">3+</characteristic>
<characteristic name="S" typeId="430a-b60b-2a15-6186">7</characteristic>
<characteristic name="T" typeId="b550-6ea2-7a76-d49f">7</characteristic>
<characteristic name="W" typeId="3461-fc7e-2d85-5568">9</characteristic>
<characteristic name="A" typeId="0fd1-a74f-329d-e60e">4</characteristic>
<characteristic name="Ld" typeId="d8ad-d2df-5b05-f70c">8</characteristic>
<characteristic name="Save" typeId="33be-eb18-f17d-e4cc">3+</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntryGroups>
<selectionEntryGroup id="07ed-d05c-e903-ebd8" name="Weapon Option I" hidden="false" collective="false" import="true" defaultSelectionEntryId="4fb2-e158-999e-4707">
<entryLinks>
<entryLink id="4fb2-e158-999e-4707" name="Warpfire plasma cannon" hidden="false" collective="false" import="true" targetId="e12b-4acc-0e80-4fdc" type="selectionEntry"/>
<entryLink id="f211-ee08-2ad2-d3e2" name=" Tainted power claw & curs’d boltspitter" hidden="false" collective="false" import="true" targetId="61fe-cd34-0c51-9fbd" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="78b7-c674-167e-d52a" name="Weapon Option II" hidden="false" collective="false" import="true" defaultSelectionEntryId="c077-daba-9e15-436a">
<entryLinks>
<entryLink id="82ba-7412-d797-b048" name="Twin autocannon" hidden="false" collective="false" import="true" targetId="cab7-63b9-bdb1-3942" type="selectionEntry"/>
<entryLink id="b38e-e5ec-0cc3-924e" name="Twin lascannon" hidden="false" collective="false" import="true" targetId="a952-c752-7e48-ad7d" type="selectionEntry"/>
<entryLink id="3526-bb04-f8f6-4f7d" name="Warpfire plasma cannon" hidden="false" collective="false" import="true" targetId="e12b-4acc-0e80-4fdc" type="selectionEntry"/>
<entryLink id="c077-daba-9e15-436a" name=" Tainted power claw & curs’d boltspitter" hidden="false" collective="false" import="true" targetId="61fe-cd34-0c51-9fbd" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="9010-67dd-defc-4743" name="Warpfire plasma cannon" hidden="false" collective="false" import="true" targetId="e12b-4acc-0e80-4fdc" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="pts" typeId="9484-733c-9847-f18b" value="0.0"/>
<cost name="CP" typeId="1fac-937b-7466-575c" value="0.0"/>
<cost name="PL" typeId="b1e1-0497-949d-68af" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="PL" typeId="b1e1-0497-949d-68af" value="9.0"/>
<cost name="pts" typeId="9484-733c-9847-f18b" value="115.0"/>
<cost name="CP" typeId="1fac-937b-7466-575c" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="e12b-4acc-0e80-4fdc" name="Warpfire plasma cannon" 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="b56e-0eb6-5d1f-061b" type="max"/>
</constraints>
<profiles>
<profile id="29cd-743a-f712-3280" name="Warpfire plasma cannon" hidden="false" typeId="27fa-2a60-59a3-6273" typeName="Weapon(s)">
<characteristics>
<characteristic name="Range" typeId="fb7b-3fd3-e596-3848">36"</characteristic>
<characteristic name="Type" typeId="198a-7eca-0c54-6f0a">Heavy D3</characteristic>
<characteristic name="S" typeId="591d-883a-73fa-87d9">8</characteristic>
<characteristic name="AP" typeId="d174-04e0-bc7b-ea6c">-3</characteristic>
<characteristic name="D" typeId="fde9-623c-a082-78b0">2</characteristic>
<characteristic name="Abilities" typeId="8f3c-b1ed-80b8-dbfe">For each unmodified hit roll of 1, the bearer suffers one mortal wound after all this weapon’s shots have been resolved. Blast weapon.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="9484-733c-9847-f18b" value="20.0"/>
<cost name="CP" typeId="1fac-937b-7466-575c" value="0.0"/>
<cost name="PL" typeId="b1e1-0497-949d-68af" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="61fe-cd34-0c51-9fbd" name=" Tainted power claw & curs’d boltspitter" 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="0843-4fc3-b0fe-1170" type="max"/>
</constraints>
<profiles>
<profile id="821c-e276-62e5-8931" name="Curs’d boltspitter" hidden="false" typeId="27fa-2a60-59a3-6273" typeName="Weapon(s)">
<characteristics>
<characteristic name="Range" typeId="fb7b-3fd3-e596-3848">24"</characteristic>
<characteristic name="Type" typeId="198a-7eca-0c54-6f0a">Assault 2</characteristic>
<characteristic name="S" typeId="591d-883a-73fa-87d9">4</characteristic>
<characteristic name="AP" typeId="d174-04e0-bc7b-ea6c">-1</characteristic>
<characteristic name="D" typeId="fde9-623c-a082-78b0">1</characteristic>
<characteristic name="Abilities" typeId="8f3c-b1ed-80b8-dbfe">-</characteristic>
</characteristics>
</profile>
<profile id="f122-6bde-2ecd-81b9" name="Tainted powerclaw" hidden="false" typeId="27fa-2a60-59a3-6273" typeName="Weapon(s)">
<characteristics>
<characteristic name="Range" typeId="fb7b-3fd3-e596-3848">Melee</characteristic>
<characteristic name="Type" typeId="198a-7eca-0c54-6f0a">Melee</characteristic>
<characteristic name="S" typeId="591d-883a-73fa-87d9">10</characteristic>
<characteristic name="AP" typeId="d174-04e0-bc7b-ea6c">-3</characteristic>
<characteristic name="D" typeId="fde9-623c-a082-78b0">3</characteristic>
<characteristic name="Abilities" typeId="8f3c-b1ed-80b8-dbfe">Invulnerable saves cannot be made against this weapon.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="9484-733c-9847-f18b" value="38.0"/>
<cost name="CP" typeId="1fac-937b-7466-575c" value="0.0"/>
<cost name="PL" typeId="b1e1-0497-949d-68af" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="daed-d2c0-b8de-e2f2" name="Gal Vorbak" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="increment" field="b1e1-0497-949d-68af" value="8.0">
<conditions>
<condition field="selections" scope="daed-d2c0-b8de-e2f2" value="5.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<selectionEntryGroups>
<selectionEntryGroup id="e60e-737c-005d-1b87" name="Gal Vorbak" hidden="false" collective="false" import="true" defaultSelectionEntryId="503d-4cf5-055a-681a">
<selectionEntries>
<selectionEntry id="503d-4cf5-055a-681a" name="Dark Brethren" hidden="false" collective="true" import="true" type="model">
<modifiers>
<modifier type="decrement" field="69f4-9275-f595-5797" value="1.0">
<repeats>
<repeat field="selections" scope="daed-d2c0-b8de-e2f2" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="7262-9567-306b-fcc1" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="set" field="2ab3-8151-eee7-ad60" value="3.0">
<conditions>
<condition field="selections" scope="daed-d2c0-b8de-e2f2" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7262-9567-306b-fcc1" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="4.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2ab3-8151-eee7-ad60" type="min"/>
<constraint field="selections" scope="parent" value="9.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="69f4-9275-f595-5797" type="max"/>
</constraints>
<profiles>
<profile id="0e24-fd47-04eb-a622" name="Dark Brethren" hidden="false" typeId="67c9-ee36-a193-36de" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="37d7-d298-a04a-4e6c">7"</characteristic>
<characteristic name="WS" typeId="e065-bda1-02de-6f2e">2+</characteristic>
<characteristic name="BS" typeId="8003-bae2-5072-d024">3+</characteristic>
<characteristic name="S" typeId="430a-b60b-2a15-6186">5</characteristic>
<characteristic name="T" typeId="b550-6ea2-7a76-d49f">5</characteristic>
<characteristic name="W" typeId="3461-fc7e-2d85-5568">3</characteristic>
<characteristic name="A" typeId="0fd1-a74f-329d-e60e">3</characteristic>
<characteristic name="Ld" typeId="d8ad-d2df-5b05-f70c">9</characteristic>
<characteristic name="Save" typeId="33be-eb18-f17d-e4cc">3+</characteristic>
</characteristics>
</profile>
</profiles>
<entryLinks>
<entryLink id="b35d-0538-bfeb-c2d7" name="Boltgun" hidden="false" collective="false" import="true" targetId="a469-dfa3-0a7e-eba6" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a8ad-78c0-857d-7283" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2d98-df1e-4c1c-d878" type="max"/>
</constraints>
</entryLink>
<entryLink id="132a-917c-c7a8-d732" name="Chainsword" hidden="false" collective="false" import="true" targetId="45f8-93b3-7038-f254" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a816-eb6e-b53f-6c56" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="73b6-0b7a-2049-eed7" type="max"/>
</constraints>
</entryLink>
<entryLink id="4e78-a0fd-99e9-4815" name="Frag & Krak grenades" hidden="false" collective="false" import="true" targetId="1376-80fa-b2b9-0f0b" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="925a-5898-baa2-63c0" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e552-bca7-a992-5d56" type="max"/>
</constraints>
</entryLink>
<entryLink id="e145-1641-2273-5d0d" name="Bolt pistol" hidden="false" collective="false" import="true" targetId="4976-37da-bc47-4e2c" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a5e4-28f6-7ac7-ff5f" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d248-b02a-1aa9-8c90" type="max"/>
</constraints>
</entryLink>
<entryLink id="5bde-89ab-eba3-dad0" name="Rending claws" hidden="false" collective="false" import="true" targetId="f366-bcf5-556c-167d" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8c98-bdec-f120-d841" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="091c-fb7a-e5d4-4ed9" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="9484-733c-9847-f18b" value="25.0"/>
<cost name="CP" typeId="1fac-937b-7466-575c" value="0.0"/>
<cost name="PL" typeId="b1e1-0497-949d-68af" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="35d7-a5d4-232b-05ce" name="Dark Martyr" 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="d6f2-9f6f-a2ab-27fe" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9aeb-0772-c64a-64cc" type="max"/>
</constraints>
<profiles>
<profile id="20c7-fc61-2dab-69b0" name="Dark Martyr" hidden="false" typeId="67c9-ee36-a193-36de" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="37d7-d298-a04a-4e6c">7"</characteristic>
<characteristic name="WS" typeId="e065-bda1-02de-6f2e">2+</characteristic>
<characteristic name="BS" typeId="8003-bae2-5072-d024">3+</characteristic>
<characteristic name="S" typeId="430a-b60b-2a15-6186">5</characteristic>
<characteristic name="T" typeId="b550-6ea2-7a76-d49f">5</characteristic>
<characteristic name="W" typeId="3461-fc7e-2d85-5568">4</characteristic>
<characteristic name="A" typeId="0fd1-a74f-329d-e60e">4</characteristic>
<characteristic name="Ld" typeId="d8ad-d2df-5b05-f70c">9</characteristic>
<characteristic name="Save" typeId="33be-eb18-f17d-e4cc">3+</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntryGroups>
<selectionEntryGroup id="dd11-7982-d54a-88e8" name="Weapon Option" hidden="false" collective="false" import="true" defaultSelectionEntryId="1468-cab5-3142-7cf4">
<modifiers>
<modifier type="set" field="8c1c-edcd-8d5c-4069" value="1.0">
<conditions>
<condition field="selections" scope="35d7-a5d4-232b-05ce" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9c06-836f-c598-8e03" type="atLeast"/>
</conditions>
</modifier>
<modifier type="set" field="e068-4b95-d8c2-4038" value="1.0">
<conditions>
<condition field="selections" scope="35d7-a5d4-232b-05ce" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9c06-836f-c598-8e03" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8c1c-edcd-8d5c-4069" type="max"/>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e068-4b95-d8c2-4038" type="min"/>
</constraints>
<entryLinks>
<entryLink id="ed24-09ab-69d0-e40c" name="Melee Weapons" hidden="false" collective="false" import="true" targetId="5374-7c56-0218-8159" type="selectionEntryGroup">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0541-ef16-35ac-4ca3" type="max"/>
</constraints>
</entryLink>
<entryLink id="1468-cab5-3142-7cf4" name="Chainsword" hidden="false" collective="false" import="true" targetId="8d3f-e362-aa74-2756" type="selectionEntry">
<modifiers>
<modifier type="set" field="f42d-138e-81f9-36b4" value="0.0">
<conditions>
<condition field="selections" scope="35d7-a5d4-232b-05ce" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="1468-cab5-3142-7cf4" type="notEqualTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6246-1dab-c8de-7886" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f42d-138e-81f9-36b4" type="min"/>
</constraints>
</entryLink>
<entryLink id="d9ee-6de9-fe99-1bca" name="Bolt pistol" hidden="false" collective="false" import="true" targetId="0d02-cc1b-2fda-b9c5" type="selectionEntry">
<modifiers>
<modifier type="set" field="c57d-211e-8e76-cb6b" value="0.0">
<conditions>
<condition field="selections" scope="35d7-a5d4-232b-05ce" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="d9ee-6de9-fe99-1bca" type="notEqualTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c57d-211e-8e76-cb6b" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="febe-f92b-a580-91ee" type="max"/>
</constraints>
</entryLink>
<entryLink id="9c06-836f-c598-8e03" name="Lightning claws, pair" hidden="false" collective="false" import="true" targetId="29c8-4cf6-faf4-f435" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1696-7de3-5c1c-c00e" type="max"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="5080-aed9-83a7-9611" name="Melta grenade" hidden="false" collective="false" import="true" targetId="10bc-7a48-6e2d-a4f5" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9e98-99a3-f65c-03e2" type="max"/>
</constraints>
</entryLink>
<entryLink id="0258-d0a0-4ed5-5c2f" name="Boltgun" hidden="false" collective="false" import="true" targetId="b8d5-3fe7-69fb-ae50" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2de6-79d6-329b-c480" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8a36-aada-7062-c1c3" type="max"/>
</constraints>
</entryLink>
<entryLink id="a9ec-5363-f201-b99f" name="Rending claws" hidden="false" collective="false" import="true" targetId="8be6-65a1-24b8-3adc" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0810-eca6-f330-38a7" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c9be-bf37-4073-6027" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="9484-733c-9847-f18b" value="25.0"/>
<cost name="CP" typeId="1fac-937b-7466-575c" value="0.0"/>
<cost name="PL" typeId="b1e1-0497-949d-68af" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="7262-9567-306b-fcc1" name="Dark Brethren/Special Weapon" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="increment" field="68d8-1bb7-2af1-a80e" value="1.0">
<repeats>
<repeat field="selections" scope="daed-d2c0-b8de-e2f2" value="5.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" 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="68d8-1bb7-2af1-a80e" type="max"/>
</constraints>
<selectionEntryGroups>
<selectionEntryGroup id="de45-12cd-4ec2-7617" name="Weapon Option" hidden="false" collective="false" import="true" defaultSelectionEntryId="eebd-4de4-003e-65a8">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e62a-8a70-1fb0-6e6b" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3e1a-b51e-d2c7-79cd" type="min"/>
</constraints>
<entryLinks>
<entryLink id="eebd-4de4-003e-65a8" name="Boltgun" hidden="false" collective="false" import="true" targetId="b8d5-3fe7-69fb-ae50" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1754-1a4a-e58c-d2ea" type="max"/>
</constraints>
</entryLink>
<entryLink id="4bc2-d6d4-c8d7-9c9f" name="Flamer" hidden="false" collective="false" import="true" targetId="6a38-aa1a-f3fc-3aac" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c30e-e80e-115a-addc" type="max"/>
</constraints>
</entryLink>
<entryLink id="58b1-96bc-dc6e-3578" name="Meltagun" hidden="false" collective="false" import="true" targetId="e8dc-600a-67f1-edf6" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fd46-d5bd-109a-403c" type="max"/>
</constraints>
</entryLink>
<entryLink id="cb10-e0e5-1a3e-dd78" name="Plasma gun" hidden="false" collective="false" import="true" targetId="1838-b155-3f69-fa8d" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ed02-8854-5217-3515" type="max"/>
</constraints>
</entryLink>
<entryLink id="30ee-0b3a-14d0-1895" name="Power sword" hidden="false" collective="false" import="true" targetId="5e1d-f70f-1614-2573" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="30b2-c85c-d1c8-3a72" type="max"/>
</constraints>
</entryLink>
<entryLink id="9b90-3cd3-3e4d-cc7b" name="Power axe" hidden="false" collective="false" import="true" targetId="4824-2a5d-ef5a-7bb2" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ddb0-c040-b34b-0515" type="max"/>
</constraints>
</entryLink>
<entryLink id="91c4-11c9-e166-5480" name="Power maul" hidden="false" collective="false" import="true" targetId="e64d-22e3-3ce4-2338" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a062-4939-5d5a-b32a" type="max"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="62fb-388b-ecd0-5f21" name="Chainsword" hidden="false" collective="false" import="true" targetId="8d3f-e362-aa74-2756" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5b2e-7adf-0a86-bbef" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8e53-79a5-0406-c324" type="max"/>
</constraints>
</entryLink>
<entryLink id="43d3-6a8b-cd24-5fd4" name="Rending claws" hidden="false" collective="false" import="true" targetId="8be6-65a1-24b8-3adc" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cfad-177d-39e5-3a1e" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="098b-4ae5-ca6e-0d02" type="max"/>
</constraints>
</entryLink>
<entryLink id="d2aa-feea-7b1c-75f5" name="Frag & Krak grenades" hidden="false" collective="false" import="true" targetId="13a2-c526-9ffe-7d82" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a90c-d48a-6c78-df14" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9741-59b7-b2ba-108d" type="max"/>
</constraints>
</entryLink>
<entryLink id="5116-1871-9898-2fac" name="Bolt pistol" hidden="false" collective="false" import="true" targetId="0d02-cc1b-2fda-b9c5" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6b98-506e-6cf3-b871" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5bae-a16e-9112-3355" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="9484-733c-9847-f18b" value="25.0"/>
<cost name="CP" typeId="1fac-937b-7466-575c" value="0.0"/>
<cost name="PL" typeId="b1e1-0497-949d-68af" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="PL" typeId="b1e1-0497-949d-68af" value="9.0"/>
<cost name="pts" typeId="9484-733c-9847-f18b" value="0.0"/>
<cost name="CP" typeId="1fac-937b-7466-575c" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="f366-bcf5-556c-167d" name="Rending claws" hidden="false" collective="true" import="true" type="upgrade">
<profiles>
<profile id="aad1-66f4-5588-d4fd" name="Rending claws" hidden="false" typeId="27fa-2a60-59a3-6273" typeName="Weapon(s)">
<characteristics>
<characteristic name="Range" typeId="fb7b-3fd3-e596-3848">Melee</characteristic>
<characteristic name="Type" typeId="198a-7eca-0c54-6f0a">Melee</characteristic>
<characteristic name="S" typeId="591d-883a-73fa-87d9">User</characteristic>
<characteristic name="AP" typeId="d174-04e0-bc7b-ea6c">-1</characteristic>
<characteristic name="D" typeId="fde9-623c-a082-78b0">1</characteristic>
<characteristic name="Abilities" typeId="8f3c-b1ed-80b8-dbfe">Every time you make a Wound roll of an unmodified 6+ with this weapon, that wound is resolved with an AP of -4 instead of -1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="9484-733c-9847-f18b" value="0.0"/>
<cost name="CP" typeId="1fac-937b-7466-575c" value="0.0"/>
<cost name="PL" typeId="b1e1-0497-949d-68af" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="8be6-65a1-24b8-3adc" name="Rending claws" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="5dd3-d33d-b082-5045" name="Rending claws" hidden="false" typeId="27fa-2a60-59a3-6273" typeName="Weapon(s)">
<characteristics>
<characteristic name="Range" typeId="fb7b-3fd3-e596-3848">Melee</characteristic>
<characteristic name="Type" typeId="198a-7eca-0c54-6f0a">Melee</characteristic>
<characteristic name="S" typeId="591d-883a-73fa-87d9">User</characteristic>
<characteristic name="AP" typeId="d174-04e0-bc7b-ea6c">-1</characteristic>
<characteristic name="D" typeId="fde9-623c-a082-78b0">1</characteristic>
<characteristic name="Abilities" typeId="8f3c-b1ed-80b8-dbfe">Every time you make a Wound roll of an unmodified 6+ with this weapon, that wound is resolved with an AP of -4 instead of -1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="9484-733c-9847-f18b" value="0.0"/>
<cost name="CP" typeId="1fac-937b-7466-575c" value="0.0"/>
<cost name="PL" typeId="b1e1-0497-949d-68af" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="606e-7911-a9fc-4070" name="The Ashen Circle" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="increment" field="b1e1-0497-949d-68af" value="6.0">
<conditions>
<condition field="selections" scope="606e-7911-a9fc-4070" value="5.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="a8ff-2c00-300b-8579" name="Burning Descent" hidden="false" typeId="2324-ae93-2fea-0b85" typeName="Ability">
<characteristics>
<characteristic name="Effect" typeId="3117-79f3-eb21-c725">Immediately after deploying this unit via the Jump Pack Assault ability, select 1 unit within 12”. That unit suffers 2D6 Strength 3, AP -1, Damage 1 hits.</characteristic>
</characteristics>
</profile>
<profile id="bf7a-fa54-9574-e301" name="Scorched Earth" hidden="false" typeId="2324-ae93-2fea-0b85" typeName="Ability">
<characteristics>
<characteristic name="Effect" typeId="3117-79f3-eb21-c725">Roll a D6 for each model that finishes a charge move within 1” of an enemy. On a 6 it takes a mortal wound.</characteristic>
</characteristics>
</profile>
<profile id="1d8b-7620-8ffe-93e0" name="Legion Elite" hidden="false" typeId="2324-ae93-2fea-0b85" typeName="Ability">
<characteristics>
<characteristic name="Effect" typeId="3117-79f3-eb21-c725">This unit can re-roll hit rolls of 1 during the Fight phase.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="fb9c-f198-f726-45b0" name="Jump Pack Assault" hidden="false" targetId="41b0-2311-4bb4-8e85" type="profile"/>
</infoLinks>
<selectionEntryGroups>
<selectionEntryGroup id="53e9-038c-ec23-e14d" name="The Ashen Circle" hidden="false" collective="false" import="true">
<selectionEntries>
<selectionEntry id="0353-9ff2-45bf-f2f7" name="Incendiary" hidden="false" collective="true" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="4.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4e5b-3392-d67c-28a5" type="min"/>
<constraint field="selections" scope="parent" value="9.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="68a3-8aec-706d-1d9b" type="max"/>
</constraints>
<profiles>
<profile id="f5c1-5897-0f68-d55f" name="Incendiary" hidden="false" typeId="67c9-ee36-a193-36de" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="37d7-d298-a04a-4e6c">11"</characteristic>
<characteristic name="WS" typeId="e065-bda1-02de-6f2e">3+</characteristic>
<characteristic name="BS" typeId="8003-bae2-5072-d024">3+</characteristic>
<characteristic name="S" typeId="430a-b60b-2a15-6186">4</characteristic>
<characteristic name="T" typeId="b550-6ea2-7a76-d49f">4</characteristic>
<characteristic name="W" typeId="3461-fc7e-2d85-5568">2</characteristic>
<characteristic name="A" typeId="0fd1-a74f-329d-e60e">2</characteristic>
<characteristic name="Ld" typeId="d8ad-d2df-5b05-f70c">8</characteristic>
<characteristic name="Save" typeId="33be-eb18-f17d-e4cc">3+</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntryGroups>
<selectionEntryGroup id="b9ff-30cb-e39e-4385" name="Weapon Option" hidden="false" collective="false" import="true" defaultSelectionEntryId="4f1b-4560-6547-e366">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5feb-7221-8b59-6e3d" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ea9f-6656-3ade-c9ed" type="min"/>
</constraints>
<entryLinks>
<entryLink id="4f1b-4560-6547-e366" name="Axe-rake" hidden="false" collective="false" import="true" targetId="e439-7c2f-cedc-1c30" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e399-873e-c404-9657" type="max"/>
</constraints>
</entryLink>
<entryLink id="4dbc-b829-0553-1729" name="Power axe" hidden="false" collective="false" import="true" targetId="4824-2a5d-ef5a-7bb2" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3358-fa45-d110-7058" type="max"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="f1e9-f3bb-417f-a5e8" name="Hardened armour" hidden="false" collective="false" import="true" targetId="47fd-b4a8-db46-22f8" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="674e-5673-ba13-99c6" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8e4c-0b01-ce39-a684" type="max"/>
</constraints>
</entryLink>
<entryLink id="dc3f-3b74-1e01-397c" name="Hand flamer" hidden="false" collective="false" import="true" targetId="f7ef-20b9-3f63-cf3f" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0720-b54d-bb7f-fad8" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="459c-a528-9e78-8e73" type="max"/>
</constraints>
</entryLink>
<entryLink id="410a-71cb-ec7e-c875" name="Frag & Krak grenades" hidden="false" collective="false" import="true" targetId="13a2-c526-9ffe-7d82" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="67b5-77a4-29c5-ba2b" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1433-d67d-bafa-463f" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="9484-733c-9847-f18b" value="20.0"/>
<cost name="CP" typeId="1fac-937b-7466-575c" value="0.0"/>
<cost name="PL" typeId="b1e1-0497-949d-68af" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="123f-ba2b-470a-70f9" name="Iconoclast" 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="8196-1c6a-a786-a4cc" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a5eb-b824-3db6-2a2f" type="min"/>
</constraints>
<profiles>
<profile id="3e63-4d7a-e3a7-de76" name="Iconoclast" hidden="false" typeId="67c9-ee36-a193-36de" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="37d7-d298-a04a-4e6c">11"</characteristic>
<characteristic name="WS" typeId="e065-bda1-02de-6f2e">3+</characteristic>
<characteristic name="BS" typeId="8003-bae2-5072-d024">3+</characteristic>
<characteristic name="S" typeId="430a-b60b-2a15-6186">4</characteristic>
<characteristic name="T" typeId="b550-6ea2-7a76-d49f">4</characteristic>
<characteristic name="W" typeId="3461-fc7e-2d85-5568">2</characteristic>
<characteristic name="A" typeId="0fd1-a74f-329d-e60e">3</characteristic>
<characteristic name="Ld" typeId="d8ad-d2df-5b05-f70c">9</characteristic>
<characteristic name="Save" typeId="33be-eb18-f17d-e4cc">3+</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntryGroups>
<selectionEntryGroup id="5529-2c99-16b4-4f99" name="Weapon Option" hidden="false" collective="false" import="true" defaultSelectionEntryId="f9a9-c0b8-d152-5c0c">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a854-4ed5-673f-c2a4" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="33a1-3fc7-091d-c321" type="min"/>
</constraints>
<entryLinks>
<entryLink id="d45a-2d5a-dce0-a0a7" name="Plasma pistol" hidden="false" collective="false" import="true" targetId="ecbf-0a25-ef0e-5868" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9f49-bad0-0a01-1787" type="max"/>
</constraints>
</entryLink>
<entryLink id="f9a9-c0b8-d152-5c0c" name="Hand flamer" hidden="false" collective="false" import="true" targetId="f7ef-20b9-3f63-cf3f" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c216-5c11-827b-4025" type="max"/>
</constraints>
</entryLink>
<entryLink id="9437-e7c1-aa4a-d923" name="Inferno pistol" hidden="false" collective="false" import="true" targetId="1d97-72b3-3465-0dba" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="62c2-1fdc-c7e6-fad2" type="max"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="be22-f916-65a0-a13a" name="Hardened armour" hidden="false" collective="false" import="true" targetId="47fd-b4a8-db46-22f8" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1e53-4e6e-1230-5230" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6ddf-2e4d-0c8d-a26d" type="max"/>
</constraints>
</entryLink>
<entryLink id="11cb-b2d8-63bc-877a" name="Frag & Krak grenades" hidden="false" collective="false" import="true" targetId="13a2-c526-9ffe-7d82" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9527-8fa4-1464-aba0" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="974d-8039-0984-6c55" type="max"/>
</constraints>
</entryLink>
<entryLink id="abf0-b465-1799-35b1" name="Phosphex bomb(s)" hidden="false" collective="false" import="true" targetId="41e4-b0a2-31de-3e39" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4cc0-d480-3efd-34dc" type="max"/>
</constraints>
</entryLink>
<entryLink id="3196-8300-4638-bb2b" name="Melta grenade" hidden="false" collective="false" import="true" targetId="10bc-7a48-6e2d-a4f5" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4960-17c8-1b43-06e5" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="9484-733c-9847-f18b" value="20.0"/>
<cost name="CP" typeId="1fac-937b-7466-575c" value="0.0"/>
<cost name="PL" typeId="b1e1-0497-949d-68af" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="087d-95db-b705-9b45" name="Dark Channelling" hidden="true" collective="false" import="true" targetId="3e44-6dc8-ffce-33db" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="ancestor" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="eb42-9caf-a22d-c897" type="instanceOf"/>
</conditions>
</modifier>
<modifier type="increment" field="228e-5ec1-8166-3941" value="1.0">
<conditions>
<condition field="selections" scope="ancestor" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="eb42-9caf-a22d-c897" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
</entryLinks>
<costs>
<cost name="PL" typeId="b1e1-0497-949d-68af" value="7.0"/>
<cost name="pts" typeId="9484-733c-9847-f18b" value="0.0"/>
<cost name="CP" typeId="1fac-937b-7466-575c" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="e439-7c2f-cedc-1c30" name="Axe-rake" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="e0b2-780a-772f-fcc4" name="Axe-rake" hidden="false" typeId="27fa-2a60-59a3-6273" typeName="Weapon(s)">
<characteristics>
<characteristic name="Range" typeId="fb7b-3fd3-e596-3848">Melee</characteristic>
<characteristic name="Type" typeId="198a-7eca-0c54-6f0a">Melee</characteristic>
<characteristic name="S" typeId="591d-883a-73fa-87d9">+1</characteristic>
<characteristic name="AP" typeId="d174-04e0-bc7b-ea6c">-1</characteristic>
<characteristic name="D" typeId="fde9-623c-a082-78b0">1</characteristic>
<characteristic name="Abilities" typeId="8f3c-b1ed-80b8-dbfe">Enemy units within 1” of a model with this weapon cannot Fall Back unles they have the VEHICLE or TITANIC keyword, or have a minimum Move characteristic.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="9484-733c-9847-f18b" value="0.0"/>
<cost name="CP" typeId="1fac-937b-7466-575c" value="0.0"/>
<cost name="PL" typeId="b1e1-0497-949d-68af" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="2200-b060-dbbc-da24" name="High Chaplain Erebus" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="add" field="category" value="26c1-e6bf-4904-500b">
<conditions>
<condition field="selections" scope="2200-b060-dbbc-da24" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="24cc-4342-d9cc-63b4" type="atLeast"/>
</conditions>
</modifier>
<modifier type="set" field="6ae4-d57e-a8f2-588b" value="0.0">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="c642-00b9-f31e-17e5" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="6ae4-d57e-a8f2-588b" type="max"/>
</constraints>
<profiles>
<profile id="f252-81a1-d62e-7ce7" name="Litanies of Hate (Aura)" hidden="false" typeId="2324-ae93-2fea-0b85" typeName="Ability">
<characteristics>
<characteristic name="Effect" typeId="3117-79f3-eb21-c725">You can re-roll failed hit rolls in the Fight phase for friendly Word Bearers CORE or CHARACTER units within 6” of this model.</characteristic>
</characteristics>
</profile>
<profile id="4733-9301-e821-08fe" name="Spiritual Leader (Aura)" hidden="false" typeId="2324-ae93-2fea-0b85" typeName="Ability">
<characteristics>
<characteristic name="Effect" typeId="3117-79f3-eb21-c725">Friendly Word Bearers CORE or CHARACTER units can use this model’s Leadership characteristic instead of their own whilst they are within 6” of this model.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="1c36-4178-b26e-c796" name="Iron Halo" hidden="false" targetId="699f-1d10-47da-f263" type="profile"/>
<infoLink id="471d-ab81-2711-c840" name="Litanies of Battle" hidden="false" targetId="529f-621e-7b5c-62ac" type="profile">
<modifiers>
<modifier type="set" field="3117-79f3-eb21-c725" value="This model knows the Litany of Hate and two litanies from the Litanies of Battle. At the start of the battle round, this model can recite one litany it knows that has not already been recited by a friendly model that battle round. Roll one D6; on a 3+ the recited litany is inspiring and takes effect until the end of that battle round."/>
</modifiers>
</infoLink>
</infoLinks>
<selectionEntries>
<selectionEntry id="c4a7-7878-63fb-c7bf" name="High Chaplain Erebus" 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="ea83-2a3c-9fa8-a9a4" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="07dc-8371-9330-ea34" type="max"/>
</constraints>
<profiles>
<profile id="29ab-9bde-9cf7-ea34" name="High Chaplain Erebus" hidden="false" typeId="67c9-ee36-a193-36de" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="37d7-d298-a04a-4e6c">6"</characteristic>
<characteristic name="WS" typeId="e065-bda1-02de-6f2e">2+</characteristic>
<characteristic name="BS" typeId="8003-bae2-5072-d024">3+</characteristic>
<characteristic name="S" typeId="430a-b60b-2a15-6186">4</characteristic>
<characteristic name="T" typeId="b550-6ea2-7a76-d49f">4</characteristic>
<characteristic name="W" typeId="3461-fc7e-2d85-5568">5</characteristic>
<characteristic name="A" typeId="0fd1-a74f-329d-e60e">4</characteristic>
<characteristic name="Ld" typeId="d8ad-d2df-5b05-f70c">9</characteristic>
<characteristic name="Save" typeId="33be-eb18-f17d-e4cc">2+</characteristic>
</characteristics>
</profile>
</profiles>
<entryLinks>
<entryLink id="d985-7c09-8948-f354" name="Plasma pistol" hidden="false" collective="false" import="true" targetId="ecbf-0a25-ef0e-5868" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8bbe-dfa4-935d-6248" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0a90-2b83-0989-b488" type="max"/>
</constraints>
</entryLink>
<entryLink id="6f6a-5db9-b68c-5fda" name="Frag & Krak grenades" hidden="false" collective="false" import="true" targetId="13a2-c526-9ffe-7d82" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="faa2-a04b-af70-ff01" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ee14-275b-5765-3c70" type="max"/>
</constraints>
</entryLink>
<entryLink id="3397-5116-0416-4d04" name="Master-crafted power maul" hidden="false" collective="false" import="true" targetId="7725-935d-0d7d-60b0" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="53aa-717d-c3a6-7904" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7926-fba5-2459-7724" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="9484-733c-9847-f18b" value="0.0"/>
<cost name="CP" typeId="1fac-937b-7466-575c" value="0.0"/>
<cost name="PL" typeId="b1e1-0497-949d-68af" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="24cc-4342-d9cc-63b4" name="Warlord" 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="bac8-c72f-d9ec-7c24" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="9484-733c-9847-f18b" value="0.0"/>
<cost name="CP" typeId="1fac-937b-7466-575c" value="0.0"/>
<cost name="PL" typeId="b1e1-0497-949d-68af" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="df90-ae44-dd84-370b" name="Litanies of Battle" hidden="false" collective="false" import="true" targetId="7216-90ce-9b61-1016" type="selectionEntryGroup">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e486-da9c-3208-4823" type="max"/>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f251-b053-dcc4-aa77" type="min"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="9484-733c-9847-f18b" value="130.0"/>
<cost name="PL" typeId="b1e1-0497-949d-68af" value="7.0"/>
<cost name="CP" typeId="1fac-937b-7466-575c" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="fe9f-d50c-894d-fb66" name="17 Word Bearers" hidden="false" collective="false" import="true" type="upgrade">
<costs>
<cost name="pts" typeId="9484-733c-9847-f18b" value="0.0"/>
<cost name="CP" typeId="1fac-937b-7466-575c" value="0.0"/>
<cost name="PL" typeId="b1e1-0497-949d-68af" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="0a27-b26a-373c-5967" name="Kor Phaeron" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="add" field="category" value="26c1-e6bf-4904-500b">
<conditions>
<condition field="selections" scope="0a27-b26a-373c-5967" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="65a1-16d0-74c3-c6cb" type="atLeast"/>
</conditions>
</modifier>
<modifier type="set" field="9790-9ed9-9a7e-ecaa" value="0.0">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="c642-00b9-f31e-17e5" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="9790-9ed9-9a7e-ecaa" type="max"/>
</constraints>
<profiles>
<profile id="4b5e-1339-f28e-27d5" name="The Terminus Consolaris" hidden="false" typeId="2324-ae93-2fea-0b85" typeName="Ability">
<characteristics>
<characteristic name="Effect" typeId="3117-79f3-eb21-c725">This model has a 4+ invulnerable save. In addition, roll a D6 at the start of each friendly turn; on a 6+ Kor Phaeron regains 1 lost wound.</characteristic>
</characteristics>