forked from BSData/wh40k-9e
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Aeldari - Drukhari.cat
9350 lines (9350 loc) · 706 KB
/
Aeldari - Drukhari.cat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<catalogue id="e0a4-2172-4397-e39a" name="Aeldari - Drukhari" revision="73" battleScribeVersion="2.03" authorName="BSData Developers" authorContact="@WindstormSCR @FarseerV" authorUrl="https://discord.gg/KqPVhds" library="false" gameSystemId="28ec-711c-d87f-3aeb" gameSystemRevision="132" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<publications>
<publication id="e0a4-2172-pubN65537" name="Codex: Drukhari"/>
<publication id="d36f-0c87-284a-7055" name="Warhammer Legends - Drukhari"/>
</publications>
<categoryEntries>
<categoryEntry id="dd05-8f0e-b393-b91f" name="Archon" hidden="false"/>
<categoryEntry id="4d1f-6a82-9ae1-3b0a" name="Beastmaster" hidden="false"/>
<categoryEntry id="d639-aa51-1f9c-5ad9" name="Clawed Fiends" hidden="false"/>
<categoryEntry id="0dc7-1e5d-7726-d333" name="Drazhar" hidden="false"/>
<categoryEntry id="c3cc-22d9-1014-b496" name="Faction: <Haemonculus Coven>" hidden="false"/>
<categoryEntry id="53ad-d29f-5f37-2a82" name="Faction: <Kabal>" hidden="false"/>
<categoryEntry id="99c9-6127-f78b-1f66" name="Faction: <Wych Cult>" hidden="false"/>
<categoryEntry id="6a01-e1fc-d03d-8390" name="Faction: Aeldari" hidden="false"/>
<categoryEntry id="bd42-0139-0789-e05b" name="Faction: Drukhari" hidden="false"/>
<categoryEntry id="2081-49f0-1e15-a9f3" name="Faction: Incubi" hidden="false"/>
<categoryEntry id="f16a-5e3b-9a49-2b42" name="Faction: Prophets of Flesh" hidden="false"/>
<categoryEntry id="4c47-af86-571d-3176" name="Faction: Wych Cult of Strife" hidden="false"/>
<categoryEntry id="1579-ae66-e2f8-cb10" name="Grotesques" hidden="false"/>
<categoryEntry id="8fca-4ed9-4326-8a23" name="Haemonculus" hidden="false"/>
<categoryEntry id="79fd-018b-040b-0e2c" name="Hekatrix Bloodbrides" hidden="false"/>
<categoryEntry id="b15b-abaf-9eda-f855" name="Hellions" hidden="false"/>
<categoryEntry id="ff85-9ee3-28cb-691b" name="Kabalite Trueborn" hidden="false"/>
<categoryEntry id="a6a2-680c-c64c-587a" name="Kabalite Warriors" hidden="false"/>
<categoryEntry id="c3c8-70fb-2431-5e26" name="Khymerae" hidden="false"/>
<categoryEntry id="02f0-bbac-fa6c-3649" name="Lelith Hesperax" hidden="false"/>
<categoryEntry id="ddbc-68f0-64a4-9d04" name="Lhamaean" hidden="false"/>
<categoryEntry id="a565-a5b4-4e95-2786" name="Mandrakes" hidden="false"/>
<categoryEntry id="8c44-0452-c143-f9b0" name="Medusae" hidden="false"/>
<categoryEntry id="465b-6b54-c2bf-cdd3" name="Raider" hidden="false"/>
<categoryEntry id="a9c2-0a4b-4e13-c1c3" name="Razorwing Flocks" hidden="false"/>
<categoryEntry id="4ee8-ef24-8efb-948e" name="Reavers" hidden="false"/>
<categoryEntry id="1ac5-97d4-4672-c325" name="Scourges" hidden="false"/>
<categoryEntry id="c9a9-0a9a-8be9-1474" name="Sslyth" hidden="false"/>
<categoryEntry id="3583-0c0b-f37a-5faa" name="Succubus" hidden="false"/>
<categoryEntry id="d1dc-6993-2368-3809" name="Talos" hidden="false"/>
<categoryEntry id="c562-0478-2bfa-f12c" name="Ur-Ghul" hidden="false"/>
<categoryEntry id="be89-e5a2-cf0e-c91c" name="Urien Rakarth" hidden="false"/>
<categoryEntry id="2f02-a00c-0e9e-39fc" name="Venom" hidden="false"/>
<categoryEntry id="93aa-d8fa-b826-9fbc" name="Wracks" hidden="false"/>
<categoryEntry id="5b68-0855-2fb2-1f69" name="Wyches" hidden="false"/>
<categoryEntry id="98b7-d351-e823-fc09" name="Cronos" hidden="false"/>
<categoryEntry id="8447-1ad0-d85e-4d5a" name="Reaper" hidden="false"/>
<categoryEntry id="db6a-df50-9c8f-2c52" name="Tantalus" hidden="false"/>
<categoryEntry id="1018-59aa-c195-3ed9" name="Ravager" hidden="false"/>
<categoryEntry id="a028-67e7-ffca-214b" name="Voidraven Bomber" hidden="false"/>
<categoryEntry id="dbdf-5a53-d746-429d" name="Faction: Reborn Drukhari" hidden="false"/>
</categoryEntries>
<entryLinks>
<entryLink id="9cf3-09b4-05fe-4ec9" name="Archon" hidden="false" collective="false" import="true" targetId="3ea9-f42c-d816-b91a" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="19d8-4c3b-498f-c6cd" type="equalTo"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2a6a-b3b4-bf3d-9004" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</entryLink>
<entryLink id="b9b4-b3d6-589c-b694" name="Haemonculus" hidden="false" collective="false" import="true" targetId="bcaa-5a3b-de61-6f41" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="19d8-4c3b-498f-c6cd" type="equalTo"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="5203-80db-2e9b-dba0" type="equalTo"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ebb3-4f37-6e57-7a8e" type="atLeast"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</entryLink>
<entryLink id="3737-f109-c934-f294" name="Kabalite Warriors" hidden="false" collective="false" import="true" targetId="40a0-6ba1-e19a-1c60" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2a6a-b3b4-bf3d-9004" type="equalTo"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="19d8-4c3b-498f-c6cd" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</entryLink>
<entryLink id="a1e5-0c0b-9a3d-e559" name="Mandrakes" hidden="false" collective="false" import="true" targetId="8738-a567-5340-4450" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ebb3-4f37-6e57-7a8e" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="18ba-aad0-87a8-7d9c" name="Raider" hidden="false" collective="false" import="true" targetId="ac3c-0072-8a03-fe04" type="selectionEntry"/>
<entryLink id="60d4-e96e-6fd7-8fb5" name="Ravager" hidden="false" collective="false" import="true" targetId="4f27-1486-dd47-0b85" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2a6a-b3b4-bf3d-9004" type="equalTo"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="19d8-4c3b-498f-c6cd" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</entryLink>
<entryLink id="3d78-c3e1-34ca-d8aa" name="Razorwing Jetfighter" hidden="false" collective="false" import="true" targetId="829b-aac7-d866-01ca" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2a6a-b3b4-bf3d-9004" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="84ee-7b90-0df7-1ae9" name="Reavers" hidden="false" collective="false" import="true" targetId="4da6-8b2a-acaf-d1fe" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2a6a-b3b4-bf3d-9004" type="equalTo"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="5203-80db-2e9b-dba0" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</entryLink>
<entryLink id="f66d-c5d1-f9e0-da53" name="Succubus" hidden="false" collective="false" import="true" targetId="f82e-71e9-d0fd-dad8" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2a6a-b3b4-bf3d-9004" type="equalTo"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="5203-80db-2e9b-dba0" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</entryLink>
<entryLink id="1d17-8ba3-ae88-b38b" name="Venom" hidden="false" collective="false" import="true" targetId="a74d-d706-214e-86a0" type="selectionEntry"/>
<entryLink id="fd41-cc95-81b9-9bf4" name="Wracks" hidden="false" collective="false" import="true" targetId="870e-ddec-7fd6-366a" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="19d8-4c3b-498f-c6cd" type="equalTo"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="5203-80db-2e9b-dba0" type="equalTo"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ebb3-4f37-6e57-7a8e" type="atLeast"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</entryLink>
<entryLink id="128d-6405-60ed-027e" name="Clawed Fiends" hidden="false" collective="false" import="true" targetId="71d4-0f50-7358-6977" type="selectionEntry">
<categoryLinks>
<categoryLink id="5a07-ace6-4a26-2796" name="New CategoryLink" hidden="false" targetId="c274d0b0-5866-44bc-9810-91c136ae7438" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="fc0e-9baa-f757-8eb3" name="Beastmaster" hidden="false" collective="false" import="true" targetId="8a61-8b56-4ce5-893f" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="5203-80db-2e9b-dba0" type="equalTo"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2a6a-b3b4-bf3d-9004" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</entryLink>
<entryLink id="0157-8573-e847-f1ac" name="Drazhar" hidden="false" collective="false" import="true" targetId="e640-d16e-aafa-7d7c" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ebb3-4f37-6e57-7a8e" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="12e5-faa7-4331-ea43" name="Cronos" hidden="false" collective="false" import="true" targetId="1924-94b3-98a7-eb5d" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="19d8-4c3b-498f-c6cd" type="equalTo"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="5203-80db-2e9b-dba0" type="equalTo"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ebb3-4f37-6e57-7a8e" type="atLeast"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</entryLink>
<entryLink id="d4fe-914e-5c9d-768b" name="Grotesques" hidden="false" collective="false" import="true" targetId="6897-8b55-f703-7d4e" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="19d8-4c3b-498f-c6cd" type="equalTo"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="5203-80db-2e9b-dba0" type="equalTo"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ebb3-4f37-6e57-7a8e" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</entryLink>
<entryLink id="d8f4-094c-5682-f01f" name="Hekatrix Bloodbrides (Index)" hidden="false" collective="false" import="true" targetId="1a60-f7ac-212f-41be" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2a6a-b3b4-bf3d-9004" type="equalTo"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="5203-80db-2e9b-dba0" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</entryLink>
<entryLink id="4589-43e5-9ffc-6778" name="Hellions" hidden="false" collective="false" import="true" targetId="2bd3-2b66-0d6e-ff43" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2a6a-b3b4-bf3d-9004" type="equalTo"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="5203-80db-2e9b-dba0" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</entryLink>
<entryLink id="6b86-6fc3-7c27-7969" name="Incubi" hidden="false" collective="false" import="true" targetId="0a1e-abbc-c986-0b6c" type="selectionEntry"/>
<entryLink id="3add-6343-4ffe-cf37" name="Razorwing Flocks" hidden="false" collective="false" import="true" targetId="2064-05c4-c968-9878" type="selectionEntry">
<categoryLinks>
<categoryLink id="b24f-fc67-72b1-dc1a" name="New CategoryLink" hidden="false" targetId="c274d0b0-5866-44bc-9810-91c136ae7438" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="af9a-1103-5c2c-8a54" name="Lelith Hesperax" hidden="false" collective="false" import="true" targetId="4d2d-8f34-03e5-91ca" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ebb3-4f37-6e57-7a8e" type="atLeast"/>
</conditions>
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="c6f0-4cac-44c9-67e8" type="equalTo"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ff16-7808-4358-c633" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</entryLink>
<entryLink id="c6b1-f56a-453d-2856" name="Kabalite Trueborn (Index)" hidden="false" collective="false" import="true" targetId="8435-5bf3-35df-85a7" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2a6a-b3b4-bf3d-9004" type="equalTo"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="19d8-4c3b-498f-c6cd" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</entryLink>
<entryLink id="2609-854c-9f1d-bf57" name="Lhamean" hidden="false" collective="false" import="true" targetId="510d-bf5b-e8e9-e11e" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2a6a-b3b4-bf3d-9004" type="equalTo"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="19d8-4c3b-498f-c6cd" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="5e30-53f7-95e9-47ac" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="d0ee-db41-7fc3-3781" name="Medusae" hidden="false" collective="false" import="true" targetId="c246-31e5-b596-f056" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2a6a-b3b4-bf3d-9004" type="equalTo"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="19d8-4c3b-498f-c6cd" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="f258-0bb9-2b43-beca" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="87a7-cff3-b9f7-4529" name="Sslyth" hidden="false" collective="false" import="true" targetId="0a99-77cf-5c94-2440" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2a6a-b3b4-bf3d-9004" type="equalTo"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="19d8-4c3b-498f-c6cd" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="fd03-ebf0-2d7e-ab85" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="d4f0-83f2-ff11-6047" name="Talos" hidden="false" collective="false" import="true" targetId="3166-b10d-e54e-f46d" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="19d8-4c3b-498f-c6cd" type="equalTo"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="5203-80db-2e9b-dba0" type="equalTo"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ebb3-4f37-6e57-7a8e" type="atLeast"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</entryLink>
<entryLink id="7961-2040-90a2-ed11" name="Ur-Ghul" hidden="false" collective="false" import="true" targetId="2e0f-b736-567e-2447" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2a6a-b3b4-bf3d-9004" type="equalTo"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="19d8-4c3b-498f-c6cd" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="baaa-1c31-8f26-d1f2" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="14de-f068-353e-c62d" name="Urien Rakarth" hidden="false" collective="false" import="true" targetId="afb9-7509-4ba6-c415" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ebb3-4f37-6e57-7a8e" type="atLeast"/>
</conditions>
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="1b7c-5dd0-c2c8-96a2" type="equalTo"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ff16-7808-4358-c633" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</entryLink>
<entryLink id="7721-a0f0-e495-731b" name="Voidraven" hidden="false" collective="false" import="true" targetId="eb16-edc2-adda-2952" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2a6a-b3b4-bf3d-9004" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="1b87-3f42-1264-083c" name="Wyches" hidden="false" collective="false" import="true" targetId="287c-0434-786c-9ba1" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2a6a-b3b4-bf3d-9004" type="equalTo"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="5203-80db-2e9b-dba0" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</entryLink>
<entryLink id="06e7-3800-d3aa-ccf2" name="Khymerae" hidden="false" collective="false" import="true" targetId="dbee-fddd-850a-9571" type="selectionEntry">
<categoryLinks>
<categoryLink id="a720-5c9c-dd16-b636" name="New CategoryLink" hidden="false" targetId="c274d0b0-5866-44bc-9810-91c136ae7438" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="ed3c-d93e-2e1b-f25d" name="Scourges" hidden="false" collective="false" import="true" targetId="ac7a-8b7f-4e94-ac7f" type="selectionEntry"/>
<entryLink id="31cf-4b10-5cf6-2f3d" name="Court of the Archon" hidden="false" collective="false" import="true" targetId="65cd-a17c-d556-3734" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="3ea9-f42c-d816-b91a" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="c12c-0ab6-1601-58e3" name="Beast Unit" hidden="false" collective="false" import="true" targetId="4cc1-8463-9dac-18ad" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="8a61-8b56-4ce5-893f" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</entryLink>
<entryLink id="810b-7974-b371-df3f" name="Tantalus" hidden="false" collective="false" import="true" targetId="f0f3-5144-6b79-b79a" type="selectionEntry">
<categoryLinks>
<categoryLink id="c0cc-bf5e-1253-aa98" name="New CategoryLink" hidden="false" targetId="c3cc-22d9-1014-b496" primary="false"/>
<categoryLink id="7fa6-43c8-2e59-1cb8" name="New CategoryLink" hidden="false" targetId="53ad-d29f-5f37-2a82" primary="false"/>
<categoryLink id="9eae-7f41-38ee-638f" name="New CategoryLink" hidden="false" targetId="99c9-6127-f78b-1f66" primary="false"/>
<categoryLink id="6889-b125-417c-3ca5" name="New CategoryLink" hidden="false" targetId="6a01-e1fc-d03d-8390" primary="false"/>
<categoryLink id="e378-2a88-c878-ef42" name="New CategoryLink" hidden="false" targetId="bd42-0139-0789-e05b" primary="false"/>
<categoryLink id="9607-9809-0cad-330b" name="New CategoryLink" hidden="false" targetId="db6a-df50-9c8f-2c52" primary="false"/>
<categoryLink id="f1b4-a0e7-bca2-5915" name="New CategoryLink" hidden="false" targetId="6cc4-1b62-8e8a-05cd" primary="false"/>
<categoryLink id="dbd8-7d4a-4ced-bbde" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
<categoryLink id="e20d-9da3-84da-14aa" name="New CategoryLink" hidden="false" targetId="3117-16d8-fcef-4f56" primary="false"/>
<categoryLink id="745e-b218-d169-380c" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="bd21-a09a-0f62-f392" name="Reaper" hidden="false" collective="false" import="true" targetId="7553-e71e-0216-8610" type="selectionEntry"/>
<entryLink id="2b74-e9b5-2cc4-0b96" name="Detachment Attribute" hidden="false" collective="false" import="true" targetId="3663-e78f-7417-5296" type="selectionEntry"/>
<entryLink id="d5f5-c83c-8749-63f8" name="Alliance of Agony" hidden="false" collective="false" import="true" targetId="a871-2b4d-deb1-3351" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="cc15-a76d-b1be-7604" type="equalTo"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="60ad-499e-25e0-4891" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</entryLink>
<entryLink id="68ea-6051-ef3e-9a69" name="Prizes from the Dark City (1 Relic)" hidden="false" collective="false" import="true" targetId="5b96-79e6-8d10-f8a8" type="selectionEntry"/>
<entryLink id="6a67-060b-3b68-091b" name="Prizes from the Dark City (2 Relics)" hidden="false" collective="false" import="true" targetId="139b-880c-ff27-ce49" type="selectionEntry"/>
<entryLink id="e35e-710f-cdcd-0bef" name="Fixed Combat Drug Selections" hidden="false" collective="false" import="true" targetId="6760-a738-ee4f-e400" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="19d8-4c3b-498f-c6cd" type="equalTo"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2b74-e9b5-2cc4-0b96" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</entryLink>
<entryLink id="c54e-4df0-1fc3-720a" name="Webway Gate" hidden="false" collective="false" import="true" targetId="52c2-f7a8-dc21-d14d" type="selectionEntry"/>
<entryLink id="d13e-9d97-7915-b27d" name="Raiding Force" hidden="false" collective="false" import="true" targetId="acd3-5c50-c5a5-eb5e" type="selectionEntry"/>
<entryLink id="2294-de48-42ef-7b4d" name="Artefacts of Death" hidden="false" collective="false" import="true" targetId="a1c9-09d6-2587-9553" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="60ad-499e-25e0-4891" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="59ec-c83e-0d77-0c4f" name="Exalted of Ynnead" hidden="false" collective="false" import="true" targetId="746d-c99b-ba49-17bb" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="60ad-499e-25e0-4891" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="aeb2-9384-7859-d4be" name="Shrine of the Whispering God" hidden="false" collective="false" import="true" targetId="8665-a9ba-95e1-3156" type="selectionEntry"/>
</entryLinks>
<infoLinks>
<infoLink id="20df-7fb9-ec11-96bb" name="Poisoned Weapon" hidden="false" targetId="ce60-330c-c13b-617b" type="rule"/>
</infoLinks>
<sharedSelectionEntries>
<selectionEntry id="3ea9-f42c-d816-b91a" name="Archon" publicationId="e0a4-2172-pubN65537" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="append" field="name" value="[Legends]">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0938-43eb-d3d2-180c" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<modifierGroups>
<modifierGroup>
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="60ad-499e-25e0-4891" type="equalTo"/>
</conditions>
<modifiers>
<modifier type="remove" field="category" value="53ad-d29f-5f37-2a82"/>
<modifier type="add" field="category" value="ebb3-4f37-6e57-7a8e"/>
<modifier type="add" field="category" value="dbdf-5a53-d746-429d"/>
</modifiers>
</modifierGroup>
</modifierGroups>
<profiles>
<profile id="af61-7dc7-dca7-8f38" name="Archon" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">8"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">2+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">2+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">3</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">3</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">5</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">5</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">9</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">5+</characteristic>
</characteristics>
</profile>
<profile id="f9f0-1851-a98d-0650" name="Overlord" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">Re-roll hit rolls of 1 for friendly <KABAL> units that are within 6" of this model.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="016c-abf4-a7d5-d6f4" name="Strength from Death" hidden="false" targetId="a2dc-6516-aaab-8cf9" type="rule"/>
<infoLink id="6e31-6167-39c9-c557" name="Power from Pain" hidden="false" targetId="e6c3-8502-de0a-9515" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="8d75-d6dd-7cc4-1136" name="New CategoryLink" hidden="false" targetId="dd05-8f0e-b393-b91f" primary="false"/>
<categoryLink id="4dfd-f8ed-7f39-4699" name="New CategoryLink" hidden="false" targetId="ef18-746a-369f-43a4" primary="false"/>
<categoryLink id="0bbf-f7be-530a-572e" name="New CategoryLink" hidden="false" targetId="53ad-d29f-5f37-2a82" primary="false"/>
<categoryLink id="5d76-11e1-bbbb-0cde" name="New CategoryLink" hidden="false" targetId="6a01-e1fc-d03d-8390" primary="false"/>
<categoryLink id="3862-919f-ffc5-3727" name="New CategoryLink" hidden="false" targetId="bd42-0139-0789-e05b" primary="false"/>
<categoryLink id="070b-221d-63fd-c835" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
<categoryLink id="cd72-7d12-4868-8fe5" name="New CategoryLink" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="0b77-3850-c6bc-73a2" name="Shadowfield" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b992-3120-f429-1352" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="28a7-807d-8c9a-b4bc" type="max"/>
</constraints>
<profiles>
<profile id="c39d-e2fe-fdc0-dd17" name="Shadowfield" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">This model has a 2+ invulnerable save which cannot be re-rolled for any reason. The first time this invulnerable save is failed the shadowfield ceases to function for the remainder of the battle. </characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="bb4c-1edf-f2f8-b3db" name="Melee Weapon" hidden="false" collective="false" import="true" defaultSelectionEntryId="c190-1fce-e872-e039">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0ea9-0185-84eb-5367" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8d99-dcfe-a47c-924d" type="max"/>
</constraints>
<entryLinks>
<entryLink id="48c3-13f0-f4c5-02cc" name="New EntryLink" hidden="false" collective="false" import="true" targetId="277e-79e0-b605-ca05" type="selectionEntry"/>
<entryLink id="c190-1fce-e872-e039" name="Huskblade" hidden="false" collective="false" import="true" targetId="b1f7-b1c1-5b1d-d499" type="selectionEntry"/>
<entryLink id="1a97-ec85-4266-148e" name="New EntryLink" hidden="false" collective="false" import="true" targetId="bc9e-551d-9afb-78d5" type="selectionEntry"/>
<entryLink id="e4fc-af41-0ece-6a05" name="Venom Blade" hidden="false" collective="false" import="true" targetId="bac0-1ac3-c526-786e" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="07fa-fe1d-38f4-c3cf" name="Ranged Weapon" hidden="false" collective="false" import="true" defaultSelectionEntryId="067e-426d-dba9-c55e">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5927-c46b-a4df-9fd9" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="046b-5a31-29f6-a58a" type="max"/>
</constraints>
<entryLinks>
<entryLink id="ab27-93e0-f22b-a2b0" name="New EntryLink" hidden="false" collective="false" import="true" targetId="4a3b-66b2-cd71-a1b6" type="selectionEntry"/>
<entryLink id="5d63-3811-3f77-8f3e" name="Blaster" hidden="false" collective="false" import="true" targetId="4ef5-8bff-ffc6-1b9e" type="selectionEntry">
<modifiers>
<modifier type="append" field="name" value="[Legends]"/>
</modifiers>
</entryLink>
<entryLink id="067e-426d-dba9-c55e" name="Splinter pistol" hidden="false" collective="false" import="true" targetId="a293-6465-2a99-903f" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="0938-43eb-d3d2-180c" name="Phantasm Grenade Launcher" hidden="false" collective="false" import="true" targetId="4448-243b-2379-2c73" type="selectionEntry"/>
<entryLink id="050f-a8e8-8f93-54fa" name="Artefacts of Cruelty" hidden="false" collective="false" import="true" targetId="e852-3a50-d3ca-9934" type="selectionEntryGroup"/>
<entryLink id="d139-7e67-3ea5-3dd1" name="Warlord (Archon)" hidden="false" collective="false" import="true" targetId="cc15-a76d-b1be-7604" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f9f4-7764-f7cd-9c51" type="max"/>
</constraints>
</entryLink>
<entryLink id="6f5a-0763-afcb-3eba" name="Is A Custom Character" hidden="false" collective="false" import="true" targetId="43c4-8968-c599-ad5f" type="selectionEntry"/>
<entryLink id="76b0-f95f-0f5b-8ef9" name="Custom Character Selections" hidden="false" collective="false" import="true" targetId="8774-e003-4a50-56c7" type="selectionEntryGroup"/>
<entryLink id="ea85-5755-02a5-3f2f" name="Relics of Ynnead" hidden="false" collective="false" import="true" targetId="dd63-a565-82cc-6f48" type="selectionEntryGroup"/>
<entryLink id="1f47-1968-4a41-6949" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="7e9f-01e9-280e-18cb" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="4.0"/>
<cost name="pts" typeId="points" value="60.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="bcaa-5a3b-de61-6f41" name="Haemonculus" publicationId="e0a4-2172-pubN65537" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="810f-5bfe-eb1f-eb6d" name="Haemonculus" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">7"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">2+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">2+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">3</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">4</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">5</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">5</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">8</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">6+</characteristic>
</characteristics>
</profile>
<profile id="fada-6332-cb46-ba57" name="Master of Pain" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">Add 1 to the Toughness of friendly <HAEMONCULUS COVEN> units within 6" of one or more models with this ability. </characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="7996-9fa2-28e5-2ccf" name="Insensible to Pain" hidden="false" targetId="8697-63a6-0f4e-66f8" type="profile"/>
<infoLink id="8332-fa04-d02e-e795" name="Power from Pain" hidden="false" targetId="e6c3-8502-de0a-9515" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="a41d-078b-986a-286f" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
<categoryLink id="f432-570c-ea5f-9a48" name="New CategoryLink" hidden="false" targetId="c3cc-22d9-1014-b496" primary="false"/>
<categoryLink id="f8b0-a11d-b989-cb44" name="New CategoryLink" hidden="false" targetId="6a01-e1fc-d03d-8390" primary="false"/>
<categoryLink id="fd1d-103b-a5b4-7aa4" name="New CategoryLink" hidden="false" targetId="bd42-0139-0789-e05b" primary="false"/>
<categoryLink id="186e-5077-610d-c8b1" name="New CategoryLink" hidden="false" targetId="ef18-746a-369f-43a4" primary="false"/>
<categoryLink id="923d-0d67-e380-5a17" name="New CategoryLink" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="5349-d558-8135-16cf" name="New CategoryLink" hidden="false" targetId="8fca-4ed9-4326-8a23" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="e4e3-33bf-d875-bfc3" name="Melee Weapon " hidden="false" collective="false" import="true" defaultSelectionEntryId="a351-b8e6-f8a9-85c1">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="7d6c-cfc8-c584-9fa5" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="12b6-a32a-9896-e37a" type="max"/>
</constraints>
<entryLinks>
<entryLink id="6c4e-d772-2c4e-fc9c" name="Weapons of Torture" hidden="false" collective="false" import="true" targetId="8df7-75dd-f85d-05c4" type="selectionEntryGroup"/>
<entryLink id="a351-b8e6-f8a9-85c1" name="Haemonculus tools" publicationId="e0a4-2172-pubN65537" hidden="false" collective="false" import="true" targetId="76ba-9d92-1454-87db" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="4a38-45c4-abb3-07d9" name="Ranged Weapon" hidden="false" collective="false" import="true" defaultSelectionEntryId="5edc-efa5-ee08-8ad7">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1628-2a81-d43d-d055" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a2ff-3c39-865a-64e8" type="max"/>
</constraints>
<entryLinks>
<entryLink id="93a5-f2ed-c201-6392" name="Tools of Torment" hidden="false" collective="false" import="true" targetId="5489-b678-3c48-31c7" type="selectionEntryGroup"/>
<entryLink id="5edc-efa5-ee08-8ad7" name="Stinger Pistol" hidden="false" collective="false" import="true" targetId="7150-8972-6038-20bb" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="81df-39ce-a8ae-7d87" name="Warlord" hidden="false" collective="false" import="true" targetId="cc15-a76d-b1be-7604" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b66b-a423-3330-89a9" type="max"/>
</constraints>
</entryLink>
<entryLink id="4edd-96e2-43eb-7870" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="7e9f-01e9-280e-18cb" type="selectionEntryGroup"/>
<entryLink id="f3e2-4e5f-371c-b105" name="Relic" hidden="false" collective="false" import="true" targetId="e852-3a50-d3ca-9934" type="selectionEntryGroup"/>
<entryLink id="6f34-d2c9-32a7-6309" name="Ichor Injector" hidden="false" collective="false" import="true" targetId="68ca-10b2-6b3c-6b00" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9cb1-534c-972f-baee" type="max"/>
</constraints>
</entryLink>
<entryLink id="0d50-4934-b664-0982" name="Is A Custom Character" hidden="false" collective="false" import="true" targetId="43c4-8968-c599-ad5f" type="selectionEntry"/>
<entryLink id="acbd-8901-0845-b8ff" name="Custom Character Selections" hidden="false" collective="false" import="true" targetId="8774-e003-4a50-56c7" type="selectionEntryGroup"/>
<entryLink id="3b38-24d6-0212-7524" name="Warlord Trait (Haemonculus)" hidden="false" collective="false" import="true" targetId="2247-3ef8-14ef-16e2" type="selectionEntryGroup">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="a871-2b4d-deb1-3351" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="b686-3aab-b08c-3684" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="75.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="5.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="40a0-6ba1-e19a-1c60" name="Kabalite Warriors" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="set" field="e356-c769-5920-6e14" value="4">
<conditions>
<condition field="selections" scope="40a0-6ba1-e19a-1c60" value="5.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="ed63-eca5-6154-af5c" type="greaterThan"/>
</conditions>
</modifier>
<modifier type="set" field="e356-c769-5920-6e14" value="6">
<conditions>
<condition field="selections" scope="40a0-6ba1-e19a-1c60" value="10.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="ed63-eca5-6154-af5c" type="greaterThan"/>
</conditions>
</modifier>
<modifier type="set" field="e356-c769-5920-6e14" value="8">
<conditions>
<condition field="selections" scope="40a0-6ba1-e19a-1c60" value="15.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="ed63-eca5-6154-af5c" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<modifierGroups>
<modifierGroup>
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="60ad-499e-25e0-4891" type="equalTo"/>
</conditions>
<modifiers>
<modifier type="remove" field="category" value="53ad-d29f-5f37-2a82"/>
<modifier type="add" field="category" value="ebb3-4f37-6e57-7a8e"/>
<modifier type="add" field="category" value="dbdf-5a53-d746-429d"/>
</modifiers>
</modifierGroup>
</modifierGroups>
<infoLinks>
<infoLink id="92fa-9b8c-d2f3-1d89" name="Power from Pain" hidden="false" targetId="e6c3-8502-de0a-9515" type="rule"/>
<infoLink id="422e-34d3-eec3-d737" name="Strength from Death" hidden="false" targetId="a2dc-6516-aaab-8cf9" type="rule"/>
<infoLink id="0974-6d2a-cf46-2d4f" name="Reclaim the Galaxy" hidden="false" targetId="4a7e-ceca-8097-9d9e" type="rule"/>
<infoLink id="bba5-8539-148e-d97c" name="Vanguard of the Dark City" hidden="false" targetId="7e9a-0704-b687-8a5d" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="474a-29ee-1684-a7eb" name="New CategoryLink" hidden="false" targetId="53ad-d29f-5f37-2a82" primary="false"/>
<categoryLink id="4c58-699a-2fa5-5633" name="New CategoryLink" hidden="false" targetId="6a01-e1fc-d03d-8390" primary="false"/>
<categoryLink id="1ece-2300-e45f-310f" name="New CategoryLink" hidden="false" targetId="bd42-0139-0789-e05b" primary="false"/>
<categoryLink id="d480-547f-5fe2-2c0a" name="New CategoryLink" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="7e8d-6310-9b15-e133" name="New CategoryLink" hidden="false" targetId="a6a2-680c-c64c-587a" primary="false"/>
<categoryLink id="f980-bd91-876f-120f" name="New CategoryLink" hidden="false" targetId="5d76b6f5-20ae-4d70-8f59-ade72a2add3a" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="ed63-eca5-6154-af5c" name="5 - 20 Kabalite Warriors" hidden="false" collective="false" import="true" defaultSelectionEntryId="5254-4309-d55d-33c9">
<constraints>
<constraint field="selections" scope="parent" value="5.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="105a-01bd-7bef-e5f5" type="min"/>
<constraint field="selections" scope="parent" value="20.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="7463-2a44-16e6-05fa" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="5254-4309-d55d-33c9" name="Kabalite Warrior" page="0" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="dfda-52e5-ee27-a8ff" type="min"/>
<constraint field="selections" scope="parent" value="19.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="7fe8-23fc-ac6c-1a60" type="max"/>
</constraints>
<profiles>
<profile id="13a6-91da-9b1d-18e4" name="Kabalite Warrior" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">7"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">3+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">3+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">3</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">3</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">1</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">1</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">7</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">5+</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry id="2b58-ff28-ef57-5efd" name="Splinter Rifle" page="0" hidden="false" collective="true" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="a647-2f9d-f43f-38d4" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="c4c2-2b9c-59f8-a86f" type="max"/>
</constraints>
<infoLinks>
<infoLink id="1771-fc46-4342-b322" name="New InfoLink" hidden="false" targetId="ad0c-86c6-3bc6-92c6" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="pts" typeId="points" value="9.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="2a34-6c77-4b23-4f43" name="Kabalite Warrior with special weapon" page="0" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="increment" field="09cc-6a8b-8190-6071" value="1">
<repeats>
<repeat field="selections" scope="parent" value="5.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ed63-eca5-6154-af5c" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="0.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="09cc-6a8b-8190-6071" type="max"/>
</constraints>
<selectionEntryGroups>
<selectionEntryGroup id="2614-4340-1b56-914b" name="Special Weapons" hidden="false" collective="false" import="true" defaultSelectionEntryId="004e-622b-7214-1ec4">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="c24a-1612-545a-7a83" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="3c5b-9408-4a04-44ea" type="max"/>
</constraints>
<entryLinks>
<entryLink id="3fbd-a7f4-f25b-ea7e" name="Blaster" hidden="false" collective="false" import="true" targetId="4ef5-8bff-ffc6-1b9e" type="selectionEntry"/>
<entryLink id="004e-622b-7214-1ec4" name="Shredder" hidden="false" collective="false" import="true" targetId="71b4-b4d9-df5d-1707" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="9.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="857d-878c-2834-e153" name="Kabalite Warrior with heavy weapon (up to 1 for 10 models)" page="0" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="increment" field="4e40-a888-4d01-689a" value="1">
<repeats>
<repeat field="selections" scope="40a0-6ba1-e19a-1c60" value="10.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="ed63-eca5-6154-af5c" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="set" field="name" value="Kabalite warrior with Heavy Weapon">
<conditions>
<condition field="selections" scope="40a0-6ba1-e19a-1c60" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="857d-878c-2834-e153" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="0.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="4e40-a888-4d01-689a" type="max"/>
</constraints>
<selectionEntryGroups>
<selectionEntryGroup id="8aa4-17e0-c127-7f5e" name="Heavy Weapons" hidden="false" collective="false" import="true" defaultSelectionEntryId="c162-1afc-f9d9-835e">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="1183-c960-0312-ecb4" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="f931-577d-2771-0966" type="max"/>
</constraints>
<entryLinks>
<entryLink id="d5c0-9b81-685e-d6d4" name="New EntryLink" hidden="false" collective="false" import="true" targetId="cf05-ec56-3a36-d520" type="selectionEntry"/>
<entryLink id="c162-1afc-f9d9-835e" name="New EntryLink" hidden="false" collective="false" import="true" targetId="2478-2b90-2336-720e" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="9.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="6010-5099-f686-86df" name="Sybarite" page="0" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="d9ad-fc5b-a483-da1a" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d072-e32f-97c3-9a3b" type="min"/>
</constraints>
<profiles>
<profile id="2304-28fa-8484-1550" name="Sybarite" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">7"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">3+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">3+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">3</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">3</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">1</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">2</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">8</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">5+</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntryGroups>
<selectionEntryGroup id="8479-098e-86fe-18e5" name="Ranged Weapon" hidden="false" collective="false" import="true" defaultSelectionEntryId="0824-f820-65cd-2e2a">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="a8be-3ce9-490f-9e78" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="b9ff-ea1c-96bf-7a57" type="max"/>
</constraints>
<entryLinks>
<entryLink id="f601-45c7-3423-994e" name="New EntryLink" hidden="false" collective="false" import="true" targetId="4a3b-66b2-cd71-a1b6" type="selectionEntry"/>
<entryLink id="a6b2-d2f4-8d7f-05be" name="New EntryLink" hidden="false" collective="false" import="true" targetId="a293-6465-2a99-903f" type="selectionEntry"/>
<entryLink id="0824-f820-65cd-2e2a" name="New EntryLink" hidden="false" collective="false" import="true" targetId="2752-6d08-1bf9-3e8a" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="a138-66a8-48fd-2238" name="Melee Weapon" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1c4d-4deb-9e52-94ba" type="max"/>
</constraints>
<entryLinks>
<entryLink id="4576-b887-1c4b-e036" name="New EntryLink" hidden="false" collective="false" import="true" targetId="bc9e-551d-9afb-78d5" type="selectionEntry"/>
<entryLink id="de74-baee-f82d-6f83" name="New EntryLink" hidden="false" collective="false" import="true" targetId="277e-79e0-b605-ca05" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="4179-8508-4017-b950" name="Phantasm Grenade Launcher" hidden="false" collective="false" import="true" targetId="4448-243b-2379-2c73" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="4e0b-8c31-f730-cd17" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="9.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="38a8-78ab-3bda-a9e7" name="Unit has battle honors?" hidden="false" collective="false" import="true" targetId="4763-757f-499f-d998" type="selectionEntry"/>
<entryLink id="76f0-41f0-b87d-13b0" name="Battle Honors" hidden="false" collective="false" import="true" targetId="5518-d0f5-a880-d71c" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="2.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="8738-a567-5340-4450" name="Mandrakes" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="set" field="e356-c769-5920-6e14" value="8">
<conditions>
<condition field="selections" scope="8738-a567-5340-4450" value="5.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="edda-8b71-dcbe-752d" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="cd85-2261-da44-28c2" name="Shrouded From Sight" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">Your opponent must subtract 1 from the hit rolls of any attacks that target this unit. In addition, models in this unit have a 5+ invulnerable save. </characteristic>
</characteristics>
</profile>
<profile id="a3f7-44ac-546a-809b" name="From Out of the Shadows" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">During deployment, you can set up this unit in the realm of Aelindrach instead of placing it on the battlefield. At the end of any of your Movement phases the Mandrakes can pull themselves into reality - set this unit up anywhere on the battlefield that is more than 9" away from enemy models. </characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="81ab-95a8-7577-3e14" name="Power from Pain" hidden="false" targetId="e6c3-8502-de0a-9515" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="5f8b-55e6-e0ad-01fd" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
<categoryLink id="9af9-ae12-8b5f-af9f" name="New CategoryLink" hidden="false" targetId="6a01-e1fc-d03d-8390" primary="false"/>
<categoryLink id="e908-e22b-d976-e346" name="New CategoryLink" hidden="false" targetId="bd42-0139-0789-e05b" primary="false"/>
<categoryLink id="6b79-7cf6-838f-3ebf" name="New CategoryLink" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="c15c-8ea7-146a-29ca" name="New CategoryLink" hidden="false" targetId="a565-a5b4-4e95-2786" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="edda-8b71-dcbe-752d" name="5 - 10 Mandrakes" hidden="false" collective="false" import="true" defaultSelectionEntryId="5854-e36e-24a4-2b9d">
<constraints>
<constraint field="selections" scope="parent" value="5.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="85e5-e28c-86fe-a076" type="min"/>
<constraint field="selections" scope="parent" value="10.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="a6a2-1dee-a9c4-f578" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="5854-e36e-24a4-2b9d" name="Mandrake" page="0" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="4.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="f4fd-8b56-298c-7131" type="min"/>
<constraint field="selections" scope="parent" value="10.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="0c5e-2cbe-a4ad-3bcd" type="max"/>