forked from BSData/horus-heresy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
2022 - LI - Sisters Of Silence.cat
8256 lines (8252 loc) · 637 KB
/
2022 - LI - Sisters Of Silence.cat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<catalogue xmlns="http://www.battlescribe.net/schema/catalogueSchema" id="585a-5ac2-a233-a6a6" name="LI - Sisters of Silence" revision="20" battleScribeVersion="2.03" library="false" gameSystemId="28d4-bd2e-4858-ece6" gameSystemRevision="70" type="catalogue">
<categoryEntries>
<categoryEntry id="b760-8313-847f-1afa" name="Obivion HQ" hidden="false"/>
<categoryEntry id="a9b6-f66f-e8ee-553e" name="Judgement HQ" hidden="false"/>
<categoryEntry id="b71a-371d-4401-9dc0" name="Silent Sisterhood (Chamber of Judgement)" hidden="false">
<modifiers>
<modifier type="increment" field="07d4-6a38-eebd-9b05" value="4">
<repeats>
<repeat field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="a9b6-f66f-e8ee-553e" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="07d4-6a38-eebd-9b05" type="max"/>
</constraints>
<rules>
<rule id="04a5-fa60-5ebe-aa9d" name="Silent Sisterhood (Chamber of Judgement)" publicationId="15a4-fc68-502d-48a9" page="40" hidden="false">
<description>All models with this variant of the Silent Sisterhood (X) special rule gain the Fearless special rule when locked in combat with a unit that includes any models with the Psyker Unit Sub-type.</description>
</rule>
</rules>
</categoryEntry>
<categoryEntry id="a7e3-4559-7267-8bf6" name="Silent Sisterhood (Chamber of Obivion)" hidden="false">
<modifiers>
<modifier type="increment" field="9794-28b4-6125-880c" value="4">
<repeats>
<repeat field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b760-8313-847f-1afa" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9794-28b4-6125-880c" type="max"/>
</constraints>
<rules>
<rule id="c4ce-323b-11a5-c9f6" name="Silent Sisterhood (Chamber of Obivion)" publicationId="15a4-fc68-502d-48a9" page="40" hidden="false">
<description>All models with this variant of the Silent Sisterhood (X) special rule gain the Fearless special rule when locked in combat with a unit that includes any models with the Daemon Unit Type or Corrupted Unit Sub-type.</description>
</rule>
</rules>
</categoryEntry>
<categoryEntry id="b6d7-6924-37fb-dd32" name="Silent Sisterhood (Chamber of Vigilance)" hidden="false">
<rules>
<rule id="efd8-4a41-bd4b-058b" name="Silent Sisterhood (Chamber of Vigilance)" publicationId="15a4-fc68-502d-48a9" page="40" hidden="false">
<description>A unit composed entirely of models with this variant of the Silent Sisterhood (X) special rule may be given one of the following special rules before the start of the battle’s first turn, before any models are deployed: Scout or Infiltrate. When selecting an army using the Sisters of Silence Army List, a unit made up entirely of models with this variant of the Silent Sisterhood (X) special rule may be selected without restriction regardless of which HQ choices are selected for the army.</description>
</rule>
</rules>
</categoryEntry>
<categoryEntry id="7e5d-d73e-8ff4-7345" name="Anathema Sub-type" publicationId="15a4-fc68-502d-48a9" page="129" hidden="false">
<rules>
<rule id="e2d9-fe0d-1717-3a37" name="Anathema Sub-type" publicationId="15a4-fc68-502d-48a9" page="129" hidden="false">
<description>• A unit that includes at least one model with the Anathema Sub-type may not be directly targeted by any Psychic Power or use any Psychic power or make attacks with a Psychic Weapon, Psychic Powers whose effects would otherwise be applied to a unit that includes at least one model with the Anathema Sub-type (due to area of effect, scattering or other rules) have no effect, but are not cancelled and may continue to affect other units.
• A model with the Anathema Sub-type that is allocated Wounds caused by a Psychic Weapon (which is any weapon granted to a unit or model by a Psychic Discipline) will always fail to Wound without any dice being rolled and any special rules attached to that Psychic Weapon will not trigger. Any Wounds allocated to a model with the Anathema Unit Sub-type caused by a Force Weapon gain no benefit from the Force special rules, but are otherwise resolved as normal. These effects do not apply to a model with the Transport Sub-type that has models with the Anathema Sub-type Embarked within, unless the model with the Transport Sub-type also has the Anathema Sub-type.
• All models that no not have the Anathema Sub-type but are part of a unit that includes one of more models with the Anathema Sub-type, suffer a penalty of -2 to their Leadership Characteristic. Any unit with at least one model within 6" of a model with th eAnathema Sub-type suffers a penalty of -1 to the Leadership of all models in the unit that do not also have the Anathema Sub-type, or -2 if that unit includes one of more models with the Corrupted Unit Sub-type. Note that these two penalties are not cumulative; they apply only the more severe penalty. However, they do stack with other special that modify Leadership (such as Fear (X)).
• A unit that is Embarked on a Vehicle, Fortification or Building suffers no penalties to its Leadership Characteristic due to the Anathema Sub-type, However, units with the Stubborn special rule do suffer penalties to their Leadership from the effects of this Sub-type (note that this only applies to the Stubborn special rule, and other special rules that ignore panalties to Leadership ignore the effects of the Anathema Sub-type).
From December 2023 Liber Imperium FAQ V1.1, page 2:
In addition, the Leadership Characteristic of a model with the Anathema Unit Sub-type can only be used for a Leadership test or Morale check if all models in that unit have the Anathema Unit Sub-type</description>
</rule>
</rules>
</categoryEntry>
</categoryEntries>
<entryLinks>
<entryLink id="40fe-f2c8-6823-f3ff" name="Sisters of Silence" hidden="false" collective="false" import="false" targetId="4d60-2ab7-244f-3414" type="selectionEntry">
<modifiers>
<modifier type="add" field="category" value="7b69-bf2f-4547-e83b">
<conditions>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="5430-5be1-1613-be44" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e448-ba5a-2280-ce3c" type="min"/>
</constraints>
<categoryLinks>
<categoryLink id="eada-8ff8-8101-fa97" name="Allegiance:" hidden="false" targetId="e90d-e5a8-f42d-da84" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="e415-f03a-c52c-c52a" name="Jenetia Krole" hidden="false" collective="false" import="false" targetId="c400-14ac-853c-161f" type="selectionEntry">
<categoryLinks>
<categoryLink id="dde2-5eff-fe37-5ace" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
<categoryLink id="e9cf-ef14-9c91-9e7c" name="HQ:" hidden="false" targetId="4f85-eb33-30c9-8f51" primary="true"/>
<categoryLink id="5790-4c74-f1fe-b584" name="Compulsory HQ:" hidden="false" targetId="f823-8c1d-6a87-26a1" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="062f-4a1f-0e57-e22b" name="Knight Abyssal" hidden="false" collective="false" import="false" targetId="6ed4-f039-3f78-9877" type="selectionEntry">
<categoryLinks>
<categoryLink id="7c31-46ed-501b-f626" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
<categoryLink id="f4e1-ab36-d875-5e64" name="HQ:" hidden="false" targetId="4f85-eb33-30c9-8f51" primary="true"/>
<categoryLink id="af21-3497-0102-5a63" name="Compulsory HQ:" hidden="false" targetId="f823-8c1d-6a87-26a1" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="d0af-f280-4e54-65c0" name="Silent Judge" hidden="false" collective="false" import="false" targetId="9d32-1528-4e59-d1c5" type="selectionEntry">
<categoryLinks>
<categoryLink id="bde0-651a-aa47-3fb7" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
<categoryLink id="669c-7626-b8b2-4ccf" name="HQ:" hidden="false" targetId="4f85-eb33-30c9-8f51" primary="true"/>
<categoryLink id="899e-0a82-b4af-ff21" name="Compulsory HQ:" hidden="false" targetId="f823-8c1d-6a87-26a1" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="8d63-2186-e5df-3a07" name="Silent Fury" hidden="false" collective="false" import="false" targetId="79dd-3c50-1ada-5cfc" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7b69-bf2f-4547-e83b" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="3eb4-ef93-a93c-4271" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
<categoryLink id="6da1-1119-9922-3e47" name="HQ:" hidden="false" targetId="4f85-eb33-30c9-8f51" primary="true"/>
<categoryLink id="1f72-f5b2-41c3-cf13" name="Compulsory HQ:" hidden="false" targetId="f823-8c1d-6a87-26a1" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="6ccb-754e-4347-3ede" name="Knight Centura" hidden="false" collective="false" import="false" targetId="6445-e0ea-58ac-ac6c" type="selectionEntry">
<categoryLinks>
<categoryLink id="6ae1-46ba-deb4-8e93" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
<categoryLink id="e426-cce5-d7c6-8a80" name="HQ:" hidden="false" targetId="4f85-eb33-30c9-8f51" primary="true"/>
<categoryLink id="937e-9166-d11c-b144" name="Compulsory HQ:" hidden="false" targetId="f823-8c1d-6a87-26a1" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="3a57-a3dc-16d4-26d9" name="Knight Vestal Covenant" hidden="false" collective="false" import="false" targetId="7f95-0220-f031-0986" type="selectionEntry">
<categoryLinks>
<categoryLink id="20a0-6e34-6609-9a14" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
<categoryLink id="0e45-0e50-8e46-3cd8" name="Elites:" hidden="false" targetId="7aee-565f-b0ae-294e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="cd35-7c55-1065-0fca" name="Clade Assassins (Loyalist)" hidden="false" collective="false" import="false" targetId="7363-5a05-4102-24fa" type="selectionEntry">
<categoryLinks>
<categoryLink id="17a0-d34b-134a-e668" name="HQ:" hidden="false" targetId="4f85-eb33-30c9-8f51" primary="true"/>
<categoryLink id="5932-acd1-3f37-9a41" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="6864-9f7f-2c42-f856" name="Oblivion Knights" hidden="false" collective="false" import="false" targetId="a104-d140-eb76-5777" type="selectionEntry">
<categoryLinks>
<categoryLink id="7a69-6a9c-50cc-badd" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
<categoryLink id="4c2a-14f2-87c7-89f7" name="Elites:" hidden="false" targetId="7aee-565f-b0ae-294e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="3618-a4ae-674b-d78a" name="Eradicator Cadre" hidden="false" collective="false" import="false" targetId="6f0b-7bd1-ea5f-936e" type="selectionEntry">
<categoryLinks>
<categoryLink id="1ef2-70de-1218-a330" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
<categoryLink id="e9e5-99f1-02ce-cf35" name="Elites:" hidden="false" targetId="7aee-565f-b0ae-294e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="b4c2-8102-8847-b9fc" name="Prosecutor Cadre" hidden="false" collective="false" import="false" targetId="a2df-539a-6cc6-92a3" type="selectionEntry">
<categoryLinks>
<categoryLink id="8dbb-879e-0444-08cd" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
<categoryLink id="e009-530c-88db-53dc" name="Compulsory Troops:" hidden="false" targetId="8f42-a824-fb5f-8fea" primary="false"/>
<categoryLink id="cc36-565b-b2d0-2cbf" name="Troops:" hidden="false" targetId="9b5d-fac7-799b-d7e7" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="457c-5ead-f710-00bc" name="Vigilator Cadre" hidden="false" collective="false" import="false" targetId="9ab2-6d05-b388-e73d" type="selectionEntry">
<categoryLinks>
<categoryLink id="a09c-69c1-1234-15e4" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
<categoryLink id="4afb-a6e1-49ca-7feb" name="Compulsory Troops:" hidden="false" targetId="8f42-a824-fb5f-8fea" primary="false"/>
<categoryLink id="cb3e-e13b-b028-5fb3" name="Troops:" hidden="false" targetId="9b5d-fac7-799b-d7e7" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="708c-1eb1-6145-2023" name="Pursuer Cadre" hidden="false" collective="false" import="false" targetId="db4a-57f3-f451-da91" type="selectionEntry">
<categoryLinks>
<categoryLink id="a59b-a741-2a64-c857" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
<categoryLink id="a378-3781-8012-2c8d" name="Fast Attack:" hidden="false" targetId="20ef-cd01-a8da-376e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="04cb-ab0b-580f-22cc" name="Firebrand Cadre" hidden="false" collective="false" import="false" targetId="b739-d90c-49d7-903c" type="selectionEntry">
<categoryLinks>
<categoryLink id="51f2-a681-6572-64b6" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
<categoryLink id="a206-58f8-c572-d35f" name="Fast Attack:" hidden="false" targetId="20ef-cd01-a8da-376e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="88d3-d560-9cde-7cf8" name="Subjugator Cadre" hidden="false" collective="false" import="false" targetId="84c1-50d4-cf46-0ea2" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7b69-bf2f-4547-e83b" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="0a1f-2f7d-8b2c-11ee" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
<categoryLink id="3385-dcd1-dab5-386c" name="Fast Attack:" hidden="false" targetId="20ef-cd01-a8da-376e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="a875-a695-bb4c-33ae" name="Termite Assault Drill" hidden="false" collective="false" import="false" targetId="b3bd-c23c-aca6-f883" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7b69-bf2f-4547-e83b" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="329f-35bf-067e-8ce8" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
<categoryLink id="55c9-fe02-8204-e098" name="Fast Attack:" hidden="false" targetId="20ef-cd01-a8da-376e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="19d2-53d8-3f64-0c48" name="Sanctioner Cadre" hidden="false" collective="false" import="false" targetId="11ee-6fbc-3206-1f33" type="selectionEntry">
<categoryLinks>
<categoryLink id="d6c2-127c-63bf-4bfc" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
<categoryLink id="596b-39de-8064-788d" name="Heavy Support:" hidden="false" targetId="7031-469a-1aeb-eab0" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="da60-fa88-c62c-2544" name="Expurgator Cadre" hidden="false" collective="false" import="false" targetId="d748-5878-98f6-b592" type="selectionEntry">
<categoryLinks>
<categoryLink id="023d-18c4-d4cc-6a2d" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
<categoryLink id="ef7a-8062-9395-f942" name="Heavy Support:" hidden="false" targetId="7031-469a-1aeb-eab0" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="b86b-bd81-d5e5-624a" name="Expeditionary Navigator" hidden="true" collective="false" import="false" targetId="ce53-e40c-65b6-4d3a" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d344-d97b-4687-8a62" type="greaterThan">
<comment>node_id_ba25-a4b2-4ba9-b023</comment>
</condition>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="1a84-997c-8103-7766" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
<categoryLink id="cac5-6380-385a-6c9d" name="HQ:" hidden="false" targetId="4f85-eb33-30c9-8f51" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="e10d-2373-4517-9ec2" name="Nathaniel Garro" hidden="true" collective="false" import="false" targetId="0583-258d-f0a0-2170" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="false">
<comment>node_id_4729-bc86-456b-b73d</comment>
<conditionGroups>
<conditionGroup type="and">
<comment>node_id_cf0f-e3f4-4fb4-989d</comment>
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d344-d97b-4687-8a62" type="greaterThan">
<comment>node_id_1cc8-5611-4d9a-9218</comment>
</condition>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d0b6-712f-0b12-a308" type="greaterThan">
<comment>node_id_2e32-ca02-48f0-a8dd</comment>
</condition>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="62ae-9898-3d12-fa9f" name="HQ:" hidden="false" targetId="4f85-eb33-30c9-8f51" primary="true">
<comment>template_id_0af1-d052-4bd7-aab6</comment>
</categoryLink>
<categoryLink id="657c-563a-f888-8c72" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false">
<comment>template_id_45ce-e338-43c9-b63e</comment>
</categoryLink>
</categoryLinks>
</entryLink>
<entryLink id="b57c-8832-115b-c7b4" name="Tylos Rubio" hidden="true" collective="false" import="false" targetId="56bf-2c6d-a0fa-a145" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="false">
<comment>node_id_dfdc-f6f6-49d2-a7b3</comment>
<conditionGroups>
<conditionGroup type="and">
<comment>node_id_354c-c71f-472f-b268</comment>
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d344-d97b-4687-8a62" type="greaterThan">
<comment>node_id_1127-c974-4663-874d</comment>
</condition>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d0b6-712f-0b12-a308" type="greaterThan">
<comment>node_id_0843-bef2-4767-8307</comment>
</condition>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="edc3-cc1d-d244-63f0" name="HQ:" hidden="false" targetId="4f85-eb33-30c9-8f51" primary="true">
<comment>template_id_28e0-91e7-4ada-9fac</comment>
</categoryLink>
<categoryLink id="c301-f234-51dc-c11f" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false">
<comment>template_id_4448-a712-4dd7-bf6d</comment>
</categoryLink>
</categoryLinks>
</entryLink>
</entryLinks>
<sharedSelectionEntries>
<selectionEntry id="c400-14ac-853c-161f" name="Jenetia Krole" publicationId="15a4-fc68-502d-48a9" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="be28-3580-8d47-58da" type="max"/>
</constraints>
<infoLinks>
<infoLink id="e315-2e6d-aaaa-3e9b" name="Silent Sisterhood (X)" hidden="false" targetId="1d8d-3038-9267-6f1b" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="6b15-c8be-e78d-6b37" name="Anathema Sub-type" hidden="false" targetId="7e5d-d73e-8ff4-7345" primary="false"/>
<categoryLink id="5ad9-6ca7-f429-8abc" name="Character" hidden="false" targetId="f75a-d5c1-59ba-5c5a" primary="false"/>
<categoryLink id="9f01-5e74-7b16-9aa5" name="Independent Character" hidden="false" targetId="4f07-3d45-4f28-a0c6" primary="false"/>
<categoryLink id="2896-3a6a-a393-937f" name="Light Sub-type" hidden="false" targetId="bff2-ae16-74a8-8712" primary="false"/>
<categoryLink id="7427-31c7-286b-2b07" name="Infantry Unit Type" hidden="false" targetId="8b4f-bfe2-ce7b-f1b1" primary="false"/>
<categoryLink id="d3b1-7626-4c83-0d6a" name="Silent Sisterhood (Chamber of Obivion)" hidden="false" targetId="a7e3-4559-7267-8bf6" primary="false"/>
<categoryLink id="e9d1-0d5f-e474-800a" name="Obivion HQ" hidden="false" targetId="b760-8313-847f-1afa" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="f47a-5449-750e-256f" name="Jenetia Krole" publicationId="15a4-fc68-502d-48a9" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="7793-b49c-c74e-08cc" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="11c9-cdf2-c72f-acc0" type="max"/>
</constraints>
<profiles>
<profile id="3d88-42b3-467e-d9d2" name="Jenetia Krole" publicationId="15a4-fc68-502d-48a9" page="42" hidden="false" typeId="4bb2-cb95-e6c8-5a21" typeName="Unit">
<characteristics>
<characteristic name="Unit Type" typeId="ddd7-6f5c-a939-b69e">Infantry (Character, Light, Anathema, Unique)</characteristic>
<characteristic name="Move" typeId="893e-2d76-8f04-44e5">6</characteristic>
<characteristic name="WS" typeId="cc42-7ed5-7092-5c84">6</characteristic>
<characteristic name="BS" typeId="74ae-c840-0036-d244">5</characteristic>
<characteristic name="S" typeId="e478-41d4-a092-48a8">3</characteristic>
<characteristic name="T" typeId="c32b-5fdd-3fbe-9b1f">3</characteristic>
<characteristic name="W" typeId="57ee-1126-32a9-5672">3</characteristic>
<characteristic name="I" typeId="62d3-22d7-2d49-52dc">5</characteristic>
<characteristic name="A" typeId="f111-2ce5-dd12-d6b0">4</characteristic>
<characteristic name="Ld" typeId="e8a6-1da9-d384-8727">10</characteristic>
<characteristic name="Save" typeId="e593-6b3c-f169-04f0">2+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="f042-7022-ac59-9b39" name="Fleet (X)" hidden="false" targetId="ddc9-0b4b-78da-bbd2" type="rule">
<modifiers>
<modifier type="set" field="name" value="Fleet (2)"/>
</modifiers>
</infoLink>
<infoLink id="83f7-13fb-bafc-57cb" name="Scout" hidden="false" targetId="aacf-9a7e-982d-b793" type="rule"/>
<infoLink id="03a4-a041-99ea-d322" name="Fearless" hidden="false" targetId="b48c-d7e1-2a83-2f5b" type="rule"/>
<infoLink id="6355-bd03-499f-cd6d" name="Fear (X)" hidden="false" targetId="21f6-7842-df5c-d2e7" type="rule">
<modifiers>
<modifier type="set" field="name" value="Fear (1)"/>
</modifiers>
</infoLink>
<infoLink id="93af-96d1-a27b-1cfc" name="Hatred (X)" hidden="false" targetId="dc0b-fe69-6b71-e0a4" type="rule">
<modifiers>
<modifier type="set" field="name" value="Hatred (Psyker, Daemon, Corrupted, Traitor)"/>
</modifiers>
</infoLink>
<infoLink id="943f-290d-9b5c-84ff" name="Eternal Warrior" hidden="false" targetId="000b-fe96-31f8-c0ad" type="rule"/>
<infoLink id="1249-ecf3-d04a-ddb1" name="Precision Shots (X)" hidden="false" targetId="4b71-81ee-31f4-fa09" type="rule">
<modifiers>
<modifier type="set" field="name" value="Precision Shots (5+)"/>
</modifiers>
</infoLink>
<infoLink id="7bf9-ed4e-18b9-a305" name="Precision Strikes (X)" hidden="false" targetId="2206-8497-8fe1-e973" type="rule">
<modifiers>
<modifier type="set" field="name" value="Precision Strikes (5+)"/>
</modifiers>
</infoLink>
<infoLink id="26ee-7cd2-0406-4e5c" name="Ex-Oblivio" hidden="false" targetId="7982-9292-ef54-8e84" type="rule"/>
<infoLink id="08b2-1802-d3fd-c6ac" name="Loyalist" hidden="false" targetId="d1de-a45d-2b9b-c878" type="rule"/>
</infoLinks>
<selectionEntries>
<selectionEntry id="5c45-c603-79ae-e805" name="The Sword of Oblivion" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c70b-9905-1a93-bc00" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9fea-3cdc-5486-04be" type="max"/>
</constraints>
<profiles>
<profile id="6bb0-a5b8-7f66-13e0" name="The Sword of Oblivion" publicationId="15a4-fc68-502d-48a9" page="43" hidden="false" typeId="1a1a-e592-2849-a5c0" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="95ba-cda7-b831-6066">-</characteristic>
<characteristic name="Strength" typeId="24d9-b8e1-a355-2458">+2</characteristic>
<characteristic name="AP" typeId="f7a6-e0d8-7973-cd8d">1</characteristic>
<characteristic name="Type" typeId="2f86-c8b4-b3b4-3ff9">Melee, Two-handed, Murderous Strike (5+), Duellist’s Edge (1)</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="71ad-8eae-8a3d-5341" name="Murderous Strike (X)" hidden="false" targetId="93b9-1454-0e7c-42ae" type="rule">
<modifiers>
<modifier type="set" field="name" value="Murderous Strike (5+)"/>
</modifiers>
</infoLink>
<infoLink id="5007-4c96-0437-8805" name="Duellist’s Edge (X)" hidden="false" targetId="7bf3-86ce-04c2-e6ba" type="rule">
<modifiers>
<modifier type="set" field="name" value="Duellist’s Edge (1)"/>
</modifiers>
</infoLink>
<infoLink id="8e2f-fb55-f772-4722" name="Two-handed" hidden="false" targetId="4c23-e863-a569-7617" type="rule"/>
</infoLinks>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="96ec-092c-ddbf-792c" name="The Onyx Cloak" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="123e-8bb0-7939-ddd5" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7f95-806f-1533-a169" type="min"/>
</constraints>
<profiles>
<profile id="d5ce-2272-1c09-b37a" name="The Onyx Cloak" publicationId="15a4-fc68-502d-48a9" page="43" hidden="false" typeId="2a1f-7837-f0ef-be44" typeName="Wargear Item">
<characteristics>
<characteristic name="Description" typeId="347e-ee4a-764f-6be3">The Onyx Cloak confers a 4+ Invulnerable Save, increasing to 3+ against any Hits from weapons with the Template or Blast special rules. In addition, whenever targeted by a Shooting Attack, the range between an attacking unit and Jenetia Krole is considered to be 6" further than the actual range between the two units – enemy units with the Night Vision special rule and models with the Primarch Unit Type ignore this effect. In addition, when attacked by a weapon with the Barrage special rule, Jenetia Krole is always treated as though it was out of line of sight when scattering any attacks.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="11fb-5069-ea67-fb35" name="Retinue" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f1b4-98ad-6bf8-307a" type="max"/>
</constraints>
<entryLinks>
<entryLink id="5466-a4ee-7add-55f2" name="Raptora Cadre" hidden="false" collective="false" import="true" targetId="7117-e1f5-1a14-9716" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="6751-bbaa-8df5-965b" name="Silent Sisterhood (Chamber of Obivion)" hidden="false" collective="false" import="true" targetId="7856-71cb-a1fb-bc43" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="20bd-d87b-987c-878a" type="min"/>
</constraints>
</entryLink>
<entryLink id="af31-f21d-c787-e118" name="Artificer Armour" hidden="false" collective="false" import="true" targetId="583e-62cb-53f1-f952" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2373-9499-4d0b-6912" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="286b-ad4e-0496-6c97" type="min"/>
</constraints>
</entryLink>
<entryLink id="f8e7-28e3-d150-4671" name="Archaeotech Pistol" hidden="false" collective="false" import="true" targetId="c22a-ed4d-af68-bf00" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7974-d25d-0143-93ab" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7a90-a1fb-9486-68c8" type="min"/>
</constraints>
</entryLink>
<entryLink id="6535-60c9-cbf0-67e9" name="Frag Grenades" hidden="false" collective="false" import="true" targetId="cf9c-327b-3449-00d7" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="da4a-deee-b633-778f" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fcc6-8577-a53e-e2fd" type="min"/>
</constraints>
</entryLink>
<entryLink id="c947-fa81-6d4d-fd0b" name="Krak Grenades" hidden="false" collective="false" import="true" targetId="99df-2421-acf7-a5ad" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8b8e-f6f3-0510-944f" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ee83-8918-df3b-0881" type="min"/>
</constraints>
</entryLink>
<entryLink id="7cce-6e39-03a2-04fe" name="Psyk-out Granades" hidden="false" collective="false" import="true" targetId="2d34-959c-a93c-888f" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9250-309a-3d81-7770" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="90db-7577-6f21-7c8d" type="min"/>
</constraints>
</entryLink>
<entryLink id="bb96-550a-779f-f348" name="Warlord" hidden="false" collective="false" import="true" targetId="0176-56a3-d590-b103" type="selectionEntry">
<modifiers>
<modifier type="set" field="edcb-f41a-801c-46cb" value="1">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="5430-5be1-1613-be44" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d926-652f-8436-30ce" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="edcb-f41a-801c-46cb" type="min"/>
</constraints>
<profiles>
<profile id="b29-2b42-8227-5eae" name="The Soulless Queen" publicationId="15a4-fc68-502d-48a9" page="43" hidden="false" typeId="a0e6-a7b4-d55d-85b8" typeName="Warlord Trait">
<characteristics>
<characteristic name="Text" typeId="c68e-2cda-b67b-baca">If any enemy army taking part in the battle includes any models with the Daemon Unit Type or the Psyker or Corrupted Unit Sub-type, Jenetia Krole and all units in the same Detachment that include at least one model with the Silent Sisterhood (X) special rule gain the Preferred Enemy (Psykers, Daemons and Corrupted) special rule for the duration of the battle. If there are no models with the Daemon Unit Type or the Psyker or Corrupted Unit Sub-type in any enemy army, Jenetia Krole and any three units from the same Detachment instead gain the Infiltrate special rule. In addition, an army that has Jenetia Krole as its Warlord increases its Reaction Allotment by +1 in the Assault phase as long as Jenetia Krole has not been removed as a casualty and may select an additional two units from the Chamber of Oblivion as part of the same Detachment as this Warlord.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Preferred Enemy (X)" hidden="false" type="rule" id="65d-bc9d-708a-1a51" targetId="37ab-d4db-891a-de8c">
<modifiers>
<modifier type="set" value="Preferred Enemy (Psykers, Daemons and Corrupted)" field="name"/>
</modifiers>
</infoLink>
<infoLink name="Infiltrate" hidden="false" type="rule" id="f589-bf77-ac3c-df1c" targetId="0e32-5b92-a95a-8464">
<modifiers>
<modifier type="set" value="Infiltrate (The Soulless Queen)" field="name"/>
</modifiers>
</infoLink>
</infoLinks>
</entryLink>
</entryLinks>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="150"/>
</costs>
<categoryLinks>
<categoryLink targetId="8b4f-bfe2-ce7b-f1b1" id="fc63-b6be-433a-b68d" name="Infantry Unit Type" primary="false"/>
<categoryLink targetId="f75a-d5c1-59ba-5c5a" id="9790-c679-4843-acc9" name="Character" primary="false"/>
<categoryLink targetId="bff2-ae16-74a8-8712" id="5116-99bc-4f37-b532" name="Light Sub-type" primary="false"/>
<categoryLink targetId="7e5d-d73e-8ff4-7345" id="71cd-f6b4-46a6-b9b7" name="Anathema Sub-type" primary="false"/>
<categoryLink targetId="aa94-5c65-d1f1-46a4" id="4457-7585-45d7-a648" name="Unique Sub-type" primary="false"/>
</categoryLinks>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="6ed4-f039-3f78-9877" name="Knight Abyssal" publicationId="15a4-fc68-502d-48a9" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="4940-bf6a-b87e-58c2" type="max"/>
</constraints>
<infoLinks>
<infoLink id="8a57-3d74-b56f-aadd" name="Silent Sisterhood (X)" hidden="false" targetId="1d8d-3038-9267-6f1b" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="9114-4a2e-5f6d-513c" name="Character" hidden="false" targetId="f75a-d5c1-59ba-5c5a" primary="false"/>
<categoryLink id="c19a-9d92-b941-8bfb" name="Independent Character" hidden="false" targetId="4f07-3d45-4f28-a0c6" primary="false"/>
<categoryLink id="4261-d9e6-6761-57c0" name="Light Sub-type" hidden="false" targetId="bff2-ae16-74a8-8712" primary="false"/>
<categoryLink id="d32c-fd83-381e-9d0e" name="Anathema Sub-type" hidden="false" targetId="7e5d-d73e-8ff4-7345" primary="false"/>
<categoryLink id="1617-b424-fdfc-c3a1" name="Infantry Unit Type" hidden="false" targetId="8b4f-bfe2-ce7b-f1b1" primary="false"/>
<categoryLink id="eab7-89d5-4457-152c" name="Silent Sisterhood (Chamber of Obivion)" hidden="false" targetId="a7e3-4559-7267-8bf6" primary="false"/>
<categoryLink id="bdb4-4118-7f7a-05d9" name="Obivion HQ" hidden="false" targetId="b760-8313-847f-1afa" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="6be2-d4b9-2a64-f164" name="Knight Abyssal" publicationId="15a4-fc68-502d-48a9" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="da88-824a-85e5-086f" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a016-d6f5-8097-86f9" type="max"/>
</constraints>
<profiles>
<profile id="d719-f9f5-60bf-ff16" name="Knight Abyssal" hidden="false" typeId="4bb2-cb95-e6c8-5a21" typeName="Unit">
<characteristics>
<characteristic name="Unit Type" typeId="ddd7-6f5c-a939-b69e">Infantry (Character, Light, Anathema)</characteristic>
<characteristic name="Move" typeId="893e-2d76-8f04-44e5">6</characteristic>
<characteristic name="WS" typeId="cc42-7ed5-7092-5c84">6</characteristic>
<characteristic name="BS" typeId="74ae-c840-0036-d244">6</characteristic>
<characteristic name="S" typeId="e478-41d4-a092-48a8">3</characteristic>
<characteristic name="T" typeId="c32b-5fdd-3fbe-9b1f">3</characteristic>
<characteristic name="W" typeId="57ee-1126-32a9-5672">3</characteristic>
<characteristic name="I" typeId="62d3-22d7-2d49-52dc">5</characteristic>
<characteristic name="A" typeId="f111-2ce5-dd12-d6b0">4</characteristic>
<characteristic name="Ld" typeId="e8a6-1da9-d384-8727">10</characteristic>
<characteristic name="Save" typeId="e593-6b3c-f169-04f0">2+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="834c-3909-3d0a-5b0f" name="Fleet (X)" hidden="false" targetId="ddc9-0b4b-78da-bbd2" type="rule">
<modifiers>
<modifier type="set" field="name" value="Fleet (1)"/>
</modifiers>
</infoLink>
<infoLink id="8205-3b03-3c02-d88d" name="Fearless" hidden="false" targetId="b48c-d7e1-2a83-2f5b" type="rule"/>
<infoLink id="7fdc-c87c-e98e-0afe" name="Hatred (X)" hidden="false" targetId="dc0b-fe69-6b71-e0a4" type="rule">
<modifiers>
<modifier type="set" field="name" value="Hatred (Psyker, Daemon, Corrupted)"/>
</modifiers>
</infoLink>
<infoLink id="2c2e-15c1-07e2-e728" name="Precision Shots (X)" hidden="false" targetId="4b71-81ee-31f4-fa09" type="rule">
<modifiers>
<modifier type="set" field="name" value="Precision Shots (5+)"/>
</modifiers>
</infoLink>
<infoLink id="89ef-2543-1190-5a9c" name="Precision Strikes (X)" hidden="false" targetId="2206-8497-8fe1-e973" type="rule">
<modifiers>
<modifier type="set" field="name" value="Precision Strikes (5+)"/>
</modifiers>
</infoLink>
<infoLink id="6545-fa95-e106-d14f" name="Ex-Oblivio" hidden="false" targetId="7982-9292-ef54-8e84" type="rule"/>
<infoLink id="b8b4-eca3-ad62-92ed" name="Loyalist" hidden="false" targetId="d1de-a45d-2b9b-c878" type="rule"/>
</infoLinks>
<selectionEntryGroups>
<selectionEntryGroup id="3b0d-35f3-aae3-11f4" name="3) May upgrade any one weapon to have the Master-crafted" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cca9-b397-e0a5-6dc0" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="242a-f8b0-21dc-b14a" name="Ranged Weapon" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3631-f37a-b74e-9734" type="max"/>
</constraints>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="10"/>
</costs>
</selectionEntry>
<selectionEntry id="302c-f277-671c-512c" name="Melee Weapon" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="39f6-ec81-ab64-5d52" type="max"/>
</constraints>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="10"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
<selectionEntryGroup id="38f4-d578-753e-0f66" name="1) Melee Weapon" hidden="false" collective="false" import="true" defaultSelectionEntryId="836d-c1f4-167c-8b3b">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5ce2-1709-cefb-45b8" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="dfa4-4935-9781-6f26" type="max"/>
</constraints>
<entryLinks>
<entryLink id="836d-c1f4-167c-8b3b" name="Execution Blade" hidden="false" collective="false" import="true" targetId="adc6-3519-204d-2921" type="selectionEntry">
<modifiers>
<modifier type="set" field="name" value="Master-crafted Execution Blade">
<conditions>
<condition field="selections" scope="6be2-d4b9-2a64-f164" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="302c-f277-671c-512c" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ecab-14af-bdfe-20ec" type="max"/>
</constraints>
<infoLinks>
<infoLink id="0d74-cdb3-6fd9-f951" name="Master-crafted" hidden="false" targetId="6de0-55b0-bf21-48b9" type="rule">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="6be2-d4b9-2a64-f164" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="302c-f277-671c-512c" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</infoLink>
</infoLinks>
</entryLink>
<entryLink id="a728-2b8d-2b83-f6f9" name="Power Axe" hidden="false" collective="false" import="true" targetId="c066-2ace-f68c-e440" type="selectionEntry">
<modifiers>
<modifier type="set" field="name" value="Master-crafted Power Axe">
<conditions>
<condition field="selections" scope="6be2-d4b9-2a64-f164" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="302c-f277-671c-512c" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f29d-956c-199c-7f34" type="max"/>
</constraints>
<infoLinks>
<infoLink id="ca23-206d-26aa-d0be" name="Master-crafted" hidden="false" targetId="6de0-55b0-bf21-48b9" type="rule">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="6be2-d4b9-2a64-f164" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="302c-f277-671c-512c" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</infoLink>
</infoLinks>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="5"/>
</costs>
</entryLink>
<entryLink id="4785-6741-f6d7-0c30" name="Power Lance" hidden="false" collective="false" import="true" targetId="a4c8-c8ff-87f2-1ac9" type="selectionEntry">
<modifiers>
<modifier type="set" field="name" value="Master-crafted Power Lance">
<conditions>
<condition field="selections" scope="6be2-d4b9-2a64-f164" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="302c-f277-671c-512c" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2b9e-7ace-4866-2c98" type="max"/>
</constraints>
<infoLinks>
<infoLink id="e49c-e956-1821-b15c" name="Master-crafted" hidden="false" targetId="6de0-55b0-bf21-48b9" type="rule">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="6be2-d4b9-2a64-f164" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="302c-f277-671c-512c" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</infoLink>
</infoLinks>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="5"/>
</costs>
</entryLink>
<entryLink id="a1e3-f0b0-dff6-9466" name="Power Maul" hidden="false" collective="false" import="true" targetId="0df4-c67e-cf64-82e0" type="selectionEntry">
<modifiers>
<modifier type="set" field="name" value="Master-crafted Power Maul">
<conditions>
<condition field="selections" scope="6be2-d4b9-2a64-f164" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="302c-f277-671c-512c" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="87c3-4594-b54b-803b" type="max"/>
</constraints>
<infoLinks>
<infoLink id="6521-7010-57e3-7dac" name="Master-crafted" hidden="false" targetId="6de0-55b0-bf21-48b9" type="rule">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="6be2-d4b9-2a64-f164" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="302c-f277-671c-512c" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</infoLink>
</infoLinks>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="5"/>
</costs>
</entryLink>
<entryLink id="e111-7a23-f492-7030" name="Power Sword" hidden="false" collective="false" import="true" targetId="a3cd-aa97-a148-2309" type="selectionEntry">
<modifiers>
<modifier type="set" field="name" value="Master-crafted Power Sword">
<conditions>
<condition field="selections" scope="6be2-d4b9-2a64-f164" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="302c-f277-671c-512c" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b998-9bb0-5596-6766" type="max"/>
</constraints>
<infoLinks>
<infoLink id="9e3d-1c57-e6c2-c365" name="Master-crafted" hidden="false" targetId="6de0-55b0-bf21-48b9" type="rule">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="6be2-d4b9-2a64-f164" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="302c-f277-671c-512c" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</infoLink>
</infoLinks>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="5"/>
</costs>
</entryLink>
<entryLink id="6461-e309-9aab-6518" name="Charnabal Glaive" hidden="false" collective="false" import="true" targetId="c07c-35e6-4616-ef25" type="selectionEntry">
<modifiers>
<modifier type="set" field="name" value="Master-crafted Charnabal Glaive">
<conditions>
<condition field="selections" scope="6be2-d4b9-2a64-f164" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="302c-f277-671c-512c" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="af8c-1212-b93b-23f5" type="max"/>
</constraints>
<infoLinks>
<infoLink id="c852-b790-9c8b-cb30" name="Master-crafted" hidden="false" targetId="6de0-55b0-bf21-48b9" type="rule">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="6be2-d4b9-2a64-f164" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="302c-f277-671c-512c" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</infoLink>
</infoLinks>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="5"/>
</costs>
</entryLink>
<entryLink id="d034-83e2-9fed-3a66" name="Proteus Neuro-lash" hidden="false" collective="false" import="true" targetId="4d36-dac5-86a1-46cc" type="selectionEntry">
<modifiers>
<modifier type="set" field="name" value="Master-crafted Proteus Neuro-lash">
<conditions>
<condition field="selections" scope="6be2-d4b9-2a64-f164" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="302c-f277-671c-512c" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0b9e-c3ac-1bff-7cd2" type="max"/>
</constraints>
<infoLinks>
<infoLink id="d38c-9057-629b-cec9" name="Master-crafted" hidden="false" targetId="6de0-55b0-bf21-48b9" type="rule">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="6be2-d4b9-2a64-f164" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="302c-f277-671c-512c" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</infoLink>
</infoLinks>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="5"/>
</costs>
</entryLink>
<entryLink id="521a-71fb-c3b1-6f8e" name="Charnabal Sabre" hidden="false" collective="false" import="true" targetId="30c2-57eb-5bbe-be0b" type="selectionEntry">
<modifiers>
<modifier type="set" field="name" value="Master-crafted Charnabal Sabre">
<conditions>
<condition field="selections" scope="6be2-d4b9-2a64-f164" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="302c-f277-671c-512c" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5797-1758-ca14-9e10" type="max"/>
</constraints>
<infoLinks>
<infoLink id="eb58-85d3-f9e6-55ae" name="Master-crafted" hidden="false" targetId="6de0-55b0-bf21-48b9" type="rule">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="6be2-d4b9-2a64-f164" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="302c-f277-671c-512c" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</infoLink>
</infoLinks>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="5"/>
</costs>
</entryLink>
<entryLink id="44a7-4a6f-6324-ed72" name="Charnabal Tabar" hidden="false" collective="false" import="true" targetId="4611-c33e-f360-7246" type="selectionEntry">
<modifiers>
<modifier type="set" field="name" value="Master-crafted Charnabal Tabar">
<conditions>
<condition field="selections" scope="6be2-d4b9-2a64-f164" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="302c-f277-671c-512c" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4ef8-001a-9eda-040c" type="max"/>
</constraints>
<infoLinks>
<infoLink id="f12e-8d61-2e67-8de1" name="Master-crafted" hidden="false" targetId="6de0-55b0-bf21-48b9" type="rule">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="6be2-d4b9-2a64-f164" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="302c-f277-671c-512c" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</infoLink>
</infoLinks>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="5"/>
</costs>
</entryLink>
<entryLink id="6566-5fe4-c0c4-3fb9" name="Paragon Blade" hidden="false" collective="false" import="true" targetId="2ab9-0e45-405e-056b" type="selectionEntry">
<modifiers>
<modifier type="set" field="name" value="Master-crafted Paragon Blade">
<conditions>
<condition field="selections" scope="6be2-d4b9-2a64-f164" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="302c-f277-671c-512c" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="76b1-69b6-d2f4-26c6" type="max"/>
</constraints>
<infoLinks>
<infoLink id="41be-f98c-f1eb-2343" name="Master-crafted" hidden="false" targetId="6de0-55b0-bf21-48b9" type="rule">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="6be2-d4b9-2a64-f164" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="302c-f277-671c-512c" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</infoLink>
</infoLinks>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="10"/>
</costs>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="e4ea-0dcf-667c-14a9" name="2) Ranged Weapon" hidden="false" collective="false" import="true" defaultSelectionEntryId="e26f-47fb-d98a-7b69">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d7fb-9884-dd57-71f7" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f012-b2fb-d6c1-675f" type="max"/>
</constraints>
<entryLinks>
<entryLink id="e26f-47fb-d98a-7b69" name="Bolt Pistol" hidden="false" collective="false" import="true" targetId="e5ae-6872-37aa-8600" type="selectionEntry">
<modifiers>
<modifier type="set" field="name" value="Master-crafted Bolt Pistol">
<conditions>
<condition field="selections" scope="6be2-d4b9-2a64-f164" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="242a-f8b0-21dc-b14a" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8e7c-bc91-2e20-30db" type="max"/>
</constraints>
<infoLinks>
<infoLink id="f824-1ed8-cf48-3ebb" name="Master-crafted" hidden="false" targetId="6de0-55b0-bf21-48b9" type="rule">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="6be2-d4b9-2a64-f164" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="242a-f8b0-21dc-b14a" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</infoLink>
</infoLinks>
</entryLink>
<entryLink id="0fc0-9e0c-d12d-d0fa" name="Hand Flamer" hidden="false" collective="false" import="true" targetId="e337-adf4-a11f-0280" type="selectionEntry">
<modifiers>
<modifier type="set" field="name" value="Master-crafted Hand Flamer">
<conditions>
<condition field="selections" scope="6be2-d4b9-2a64-f164" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="242a-f8b0-21dc-b14a" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="286a-e455-5e38-4a09" type="max"/>
</constraints>
<infoLinks>
<infoLink id="8050-bc67-0471-fda2" name="Master-crafted" hidden="false" targetId="6de0-55b0-bf21-48b9" type="rule">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="6be2-d4b9-2a64-f164" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="242a-f8b0-21dc-b14a" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</infoLink>
</infoLinks>
</entryLink>
<entryLink id="e0d5-8c67-d7b3-5c30" name="Needle Pistol" hidden="false" collective="false" import="true" targetId="fdd4-06c7-4608-b07f" type="selectionEntry">
<modifiers>
<modifier type="set" field="name" value="Master-crafted Needle Pistol">
<conditions>
<condition field="selections" scope="6be2-d4b9-2a64-f164" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="242a-f8b0-21dc-b14a" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="461b-9f7a-b9d3-5ad5" type="max"/>
</constraints>
<infoLinks>
<infoLink id="5ca3-e3af-5f2d-686f" name="Master-crafted" hidden="false" targetId="6de0-55b0-bf21-48b9" type="rule">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="6be2-d4b9-2a64-f164" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="242a-f8b0-21dc-b14a" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</infoLink>
</infoLinks>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="5"/>
</costs>
</entryLink>
<entryLink id="af10-93fe-af53-02dd" name="Plasma Pistol" hidden="false" collective="false" import="true" targetId="717f-cf0a-1593-4bd8" type="selectionEntry">
<modifiers>
<modifier type="set" field="name" value="Master-crafted Plasma Pistol">
<conditions>
<condition field="selections" scope="6be2-d4b9-2a64-f164" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="242a-f8b0-21dc-b14a" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6944-af71-138d-5c7d" type="max"/>
</constraints>
<infoLinks>
<infoLink id="681f-761e-58c2-597f" name="Master-crafted" hidden="false" targetId="6de0-55b0-bf21-48b9" type="rule">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="6be2-d4b9-2a64-f164" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="242a-f8b0-21dc-b14a" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</infoLink>
</infoLinks>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="10"/>
</costs>
</entryLink>
<entryLink id="e179-e3ee-8df0-22b6" name="Archaeotech Pistol" hidden="false" collective="false" import="true" targetId="c22a-ed4d-af68-bf00" type="selectionEntry">
<modifiers>
<modifier type="set" field="name" value="Master-crafted Archaeotech Pistol">
<conditions>
<condition field="selections" scope="6be2-d4b9-2a64-f164" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="242a-f8b0-21dc-b14a" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b5b5-2756-dc23-48d8" type="max"/>
</constraints>
<infoLinks>
<infoLink id="96a5-e085-aea6-e39e" name="Master-crafted" hidden="false" targetId="6de0-55b0-bf21-48b9" type="rule">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="6be2-d4b9-2a64-f164" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="242a-f8b0-21dc-b14a" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</infoLink>
</infoLinks>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="10"/>
</costs>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="182c-f4d2-5c80-fb3d" name="Retinue" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9b09-f36b-beb2-64b3" type="max"/>
</constraints>
<entryLinks>
<entryLink id="46fb-c09c-62d0-104f" name="Raptora Cadre" hidden="false" collective="false" import="true" targetId="7117-e1f5-1a14-9716" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="5f4e-e93e-6483-8062" name="Frag Grenades" hidden="false" collective="false" import="true" targetId="cf9c-327b-3449-00d7" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e2cc-ac98-dbc5-890a" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0486-ae6b-e3c9-6fd7" type="min"/>