generated from BSData/TemplateDataRepo
-
Notifications
You must be signed in to change notification settings - Fork 101
/
Genestealer Cults.cat
6353 lines (6339 loc) · 419 KB
/
Genestealer Cults.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" library="false" id="3bdf-a114-5035-c6ac" name="Xenos - Genestealer Cults" gameSystemId="sys-352e-adc2-7639-d6a9" gameSystemRevision="1" revision="51" battleScribeVersion="2.03" type="catalogue">
<sharedSelectionEntries>
<selectionEntry type="upgrade" import="false" name="Detachment" hidden="false" id="b96c-3fb6-1ee9-15ae">
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="39b8-22db-7b6a-81d1" includeChildForces="true" includeChildSelections="true"/>
<constraint type="min" value="1" field="selections" scope="roster" shared="true" id="77dc-6218-6b74-a245" includeChildSelections="true" includeChildForces="true"/>
</constraints>
<categoryLinks>
<categoryLink targetId="4ac9-fd30-1e3d-b249" id="7685-6aec-9739-88c7" primary="true" name="Configuration"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="Detachment" hidden="false" type="selectionEntryGroup" id="6c8a-a2ef-13ea-516b" targetId="7170-c243-d89f-6644">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="1cfe-4506-7c64-b62b"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="1951-f4c-826-26ab" includeChildSelections="true"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Aberrants" hidden="false" id="f51d-bc51-f301-9dee">
<categoryLinks>
<categoryLink targetId="e919-694c-97ac-c174" id="b664-6380-c354-7bd6" primary="false" name="Aberrants"/>
<categoryLink targetId="cf47-a0d7-7207-29dc" id="84ee-4fd4-5108-7cbe" primary="true" name="Infantry"/>
<categoryLink targetId="7850-cc5a-c191-b80d" id="7dcf-e642-d049-166d" primary="false" name="Great Devourer"/>
<categoryLink targetId="226b-cf1e-353a-ae7f" id="3557-8594-f4c8-b24" primary="false" name="Faction: Genestealer Cults"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="135"/>
<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>
<constraints>
<constraint type="max" value="3" field="selections" scope="roster" shared="true" id="ce3c-3b3b-f90d-e13" includeChildSelections="true" includeChildForces="true"/>
</constraints>
<modifiers>
<modifier type="set" value="300" field="51b2-306e-1021-d207">
<conditions>
<condition type="greaterThan" value="5" field="selections" scope="f51d-bc51-f301-9dee" childId="model" shared="true" includeChildSelections="true" includeChildForces="false"/>
</conditions>
</modifier>
<modifier type="set" value="1" field="ce3c-3b3b-f90d-e13">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="1d6e-2579-8e7f-1ed4" shared="true" includeChildForces="true"/>
</conditions>
</modifier>
</modifiers>
<infoLinks>
<infoLink name="Deep Strike" hidden="false" type="rule" id="dcf6-ea49-8129-442f" targetId="7cb5-dd6b-dd87-ad3b"/>
<infoLink name="Feel No Pain" hidden="false" type="rule" id="5e02-c62b-cbbd-6bf4" targetId="9bf4-280f-bbe2-6fbb"/>
<infoLink name="Cult Ambush" hidden="false" type="rule" id="6e36-834f-11b6-2f66" targetId="8f27-1d49-40ef-b041"/>
</infoLinks>
<profiles>
<profile name="Feel No Pain 5+" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="cc70-2470-1cb3-952c">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">This unit has a 5+ Feel No Pain</characteristic>
</characteristics>
</profile>
<profile name="Hulking Bodyguards" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="ae25-dce3-9c2e-2e38">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">While a CHARACTER is leading this unit, each time an attack targets this unit, if the Strength characteristic of that attack is greater than the Toughness characteristic of this unit, subtract 1 from the Wound roll.</characteristic>
</characteristics>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="1d6e-2579-8e7f-1ed4" shared="true" includeChildForces="true"/>
</conditions>
</modifier>
</modifiers>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="model" import="true" name="Aberrant Hypermorph" hidden="false" id="6dfd-e638-c220-1d1">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="2331-9610-1c53-167a" includeChildSelections="true"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="69fd-d7e9-425c-4861" includeChildSelections="true"/>
</constraints>
<profiles>
<profile name="Aberrant Hypermorph" typeId="c547-1836-d8a-ff4f" typeName="Unit" hidden="false" id="1db4-b61a-1deb-ec1b">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">6"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">6</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">5+</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="Aberrant Weapons" hidden="false" id="107b-a550-e5d0-d257">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="d2b6-5123-0ac2-c2cc"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="a3db-717f-9d9e-7963"/>
</constraints>
<profiles>
<profile name="Aberrant Weapons" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons" hidden="false" id="09b9-e721-1c61-a5ec">
<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">3+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">7</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">-2</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">2</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="model" import="true" name="Aberrant" hidden="false" id="2b64-79c0-e6b5-53e9">
<constraints>
<constraint type="min" value="4" field="selections" scope="parent" shared="true" id="bfe2-74de-d5d9-a678" includeChildSelections="true"/>
<constraint type="max" value="9" field="selections" scope="parent" shared="true" id="8fdf-cb31-c82-1eb9" includeChildSelections="true"/>
</constraints>
<profiles>
<profile name="Aberrant" typeId="c547-1836-d8a-ff4f" typeName="Unit" hidden="false" id="495f-548c-3cca-78ec">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">6"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">6</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">5+</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="Aberrant Weapons" hidden="false" id="917-cd2c-c184-1de8">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="7677-9a45-1cfd-71d0"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="ac08-4e16-a08-e219"/>
</constraints>
<profiles>
<profile name="Aberrant Weapons" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons" hidden="false" id="95e8-b0a4-fd42-5dbf">
<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">3+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">7</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">-2</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">2</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="model" import="true" name="Abominant" hidden="false" id="97b1-4873-9fcb-5cb8">
<categoryLinks>
<categoryLink targetId="7cc8-a037-cc71-6377" id="3b33-dc44-9c9a-7d5" primary="false" name="Abominant"/>
<categoryLink targetId="226b-cf1e-353a-ae7f" id="2631-d995-b606-8194" primary="false" name="Faction: Genestealer Cults"/>
<categoryLink targetId="cf47-a0d7-7207-29dc" id="58c-b6a6-c378-9de4" primary="false" name="Infantry"/>
<categoryLink targetId="9cfd-1c32-585f-7d5c" id="7711-899d-693b-deb6" primary="true" name="Character"/>
<categoryLink targetId="7850-cc5a-c191-b80d" id="f63e-8fea-b26f-7f1" primary="false" name="Great Devourer"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="95"/>
<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>
<constraints>
<constraint type="max" value="3" field="selections" scope="roster" shared="true" id="ce3c-3b3b-f90d-e13" includeChildSelections="true" includeChildForces="true"/>
</constraints>
<profiles>
<profile name="Abominant" typeId="c547-1836-d8a-ff4f" typeName="Unit" hidden="false" id="bacf-60a3-1a2e-7ab6">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">6"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">6</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">5+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">5</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="Feel No Pain 5+" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="8030-1b98-3c3c-4afb">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">This model has a 5+ Feel No Pain</characteristic>
</characteristics>
</profile>
<profile name="The Chosen One" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="48f2-fdac-e0bf-b520">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">While this model is leading a unit, each time a model in that unit is destroyed by a melee attack, if that model has not fought this phase, roll one D6. On a 4+ do not remove the destroyed model from play, it can fight after the attacking model's unit has finished making it's attacks and is then removed from play.</characteristic>
</characteristics>
</profile>
<profile name="Regenerating Gene-mass" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="c0d7-d922-8f79-8fca">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">The first time this model is destroyed, roll one D6 at the end of the phase. On a 2+, set this model back up on the battlefield as close as possible to where it was destroyed and not within Engagement Range of any enemy units, with its full wounds remaining.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Power Sledgehammer" hidden="false" id="71f0-2cb-e23c-c022">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="3872-c478-8e53-c92b"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="349b-eede-f4f8-7a76"/>
</constraints>
<profiles>
<profile name="Power Sledgehammer" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons" hidden="false" id="b66e-6bd8-3b37-819e">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">4</characteristic>
<characteristic name="WS" typeId="95d1-95f-45b4-11d6">3+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">12</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">-2</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">D6+1</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<infoLinks>
<infoLink name="Deep Strike" hidden="false" type="rule" id="4208-122f-6c49-c492" targetId="7cb5-dd6b-dd87-ad3b"/>
<infoLink name="Feel No Pain" hidden="false" type="rule" id="b407-f36d-489-458f" targetId="9bf4-280f-bbe2-6fbb"/>
</infoLinks>
<infoGroups>
<infoGroup name="Leader" hidden="false" id="1004-5cb-95b9-a3d8">
<infoLinks>
<infoLink name="Leader" hidden="false" type="rule" id="6e42-61fa-e755-1d3e" targetId="b4dd-3e1f-41cb-218f"/>
</infoLinks>
<profiles>
<profile name="Leader" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="f802-ed9a-9cb0-7aef">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">This model can be attached to the following unit:
- ABERRANTS</characteristic>
</characteristics>
</profile>
</profiles>
</infoGroup>
</infoGroups>
<entryLinks>
<entryLink import="true" name="Warlord" hidden="false" type="selectionEntry" id="5e43-ee60-e18e-65c" targetId="2665-129e-3c44-1270"/>
<entryLink import="true" name="Enhancements" hidden="false" type="selectionEntryGroup" id="4aed-987c-89c4-2cee" targetId="fb5-9606-c45e-bcdb"/>
</entryLinks>
<modifierGroups>
<modifierGroup type="and">
<modifiers>
<modifier type="set" value="1" field="ce3c-3b3b-f90d-e13">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="1d6e-2579-8e7f-1ed4" shared="true" includeChildForces="true"/>
</conditions>
</modifier>
<modifier type="set" value="0" field="ce3c-3b3b-f90d-e13">
<conditionGroups>
<conditionGroup type="and">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="4f4-2157-2cb5-8bb" shared="true"/>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="2a91-a18e-bd08-fa66" shared="true"/>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="30e9-42fa-3a6e-e8ef" shared="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="1d6e-2579-8e7f-1ed4" shared="true" includeChildForces="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</modifierGroup>
</modifierGroups>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Achilles Ridgerunners" hidden="false" id="cf71-a12a-2730-c40b">
<categoryLinks>
<categoryLink targetId="5c24-4529-89d6-8139" id="b471-3298-72c0-ec8d" primary="false" name="Achilles Ridgerunners"/>
<categoryLink targetId="226b-cf1e-353a-ae7f" id="77c5-1ddd-3229-b219" primary="false" name="Faction: Genestealer Cults"/>
<categoryLink targetId="dbd4-63-af05-998" id="5dff-9e8e-1a94-d4a6" primary="true" name="Vehicle"/>
<categoryLink targetId="7850-cc5a-c191-b80d" id="a07d-8d9f-3e6-2717" primary="false" name="Great Devourer"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Achilles Ridgerunner" hidden="false" id="71c2-cc66-9aac-181e">
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="85"/>
<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>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="e4c1-ec8a-3788-80fb" includeChildSelections="true"/>
<constraint type="max" value="2" field="selections" scope="parent" shared="true" id="fd2d-cc35-bb6b-b50d" includeChildSelections="true"/>
</constraints>
<profiles>
<profile name="Achilles Ridge Runner" typeId="c547-1836-d8a-ff4f" typeName="Unit" hidden="false" id="cc13-c299-d35c-cdd7">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">12"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">7</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">3+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">8</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">7+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">3</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntryGroups>
<selectionEntryGroup name="Flare Launcher Option" hidden="false" id="a7f4-4c5-4b37-e659" defaultSelectionEntryId="b81c-a70-cf05-d8f1">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="5bbf-ccca-561e-44c7"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="3258-b4a4-1003-cfcc"/>
</constraints>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Flare Launcher" hidden="false" id="b81c-a70-cf05-d8f1">
<profiles>
<profile name="Flare Launcher" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="db52-3838-1974-508f">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">The bearer’s unit has the SMOKE keyword and you can target it with the Smokescreen Stratagem for 0CP.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink targetId="6df-937-16bc-8c1a" id="651b-b709-796f-add7" primary="false" name="Smoke"/>
</categoryLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Spotter" hidden="false" id="b0bc-98a3-dc3b-7c1b">
<profiles>
<profile name="Spotter" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="1384-e4e8-a223-948f">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">The bearer’s ranged weapons have a Ballistic Skill characteristic of 3+.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Survey Augur" hidden="false" id="f3b-3276-c899-b6e3">
<profiles>
<profile name="Survey Augur" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="9cd2-9285-328c-2b1">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">Each time the bearer’s unit has shot, select one enemy unit that was hit by one or more attacks made by the bearer this phase. Until the end of the phase, each time a friendly GENESTEALER CULTS model makes an attack against that unit, that attack has the [IGNORES COVER] ability.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Ignores Cover" hidden="false" type="rule" id="c032-7657-d100-474a" targetId="4640-43e7-30b-215a"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
<selectionEntryGroup name="Heavy Mining Laser Option" hidden="false" id="8263-4c12-faea-3210" defaultSelectionEntryId="1a72-a226-6838-a4c5">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="f9a6-38e1-163b-e217"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="ee29-ee42-43db-3bf0"/>
</constraints>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Achilles Missile Launcher" hidden="false" id="4dfd-1554-a484-439d">
<profiles>
<profile name="Achilles Missile Launcher" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" hidden="false" id="445c-216b-baa5-214">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">36"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">3</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">4+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">9</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">-2</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">3</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">-</characteristic>
</characteristics>
<modifiers>
<modifier type="set" value="3+" field="94d-8a98-cf90-183e">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="model" childId="b0bc-98a3-dc3b-7c1b" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
<modifier type="append" value="Spotter" field="annotation" join=", ">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="model" childId="b0bc-98a3-dc3b-7c1b" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Heavy Mortar" hidden="false" id="1f1a-1975-8221-4f33">
<profiles>
<profile name="Heavy Mortar" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" hidden="false" id="ea6f-9f30-3a62-379">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">48"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">D6+3</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">4+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">6</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">Blast, Indirect Fire</characteristic>
</characteristics>
<modifiers>
<modifier type="set" value="3+" field="94d-8a98-cf90-183e">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="model" childId="b0bc-98a3-dc3b-7c1b" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
<modifier type="append" value="Spotter" field="annotation" join=", ">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="model" childId="b0bc-98a3-dc3b-7c1b" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
</profile>
</profiles>
<infoLinks>
<infoLink name="Blast" hidden="false" type="rule" id="5b66-19ee-d5da-6f95" targetId="6c1f-1cf7-ff25-c99e"/>
<infoLink name="Indirect Fire" hidden="false" type="rule" id="7e6a-af28-166c-d408" targetId="4ddd-4e29-acdd-5e6d"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink import="true" name="Heavy Mining Laser" hidden="false" type="selectionEntry" id="1a72-a226-6838-a4c5" targetId="fef0-fb67-5285-7552"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Twin Heavy Stubber" hidden="false" id="1d2a-dcb9-d666-68ec">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="7163-9f9d-a634-18ed" includeChildSelections="true"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="408a-4fbe-5237-346b" includeChildSelections="true"/>
</constraints>
<profiles>
<profile name="Twin Heavy Stubber" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" hidden="false" id="de2a-3439-ed47-c77c">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">36"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">3</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">Twin-linked, Rapid Fire 3</characteristic>
</characteristics>
<modifiers>
<modifier type="set" value="3+" field="94d-8a98-cf90-183e">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="model" childId="b0bc-98a3-dc3b-7c1b" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
<modifier type="append" value="Spotter" field="annotation" join=", ">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="model" childId="b0bc-98a3-dc3b-7c1b" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
</profile>
</profiles>
<infoLinks>
<infoLink name="Twin-linked" hidden="false" type="rule" id="5e73-4ab8-f2bf-9b53" targetId="cf93-ad4d-2f08-a79d"/>
<infoLink name="Rapid Fire" hidden="false" type="rule" id="44be-ed9-9505-2395" targetId="c5c8-8b58-b8b6-7786">
<modifiers>
<modifier type="append" value="3" field="name"/>
</modifiers>
</infoLink>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Armoured Hull" hidden="false" id="75c9-67d6-fa86-7854">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="3340-aedf-8f5f-3f6a"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="c76-9f5d-d0ce-ac12"/>
</constraints>
<profiles>
<profile name="Armoured Hull" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons" hidden="false" id="178-e832-5837-5f5">
<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">5</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>
</selectionEntry>
</selectionEntries>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="3" field="selections" scope="roster" shared="true" id="ce3c-3b3b-f90d-e13" includeChildSelections="true" includeChildForces="true"/>
</constraints>
<infoLinks>
<infoLink name="Deadly Demise" hidden="false" type="rule" id="85c5-1e1-a28d-832d" targetId="b68a-5ded-65ac-98c">
<modifiers>
<modifier type="append" value="1" field="name"/>
</modifiers>
</infoLink>
<infoLink name="Scouts" hidden="false" type="rule" id="e486-edeb-4dc7-ebd" targetId="ada6-bac1-ffe0-d6f7">
<modifiers>
<modifier type="append" value="9"" field="name"/>
</modifiers>
</infoLink>
</infoLinks>
<profiles>
<profile name="Crossfire" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="672c-fcd1-2183-179c">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">in your Shooting phase, after this unit has shot, select one enemy unit hit by one or more of those attacks. Until the end of the turn, each time a friendly GENESTEALER CULTS unit makes an attack that targets that enemy unit, improve the Armour Penetration characteristic of that attack by 1. The same enemy unit can only be affected by this ability once per turn.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Acolyte Hybrids with Hand Flamers" hidden="false" id="a197-f6c3-5d4a-5326">
<categoryLinks>
<categoryLink targetId="855e-3f1b-c88f-c02c" id="4e21-1cfb-49b3-6e41" primary="false" name="Acolyte Hybrids"/>
<categoryLink targetId="226b-cf1e-353a-ae7f" id="e731-eec2-73ea-adb3" primary="false" name="Faction: Genestealer Cults"/>
<categoryLink targetId="cf47-a0d7-7207-29dc" id="8448-2af7-1e8e-aa7b" primary="false" name="Infantry"/>
<categoryLink targetId="5a61-81ac-eb7c-a87e" id="c921-70f3-e928-290a" primary="false" name="Grenades"/>
<categoryLink targetId="7850-cc5a-c191-b80d" id="608e-de4-10c2-c8ee" primary="false" name="Great Devourer"/>
<categoryLink targetId="e338-111e-d0c6-b687" id="e2e-7698-2034-9a4" primary="true" name="Battleline"/>
<categoryLink targetId="944c-247a-211b-316a" id="edd5-5aae-74b4-6029" primary="false" name="Acolyte Hybrids with Hand Flamers"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="70"/>
<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>
<constraints>
<constraint type="max" value="6" field="selections" scope="roster" shared="true" id="ce3c-3b3b-f90d-e13" includeChildSelections="true" includeChildForces="true"/>
</constraints>
<modifiers>
<modifier type="set" value="140" field="51b2-306e-1021-d207">
<conditions>
<condition type="greaterThan" value="5" field="selections" scope="a197-f6c3-5d4a-5326" childId="model" shared="true" includeChildSelections="true" includeChildForces="false"/>
</conditions>
</modifier>
<modifier type="set" value="3" field="ce3c-3b3b-f90d-e13">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="1d6e-2579-8e7f-1ed4" shared="true" includeChildForces="true"/>
</conditions>
</modifier>
</modifiers>
<infoLinks>
<infoLink name="Deep Strike" hidden="false" type="rule" id="6fec-79b8-873c-e33b" targetId="7cb5-dd6b-dd87-ad3b"/>
<infoLink name="Cult Ambush" hidden="false" type="rule" id="b942-c225-51f8-9008" targetId="8f27-1d49-40ef-b041"/>
</infoLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Acolyte Leader" hidden="false" id="b831-831f-aadf-ff24">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="a614-5b41-7322-7744" includeChildSelections="true"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="2146-c808-6715-18e0" includeChildSelections="true"/>
</constraints>
<selectionEntryGroups>
<selectionEntryGroup name="Cult Claws and Knife Option" hidden="false" id="819a-fb53-8e8b-a693" defaultSelectionEntryId="b7de-54d2-4efa-3ffd">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="eaaa-f77d-1350-a32b"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="9ece-4281-c643-a153"/>
</constraints>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Leader's Cult Weapons" hidden="false" id="247-72a8-5ac-fcd4">
<profiles>
<profile name="Leader's Cult Weapons" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons" hidden="false" id="dc5c-4c49-337b-4281">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">5</characteristic>
<characteristic name="WS" typeId="95d1-95f-45b4-11d6">3+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">5</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>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Cult Claws and Knife" hidden="false" id="b7de-54d2-4efa-3ffd">
<profiles>
<profile name="Cult Claws and Knife" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons" hidden="false" id="3d0d-be7f-ed80-fdc2">
<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">3+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">4</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">-1</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">1</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
<selectionEntryGroup name="Pistol Option" hidden="false" id="ee48-e27f-cc26-fc8b" defaultSelectionEntryId="dd53-5a8a-ada9-65cd">
<entryLinks>
<entryLink import="true" name="Autopistol" hidden="false" type="selectionEntry" id="dd53-5a8a-ada9-65cd" targetId="d9a7-25e0-3ab8-efad"/>
<entryLink import="true" name="Hand Flamer" hidden="false" type="selectionEntry" id="1bb8-6da5-3140-8020" targetId="e455-c2e1-698f-7a8"/>
</entryLinks>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="b41b-d9c2-c534-14ae"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="6eaf-39c7-ccd-bdb6"/>
</constraints>
</selectionEntryGroup>
</selectionEntryGroups>
<infoLinks>
<infoLink targetId="346a-8364-5e27-ffbd" id="365e-21b7-2378-32a" type="profile" name="Acolyte Hybrid" hidden="false"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup name="Acolyte Hybrid Loadout" hidden="false" id="b63d-82d1-7c64-73fe" defaultSelectionEntryId="dc3b-5f0a-b29a-4932">
<selectionEntries>
<selectionEntry type="model" import="true" name="Acolyte Hybrid w/ Hand Flamer" hidden="false" id="dc3b-5f0a-b29a-4932">
<entryLinks>
<entryLink import="true" name="Hand Flamer" hidden="false" type="selectionEntry" id="6247-5653-5d2b-fee2" targetId="2847-d130-817-7064">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="f3b2-aa2-48ab-c152"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="c3e0-b107-4300-2811"/>
</constraints>
</entryLink>
<entryLink targetId="661-4ada-993b-de26" id="3186-21f4-3e77-de03" type="selectionEntry" name="Cult Claws and Knife" hidden="false" collective="true"/>
</entryLinks>
<infoLinks>
<infoLink targetId="346a-8364-5e27-ffbd" id="514d-a83b-976f-3a4b" type="profile" name="Acolyte Hybrid" hidden="false"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="model" import="true" name="Acolyte Hybrid w/ Cult Icon" hidden="false" id="45e2-1de4-2db-afb7">
<constraints>
<constraint type="max" value="1" field="selections" scope="a197-f6c3-5d4a-5326" shared="true" id="bf02-dac2-df39-95a6" includeChildSelections="true"/>
</constraints>
<entryLinks>
<entryLink targetId="3338-b9a2-7d75-33e6" id="6c64-bd22-77af-7d44" type="selectionEntry" name="Cult Icon" hidden="false" collective="true"/>
<entryLink targetId="661-4ada-993b-de26" id="6946-f3b1-498a-a120" type="selectionEntry" name="Cult Claws and Knife" hidden="false" collective="true"/>
</entryLinks>
<infoLinks>
<infoLink targetId="346a-8364-5e27-ffbd" id="f478-5eeb-a453-ffbb" type="profile" name="Acolyte Hybrid" hidden="false"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="model" import="true" name="Acolyte Hybrid w/ Demolition Charge, and Cult Claws and Knife" hidden="false" id="36a8-d8a9-c4a1-4d3e">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Demolition Charge" hidden="false" id="5c5-a613-5058-62c9" collective="true">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="af9a-b2ba-617e-f65e"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="6c19-85de-e959-b33d"/>
</constraints>
<profiles>
<profile name="Demolition Charge" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" hidden="false" id="8429-4679-97cf-4b05">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">8"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">D6</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">5+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">9</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">-2</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">2</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Assault, Blast, Hazardous, One Shot</characteristic>
</characteristics>
</profile>
</profiles>
<rules>
<rule name="One Shot" id="875e-99f5-fa02-477e" hidden="false">
<description>.The bearer can only shoot with this weapon once per battle</description>
</rule>
</rules>
<infoLinks>
<infoLink name="Blast" id="b16f-532e-af43-2260" hidden="false" type="rule" targetId="6c1f-1cf7-ff25-c99e"/>
<infoLink name="Hazardous" id="ffd0-9331-4496-9840" hidden="false" type="rule" targetId="8367-374c-f87-c627"/>
<infoLink name="Assault" id="d270-7ee4-2ce3-4e5c" hidden="false" type="rule" targetId="fc8a-8c24-bae9-cc1c"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
<infoLinks>
<infoLink name="Acolyte Hybrid" id="7531-e453-1374-e88d" hidden="false" targetId="346a-8364-5e27-ffbd" type="profile"/>
</infoLinks>
<entryLinks>
<entryLink import="true" name="Cult Claws and Knife" hidden="false" id="716a-949a-a22-5335" targetId="661-4ada-993b-de26" type="selectionEntry" collective="true"/>
</entryLinks>
<constraints>
<constraint type="max" value="0" field="selections" scope="parent" shared="true" id="d156-22fa-ee8-4cb0" includeChildSelections="true"/>
</constraints>
<modifiers>
<modifier type="increment" value="2" field="d156-22fa-ee8-4cb0">
<repeats>
<repeat value="5" repeats="1" field="selections" scope="a197-f6c3-5d4a-5326" childId="model" shared="true" roundUp="false" id="2a72-f72c-cd19-2c37" includeChildSelections="true"/>
</repeats>
</modifier>
</modifiers>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="4" field="selections" scope="parent" shared="true" id="ecb7-2d5b-b00-a347" includeChildSelections="true"/>
<constraint type="max" value="9" field="selections" scope="parent" shared="true" id="d44b-482b-9046-be35" includeChildSelections="true"/>
</constraints>
</selectionEntryGroup>
</selectionEntryGroups>
<profiles>
<profile name="Industrialised Destruction" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="429b-8985-6cfb-8970">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">Each time a model in this unit makes an attack, re-roll a Wound Roll of 1. If the target of that attack is an enemy unit within range of an objective marker, you can re-roll the wound roll.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="model" import="true" name="Acolyte Iconward" hidden="false" id="e367-b2cb-d22a-b17c">
<categoryLinks>
<categoryLink targetId="9777-55d5-ffae-c07" id="45fb-df6a-d77d-e66c" primary="false" name="Acolyte Iconward"/>
<categoryLink targetId="226b-cf1e-353a-ae7f" id="1441-a369-fbd4-4c94" primary="false" name="Faction: Genestealer Cults"/>
<categoryLink targetId="cf47-a0d7-7207-29dc" id="f3df-9bc4-ab7c-cc4d" primary="false" name="Infantry"/>
<categoryLink targetId="9cfd-1c32-585f-7d5c" id="4f53-bbc2-f4ac-8a65" primary="true" name="Character"/>
<categoryLink targetId="5a61-81ac-eb7c-a87e" id="1cdc-31e1-e580-88aa" primary="false" name="Grenades"/>
<categoryLink targetId="7850-cc5a-c191-b80d" id="b624-75d0-5d15-b8d8" primary="false" name="Great Devourer"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="50"/>
<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>
<constraints>
<constraint type="max" value="3" field="selections" scope="roster" shared="true" id="ce3c-3b3b-f90d-e13" includeChildSelections="true" includeChildForces="true"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Autopistol" hidden="false" type="selectionEntry" id="50b4-94bf-d910-99eb" targetId="ffd4-af63-eb03-4bb5">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="bc7f-cf29-929-e297"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="fd87-a925-2a08-6197"/>
</constraints>
</entryLink>
<entryLink import="true" name="Warlord" hidden="false" type="selectionEntry" id="d2f-28c3-9ec6-4d5a" targetId="2665-129e-3c44-1270"/>
<entryLink import="true" name="Enhancements" hidden="false" type="selectionEntryGroup" id="6299-242-9c5f-304c" targetId="fb5-9606-c45e-bcdb"/>
</entryLinks>
<infoGroups>
<infoGroup name="Leader" hidden="false" id="83c0-62e2-597d-d6de">
<infoLinks>
<infoLink name="Leader" hidden="false" type="rule" id="9a66-f2e4-41a9-69e2" targetId="b4dd-3e1f-41cb-218f"/>
</infoLinks>
<profiles>
<profile name="Leader" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="1245-caf-5f2d-9ef7">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">This model can be attached to the following units:
- ACOLYTE HYBRIDS
- HYBRID METAMORPHS
- NEOPHYTE HYBRIDS</characteristic>
</characteristics>
</profile>
</profiles>
</infoGroup>
</infoGroups>
<infoLinks>
<infoLink name="Deep Strike" hidden="false" type="rule" id="4443-dccf-4eca-d374" targetId="7cb5-dd6b-dd87-ad3b"/>
<infoLink name="Scouts" id="d3a1-1c59-8120-786d" hidden="false" type="rule" targetId="ada6-bac1-ffe0-d6f7">
<modifiers>
<modifier type="append" value="6"" field="name"/>
</modifiers>
</infoLink>
</infoLinks>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Cult Claws" hidden="false" id="f435-efc3-2e04-3b25">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="a680-8530-d8ab-7b25" includeChildSelections="true"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="fcd2-7da1-905e-30d5" includeChildSelections="true"/>
</constraints>
<profiles>
<profile name="Cult Claws" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons" hidden="false" id="306c-7337-c97b-cd9c">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">4</characteristic>
<characteristic name="WS" typeId="95d1-95f-45b4-11d6">3+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">4</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">-1</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">1</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<profiles>
<profile name="Acolyte Iconward" typeId="c547-1836-d8a-ff4f" typeName="Unit" hidden="false" id="1625-20a0-5afd-d9fe">
<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">5+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">3</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">6+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">1</characteristic>
</characteristics>
</profile>
<profile name="Nexus of Devotion" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="847c-923b-69ef-55ac">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">While this model is leading a unit, models in that unit have the Feel No Pain 5+ ability. If that unit has the HYBRID METAMORPHS keyword, models in that unit have the Feel No Pain 4+ ability instead.</characteristic>
</characteristics>
</profile>
<profile name="Summon the Cult" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="2099-bcaf-e5f1-ebcf">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">Once per battle, when you have to remove a Cult Ambush marker because your opponent has moved too close to it, if one or more models from your army with this ability are on the battlefield, you can use this ability. If you do, instead of removing that marker, you can place it anywhere on the battlefield that is within 12" of a model from your army with this ability and more than 9" horizontally away from all enemy units (if this is not possible, this ability is not considered to have been used and that marker is removed as normal).</characteristic>
</characteristics>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="1d6e-2579-8e7f-1ed4" shared="true" includeChildForces="true"/>
</conditions>
</modifier>
</modifiers>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Atalan Jackals" hidden="false" id="3a81-2b84-bf4c-4f85">
<categoryLinks>
<categoryLink targetId="5c5f-d483-11e3-3f12" id="bb5f-2b8e-4024-e535" primary="false" name="Atalan Jackals"/>
<categoryLink targetId="226b-cf1e-353a-ae7f" id="5c1-f23e-9bfa-54e1" primary="false" name="Faction: Genestealer Cults"/>
<categoryLink targetId="14a0-40c9-2748-ae6e" id="bcec-c70e-b0e4-e7db" primary="true" name="Mounted"/>
<categoryLink targetId="5a61-81ac-eb7c-a87e" id="7cd4-d16f-5519-b6f0" primary="false" name="Grenades"/>
<categoryLink targetId="7850-cc5a-c191-b80d" id="4ea6-cb61-2794-e92f" primary="false" name="Great Devourer"/>
</categoryLinks>
<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>
<constraints>
<constraint type="max" value="3" field="selections" scope="roster" shared="true" id="ce3c-3b3b-f90d-e13" includeChildSelections="true" includeChildForces="true"/>
</constraints>
<modifiers>
<modifier type="set" value="160" field="51b2-306e-1021-d207">
<conditions>
<condition type="greaterThan" value="5" field="selections" scope="3a81-2b84-bf4c-4f85" childId="model" shared="true" includeChildSelections="true" includeChildForces="false"/>
</conditions>
</modifier>
</modifiers>
<selectionEntries>
<selectionEntry type="model" import="true" name="Atalan Wolfquad" hidden="false" id="de61-4088-f84c-24a5">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="fc0a-44cd-fb5c-c7e"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="f747-cb13-c7c9-f53a"/>
</constraints>
<modifiers>
<modifier type="increment" value="1" field="f747-cb13-c7c9-f53a">
<conditions>
<condition type="equalTo" value="8" field="selections" scope="3a81-2b84-bf4c-4f85" childId="5742-90b0-3164-cb74" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile name="Atalan Wolfquad" typeId="c547-1836-d8a-ff4f" typeName="Unit" hidden="false" id="79d6-2d63-575d-dc">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">12"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">4</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">5+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">4</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">7+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">1</characteristic>
</characteristics>
</profile>
</profiles>
<entryLinks>
<entryLink targetId="431d-a26e-89f8-bf06" id="e984-5312-f445-a326" type="selectionEntry" name="Close Combat Weapon" hidden="false" collective="true">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="6ee0-7277-63d7-a4ab"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="36f9-5872-b4e9-51b8"/>
</constraints>
</entryLink>
<entryLink targetId="17cd-6ea6-d3e9-c53c" id="aa6f-4c12-f64-dadd" type="selectionEntry" name="Atalan Small Arms" hidden="false" collective="true"/>
</entryLinks>
<selectionEntryGroups>
<selectionEntryGroup name="Heavy Stubber Option" hidden="false" id="f308-2ed-9bcc-ee78" defaultSelectionEntryId="25d1-56a5-31fe-1f12">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Heavy Stubber" hidden="false" id="25d1-56a5-31fe-1f12" collective="false" defaultAmount="0">
<profiles>
<profile name="Heavy Stubber" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" hidden="false" id="b0d4-a0cd-284f-fd72">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">36"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">3</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 3</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Rapid Fire" hidden="false" type="rule" id="61a4-4699-c827-b2e0" targetId="c5c8-8b58-b8b6-7786">
<modifiers>
<modifier type="append" value="3" field="name"/>
</modifiers>
</infoLink>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Mining Laser" hidden="false" id="17f0-d036-dc8d-3399" collective="false">
<profiles>
<profile name="Mining Laser" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" hidden="false" id="32fb-3f61-367c-fb71">
<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">12</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">-3</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">D6+1</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Atalan Incinerator" hidden="false" id="726f-abd3-9be7-f1d5" collective="false">
<profiles>
<profile name="Atalan Incinerator" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" hidden="false" id="1aa5-8d88-59da-bac3">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">12"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">D6</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">N/A</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">1</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Ignores Cover, Torrent</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Ignores Cover" hidden="false" type="rule" id="23c1-4eb4-4d02-c082" targetId="4640-43e7-30b-215a"/>
<infoLink name="Torrent" hidden="false" type="rule" id="7411-3362-731f-748f" targetId="5edf-d619-23e0-9b56"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="6f9f-39d9-74a2-e93d" includeChildSelections="true"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="ee73-9aad-a96e-6184" includeChildSelections="true"/>
</constraints>
</selectionEntryGroup>
</selectionEntryGroups>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup name="Jackals" hidden="false" id="5742-90b0-3164-cb74" defaultSelectionEntryId="c981-ff67-9a33-386b">
<selectionEntries>
<selectionEntry type="model" import="true" name="Atalan Jackal w/ Grenade Launcher" hidden="false" id="9de3-2a5c-beea-72ae">
<profiles>
<profile name="Atalan Jackal" typeId="c547-1836-d8a-ff4f" typeName="Unit" hidden="false" id="df5f-99f2-c2c7-fae1">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">12"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">4</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">5+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">2</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">7+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">1</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="0" field="selections" scope="parent" shared="true" id="3819-465f-f0a1-9644"/>
</constraints>
<selectionEntryGroups>
<selectionEntryGroup name="Melee Choice" hidden="false" id="dd69-c447-2c20-dff3" defaultSelectionEntryId="5c5a-d00e-8e18-6154">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="fa61-ca29-5f1f-969b"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="42a2-b62-e709-79a2"/>
</constraints>
<entryLinks>
<entryLink targetId="595a-e1c5-7280-6da3" id="bb98-1-cf7e-c2df" type="selectionEntry" name="Atalan Power Weapon" hidden="false" collective="false"/>
<entryLink targetId="431d-a26e-89f8-bf06" id="5c5a-d00e-8e18-6154" type="selectionEntry" name="Close Combat Weapon" hidden="false" collective="false"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<modifiers>
<modifier type="increment" value="1" field="3819-465f-f0a1-9644">
<repeats>
<repeat value="4" repeats="1" field="selections" scope="3a81-2b84-bf4c-4f85" childId="5742-90b0-3164-cb74" shared="true" roundUp="false" id="54ac-699-1242-4b69" includeChildSelections="true"/>
</repeats>
</modifier>
</modifiers>
<entryLinks>
<entryLink import="true" name="Grenade Launcher" hidden="false" type="selectionEntry" id="ad32-587a-4f40-d461" targetId="dba3-6506-4103-2088" collective="false">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="7dac-fa50-1336-3db2" includeChildSelections="true"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="6e3d-5efe-b45e-b395" includeChildSelections="true"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntry>
<selectionEntry type="model" import="true" name="Atalan Jackal" hidden="false" id="c981-ff67-9a33-386b">
<profiles>
<profile name="Atalan Jackal" typeId="c547-1836-d8a-ff4f" typeName="Unit" hidden="false" id="d97-a338-65b-e38f">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">12"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">4</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">5+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">2</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">7+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">1</characteristic>
</characteristics>
</profile>
</profiles>
<entryLinks>
<entryLink targetId="431d-a26e-89f8-bf06" id="3549-67da-fbbe-4712" type="selectionEntry" name="Close Combat Weapon" hidden="false" collective="true">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="f868-8a31-aabb-94c"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="4292-4cca-88c6-f910"/>
</constraints>
</entryLink>
<entryLink targetId="17cd-6ea6-d3e9-c53c" id="250e-bd99-8e6e-e58a" type="selectionEntry" name="Atalan Small Arms" hidden="false" collective="true"/>
</entryLinks>
</selectionEntry>
<selectionEntry type="model" import="true" name="Atalan Jackal w/ Atalan Power Weapon" hidden="false" id="e824-edab-18c6-3347">
<profiles>
<profile name="Atalan Jackal" typeId="c547-1836-d8a-ff4f" typeName="Unit" hidden="false" id="b293-963b-9f23-a9a4">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">12"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">4</characteristic>