generated from BSData/TemplateDataRepo
-
Notifications
You must be signed in to change notification settings - Fork 101
/
Chaos - Chaos Knights.cat
3513 lines (3513 loc) · 252 KB
/
Chaos - Chaos Knights.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 xmlns="http://www.battlescribe.net/schema/catalogueSchema" id="46d8-abc8-ef3a-9f85" name="Chaos - Chaos Knights" revision="7" battleScribeVersion="2.03" library="false" gameSystemId="sys-352e-adc2-7639-d6a9" gameSystemRevision="1" type="catalogue">
<catalogueLinks>
<catalogueLink id="bbb1-4f45-fafb-fc09" name="Chaos - Chaos Knights Library" targetId="8106-aad2-918a-9ac" type="catalogue" importRootEntries="true"/>
<catalogueLink type="catalogue" name="Chaos - Daemons Library" id="4386-7333-134-9a18" targetId="b45c-af22-788a-dfd6" importRootEntries="true"/>
<catalogueLink type="catalogue" name="Library - Titans" id="9edd-ef10-2070-22d6" targetId="7481-280e-b55e-7867" importRootEntries="true"/>
</catalogueLinks>
<entryLinks>
<entryLink import="true" name="Detachment Choice" hidden="false" type="selectionEntry" id="c62d-6a62-3548-b76e" targetId="a435-b94a-eb7b-7c0c"/>
<entryLink import="true" name="Show/Hide Options" hidden="false" type="selectionEntry" id="d6b9-36a1-6ef5-a028" targetId="e8ef-836a-a9d1-901d">
<entryLinks>
<entryLink import="true" name="Show Khorne Daemons" hidden="false" type="selectionEntry" id="ed4f-b26b-dd4a-3340" targetId="f5f9-1339-84bb-ae85"/>
<entryLink import="true" name="Show Nurgle Daemons" hidden="false" type="selectionEntry" id="153d-2ba9-ff5a-18f5" targetId="f486-5e38-994c-15ec"/>
<entryLink import="true" name="Show Slaanesh Daemons" hidden="false" type="selectionEntry" id="6494-c7c1-669b-69a0" targetId="d3ff-16f0-dad2-c03c"/>
<entryLink import="true" name="Show Tzeentch Daemons" hidden="false" type="selectionEntry" id="6521-e858-36dd-8949" targetId="1248-8642-b42f-1dca"/>
<entryLink import="true" name="Show Titans" hidden="false" type="selectionEntry" id="b5a-4957-a734-d027" targetId="f26b-79db-80e0-3a3b"/>
</entryLinks>
</entryLink>
<entryLink import="true" name="Dark Commune" hidden="false" id="b981-a2ac-86d0-1cbe" type="selectionEntry" targetId="7de7-2e7a-3454-ee84">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="roster" childId="7fe8-de91-8976-e705" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink import="true" name="Traitor Enforcer" hidden="false" id="1a9d-4e67-9d1f-cb91" type="selectionEntry" targetId="ce8e-af89-58fe-94bd">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="roster" childId="7fe8-de91-8976-e705" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink import="true" name="Traitor Guardsmen Squad" hidden="false" id="5e6c-178c-92b1-2de6" type="selectionEntry" targetId="6c40-644a-53f2-69c2">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="roster" childId="7fe8-de91-8976-e705" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink import="true" name="Gellerpox Infected [Legends]" hidden="false" id="e8d2-106a-e195-ae23" type="selectionEntry" targetId="7562-d429-6153-a823">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="roster" childId="7fe8-de91-8976-e705" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink import="true" name="Fellgor Beastmen" hidden="false" id="46d0-40d6-adfb-db29" type="selectionEntry" targetId="2693-0f93-e1d8-f300">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="roster" childId="7fe8-de91-8976-e705" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink import="true" name="Cultist Firebrand" hidden="false" id="8c6e-1ee5-2c50-d61d" type="selectionEntry" targetId="919b-7d4c-5a57-0b40">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="roster" childId="7fe8-de91-8976-e705" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink import="true" name="Cultist Mob" hidden="false" id="affe-d1e3-0377-f6f5" type="selectionEntry" targetId="544c-478c-06c3-271a">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="roster" childId="7fe8-de91-8976-e705" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink import="true" name="Cultist Mob with Firearms [Legends]" hidden="false" id="7613-f941-5829-876a" type="selectionEntry" targetId="bbab-6f86-5279-be89">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="roster" childId="7fe8-de91-8976-e705" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink import="true" name="Mutoid Vermin [Legends]" hidden="false" id="f018-ea7f-b4a1-cf2f" type="selectionEntry" targetId="68a3-27e6-94e0-dda7">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="roster" childId="7fe8-de91-8976-e705" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink import="true" name="Negavolt Cultists [Legends]" hidden="false" id="998c-ff18-9548-783b" type="selectionEntry" targetId="a1b1-8647-15af-9731">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="roster" childId="7fe8-de91-8976-e705" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink import="true" name="Renegade Enforcer [Legends]" hidden="false" id="f200-6a81-b355-eeff" type="selectionEntry" targetId="88ab-80b1-fb67-7f82">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="roster" childId="7fe8-de91-8976-e705" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink import="true" name="Renegade Heavy Weapons Squad [Legends]" hidden="false" id="847f-5171-f508-4397" type="selectionEntry" targetId="68ad-03fb-10b7-fc0b">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="roster" childId="7fe8-de91-8976-e705" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink import="true" name="Renegade Ogryn Beast Handler [Legends]" hidden="false" id="c47c-1579-9a09-1eda" type="selectionEntry" targetId="2ad8-b5f2-1b54-0eb8">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="roster" childId="7fe8-de91-8976-e705" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink import="true" name="Accursed Cultists" hidden="false" id="072c-80c6-b7a3-f0e7" type="selectionEntry" targetId="3b78-bfd1-fe54-cf68">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="roster" childId="7fe8-de91-8976-e705" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink import="true" name="Renegade Ogryn Brutes [Legends]" hidden="false" id="05d7-76a6-c285-af97" type="selectionEntry" targetId="6abc-4bee-f011-f490">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="roster" childId="7fe8-de91-8976-e705" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink import="true" name="Renegade Plague Ogryns [Legends]" hidden="false" id="d8f6-58e4-bac7-6a12" type="selectionEntry" targetId="6324-e721-420d-4436">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="roster" childId="7fe8-de91-8976-e705" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink import="true" name="Rogue Psyker [Legends]" hidden="false" id="7df5-0ddc-5a83-0252" type="selectionEntry" targetId="dfc7-dc1f-1f4a-daa6">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="roster" childId="7fe8-de91-8976-e705" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
</entryLinks>
<sharedSelectionEntries>
<selectionEntry type="unit" import="true" name="Accursed Cultists" hidden="false" id="3b78-bfd1-fe54-cf68" collective="false">
<modifiers>
<modifier type="set" value="195" field="51b2-306e-1021-d207">
<conditions>
<condition type="atLeast" value="9" field="selections" scope="3b78-bfd1-fe54-cf68" childId="model" shared="true" percentValue="false" includeChildSelections="true" includeChildForces="false"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint type="max" value="3" field="selections" scope="force" shared="true" id="5933-bf50-c5fd-68e6" percentValue="false" includeChildSelections="true" includeChildForces="false"/>
</constraints>
<profiles>
<profile name="Howling Horde" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="ea62-7fcf-189e-9b92">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">Each time an enemy unit has shot, if one or more models from this unit were destroyed as a result of those attacks, this unit can make a Horde move. To do so, roll one D6; this unit can move a number of inches up to the result, but this unit must finish that move as close as possible to the nearest enemy unit (excluding AIRCRAFT). When doing so, those models can be moved within Engagement Range of that enemy unit. This unit cannot make a Horde move while it is Battle-shocked.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Feel No Pain" id="95c7-ddc0-cfd8-55bd" hidden="false" type="rule" targetId="9bf4-280f-bbe2-6fbb">
<modifiers>
<modifier type="append" value="6+" field="name"/>
</modifiers>
</infoLink>
<infoLink name="Scouts" id="0dba-0ba6-e26d-f925" hidden="false" type="rule" targetId="ada6-bac1-ffe0-d6f7">
<modifiers>
<modifier type="append" value="6"" field="name"/>
</modifiers>
</infoLink>
</infoLinks>
<categoryLinks>
<categoryLink name="Faction: Heretic Astartes" hidden="false" id="16b4-d1fe-997d-b631" targetId="1e42-dfae-cbdd-207d" primary="false"/>
<categoryLink name="Infantry" hidden="false" id="255b-211a-8080-a861" targetId="cf47-a0d7-7207-29dc" primary="true"/>
<categoryLink name="Chaos" hidden="false" id="8ed3-8df8-58c9-f9e4" targetId="4c00-2578-faf5-6918" primary="false"/>
<categoryLink name="Accursed Cultists" hidden="false" id="abe6-bbb5-82a8-0504" targetId="06be-3f52-afb7-a99f" primary="false"/>
<categoryLink name="Damned" hidden="false" id="833f-b06e-bfd5-e50c" targetId="ac7d-42cc-342b-c911" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Torment" hidden="false" id="97d8-390c-e39b-d4bd" collective="false">
<constraints>
<constraint type="min" value="3" field="selections" scope="parent" shared="true" id="73d1-b337-870b-443b" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
<constraint type="max" value="6" field="selections" scope="parent" shared="true" id="0565-bdec-70a5-58b2" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
</constraints>
<profiles>
<profile name="Torment" typeId="c547-1836-d8a-ff4f" typeName="Unit" hidden="false" id="ccf0-6a98-4484-01ca">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">6"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">4</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">6+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">3</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">7+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">1</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Hideous mutations" hidden="false" id="6248-0599-9a4d-854a" collective="true">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="9ded-a7e5-181e-1388" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="9ce7-266c-6708-af33" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
</constraints>
<profiles>
<profile name="Hideous mutations" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons" hidden="false" id="b169-4558-4191-1c0e">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">D6+2</characteristic>
<characteristic name="WS" typeId="95d1-95f-45b4-11d6">4+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">5</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">-1</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">2</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
<selectionEntry type="model" import="true" name="Mutant" hidden="false" id="d33a-0b02-5739-2a1a" collective="false">
<constraints>
<constraint type="min" value="5" field="selections" scope="parent" shared="true" id="116e-c3aa-a551-86cb" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
<constraint type="max" value="10" field="selections" scope="parent" shared="true" id="dcdd-9fcd-81e6-eac8" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
</constraints>
<profiles>
<profile name="Mutant" typeId="c547-1836-d8a-ff4f" typeName="Unit" hidden="false" id="88a5-4cbd-3e09-336d">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">6"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">4</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">6+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">1</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">7+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">1</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Blasphemous appendages" hidden="false" id="444c-8ed8-f43b-9fe1" collective="true">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="69c3-a04b-ca9b-d2eb" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="81e9-a7c8-1714-a16d" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
</constraints>
<profiles>
<profile name="Blasphemous appendages" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons" hidden="false" id="0c7f-89f2-c851-848f">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">2</characteristic>
<characteristic name="WS" typeId="95d1-95f-45b4-11d6">4+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">4</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">0</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">1</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="90"/>
</costs>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Cultist Mob" hidden="false" id="544c-478c-06c3-271a" collective="false">
<modifiers>
<modifier type="set" value="100" field="51b2-306e-1021-d207">
<conditions>
<condition type="atLeast" value="11" field="selections" scope="544c-478c-06c3-271a" childId="model" shared="true" percentValue="false" includeChildSelections="true" includeChildForces="false"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint type="max" value="6" field="selections" scope="force" shared="true" id="6a9a-cf93-4e6b-9b8a" percentValue="false" includeChildSelections="true" includeChildForces="false"/>
</constraints>
<profiles>
<profile name="Cultist Mob" typeId="c547-1836-d8a-ff4f" typeName="Unit" hidden="false" id="2346-84b6-7f36-e3c3">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">6"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">3</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">6+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">1</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">7+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">1</characteristic>
</characteristics>
</profile>
<profile name="For the Dark Gods" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="e7fe-8395-4000-9dcd">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">At the end of your Command phase, if this unit is within range of an objective marker you control, that objective marker remains under your control, even if you have no models within range of it, until your opponent controls it at the start or end of any turn.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="Faction: Heretic Astartes" hidden="false" id="94ac-10a7-fe38-05e1" targetId="1e42-dfae-cbdd-207d" primary="false"/>
<categoryLink name="Infantry" hidden="false" id="4d81-4094-6d84-61dd" targetId="cf47-a0d7-7207-29dc" primary="false"/>
<categoryLink name="Battleline" hidden="false" id="c65b-1379-eb43-2862" targetId="e338-111e-d0c6-b687" primary="true"/>
<categoryLink name="Grenades" hidden="false" id="01e6-357d-73ee-14f9" targetId="5a61-81ac-eb7c-a87e" primary="false"/>
<categoryLink name="Chaos" hidden="false" id="0c5b-bfaa-4a86-0066" targetId="4c00-2578-faf5-6918" primary="false"/>
<categoryLink name="Cultist Mob" hidden="false" id="d503-1810-9301-4447" targetId="3e1b-4c61-e82a-f37f" primary="false"/>
<categoryLink name="Damned" hidden="false" id="efe3-f8a3-33bd-6186" targetId="ac7d-42cc-342b-c911" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Cultist Champion" hidden="false" id="58ce-0070-e50b-f821" collective="false">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="5ef5-b374-01dd-816f" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="bf59-a4dc-974b-5225" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
</constraints>
<selectionEntryGroups>
<selectionEntryGroup name="Pistol" id="3f74-7882-2ab1-72c9" hidden="false" collective="false" import="true" defaultSelectionEntryId="4128-d8b4-4f3b-ae20">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="a4b7-cf94-b1c1-af24" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="7dfc-1404-131c-a33a" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
</constraints>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Bolt pistol" hidden="false" id="c62c-0cf2-e107-a286" collective="false">
<profiles>
<profile name="Bolt pistol" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" hidden="false" id="9972-2a5e-8c35-506b">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">12"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">1</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">4+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">4</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">0</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">1</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Pistol</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Pistol" id="45d3-42ae-b118-09f3" hidden="false" targetId="8bf7-8812-923d-29e4" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Autopistol" hidden="false" id="823e-cfe7-2b52-2d26" collective="false">
<profiles>
<profile name="Autopistol" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" hidden="false" id="3b76-994a-7211-383b">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">12"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">1</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">4+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">3</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">0</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">1</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Pistol</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Pistol" id="c526-35cf-7ea2-c7de" hidden="false" targetId="8bf7-8812-923d-29e4" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Brutal assault weapon" hidden="false" id="ef8f-ff9e-e466-36cf">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="71c0-8bfa-f190-ed06" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="5f25-9252-f7a9-7c96" includeChildSelections="false"/>
</constraints>
<infoLinks>
<infoLink name="Brutal assault weapon" id="a045-9106-0090-8f5e" hidden="false" targetId="e9f3-32df-29b0-65f9" type="profile"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="model" import="true" name="Cultist w/ autopistol and brutal assault weapon" hidden="false" id="cfb9-9800-71c3-64f7" collective="false">
<constraints>
<constraint type="max" value="19" field="selections" scope="parent" shared="true" id="548a-f46d-5e83-1d10" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
<constraint type="min" value="9" field="selections" scope="parent" shared="true" id="1337-d17d-9d20-9b74" includeChildSelections="false"/>
</constraints>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Autopistol" hidden="false" id="e016-f981-bf16-38ee" collective="true">
<profiles>
<profile name="Autopistol" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" hidden="false" id="06f2-d57c-c423-949b">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">12"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">1</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">4+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">3</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">0</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">1</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Pistol</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="fce4-2249-5dc1-b217"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="a043-b8db-b392-8d39"/>
</constraints>
<infoLinks>
<infoLink name="Pistol" id="68db-5661-8f9d-504e" hidden="false" targetId="8bf7-8812-923d-29e4" type="rule"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Brutal assault weapon" hidden="false" id="342d-ed89-361a-09bd" collective="true">
<infoLinks>
<infoLink name="Brutal assault weapon" id="c3bc-6cc3-f5e0-a7ff" hidden="false" targetId="e9f3-32df-29b0-65f9" type="profile"/>
</infoLinks>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="ae4d-24d3-a774-7f7e"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="9e70-330c-5922-aebd"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="50"/>
</costs>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Dark Commune" hidden="false" id="7de7-2e7a-3454-ee84" collective="false">
<constraints>
<constraint type="max" value="3" field="selections" scope="force" shared="true" id="6268-e2cf-d68d-9c7d" percentValue="false" includeChildSelections="true" includeChildForces="false"/>
</constraints>
<profiles>
<profile name="Leader" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="0fee-292f-26f8-db25">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">This model can be attached to the following units:
■ ACCURSED CULTISTS
■ CULTIST MOB</characteristic>
</characteristics>
</profile>
<profile name="Faithful Flock" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="535d-d041-9b3f-bed1">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">While this unit is leading a unit and contains a CULT DEMAGOGUE model, models in that unit have a 5+ invulnerable save.</characteristic>
</characteristics>
</profile>
<profile name="Dark Ritual" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="092f-e3f9-1143-96f7">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">Once per battle, in your Command phase, if this unit contains a CULT DEMAGOGUE model, it can use this ability. If it does, until the end of the turn, this unit can declare a charge in a turn in which it Advanced and each time a model in this unit makes an attack, add 1 to the Hit roll and add 1 to the Wound roll.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Leader" id="bef7-5f72-48e2-f440" hidden="false" targetId="b4dd-3e1f-41cb-218f" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink name="Character" hidden="false" id="b773-afb3-ef83-b4eb" targetId="9cfd-1c32-585f-7d5c" primary="true"/>
<categoryLink name="Damned" hidden="false" id="fef8-db50-e48e-1661" targetId="ac7d-42cc-342b-c911" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Cult Demagogue" hidden="false" id="34df-5015-5a92-4e91" collective="false">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="81f0-210f-e909-ae29" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="36c8-4f1c-bae5-3371" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
</constraints>
<profiles>
<profile name="Cult Demagogue" typeId="c547-1836-d8a-ff4f" typeName="Unit" hidden="false" id="327c-735b-30f8-838b">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">6"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">3</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">6+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">4</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">6+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">1</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="Infantry" hidden="false" id="acf8-52ce-197e-6ab1" targetId="cf47-a0d7-7207-29dc" primary="false"/>
<categoryLink name="Character" hidden="false" id="402d-8d66-bcf6-2d5f" targetId="9cfd-1c32-585f-7d5c" primary="false"/>
<categoryLink name="Grenades" hidden="false" id="cb3b-9e88-67a8-18fb" targetId="5a61-81ac-eb7c-a87e" primary="false"/>
<categoryLink name="Chaos" hidden="false" id="e173-1078-12ec-b6ab" targetId="4c00-2578-faf5-6918" primary="false"/>
<categoryLink name="Dark Commune" hidden="false" id="5278-c853-8697-5e19" targetId="2b46-f0a9-3c6f-54da" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Autopistol" hidden="false" id="cb16-f0d1-1924-362a" collective="true">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="17d3-fcd4-d553-eeca" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="8827-929d-df1b-ea3d" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
</constraints>
<profiles>
<profile name="Autopistol" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" hidden="false" id="1709-0915-d210-86ba">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">12"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">1</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">4+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">3</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">0</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">1</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Pistol</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Pistol" id="b3aa-688b-1d63-7ca4" hidden="false" targetId="8bf7-8812-923d-29e4" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Commune stave" hidden="false" id="8cc8-ce90-9ad3-ec8d" collective="false">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="75bd-87e9-5589-2daf" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="43b3-bae1-815c-0c6a" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
</constraints>
<profiles>
<profile name="Commune stave" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons" hidden="false" id="b214-ebaa-3c40-6549">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">2</characteristic>
<characteristic name="WS" typeId="95d1-95f-45b4-11d6">4+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">3</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">0</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">D3</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">Devastating Wounds</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Devastating Wounds" id="2b7c-12e0-efd1-7194" hidden="false" targetId="be1e-ac8e-1e2c-3528" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
<selectionEntry type="model" import="true" name="Mindwitch" hidden="false" id="6b33-f7d0-d2a1-0357" collective="false">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="89d5-ab20-1057-86fa" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="51af-e805-e97d-0b0c" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
</constraints>
<profiles>
<profile name="Mindwitch" typeId="c547-1836-d8a-ff4f" typeName="Unit" hidden="false" id="c3c5-2938-f8b4-2bec">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">6"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">3</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">6+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">1</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">7+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">1</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="Infantry" hidden="false" id="e99e-6a07-8f84-9e17" targetId="cf47-a0d7-7207-29dc" primary="false"/>
<categoryLink name="Psyker" hidden="false" id="0189-31b5-645f-f5dd" targetId="13bf-2bee-3ae0-b414" primary="false"/>
<categoryLink name="Grenades" hidden="false" id="7867-fd1c-7019-d94d" targetId="5a61-81ac-eb7c-a87e" primary="false"/>
<categoryLink name="Chaos" hidden="false" id="e576-20ea-0696-fdbb" targetId="4c00-2578-faf5-6918" primary="false"/>
<categoryLink name="Dark Commune" hidden="false" id="68cb-5d46-6393-2ccd" targetId="2b46-f0a9-3c6f-54da" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Close combat weapon" hidden="false" id="bae2-3416-081f-02e6" collective="false">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="12a2-7395-2193-b792" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="a00d-fef1-c140-a8f5" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
</constraints>
<profiles>
<profile name="Close combat weapon" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons" hidden="false" id="16b5-0e9f-c216-723f">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">1</characteristic>
<characteristic name="WS" typeId="95d1-95f-45b4-11d6">4+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">3</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">0</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">1</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Warp Curse" hidden="false" id="a42b-a165-bf39-3149" collective="false">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="a347-d99e-1797-35b5" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="3dac-1305-77fe-5862" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
</constraints>
<profiles>
<profile name="➤ Warp Curse - witchfire" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" hidden="false" id="f666-4865-a69d-5fba">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">18"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">3</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">3+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">4</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">-1</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">2</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Psychic</characteristic>
</characteristics>
</profile>
<profile name="➤ Warp Curse - focused witchfire" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" hidden="false" id="ffef-8e89-e5bb-04f4">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">18"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">3</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">3+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">5</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">-1</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">2</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Hazardous, Psychic, Sustained Hits 2</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Sustained Hits" id="9030-a519-4246-f7d3" hidden="false" targetId="1897-c22c-9597-12b1" type="rule"/>
<infoLink name="Hazardous" id="b793-f31c-d5f4-5a38" hidden="false" targetId="8367-374c-f87-c627" type="rule"/>
<infoLink name="Psychic" id="4870-b847-9f60-01c5" hidden="false" targetId="e9c4-2bb8-12ee-cd1b" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
<selectionEntry type="model" import="true" name="Iconarch" hidden="false" id="b3c0-0ee9-14ea-cfe3" collective="false">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="6998-b281-0b63-8630" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="1ca2-dcd1-248e-6e83" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
</constraints>
<profiles>
<profile name="Iconarch" typeId="c547-1836-d8a-ff4f" typeName="Unit" hidden="false" id="007c-706f-0207-fd97">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">6"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">3</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">6+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">1</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">7+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">1</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="Infantry" hidden="false" id="ad79-8644-e388-0b34" targetId="cf47-a0d7-7207-29dc" primary="false"/>
<categoryLink name="Grenades" hidden="false" id="7360-377b-46a4-6c04" targetId="5a61-81ac-eb7c-a87e" primary="false"/>
<categoryLink name="Chaos" hidden="false" id="9373-e20b-6505-d50a" targetId="4c00-2578-faf5-6918" primary="false"/>
<categoryLink name="Dark Commune" hidden="false" id="e02a-b525-3e98-3c87" targetId="2b46-f0a9-3c6f-54da" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Autopistol" hidden="false" id="f823-eacc-0de7-58d4" collective="false">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="7840-0102-dc27-292b" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="17a9-2bf2-3232-0f2e" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
</constraints>
<profiles>
<profile name="Autopistol" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" hidden="false" id="4b03-c7a9-b506-1615">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">12"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">1</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">4+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">3</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">0</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">1</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Pistol</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Pistol" id="4096-070a-d3c5-072a" hidden="false" targetId="8bf7-8812-923d-29e4" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Close combat weapon" hidden="false" id="9372-a0ce-7386-fcc2" collective="false">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="05d4-d11d-7cd0-feb3" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="770d-bc0b-f790-5609" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
</constraints>
<profiles>
<profile name="Close combat weapon" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons" hidden="false" id="bcb6-80c8-6ea8-69aa">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">1</characteristic>
<characteristic name="WS" typeId="95d1-95f-45b4-11d6">4+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">3</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">0</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">1</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink import="true" name="Chaos icon" hidden="false" id="2026-e279-2113-167f" collective="false" targetId="5d6f-de3c-3644-84fd" type="selectionEntry">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="2047-5803-c93d-9786" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
<selectionEntry type="model" import="true" name="Blessed Blades" hidden="false" id="4990-b7ce-7d1f-5469" collective="false">
<constraints>
<constraint type="min" value="2" field="selections" scope="parent" shared="true" id="1c0b-a96d-a4b4-0fd3" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
<constraint type="max" value="2" field="selections" scope="parent" shared="true" id="cc48-4d56-db50-15f4" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
</constraints>
<profiles>
<profile name="Blessed Blade" typeId="c547-1836-d8a-ff4f" typeName="Unit" hidden="false" id="cf76-d157-f706-eba4">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">6"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">3</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">6+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">1</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">7+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">1</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="Infantry" hidden="false" id="2b33-77c9-9db2-0ccb" targetId="cf47-a0d7-7207-29dc" primary="false"/>
<categoryLink name="Grenades" hidden="false" id="97a2-1fa9-5233-b4f9" targetId="5a61-81ac-eb7c-a87e" primary="false"/>
<categoryLink name="Chaos" hidden="false" id="a6d5-fc78-7448-5bc5" targetId="4c00-2578-faf5-6918" primary="false"/>
<categoryLink name="Dark Commune" hidden="false" id="1326-ece9-fdb5-ea43" targetId="2b46-f0a9-3c6f-54da" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Commune blade" hidden="false" id="3300-840a-3e81-7127" collective="true">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="aefd-5477-09d2-7b37" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="f5c5-0c0f-fef8-25a4" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
</constraints>
<profiles>
<profile name="Commune blade" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons" hidden="false" id="2ddf-cda3-8ff2-de8d">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">2</characteristic>
<characteristic name="WS" typeId="95d1-95f-45b4-11d6">4+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">4</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">-2</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">1</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="80"/>
<cost name="Crusade Points" typeId="b03b-c239-15a5-da55" value="0"/>
<cost name="Crusade: Battle Honours" typeId="75bb-ded1-c86d-bdf0" value="0"/>
<cost name="Crusade: Experience" typeId="a623-fe74-1d33-cddf" value="0"/>
<cost name="Crusade: Weapon Modifications" typeId="716d-91b7-d55a-1022" value="0"/>
</costs>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Chaos icon" hidden="false" id="5d6f-de3c-3644-84fd" collective="false">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="776c-a8f6-3734-81b7" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
</constraints>
<profiles>
<profile name="Chaos icon" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="156a-173b-6611-f9ad">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">Each time the bearer’s unit takes a Leadership test for the Dark Pacts ability, you can re-roll that test.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Traitor Guardsmen Squad" hidden="false" id="6c40-644a-53f2-69c2" collective="false">
<constraints>
<constraint type="max" value="3" field="selections" scope="force" shared="true" id="d1c9-d646-bd3b-e264" percentValue="false" includeChildSelections="true" includeChildForces="false"/>
</constraints>
<profiles>
<profile name="Traitor Guardsmen Squad" typeId="c547-1836-d8a-ff4f" typeName="Unit" hidden="false" id="a30c-e2b2-a747-c136">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">6"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">3</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">5+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">1</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">7+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">2</characteristic>
</characteristics>
</profile>
<profile name="Twisted Defence Force" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="eb15-6894-696d-3d36">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">While this unit is within range of an objective marker, each time a ranged attack targets this unit, models in this unit have the Benefit of Cover against that attack.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="Faction: Heretic Astartes" hidden="false" id="723f-65f6-5762-ee3f" targetId="1e42-dfae-cbdd-207d" primary="false"/>
<categoryLink name="Infantry" hidden="false" id="c654-9bda-e2b7-ae5f" targetId="cf47-a0d7-7207-29dc" primary="true"/>
<categoryLink name="Grenades" hidden="false" id="82b8-2cb0-57fe-da57" targetId="5a61-81ac-eb7c-a87e" primary="false"/>
<categoryLink name="Chaos" hidden="false" id="69fd-f736-064b-e588" targetId="4c00-2578-faf5-6918" primary="false"/>
<categoryLink name="Traitor Guardsmen Squad" hidden="false" id="ead7-c178-7eaf-4774" targetId="bad8-8d1c-c5a8-d0ff" primary="false"/>
<categoryLink name="Damned" hidden="false" id="44e6-c1c9-1ac2-4eef" targetId="ac7d-42cc-342b-c911" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Traitor Sergeant" hidden="false" id="db29-1610-6e1c-c775" collective="false">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="952a-b991-7748-b6c1" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="99ea-9ab3-c030-93fe" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
</constraints>
<selectionEntryGroups>
<selectionEntryGroup name="Melee weapon" id="9fab-402f-fee3-5547" hidden="false" collective="false" import="true" defaultSelectionEntryId="9bf4-4078-6f39-fff3">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="bf6c-64be-8500-dd07" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="5306-5e56-0da9-35f6" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
</constraints>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Chainsword" hidden="false" id="9af1-041f-b791-4f57" collective="false">
<profiles>
<profile name="Chainsword" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons" hidden="false" id="717f-e270-7068-b6a1">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">3</characteristic>
<characteristic name="WS" typeId="95d1-95f-45b4-11d6">4+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">3</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">0</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">1</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Power weapon" hidden="false" id="59f3-2506-e7f3-97d0" collective="false">
<profiles>
<profile name="Power weapon" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons" hidden="false" id="6893-1de6-b02f-a0a3">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">2</characteristic>
<characteristic name="WS" typeId="95d1-95f-45b4-11d6">4+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">4</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">-2</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">1</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink import="true" name="Close combat weapon" hidden="false" id="9aa1-765b-ae71-0f69" collective="false" targetId="cb65-fd40-f780-5ed8" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup name="Ranged weapon" id="bb89-ebdb-57d3-b858" hidden="false" collective="false" import="true" defaultSelectionEntryId="a751-b4be-5dd4-f1f3">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="ff48-15ef-f9be-d815" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="716f-fbcb-8fda-4577" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
</constraints>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Corrupted pistol" hidden="false" id="4084-511a-d4ae-702b" collective="false">
<profiles>
<profile name="Corrupted pistol" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" hidden="false" id="5931-d0a8-9a60-b1d7">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">12"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">1</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">4+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">4</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">-1</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">1</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Pistol" id="da08-0259-ecda-014d" hidden="false" targetId="8bf7-8812-923d-29e4" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Boltgun" hidden="false" id="956b-cb9d-4bbd-c0fb" collective="false">
<profiles>
<profile name="Boltgun" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" hidden="false" id="3001-0d31-f98f-5f4a">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">24"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">1</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">4+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">4</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">0</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">1</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Rapid Fire 1</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Rapid Fire" id="a4a1-9e95-5507-db38" hidden="false" targetId="c5c8-8b58-b8b6-7786" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup name="9 Traitor Guardsmen" id="f6cb-83e2-0c0d-05b0" hidden="false" collective="false" import="true" defaultSelectionEntryId="45d2-3454-daf-c7a8">
<constraints>
<constraint type="min" value="9" field="selections" scope="parent" shared="true" id="7bb4-06f4-80c6-1caa" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
<constraint type="max" value="9" field="selections" scope="parent" shared="true" id="e04e-d01e-bd02-f468" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
</constraints>
<selectionEntries>
<selectionEntry type="model" import="true" name="Guardsman w/ lasgun" hidden="false" id="46e3-9fb2-7ad6-9597" collective="false">
<constraints>
<constraint type="max" value="9" field="selections" scope="parent" shared="true" id="1914-d112-8663-7877" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
</constraints>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Lasgun" hidden="false" id="032e-3b6d-8c64-b8c1" collective="true">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="79ff-ac38-1572-14cd" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="2024-ca09-3e38-88b8" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
</constraints>
<profiles>
<profile name="Lasgun" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" hidden="false" id="6746-e8b8-ac52-7e94">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">24"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">1</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">4+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">3</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">0</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">1</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Rapid Fire 1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink import="true" name="Close combat weapon" hidden="false" id="f67f-661b-442e-199e" collective="false" targetId="cb65-fd40-f780-5ed8" type="selectionEntry">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="65a8-17a1-43f8-9bef" percentValue="false" includeChildSelections="false" includeChildForces="false"/>