-
Notifications
You must be signed in to change notification settings - Fork 92
/
2021 - Hand of the Archon.cat
1650 lines (1643 loc) · 133 KB
/
2021 - Hand of the Archon.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="c408-a4ad-4355-4aeb" name="Hand of the Archon" revision="4" battleScribeVersion="2.03" library="false" gameSystemId="3b7e-7dab-f79f-2e74" gameSystemRevision="5" xmlns="http://www.battlescribe.net/schema/catalogueSchema" type="catalogue">
<categoryEntries>
<categoryEntry id="3612-cdd0-3712-f017" name="Drukhari" hidden="false"/>
<categoryEntry id="adb1-b9cf-cacc-ce07" name="HAND OF THE ARCHON" hidden="false"/>
<categoryEntry id="3c1b-122e-530e-ccba" name="Kabalite" hidden="false"/>
<categoryEntry id="9015-e26c-4823-d09a" name="Archsybarite" hidden="false"/>
<categoryEntry id="ccc8-173b-4f9f-9a22" name="Darklight Weapon" hidden="false"/>
<categoryEntry id="6114-751c-e942-ee3e" name="Agent" hidden="false"/>
<categoryEntry id="ac90-6f24-e945-2920" name="Crimson Dueliist" hidden="false"/>
<categoryEntry id="4880-e1b8-70cb-38b0" name="Disciple of Yaelindra" hidden="false"/>
<categoryEntry id="672c-4823-00ae-6f2f" name="Elixicant" hidden="false"/>
<categoryEntry id="fc14-0d72-4b8f-3818" name="Flayer" hidden="false"/>
<categoryEntry id="b365-3f7b-fff2-2b17" name="Skysplinter Assassin" hidden="false"/>
</categoryEntries>
<forceEntries>
<forceEntry id="a2a1-1ad3-54ea-d8f3" name="Kill Team" hidden="false">
<categoryLinks>
<categoryLink id="6997-bcf7-da23-1214" name="Configuration" hidden="false" targetId="fb89-efb1-54e4-59c5" primary="false"/>
<categoryLink id="d764-a3c6-cbee-a691" name="Reference" hidden="false" targetId="322e-38ea-bf3e-c785" primary="false"/>
<categoryLink id="f116-3eb4-4970-bd28" name="Leader" hidden="false" targetId="3198-c1ce-dfd0-fb4f" primary="false"/>
<categoryLink id="3144-c04d-3ecc-785b" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="false">
<constraints>
<constraint field="selections" scope="force" value="8" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d9a5-a71e-85ec-8cd2" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="9331-9731-750d-951d" name="Crimson Dueliist" hidden="false" targetId="ac90-6f24-e945-2920" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="a552-cf59-d13e-5df5" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="006e-1d40-3620-242f" name="Disciple of Yaelindra" hidden="false" targetId="4880-e1b8-70cb-38b0" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="bee7-8884-62ce-62ba" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="33e2-2ef5-f740-9d70" name="Elixicant" hidden="false" targetId="672c-4823-00ae-6f2f" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="45ce-7a8a-68d7-65e1" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="0ba6-a540-bc8a-54ac" name="Flayer" hidden="false" targetId="fc14-0d72-4b8f-3818" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="3636-1946-f297-9da1" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="b102-bfa5-919d-6e6e" name="Gunner" hidden="false" targetId="ee8c-cc44-acc3-40f0" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8946-f4c7-5111-5a53" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="ff7a-f99e-b63c-919d" name="Heavy Gunner" hidden="false" targetId="0e59-07ae-65c2-2de6" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="afa4-ee4e-7ec7-c2c9" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="0c82-20bd-fc11-c86e" name="Darklight Weapon" hidden="false" targetId="ccc8-173b-4f9f-9a22" primary="false">
<constraints>
<constraint field="selections" scope="force" value="2" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="727b-74dc-774f-66f8" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="aa23-71e0-79d1-0377" name="Skysplinter Assassin" hidden="false" targetId="b365-3f7b-fff2-2b17" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="3bca-8b31-c11d-0f23" type="max"/>
</constraints>
</categoryLink>
</categoryLinks>
</forceEntry>
</forceEntries>
<selectionEntries>
<selectionEntry id="25af-59ca-b569-14f3" name="Archsybarite" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="7fb0-8ae7-0a7f-94c3" name="Archsybarite" hidden="false" typeId="350c-2ddd-8a24-377b" typeName="Operative">
<characteristics>
<characteristic name="M" typeId="c36f-3952-a91d-5a06">3⬤</characteristic>
<characteristic name="APL" typeId="c84a-a042-6fe6-519b">2</characteristic>
<characteristic name="GA" typeId="7a85-5063-6d1a-2a0b">1</characteristic>
<characteristic name="DF" typeId="4a18-41c1-51f2-c88c">3</characteristic>
<characteristic name="SV" typeId="dd03-76d2-dda8-eca2">4+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">9</characteristic>
</characteristics>
</profile>
<profile id="7429-4df9-39d3-9e6c" name="Cunning" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">In the Play Strategic Ploys step of each Strategy phase, if you pass at the first opportunity, you gain 1 CP.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="9b49-87ff-781f-730b" name="Power from Pain" hidden="false" targetId="f860-bc61-7488-dcae" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="7421-8302-335d-107a" name="Leader" hidden="false" targetId="3198-c1ce-dfd0-fb4f" primary="true"/>
<categoryLink id="4f25-4578-a06a-cf99" name="HAND OF THE ARCHON" hidden="false" targetId="adb1-b9cf-cacc-ce07" primary="false"/>
<categoryLink id="8dcf-a908-043e-d69a" name="Aeldari" hidden="false" targetId="c62e-f54d-e0bb-6940" primary="false"/>
<categoryLink id="e6d2-d065-fedf-2fd2" name="Drukhari" hidden="false" targetId="3612-cdd0-3712-f017" primary="false"/>
<categoryLink id="9d39-fc23-2eab-b060" name="Kabalite" hidden="false" targetId="3c1b-122e-530e-ccba" primary="false"/>
<categoryLink id="d56a-d97f-c2ab-4147" name="Archsybarite" hidden="false" targetId="9015-e26c-4823-d09a" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="8524-25e0-e07e-4428" name="Weapons" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8500-ec65-73b2-df41" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0fdf-ec4e-a898-4c10" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="3cc0-bd1d-7876-8986" name="Blast pistol; venom blade" hidden="false" collective="false" import="true" type="upgrade">
<selectionEntries>
<selectionEntry id="8135-7b12-343e-f12d" name="Blast pistol" 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="c0d6-01bd-67e8-7c49" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c4d2-4c09-c2e9-7066" type="max"/>
</constraints>
<profiles>
<profile id="f387-2dcc-196c-a81a" name="⌖ Blast pistol" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">3+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">4/5</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Rng ⬟, AP2</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="e49d-df3e-7d4f-7e1f" name="Rng x" hidden="false" targetId="92de-2ad3-3554-0b3e" type="rule"/>
<infoLink id="5497-510c-5f25-33b4" name="APx" hidden="false" targetId="db98-339e-d0a2-e042" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="7081-5cee-fc63-dfdb" name="Darklight Weapon" hidden="false" targetId="ccc8-173b-4f9f-9a22" primary="false"/>
</categoryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="6ee3-ecbd-e5e4-7dcc" name="Venom blade" hidden="false" collective="false" import="true" targetId="70d5-3a5e-6434-3a27" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="2abd-afd6-8da5-5a4b" name="Splinter pistol; venom blade" hidden="false" collective="false" import="true" type="upgrade">
<entryLinks>
<entryLink id="c170-a7b4-d93f-130d" name="Venom blade" hidden="false" collective="false" import="true" targetId="70d5-3a5e-6434-3a27" type="selectionEntry"/>
<entryLink id="fdd8-b241-3871-8573" name="Splinter pistol" hidden="false" collective="false" import="true" targetId="f778-6ee4-d0c6-b51c" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="e746-8b79-2285-93ed" name="Splinter pistol; agoniser" hidden="false" collective="false" import="true" type="upgrade">
<selectionEntries>
<selectionEntry id="a823-e695-8e69-354f" name="Agoniser" 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="44f0-c0c8-5eb8-5e08" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="279d-4b8d-ff5d-11ec" type="max"/>
</constraints>
<profiles>
<profile id="c70c-e1c6-c206-c9dd" name="⚔ Agoniser" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">2+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">3/6</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Brutal, Lethal 5+</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">Reap 1</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="3de0-6b9c-e2ad-e0b4" name="Reap x" hidden="false" targetId="bed1-0d23-de84-30a1" type="rule"/>
<infoLink id="b5f7-1596-efcf-87c1" name="Brutal" hidden="false" targetId="16e9-a975-03a1-91c0" type="rule"/>
<infoLink id="f12c-0c41-11a2-1c46" name="Lethal x" hidden="false" targetId="be29-25db-e215-b3b0" type="rule"/>
</infoLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="b7ad-4a97-21c5-25e9" name="Splinter pistol" hidden="false" collective="false" import="true" targetId="f778-6ee4-d0c6-b51c" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="0489-8dce-2e16-66d0" name="Splinter pistol; power weapon" hidden="false" collective="false" import="true" type="upgrade">
<selectionEntries>
<selectionEntry id="4f3e-bec1-a8c8-7b3b" name="Power 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="a904-e131-3265-fceb" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2457-3e6f-52e0-cb95" type="max"/>
</constraints>
<profiles>
<profile id="aa12-f08f-99a0-30d0" name="⚔ Power weapon" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">2+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">4/6</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Lethal 5+</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="da5b-b8e1-4dbe-081a" name="Lethal x" hidden="false" targetId="be29-25db-e215-b3b0" type="rule"/>
</infoLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="4cce-855f-a519-b392" name="Splinter pistol" hidden="false" collective="false" import="true" targetId="f778-6ee4-d0c6-b51c" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="f635-22fd-98f9-347f" name="Splinter rifle; array of blades" hidden="false" collective="false" import="true" type="upgrade">
<entryLinks>
<entryLink id="c434-f565-1f19-3c36" name="Splinter rifle" hidden="false" collective="false" import="true" targetId="f6de-c8b0-5264-d328" type="selectionEntry"/>
<entryLink id="395e-c1c0-b21b-e624" name="Array of blades" hidden="false" collective="false" import="true" targetId="c50b-714b-0718-28e0" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="d585-0c18-3173-08b5" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="59bb-e0e8-03c4-9d7f" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
<entryLink id="d1e3-e9fd-ab03-4379" name="Equipment" hidden="false" collective="false" import="true" targetId="1058-6976-2c54-d290" type="selectionEntryGroup"/>
<entryLink id="8d18-3baa-a0c7-e757" name="Specialism" hidden="false" collective="false" import="true" targetId="41b0-7858-fded-5bff" type="selectionEntryGroup"/>
<entryLink id="53cb-cb10-be3a-cfa2" name="Battle Honours - Combat" hidden="false" collective="false" import="true" targetId="ae2f-d9f3-a27c-cca6" type="selectionEntryGroup">
<entryLinks>
<entryLink id="0dd0-f9bb-b63c-5277" name="Hand 2 - Pain Artist" hidden="false" collective="false" import="true" targetId="22ff-2959-8364-9d9f" type="selectionEntry"/>
<entryLink id="06db-90d8-2e4e-1332" name="Hand 3 - Shadow Hunter" hidden="false" collective="false" import="true" targetId="9bbe-1a94-b08a-5039" type="selectionEntry"/>
<entryLink id="bfab-de84-6764-abd1" name="Hand 4 - Spire Stalker" hidden="false" collective="false" import="true" targetId="e2af-255a-217d-d5d3" type="selectionEntry"/>
<entryLink id="981f-7eec-7305-8684" name="Hand 5 - Conniving" hidden="false" collective="false" import="true" targetId="45c4-0184-f46d-297a" type="selectionEntry"/>
<entryLink id="508e-6861-6889-1ecb" name="Hand 6 - Patient Predator" hidden="false" collective="false" import="true" targetId="fb20-d21e-9963-92a5" type="selectionEntry"/>
<entryLink id="6a8f-de12-5e14-dae9" name="Hand 1 - Epicurean of Suffering" hidden="false" collective="false" import="true" targetId="9261-93fa-44d3-e9d3" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="0c41-a373-e6f1-bdd0" name="Battle Honours - Marksman" hidden="false" collective="false" import="true" targetId="e84e-ae34-82a8-57b0" type="selectionEntryGroup">
<entryLinks>
<entryLink id="f475-fa67-517e-39f8" name="Hand 2 - Pain Artist" hidden="false" collective="false" import="true" targetId="22ff-2959-8364-9d9f" type="selectionEntry"/>
<entryLink id="b12b-b1a7-527a-553f" name="Hand 3 - Shadow Hunter" hidden="false" collective="false" import="true" targetId="9bbe-1a94-b08a-5039" type="selectionEntry"/>
<entryLink id="b047-192d-5759-098a" name="Hand 4 - Spire Stalker" hidden="false" collective="false" import="true" targetId="e2af-255a-217d-d5d3" type="selectionEntry"/>
<entryLink id="6b1c-c625-0ee5-5550" name="Hand 5 - Conniving" hidden="false" collective="false" import="true" targetId="45c4-0184-f46d-297a" type="selectionEntry"/>
<entryLink id="0bf8-f949-5baf-ff1a" name="Hand 6 - Patient Predator" hidden="false" collective="false" import="true" targetId="fb20-d21e-9963-92a5" type="selectionEntry"/>
<entryLink id="a85d-6fd5-7045-6746" name="Hand 1 - Epicurean of Suffering" hidden="false" collective="false" import="true" targetId="9261-93fa-44d3-e9d3" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="de27-c2ad-36e9-6872" name="Battle Honours - Scout" hidden="false" collective="false" import="true" targetId="94bd-d409-fda3-9f9f" type="selectionEntryGroup">
<entryLinks>
<entryLink id="1d13-f71c-deb8-c10c" name="Hand 2 - Pain Artist" hidden="false" collective="false" import="true" targetId="22ff-2959-8364-9d9f" type="selectionEntry"/>
<entryLink id="abe7-eaf9-cc88-9be3" name="Hand 3 - Shadow Hunter" hidden="false" collective="false" import="true" targetId="9bbe-1a94-b08a-5039" type="selectionEntry"/>
<entryLink id="003b-1970-a6be-da7a" name="Hand 4 - Spire Stalker" hidden="false" collective="false" import="true" targetId="e2af-255a-217d-d5d3" type="selectionEntry"/>
<entryLink id="f4f4-4007-7f25-d66b" name="Hand 5 - Conniving" hidden="false" collective="false" import="true" targetId="45c4-0184-f46d-297a" type="selectionEntry"/>
<entryLink id="eccb-7b72-8ccb-7ff1" name="Hand 6 - Patient Predator" hidden="false" collective="false" import="true" targetId="fb20-d21e-9963-92a5" type="selectionEntry"/>
<entryLink id="cf91-fb37-9fe7-6a88" name="Hand 1 - Epicurean of Suffering" hidden="false" collective="false" import="true" targetId="9261-93fa-44d3-e9d3" type="selectionEntry"/>
</entryLinks>
</entryLink>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="c7b9-df3a-6dc6-526b" name="Disciple of Yaelindra" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="4d23-1f9a-9955-75e6" name="Disciple of Yaelindra" hidden="false" typeId="350c-2ddd-8a24-377b" typeName="Operative">
<characteristics>
<characteristic name="M" typeId="c36f-3952-a91d-5a06">3⬤</characteristic>
<characteristic name="APL" typeId="c84a-a042-6fe6-519b">2</characteristic>
<characteristic name="GA" typeId="7a85-5063-6d1a-2a0b">1</characteristic>
<characteristic name="DF" typeId="4a18-41c1-51f2-c88c">3</characteristic>
<characteristic name="SV" typeId="dd03-76d2-dda8-eca2">4+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">8</characteristic>
</characteristics>
</profile>
<profile id="8e86-5a9f-c029-d578" name="Stinger Pistol's BS" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">Each time this operative makes a shooting attack with this weapon, in the Roll Attack Dice step of that shooting attack:
• Attack dice results (excluding 1) that are less than the target's Save characteristic inflict 1 mortal wound on the target.
• Attack dice results of 1 inflict 3 mortal wounds on the target instead.
• At the end of the Roll Attack Dice step, that shooting attack ends (no defence dice are rolled and no further damage is inflicted).
Note that it is the target's Save characteristic, not an invulnerable save.</characteristic>
</characteristics>
</profile>
<profile id="7f1d-b8e7-eb04-d310" name="*Stinger" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">Each time an enemy operative is incapacitated by this weapon, before it is removed from the killzone, each operative Visible to and within ⬤ of it suffers D3 mortal wounds. Note that each operative subsequently incapacitated as a result of this special rule will cause this to happen again.</characteristic>
</characteristics>
</profile>
<profile id="7acd-e038-c77a-e290" name="Torment Grenade (1AP)" hidden="false" typeId="17cd-eb4c-f9cd-36f2" typeName="Unique Actions">
<characteristics>
<characteristic name="Unique Action" typeId="8d9f-0a91-4133-bc4a">Select one point in the killzone floor or a Vantage Point within ⬟ of this operative. Roll one D6 for each other operative within ⬤ of that point. For each roll:
• Add 1 to the result if that other operative has a Save characteristic of 4+ or worse.
• Subtract 1 from the result if that other operative is not Visible to this operative.
On a 3+, that other operative is poisoned until the end of the battle (operatives can only be poisoned once):
• At the end of the Ready Operatives step of each Turning Point, poisoned operatives suffer 2 mortal wounds.
• Poisoned operatives are treated as being injured, regardless of any rules that say they cannot be injured.
• The effects of being poisoned remain, even if this operative is incapacitated.
This operative cannot perform this action while within Engagement Range of an enemy operative.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="4f31-a5bb-c69b-79fa" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
<categoryLink id="f61c-45dc-4d92-790d" name="HAND OF THE ARCHON" hidden="false" targetId="adb1-b9cf-cacc-ce07" primary="false"/>
<categoryLink id="f091-8e03-4b9e-1f6f" name="Aeldari" hidden="false" targetId="c62e-f54d-e0bb-6940" primary="false"/>
<categoryLink id="36b2-f4ee-175f-f0b9" name="Drukhari" hidden="false" targetId="3612-cdd0-3712-f017" primary="false"/>
<categoryLink id="ce99-0cf9-4036-bffc" name="Kabalite" hidden="false" targetId="3c1b-122e-530e-ccba" primary="false"/>
<categoryLink id="6c1e-a59c-a404-4939" name="Disciple of Yaelindra" hidden="false" targetId="4880-e1b8-70cb-38b0" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="9b64-d002-b261-678c" name="Stinger pistol" 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="1963-0037-e114-2c16" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ca7d-85d9-3872-cd02" type="max"/>
</constraints>
<profiles>
<profile id="c66e-77c2-2d64-4e7f" name="⌖ Stinger pistol" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">5</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">*</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">0/0</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Rng ⬟, Stinger*</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="0001-13e7-c965-7218" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="a905-49ee-e3a9-55ee" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
<entryLink id="3e8e-a1dc-972e-755f" name="Equipment" hidden="false" collective="false" import="true" targetId="1058-6976-2c54-d290" type="selectionEntryGroup"/>
<entryLink id="e067-a5fe-700c-6353" name="Specialism" hidden="false" collective="false" import="true" targetId="41b0-7858-fded-5bff" type="selectionEntryGroup"/>
<entryLink id="068f-c8db-8ebb-8f5b" name="Array of blades" hidden="false" collective="false" import="true" targetId="c50b-714b-0718-28e0" type="selectionEntry"/>
<entryLink id="fbd4-f033-6ac7-43b3" name="Battle Honours - Scout" hidden="false" collective="false" import="true" targetId="94bd-d409-fda3-9f9f" type="selectionEntryGroup">
<entryLinks>
<entryLink id="c97d-00aa-7407-c665" name="Hand 2 - Pain Artist" hidden="false" collective="false" import="true" targetId="22ff-2959-8364-9d9f" type="selectionEntry"/>
<entryLink id="64d1-6cff-acb1-21e5" name="Hand 3 - Shadow Hunter" hidden="false" collective="false" import="true" targetId="9bbe-1a94-b08a-5039" type="selectionEntry"/>
<entryLink id="75aa-65fa-d3e4-6c64" name="Hand 4 - Spire Stalker" hidden="false" collective="false" import="true" targetId="e2af-255a-217d-d5d3" type="selectionEntry"/>
<entryLink id="2c38-62ca-902e-63c0" name="Hand 5 - Conniving" hidden="false" collective="false" import="true" targetId="45c4-0184-f46d-297a" type="selectionEntry"/>
<entryLink id="4714-597e-3bb7-e895" name="Hand 6 - Patient Predator" hidden="false" collective="false" import="true" targetId="fb20-d21e-9963-92a5" type="selectionEntry"/>
<entryLink id="cdc1-388f-a056-9b70" name="Hand 1 - Epicurean of Suffering" hidden="false" collective="false" import="true" targetId="9261-93fa-44d3-e9d3" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="1615-d4e1-e037-349e" name="Battle Honours - Staunch" hidden="false" collective="false" import="true" targetId="93ec-2874-675e-b46e" type="selectionEntryGroup">
<entryLinks>
<entryLink id="965f-e3ac-63ab-bb0f" name="Hand 2 - Pain Artist" hidden="false" collective="false" import="true" targetId="22ff-2959-8364-9d9f" type="selectionEntry"/>
<entryLink id="0f1d-59d4-779f-1b0e" name="Hand 3 - Shadow Hunter" hidden="false" collective="false" import="true" targetId="9bbe-1a94-b08a-5039" type="selectionEntry"/>
<entryLink id="6509-5fd7-6b0a-0a7e" name="Hand 4 - Spire Stalker" hidden="false" collective="false" import="true" targetId="e2af-255a-217d-d5d3" type="selectionEntry"/>
<entryLink id="f273-cd75-d9f8-a9b4" name="Hand 5 - Conniving" hidden="false" collective="false" import="true" targetId="45c4-0184-f46d-297a" type="selectionEntry"/>
<entryLink id="747c-107d-7393-eebc" name="Hand 6 - Patient Predator" hidden="false" collective="false" import="true" targetId="fb20-d21e-9963-92a5" type="selectionEntry"/>
<entryLink id="0920-6122-bb44-f0ae" name="Hand 1 - Epicurean of Suffering" hidden="false" collective="false" import="true" targetId="9261-93fa-44d3-e9d3" type="selectionEntry"/>
</entryLinks>
</entryLink>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="024a-b518-f93f-3ba3" name="Crimson Duellist" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="56dc-e175-7270-3d52" name="Brutal Display" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">Each time this operative incapacitates an enemy operative in combat, select one other enemy operative Visible to and within ⬟ of this operative or the incapacitated enemy operative. Until the start of the next Turning Point, that other enemy operative cannot perform mission actions or the Pick Up action, or control objective markers.</characteristic>
</characteristics>
</profile>
<profile id="1c6f-eb93-eaf1-b38a" name="Crimson Assault (1AP)" hidden="false" typeId="17cd-eb4c-f9cd-36f2" typeName="Unique Actions">
<characteristics>
<characteristic name="Unique Action" typeId="8d9f-0a91-4133-bc4a">Perform a free Fight action with this operative. After completing that action's fight sequence, if this operative is still within Engagement Range of an enemy operative, you can immediately fight in combat with this operative again (you do not have to select the same target).</characteristic>
</characteristics>
</profile>
<profile id="70e4-104c-a5c0-1275" name="Crimson Duellist" hidden="false" typeId="350c-2ddd-8a24-377b" typeName="Operative">
<characteristics>
<characteristic name="M" typeId="c36f-3952-a91d-5a06">3⬤</characteristic>
<characteristic name="APL" typeId="c84a-a042-6fe6-519b">2</characteristic>
<characteristic name="GA" typeId="7a85-5063-6d1a-2a0b">1</characteristic>
<characteristic name="DF" typeId="4a18-41c1-51f2-c88c">3</characteristic>
<characteristic name="SV" typeId="dd03-76d2-dda8-eca2">4+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">8</characteristic>
</characteristics>
</profile>
<profile id="729b-add2-7dc8-1826" name="*Flail" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">Each time this operative fights in combat with this weapon, in the Resolve Successful Hits step of that combat, each time it parries, two of your opponent's successful hits are discarded (instead of one).</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="ecc1-abeb-ddd8-813a" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
<categoryLink id="2528-ce54-ee56-7e8d" name="HAND OF THE ARCHON" hidden="false" targetId="adb1-b9cf-cacc-ce07" primary="false"/>
<categoryLink id="829b-69ca-2b87-40c4" name="Aeldari" hidden="false" targetId="c62e-f54d-e0bb-6940" primary="false"/>
<categoryLink id="8b66-5119-0c0c-c381" name="Drukhari" hidden="false" targetId="3612-cdd0-3712-f017" primary="false"/>
<categoryLink id="ac67-a774-a60d-9da2" name="Kabalite" hidden="false" targetId="3c1b-122e-530e-ccba" primary="false"/>
<categoryLink id="4643-b7f2-8c61-1fa7" name="Crimson Dueliist" hidden="false" targetId="ac90-6f24-e945-2920" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="1e83-6b48-1d55-fcda" name="Razorflail" 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="892f-7bbd-aeb0-3020" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2015-fc5b-7722-fa5c" type="max"/>
</constraints>
<profiles>
<profile id="7f7b-1b8b-8f04-e81b" name="⚔ Razorflail" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">2+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">4/5</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Brutal, Flail*</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="d06f-1c5c-408d-f5a1" name="Brutal" hidden="false" targetId="16e9-a975-03a1-91c0" type="rule"/>
</infoLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="ab5e-2d0c-14aa-edfe" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="3acf-5cd0-8224-a308" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
<entryLink id="eddc-d5fa-1e44-ddcc" name="Equipment" hidden="false" collective="false" import="true" targetId="1058-6976-2c54-d290" type="selectionEntryGroup"/>
<entryLink id="e30f-2d3c-ffd7-a8e4" name="Specialism" hidden="false" collective="false" import="true" targetId="41b0-7858-fded-5bff" type="selectionEntryGroup"/>
<entryLink id="e9a5-bd68-e4a8-a64b" name="Splinter pistol" hidden="false" collective="false" import="true" targetId="f778-6ee4-d0c6-b51c" type="selectionEntry"/>
<entryLink id="d8c2-c097-b3e7-5e01" name="Battle Honours - Combat" hidden="false" collective="false" import="true" targetId="ae2f-d9f3-a27c-cca6" type="selectionEntryGroup">
<entryLinks>
<entryLink id="586f-7aaa-4cf9-06a6" name="Hand 2 - Pain Artist" hidden="false" collective="false" import="true" targetId="22ff-2959-8364-9d9f" type="selectionEntry"/>
<entryLink id="4331-55a6-c886-0a43" name="Hand 3 - Shadow Hunter" hidden="false" collective="false" import="true" targetId="9bbe-1a94-b08a-5039" type="selectionEntry"/>
<entryLink id="de49-ffbc-67af-0653" name="Hand 4 - Spire Stalker" hidden="false" collective="false" import="true" targetId="e2af-255a-217d-d5d3" type="selectionEntry"/>
<entryLink id="1187-a182-a9d8-3daf" name="Hand 5 - Conniving" hidden="false" collective="false" import="true" targetId="45c4-0184-f46d-297a" type="selectionEntry"/>
<entryLink id="3c20-9c74-e858-35ba" name="Hand 6 - Patient Predator" hidden="false" collective="false" import="true" targetId="fb20-d21e-9963-92a5" type="selectionEntry"/>
<entryLink id="93a9-7e0f-fd4b-6cff" name="Hand 1 - Epicurean of Suffering" hidden="false" collective="false" import="true" targetId="9261-93fa-44d3-e9d3" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="8845-4bba-daf7-2b05" name="Battle Honours - Scout" hidden="false" collective="false" import="true" targetId="94bd-d409-fda3-9f9f" type="selectionEntryGroup">
<entryLinks>
<entryLink id="cda4-9127-30f9-2bf4" name="Hand 2 - Pain Artist" hidden="false" collective="false" import="true" targetId="22ff-2959-8364-9d9f" type="selectionEntry"/>
<entryLink id="1991-0a84-bd59-5da9" name="Hand 3 - Shadow Hunter" hidden="false" collective="false" import="true" targetId="9bbe-1a94-b08a-5039" type="selectionEntry"/>
<entryLink id="74f8-5bf0-7339-d08e" name="Hand 4 - Spire Stalker" hidden="false" collective="false" import="true" targetId="e2af-255a-217d-d5d3" type="selectionEntry"/>
<entryLink id="e77f-aa48-cc4c-6fbf" name="Hand 5 - Conniving" hidden="false" collective="false" import="true" targetId="45c4-0184-f46d-297a" type="selectionEntry"/>
<entryLink id="06d7-9d02-0e94-9b89" name="Hand 6 - Patient Predator" hidden="false" collective="false" import="true" targetId="fb20-d21e-9963-92a5" type="selectionEntry"/>
<entryLink id="7509-ff75-0ae1-b1e7" name="Hand 1 - Epicurean of Suffering" hidden="false" collective="false" import="true" targetId="9261-93fa-44d3-e9d3" type="selectionEntry"/>
</entryLinks>
</entryLink>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="6bac-bcae-e8b5-380c" name="Agent" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="74e7-9521-633b-9e6a" name="Agent" hidden="false" typeId="350c-2ddd-8a24-377b" typeName="Operative">
<characteristics>
<characteristic name="M" typeId="c36f-3952-a91d-5a06">3⬤</characteristic>
<characteristic name="APL" typeId="c84a-a042-6fe6-519b">2</characteristic>
<characteristic name="GA" typeId="7a85-5063-6d1a-2a0b">1</characteristic>
<characteristic name="DF" typeId="4a18-41c1-51f2-c88c">3</characteristic>
<characteristic name="SV" typeId="dd03-76d2-dda8-eca2">4+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">8</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="4bbe-b65c-b7e3-d60a" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
<categoryLink id="13a7-7220-97ca-a000" name="HAND OF THE ARCHON" hidden="false" targetId="adb1-b9cf-cacc-ce07" primary="false"/>
<categoryLink id="8a6f-d54d-5d77-f991" name="Aeldari" hidden="false" targetId="c62e-f54d-e0bb-6940" primary="false"/>
<categoryLink id="99ac-f1e7-dffa-3f10" name="Drukhari" hidden="false" targetId="3612-cdd0-3712-f017" primary="false"/>
<categoryLink id="f809-5f2d-ed57-c448" name="Kabalite" hidden="false" targetId="3c1b-122e-530e-ccba" primary="false"/>
<categoryLink id="3bb0-f6d0-5182-d48f" name="Agent" hidden="false" targetId="6114-751c-e942-ee3e" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="9653-b6ac-b755-74cb" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="2876-ac11-0fb5-39f9" name="Battle Honours - Marksman" hidden="false" collective="false" import="true" targetId="e84e-ae34-82a8-57b0" type="selectionEntryGroup">
<entryLinks>
<entryLink id="fb90-ae98-d2da-9054" name="Hand 2 - Pain Artist" hidden="false" collective="false" import="true" targetId="22ff-2959-8364-9d9f" type="selectionEntry"/>
<entryLink id="b9eb-57cd-74c4-5241" name="Hand 3 - Shadow Hunter" hidden="false" collective="false" import="true" targetId="9bbe-1a94-b08a-5039" type="selectionEntry"/>
<entryLink id="7a73-5327-cb2f-b6df" name="Hand 4 - Spire Stalker" hidden="false" collective="false" import="true" targetId="e2af-255a-217d-d5d3" type="selectionEntry"/>
<entryLink id="9e9c-0fbf-f4b7-7d45" name="Hand 5 - Conniving" hidden="false" collective="false" import="true" targetId="45c4-0184-f46d-297a" type="selectionEntry"/>
<entryLink id="2d92-58af-e0ae-8f63" name="Hand 6 - Patient Predator" hidden="false" collective="false" import="true" targetId="fb20-d21e-9963-92a5" type="selectionEntry"/>
<entryLink id="405b-a4a4-dbef-c5e5" name="Hand 1 - Epicurean of Suffering" hidden="false" collective="false" import="true" targetId="9261-93fa-44d3-e9d3" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="0c22-b8e3-9519-662c" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
<entryLink id="78e6-bbd2-0b55-bfc7" name="Equipment" hidden="false" collective="false" import="true" targetId="1058-6976-2c54-d290" type="selectionEntryGroup"/>
<entryLink id="23bd-c00b-e9ef-2de0" name="Specialism" hidden="false" collective="false" import="true" targetId="41b0-7858-fded-5bff" type="selectionEntryGroup"/>
<entryLink id="2d4b-0e0c-90bc-795e" name="Array of blades" hidden="false" collective="false" import="true" targetId="c50b-714b-0718-28e0" type="selectionEntry"/>
<entryLink id="6ad9-2061-7c97-d23b" name="Splinter rifle" hidden="false" collective="false" import="true" targetId="f6de-c8b0-5264-d328" type="selectionEntry"/>
<entryLink id="bdf1-777d-017a-90ed" name="Battle Honours - Scout" hidden="false" collective="false" import="true" targetId="94bd-d409-fda3-9f9f" type="selectionEntryGroup">
<entryLinks>
<entryLink id="3d25-fb37-0cc8-0080" name="Hand 2 - Pain Artist" hidden="false" collective="false" import="true" targetId="22ff-2959-8364-9d9f" type="selectionEntry"/>
<entryLink id="8569-7fbf-c552-e65a" name="Hand 3 - Shadow Hunter" hidden="false" collective="false" import="true" targetId="9bbe-1a94-b08a-5039" type="selectionEntry"/>
<entryLink id="1390-6822-445f-c2ef" name="Hand 4 - Spire Stalker" hidden="false" collective="false" import="true" targetId="e2af-255a-217d-d5d3" type="selectionEntry"/>
<entryLink id="078d-4b04-ef31-91af" name="Hand 5 - Conniving" hidden="false" collective="false" import="true" targetId="45c4-0184-f46d-297a" type="selectionEntry"/>
<entryLink id="ee92-9301-a973-9e04" name="Hand 6 - Patient Predator" hidden="false" collective="false" import="true" targetId="fb20-d21e-9963-92a5" type="selectionEntry"/>
<entryLink id="d75e-763b-0f99-1f2f" name="Hand 1 - Epicurean of Suffering" hidden="false" collective="false" import="true" targetId="9261-93fa-44d3-e9d3" type="selectionEntry"/>
</entryLinks>
</entryLink>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="3494-9a2d-0997-760c" name="Elixicant" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="1d2f-df79-af9b-25c2" name="Elixicant" hidden="false" typeId="350c-2ddd-8a24-377b" typeName="Operative">
<characteristics>
<characteristic name="M" typeId="c36f-3952-a91d-5a06">3⬤</characteristic>
<characteristic name="APL" typeId="c84a-a042-6fe6-519b">2</characteristic>
<characteristic name="GA" typeId="7a85-5063-6d1a-2a0b">1</characteristic>
<characteristic name="DF" typeId="4a18-41c1-51f2-c88c">3</characteristic>
<characteristic name="SV" typeId="dd03-76d2-dda8-eca2">4+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">8</characteristic>
</characteristics>
</profile>
<profile id="36aa-eca4-ce61-a15b" name="Combat Drugs" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">If this operative is selected for deployment, select one of the following abilities for friendly HAND OF THE ARCHON operatives to gain until the end of the battle:
- Painbringer: Each time this operative would lose a wound as a result of an attack dice that inflicts damage, roll one D6: on a 6, that wound is not lost.
- Hypex: Add ▲ to this operative's Movement characteristic.
This operative cannot perform this action while within Engagement Range of an enemy operative.</characteristic>
</characteristics>
</profile>
<profile id="7470-699d-3698-9ce5" name="Administer Drug (1AP)" hidden="false" typeId="17cd-eb4c-f9cd-36f2" typeName="Unique Actions">
<characteristics>
<characteristic name="Unique Action" typeId="8d9f-0a91-4133-bc4a">Select one friendly HAND OF THE ARCHON operative Visible to and within ⬛ of this operative.
Then select one of the following:
- That operative regains D3+1 lost wounds.
- Select a different Combat Drugs ability for that operative to gain until the end of the battle (this replaces its previous Combat Drugs ability).
This operative cannot perform this action while within Engagement Range of an enemy operative.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="164c-2739-45e5-374e" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
<categoryLink id="8ea1-5407-1c19-170e" name="HAND OF THE ARCHON" hidden="false" targetId="adb1-b9cf-cacc-ce07" primary="false"/>
<categoryLink id="8999-f99e-49a4-4c25" name="Aeldari" hidden="false" targetId="c62e-f54d-e0bb-6940" primary="false"/>
<categoryLink id="a2f6-d027-87c8-f8c0" name="Drukhari" hidden="false" targetId="3612-cdd0-3712-f017" primary="false"/>
<categoryLink id="8939-641b-3aaf-98e9" name="Kabalite" hidden="false" targetId="3c1b-122e-530e-ccba" primary="false"/>
<categoryLink id="678b-7a75-8a7d-8532" name="Elixicant" hidden="false" targetId="672c-4823-00ae-6f2f" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="1aae-6abf-584e-d931" name="Stimm-needler" 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="bcff-ba69-3e28-d735" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0ec5-0aeb-2fba-fb30" type="max"/>
</constraints>
<profiles>
<profile id="4925-55df-c7f7-0103" name="⌖ Stimm-needler" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">3+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">0/0</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Rng ⬛, Lethal 3+</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">Stun</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="dfda-e3be-29de-3547" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="2023-acfd-423f-0e7c" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
<entryLink id="70ca-35ae-c830-b851" name="Equipment" hidden="false" collective="false" import="true" targetId="1058-6976-2c54-d290" type="selectionEntryGroup"/>
<entryLink id="5cce-0b8b-9b33-c479" name="Specialism" hidden="false" collective="false" import="true" targetId="41b0-7858-fded-5bff" type="selectionEntryGroup"/>
<entryLink id="3d32-df52-0a9d-563c" name="Array of blades" hidden="false" collective="false" import="true" targetId="c50b-714b-0718-28e0" type="selectionEntry"/>
<entryLink id="e6ea-d0e0-fd7b-dd51" name="Splinter rifle" hidden="false" collective="false" import="true" targetId="f6de-c8b0-5264-d328" type="selectionEntry"/>
<entryLink id="ed32-fa0a-f4b8-6a12" name="Battle Honours - Marksman" hidden="false" collective="false" import="true" targetId="e84e-ae34-82a8-57b0" type="selectionEntryGroup">
<entryLinks>
<entryLink id="f8fc-9d49-d48e-d87c" name="Hand 2 - Pain Artist" hidden="false" collective="false" import="true" targetId="22ff-2959-8364-9d9f" type="selectionEntry"/>
<entryLink id="de21-4fdb-853e-14aa" name="Hand 3 - Shadow Hunter" hidden="false" collective="false" import="true" targetId="9bbe-1a94-b08a-5039" type="selectionEntry"/>
<entryLink id="34ef-d520-b61a-f5e7" name="Hand 4 - Spire Stalker" hidden="false" collective="false" import="true" targetId="e2af-255a-217d-d5d3" type="selectionEntry"/>
<entryLink id="c208-e9e5-7adf-ed5b" name="Hand 5 - Conniving" hidden="false" collective="false" import="true" targetId="45c4-0184-f46d-297a" type="selectionEntry"/>
<entryLink id="81ed-8465-ca30-a69f" name="Hand 6 - Patient Predator" hidden="false" collective="false" import="true" targetId="fb20-d21e-9963-92a5" type="selectionEntry"/>
<entryLink id="e658-d346-09c2-cac3" name="Hand 1 - Epicurean of Suffering" hidden="false" collective="false" import="true" targetId="9261-93fa-44d3-e9d3" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="ec38-5a86-c536-6dc0" name="Battle Honours - Staunch" hidden="false" collective="false" import="true" targetId="93ec-2874-675e-b46e" type="selectionEntryGroup">
<entryLinks>
<entryLink id="dff7-494f-f21b-64fd" name="Hand 2 - Pain Artist" hidden="false" collective="false" import="true" targetId="22ff-2959-8364-9d9f" type="selectionEntry"/>
<entryLink id="93f2-00d6-dd14-7bbb" name="Hand 3 - Shadow Hunter" hidden="false" collective="false" import="true" targetId="9bbe-1a94-b08a-5039" type="selectionEntry"/>
<entryLink id="b97a-30ba-7b85-e885" name="Hand 4 - Spire Stalker" hidden="false" collective="false" import="true" targetId="e2af-255a-217d-d5d3" type="selectionEntry"/>
<entryLink id="eb0b-fbb0-a723-8951" name="Hand 5 - Conniving" hidden="false" collective="false" import="true" targetId="45c4-0184-f46d-297a" type="selectionEntry"/>
<entryLink id="ad90-3d1f-1701-c31d" name="Hand 6 - Patient Predator" hidden="false" collective="false" import="true" targetId="fb20-d21e-9963-92a5" type="selectionEntry"/>
<entryLink id="5a0a-60a5-691d-b184" name="Hand 1 - Epicurean of Suffering" hidden="false" collective="false" import="true" targetId="9261-93fa-44d3-e9d3" type="selectionEntry"/>
</entryLinks>
</entryLink>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="79cf-c02e-9f37-82d7" name="Flayer" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="b4e2-8836-997f-d2b9" name="Flayer" hidden="false" typeId="350c-2ddd-8a24-377b" typeName="Operative">
<characteristics>
<characteristic name="M" typeId="c36f-3952-a91d-5a06">3⬤</characteristic>
<characteristic name="APL" typeId="c84a-a042-6fe6-519b">2</characteristic>
<characteristic name="GA" typeId="7a85-5063-6d1a-2a0b">1</characteristic>
<characteristic name="DF" typeId="4a18-41c1-51f2-c88c">3</characteristic>
<characteristic name="SV" typeId="dd03-76d2-dda8-eca2">4+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">8</characteristic>
</characteristics>
</profile>
<profile id="9427-42b4-02f2-025d" name="Insensible to Pain" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">Each time this operative fights in combat or a shooting attack is made against it, subtract 1 from both Damage characteristics of weapons the enemy operative is equipped with for that combat or shooting attack (to a minimum of 1).</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="813e-971b-7366-a705" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
<categoryLink id="0cd6-b253-5e56-a5df" name="HAND OF THE ARCHON" hidden="false" targetId="adb1-b9cf-cacc-ce07" primary="false"/>
<categoryLink id="eba2-3cc2-fa07-9e39" name="Aeldari" hidden="false" targetId="c62e-f54d-e0bb-6940" primary="false"/>
<categoryLink id="71c0-ec5a-13e1-9ea1" name="Drukhari" hidden="false" targetId="3612-cdd0-3712-f017" primary="false"/>
<categoryLink id="fc4c-3aaf-958b-6b84" name="Kabalite" hidden="false" targetId="3c1b-122e-530e-ccba" primary="false"/>
<categoryLink id="6440-bcd7-22cc-dc62" name="Flayer" hidden="false" targetId="fc14-0d72-4b8f-3818" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="a2ff-3c14-55f5-eef6" name="Pain sculptors" 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="f1c8-b6c9-4c39-4416" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6c70-5a69-d1bb-1bf5" type="max"/>
</constraints>
<profiles>
<profile id="831f-a72a-8907-3f6d" name="⚔ Pain sculptors" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">3+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">3/5</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Relentless</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">Flay*</characteristic>
</characteristics>
</profile>
<profile id="7816-82bf-14ff-95a2" name="*Flay" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">Each time this operative fights in combat with this weapon, in the Resolve Successful Hits step of that combat, the first time it strikes with a critical hit, you can select one friendly HAND OF THE ARCHON operative within ⬟ of this operative to gain 1 Pain token.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="0cee-26d1-ee8a-bca9" name="Relentless" hidden="false" targetId="1875-9b07-2a07-aacc" type="rule"/>
</infoLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="eb0e-3946-5d41-822e" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="7e79-06c2-963f-6186" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
<entryLink id="3eb3-0c2c-d069-6e1a" name="Equipment" hidden="false" collective="false" import="true" targetId="1058-6976-2c54-d290" type="selectionEntryGroup"/>
<entryLink id="5f98-e7a4-0b45-fbdc" name="Specialism" hidden="false" collective="false" import="true" targetId="41b0-7858-fded-5bff" type="selectionEntryGroup"/>
<entryLink id="0faf-c4dd-81a0-e3c9" name="Battle Honours - Combat" hidden="false" collective="false" import="true" targetId="ae2f-d9f3-a27c-cca6" type="selectionEntryGroup">
<entryLinks>
<entryLink id="c452-7e24-febf-c2ce" name="Hand 2 - Pain Artist" hidden="false" collective="false" import="true" targetId="22ff-2959-8364-9d9f" type="selectionEntry"/>
<entryLink id="7c4a-8200-ab49-f72c" name="Hand 3 - Shadow Hunter" hidden="false" collective="false" import="true" targetId="9bbe-1a94-b08a-5039" type="selectionEntry"/>
<entryLink id="0fd3-fb2e-332c-93ec" name="Hand 4 - Spire Stalker" hidden="false" collective="false" import="true" targetId="e2af-255a-217d-d5d3" type="selectionEntry"/>
<entryLink id="8923-4ee0-f61a-41db" name="Hand 5 - Conniving" hidden="false" collective="false" import="true" targetId="45c4-0184-f46d-297a" type="selectionEntry"/>
<entryLink id="a741-6801-9232-450f" name="Hand 6 - Patient Predator" hidden="false" collective="false" import="true" targetId="fb20-d21e-9963-92a5" type="selectionEntry"/>
<entryLink id="f573-4381-9c57-9a7d" name="Hand 1 - Epicurean of Suffering" hidden="false" collective="false" import="true" targetId="9261-93fa-44d3-e9d3" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="e957-b2de-42ff-fa4f" name="Battle Honours - Staunch" hidden="false" collective="false" import="true" targetId="93ec-2874-675e-b46e" type="selectionEntryGroup">
<entryLinks>
<entryLink id="c8fd-76f6-2bf2-adc6" name="Hand 2 - Pain Artist" hidden="false" collective="false" import="true" targetId="22ff-2959-8364-9d9f" type="selectionEntry"/>
<entryLink id="9ab3-7647-72f7-889d" name="Hand 3 - Shadow Hunter" hidden="false" collective="false" import="true" targetId="9bbe-1a94-b08a-5039" type="selectionEntry"/>
<entryLink id="e858-0e41-100c-269b" name="Hand 4 - Spire Stalker" hidden="false" collective="false" import="true" targetId="e2af-255a-217d-d5d3" type="selectionEntry"/>
<entryLink id="bb47-a055-34a4-c2a2" name="Hand 5 - Conniving" hidden="false" collective="false" import="true" targetId="45c4-0184-f46d-297a" type="selectionEntry"/>
<entryLink id="63f2-307c-1203-8cf5" name="Hand 6 - Patient Predator" hidden="false" collective="false" import="true" targetId="fb20-d21e-9963-92a5" type="selectionEntry"/>
<entryLink id="9384-8511-7bfe-8f42" name="Hand 1 - Epicurean of Suffering" hidden="false" collective="false" import="true" targetId="9261-93fa-44d3-e9d3" type="selectionEntry"/>
</entryLinks>
</entryLink>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="0dfc-1eb3-23ac-048e" name="Gunner" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="6de3-6842-d530-53a3" name="Gunner" hidden="false" typeId="350c-2ddd-8a24-377b" typeName="Operative">
<characteristics>
<characteristic name="M" typeId="c36f-3952-a91d-5a06">3⬤</characteristic>
<characteristic name="APL" typeId="c84a-a042-6fe6-519b">2</characteristic>
<characteristic name="GA" typeId="7a85-5063-6d1a-2a0b">1</characteristic>
<characteristic name="DF" typeId="4a18-41c1-51f2-c88c">3</characteristic>
<characteristic name="SV" typeId="dd03-76d2-dda8-eca2">4+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">8</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="8d47-1495-9ff8-99db" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
<categoryLink id="7a29-320e-e0c2-50f8" name="HAND OF THE ARCHON" hidden="false" targetId="adb1-b9cf-cacc-ce07" primary="false"/>
<categoryLink id="3251-9186-4a9c-4081" name="Aeldari" hidden="false" targetId="c62e-f54d-e0bb-6940" primary="false"/>
<categoryLink id="ea6a-17e3-c631-672a" name="Drukhari" hidden="false" targetId="3612-cdd0-3712-f017" primary="false"/>
<categoryLink id="41f1-a0a1-0b39-5871" name="Kabalite" hidden="false" targetId="3c1b-122e-530e-ccba" primary="false"/>
<categoryLink id="6dcd-44c3-9626-8cba" name="Gunner" hidden="false" targetId="ee8c-cc44-acc3-40f0" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="dae6-ba3a-b243-6acb" name="Weapon" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8d0d-9133-b9e4-25ba" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e9b8-f02a-e0d7-00fe" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="751f-b491-114e-d357" name="Blaster" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="ed3c-2779-ef91-b6e5" name="⌖ Blaster" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">3+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">5/6</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">AP2</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="3302-36fc-7431-789c" name="APx" hidden="false" targetId="db98-339e-d0a2-e042" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="1d55-40eb-2162-c1ef" name="Darklight Weapon" hidden="false" targetId="ccc8-173b-4f9f-9a22" primary="false"/>
</categoryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="16f4-2cca-f446-2f13" name="Shredder" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="3b46-73ec-ac4c-8e11" name="⌖ Shredder" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">5</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">3+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">3/4</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Blast ⬤</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">Rending</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="bb37-2a59-e8a8-15bb" name="Blast x" hidden="false" targetId="d848-be09-6d6d-4708" type="rule"/>
<infoLink id="6af2-8dca-531b-fbce" name="Rending" hidden="false" targetId="0550-3332-7a93-ab5b" type="rule"/>
</infoLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="e00f-c143-4419-84c4" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="8cf2-fd8e-ce29-c4bc" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
<entryLink id="a0c6-283c-f8d1-e495" name="Equipment" hidden="false" collective="false" import="true" targetId="1058-6976-2c54-d290" type="selectionEntryGroup"/>
<entryLink id="8693-0d07-67d3-c64d" name="Specialism" hidden="false" collective="false" import="true" targetId="41b0-7858-fded-5bff" type="selectionEntryGroup"/>
<entryLink id="dc8c-bd92-f023-6bd1" name="Array of blades" hidden="false" collective="false" import="true" targetId="c50b-714b-0718-28e0" type="selectionEntry"/>
<entryLink id="2e9c-ee48-94f4-ae5f" name="Battle Honours - Marksman" hidden="false" collective="false" import="true" targetId="e84e-ae34-82a8-57b0" type="selectionEntryGroup">
<entryLinks>
<entryLink id="68a8-07e9-0e82-b7a8" name="Hand 2 - Pain Artist" hidden="false" collective="false" import="true" targetId="22ff-2959-8364-9d9f" type="selectionEntry"/>
<entryLink id="f7a4-28bf-0fb8-2b08" name="Hand 3 - Shadow Hunter" hidden="false" collective="false" import="true" targetId="9bbe-1a94-b08a-5039" type="selectionEntry"/>
<entryLink id="0ad7-2aa7-d2d7-6722" name="Hand 4 - Spire Stalker" hidden="false" collective="false" import="true" targetId="e2af-255a-217d-d5d3" type="selectionEntry"/>
<entryLink id="9bcc-0a7b-f2c6-52d7" name="Hand 5 - Conniving" hidden="false" collective="false" import="true" targetId="45c4-0184-f46d-297a" type="selectionEntry"/>
<entryLink id="5af5-fa90-e8f3-ab28" name="Hand 6 - Patient Predator" hidden="false" collective="false" import="true" targetId="fb20-d21e-9963-92a5" type="selectionEntry"/>
<entryLink id="ffa6-b361-b891-d5fb" name="Hand 1 - Epicurean of Suffering" hidden="false" collective="false" import="true" targetId="9261-93fa-44d3-e9d3" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="f955-867e-58ff-de52" name="Battle Honours - Scout" hidden="false" collective="false" import="true" targetId="94bd-d409-fda3-9f9f" type="selectionEntryGroup">
<entryLinks>
<entryLink id="2d1c-4e3b-5833-ece0" name="Hand 2 - Pain Artist" hidden="false" collective="false" import="true" targetId="22ff-2959-8364-9d9f" type="selectionEntry"/>
<entryLink id="89bd-432e-f476-cd28" name="Hand 3 - Shadow Hunter" hidden="false" collective="false" import="true" targetId="9bbe-1a94-b08a-5039" type="selectionEntry"/>
<entryLink id="3d36-e56a-b387-8385" name="Hand 4 - Spire Stalker" hidden="false" collective="false" import="true" targetId="e2af-255a-217d-d5d3" type="selectionEntry"/>
<entryLink id="5c5d-0510-3a33-8ff8" name="Hand 5 - Conniving" hidden="false" collective="false" import="true" targetId="45c4-0184-f46d-297a" type="selectionEntry"/>
<entryLink id="ee5e-f221-e310-a493" name="Hand 6 - Patient Predator" hidden="false" collective="false" import="true" targetId="fb20-d21e-9963-92a5" type="selectionEntry"/>
<entryLink id="d6a6-8144-ab70-8930" name="Hand 1 - Epicurean of Suffering" hidden="false" collective="false" import="true" targetId="9261-93fa-44d3-e9d3" type="selectionEntry"/>
</entryLinks>
</entryLink>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="8010-44ec-835c-fd8a" name="Heavy Gunner" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="164d-964a-a1b5-36f5" name="Heavy Gunner" hidden="false" typeId="350c-2ddd-8a24-377b" typeName="Operative">
<characteristics>
<characteristic name="M" typeId="c36f-3952-a91d-5a06">3⬤</characteristic>
<characteristic name="APL" typeId="c84a-a042-6fe6-519b">2</characteristic>
<characteristic name="GA" typeId="7a85-5063-6d1a-2a0b">1</characteristic>
<characteristic name="DF" typeId="4a18-41c1-51f2-c88c">3</characteristic>
<characteristic name="SV" typeId="dd03-76d2-dda8-eca2">4+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">8</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="83d8-d904-5efc-9f81" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
<categoryLink id="2705-bc63-6cdd-a84a" name="HAND OF THE ARCHON" hidden="false" targetId="adb1-b9cf-cacc-ce07" primary="false"/>
<categoryLink id="adfe-65e3-1ccd-118a" name="Aeldari" hidden="false" targetId="c62e-f54d-e0bb-6940" primary="false"/>
<categoryLink id="a2fc-25e4-264d-b675" name="Drukhari" hidden="false" targetId="3612-cdd0-3712-f017" primary="false"/>
<categoryLink id="34fd-9b56-949f-0fb1" name="Kabalite" hidden="false" targetId="3c1b-122e-530e-ccba" primary="false"/>
<categoryLink id="2c1f-3a45-f22f-7f86" name="Heavy Gunner" hidden="false" targetId="0e59-07ae-65c2-2de6" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="01e3-cb64-1d1b-3bdb" name="Weapon" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="eed2-3d59-630e-7fa8" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d595-2ab2-1734-a10d" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="02a0-103d-c700-2126" name="Dark lance" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="fcc7-0704-79f9-5ae9" name="⌖ Dark lance" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">3+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">6/7</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">AP2, Heavy, Unwieldy</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="01a3-3b1d-694a-cdbb" name="Heavy" hidden="false" targetId="1e77-6974-cf90-6008" type="rule"/>
<infoLink id="8c53-b1f1-4a6b-75f0" name="APx" hidden="false" targetId="db98-339e-d0a2-e042" type="rule"/>
<infoLink id="d0c3-cb9c-e8c5-21d6" name="Unwieldy" hidden="false" targetId="b30a-9fa8-7a06-ce70" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="fdbd-831e-a9e2-b762" name="Darklight Weapon" hidden="false" targetId="ccc8-173b-4f9f-9a22" primary="false"/>
</categoryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="f64d-ed7d-dbbd-95c8" name="Splinter cannon" hidden="false" collective="false" import="true" targetId="3694-87f2-2178-61ff" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="0200-98a8-1775-bba6" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="9937-2bf8-9cfd-1ff1" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
<entryLink id="f597-438c-fa73-622f" name="Equipment" hidden="false" collective="false" import="true" targetId="1058-6976-2c54-d290" type="selectionEntryGroup"/>
<entryLink id="1b04-f068-be9c-b166" name="Specialism" hidden="false" collective="false" import="true" targetId="41b0-7858-fded-5bff" type="selectionEntryGroup"/>
<entryLink id="1e5a-7751-a664-2cbd" name="Array of blades" hidden="false" collective="false" import="true" targetId="c50b-714b-0718-28e0" type="selectionEntry"/>
<entryLink id="c6b3-cffc-7337-d8c5" name="Battle Honours - Marksman" hidden="false" collective="false" import="true" targetId="e84e-ae34-82a8-57b0" type="selectionEntryGroup">
<entryLinks>
<entryLink id="aa2a-19a6-04e4-b3e8" name="Hand 2 - Pain Artist" hidden="false" collective="false" import="true" targetId="22ff-2959-8364-9d9f" type="selectionEntry"/>
<entryLink id="4930-f4e8-bfcf-6f6c" name="Hand 3 - Shadow Hunter" hidden="false" collective="false" import="true" targetId="9bbe-1a94-b08a-5039" type="selectionEntry"/>
<entryLink id="c2f2-9209-3c88-7289" name="Hand 4 - Spire Stalker" hidden="false" collective="false" import="true" targetId="e2af-255a-217d-d5d3" type="selectionEntry"/>
<entryLink id="13bb-0ba7-9be7-ad2c" name="Hand 5 - Conniving" hidden="false" collective="false" import="true" targetId="45c4-0184-f46d-297a" type="selectionEntry"/>
<entryLink id="d9ee-2efe-f9b4-59cf" name="Hand 6 - Patient Predator" hidden="false" collective="false" import="true" targetId="fb20-d21e-9963-92a5" type="selectionEntry"/>
<entryLink id="b355-d56f-5d4f-ae3a" name="Hand 1 - Epicurean of Suffering" hidden="false" collective="false" import="true" targetId="9261-93fa-44d3-e9d3" type="selectionEntry"/>
</entryLinks>
</entryLink>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="6e65-5128-bc5b-6d5a" name="Skysplinter Assassin" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="c9ef-66b5-0ad7-914b" name="Skysplinter Assassin" hidden="false" typeId="350c-2ddd-8a24-377b" typeName="Operative">
<characteristics>
<characteristic name="M" typeId="c36f-3952-a91d-5a06">3⬤</characteristic>
<characteristic name="APL" typeId="c84a-a042-6fe6-519b">2</characteristic>
<characteristic name="GA" typeId="7a85-5063-6d1a-2a0b">1</characteristic>
<characteristic name="DF" typeId="4a18-41c1-51f2-c88c">3</characteristic>
<characteristic name="SV" typeId="dd03-76d2-dda8-eca2">4+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">8</characteristic>
</characteristics>
</profile>
<profile id="95a5-35b9-99e7-b97c" name="Omen" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">In the Select Equipment step, you can select one enemy operative or one other friendly HAND OF THE ARCHON operative (reveal your selection when you reveal equipment). Each time attack or defence dice are rolled for that operative:
• If it is an enemy operative, your opponent must re-roll dice results of 6.
• If it is a friendly operative, you can re-roll dice results of 1.</characteristic>
</characteristics>
</profile>
<profile id="586a-20da-2f44-bd91" name="Hunter" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">So long as this operative does not perform a Mark action during its activation, it can perform two Shoot actions during its activation if a razorwing is selected for one (and only one) of those shooting attacks.</characteristic>
</characteristics>
</profile>
<profile id="c86f-4ca2-59da-397d" name="Mark (1AP)" hidden="false" typeId="17cd-eb4c-f9cd-36f2" typeName="Unique Actions">
<characteristics>
<characteristic name="Unique Action" typeId="8d9f-0a91-4133-bc4a">Select one enemy operative Visible to this operative that is not more than ⬤ higher than them. Until the end of the Turning Point, while that enemy operative is not in Cover from Heavy terrain, this operative treats it as having an Engage order. This operative cannot perform this action while within Engagement Range of an enemy operative, or in an activation in which it makes a shooting attack with a razorwing.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="e7c2-09ae-6c98-efdf" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
<categoryLink id="f2b5-c27b-a8ee-e2ea" name="HAND OF THE ARCHON" hidden="false" targetId="adb1-b9cf-cacc-ce07" primary="false"/>
<categoryLink id="2e76-a981-13be-bc7e" name="Aeldari" hidden="false" targetId="c62e-f54d-e0bb-6940" primary="false"/>
<categoryLink id="ccb6-1324-26f1-38f1" name="Drukhari" hidden="false" targetId="3612-cdd0-3712-f017" primary="false"/>
<categoryLink id="4d3d-cb7b-b7e4-0cf3" name="Kabalite" hidden="false" targetId="3c1b-122e-530e-ccba" primary="false"/>
<categoryLink id="449a-841a-4145-41be" name="Skysplinter Assassin" hidden="false" targetId="b365-3f7b-fff2-2b17" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="9151-97b9-c223-33bd" name="Razorwing" 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="824a-2c37-54f1-9b5c" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4411-4faf-9c38-7d71" type="max"/>
</constraints>
<profiles>
<profile id="2cce-5417-c046-f4f0" name="⌖ Razorwing" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">5</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">4+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">1/2</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Indirect, No Cover, Silent</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="d9ad-053f-76b9-ecb7" name="Indirect" hidden="false" targetId="653d-16a5-eefb-8b71" type="rule"/>
<infoLink id="fecd-7848-912d-f168" name="Silent" hidden="false" targetId="ce60-8109-69c9-3908" type="rule"/>
<infoLink id="d2c3-3ede-40c5-3289" name="No Cover" hidden="false" targetId="c091-97f7-8640-5e56" type="rule"/>
</infoLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="efa1-c758-f2e7-2f97" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="8c59-dea3-c731-ec5a" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
<entryLink id="bc5e-33fa-c779-3211" name="Equipment" hidden="false" collective="false" import="true" targetId="1058-6976-2c54-d290" type="selectionEntryGroup"/>
<entryLink id="2581-fb2d-6c00-05be" name="Specialism" hidden="false" collective="false" import="true" targetId="41b0-7858-fded-5bff" type="selectionEntryGroup"/>
<entryLink id="00d8-7536-5590-cf5a" name="Array of blades" hidden="false" collective="false" import="true" targetId="c50b-714b-0718-28e0" type="selectionEntry"/>
<entryLink id="c370-a8dd-7a8e-0889" name="Battle Honours - Marksman" hidden="false" collective="false" import="true" targetId="e84e-ae34-82a8-57b0" type="selectionEntryGroup">
<entryLinks>
<entryLink id="9b09-0562-3463-61af" name="Hand 2 - Pain Artist" hidden="false" collective="false" import="true" targetId="22ff-2959-8364-9d9f" type="selectionEntry"/>
<entryLink id="e4db-4fd1-7f0e-f8d9" name="Hand 3 - Shadow Hunter" hidden="false" collective="false" import="true" targetId="9bbe-1a94-b08a-5039" type="selectionEntry"/>
<entryLink id="f14d-1ee9-71fe-63cf" name="Hand 4 - Spire Stalker" hidden="false" collective="false" import="true" targetId="e2af-255a-217d-d5d3" type="selectionEntry"/>
<entryLink id="b7e5-b82b-deff-5bda" name="Hand 5 - Conniving" hidden="false" collective="false" import="true" targetId="45c4-0184-f46d-297a" type="selectionEntry"/>
<entryLink id="d6fd-be2c-fea6-a53a" name="Hand 6 - Patient Predator" hidden="false" collective="false" import="true" targetId="fb20-d21e-9963-92a5" type="selectionEntry"/>
<entryLink id="e529-4847-e5d1-7ce1" name="Hand 1 - Epicurean of Suffering" hidden="false" collective="false" import="true" targetId="9261-93fa-44d3-e9d3" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="6217-982c-cf51-bd7b" name="Battle Honours - Scout" hidden="false" collective="false" import="true" targetId="94bd-d409-fda3-9f9f" type="selectionEntryGroup">
<entryLinks>
<entryLink id="4ae4-0baa-6c16-ddce" name="Hand 2 - Pain Artist" hidden="false" collective="false" import="true" targetId="22ff-2959-8364-9d9f" type="selectionEntry"/>
<entryLink id="c5e1-ee4a-955c-7f6a" name="Hand 3 - Shadow Hunter" hidden="false" collective="false" import="true" targetId="9bbe-1a94-b08a-5039" type="selectionEntry"/>
<entryLink id="3809-4148-ec0a-3a1e" name="Hand 4 - Spire Stalker" hidden="false" collective="false" import="true" targetId="e2af-255a-217d-d5d3" type="selectionEntry"/>
<entryLink id="092d-2725-408c-e644" name="Hand 5 - Conniving" hidden="false" collective="false" import="true" targetId="45c4-0184-f46d-297a" type="selectionEntry"/>
<entryLink id="3f21-34fe-7b75-e2ae" name="Hand 6 - Patient Predator" hidden="false" collective="false" import="true" targetId="fb20-d21e-9963-92a5" type="selectionEntry"/>
<entryLink id="3ad6-bd31-2b36-ba88" name="Hand 1 - Epicurean of Suffering" hidden="false" collective="false" import="true" targetId="9261-93fa-44d3-e9d3" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="1423-4925-ff57-991d" name="Shardcarbine" hidden="false" collective="false" import="true" targetId="ce66-3cfa-193f-bd9a" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<sharedSelectionEntries>
<selectionEntry id="f778-6ee4-d0c6-b51c" name="Splinter pistol" 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="ea0a-82d7-7940-08f2" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9e2f-763b-0429-439f" type="min"/>
</constraints>
<profiles>
<profile id="2a06-3bbb-b6b4-ea47" name="⌖ Splinter pistol" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<modifiers>
<modifier type="set" field="32b4-9a0e-e740-6031" value="2+">
<conditions>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="9015-e26c-4823-d09a" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>