-
Notifications
You must be signed in to change notification settings - Fork 92
/
2021 - Legionary.cat
2127 lines (2127 loc) · 173 KB
/
2021 - Legionary.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="684b-8f50-cf10-b4d1" name="Legionary" revision="5" battleScribeVersion="2.03" library="false" gameSystemId="3b7e-7dab-f79f-2e74" gameSystemRevision="3" xmlns="http://www.battlescribe.net/schema/catalogueSchema" type="catalogue">
<categoryEntries>
<categoryEntry id="09a8-4f6a-15c1-6bcc" name="Khorne" hidden="false"/>
<categoryEntry id="b3e4-8842-b1f5-fc43" name="Nurgle" hidden="false"/>
<categoryEntry id="13ce-9746-4b17-840b" name="Slaanesh" hidden="false"/>
<categoryEntry id="6d44-f552-1417-1392" name="Tzeentch" hidden="false"/>
<categoryEntry id="6581-ced6-557e-7957" name="Undivided" hidden="false"/>
<categoryEntry id="baa0-a8a2-0f27-9714" name="LEGIONARY" hidden="false"/>
<categoryEntry id="801f-cd1d-2579-92e3" name="Heretic Astartes" hidden="false"/>
<categoryEntry id="2f59-a686-c78b-d960" name="Legionary Warrior" hidden="false"/>
<categoryEntry id="c290-c2e1-8aae-f1bc" name="Legionary Gunner" hidden="false"/>
<categoryEntry id="033b-5d3f-9ecb-c29a" name="Legionary Heavy Gunner" hidden="false"/>
<categoryEntry id="09c0-4734-8c8c-eb0c" name="Legionary Icon Bearer" hidden="false"/>
<categoryEntry id="c56e-40d7-d50f-75c6" name="Legionary Anointed" hidden="false"/>
<categoryEntry id="b46b-359f-0477-cc44" name="Legionary Butcher" hidden="false"/>
<categoryEntry id="c1b6-ab8c-7e9c-82eb" name="Legionary Balefire Acolyte" hidden="false"/>
<categoryEntry id="1fef-98f0-7c36-e8d0" name="Legionary Shrivetalon" hidden="false"/>
<categoryEntry id="886c-5520-590f-9bdb" name="Legionary Chosen" hidden="false"/>
<categoryEntry id="4470-d701-9696-3bb0" name="Legionary Aspiring Champion" hidden="false"/>
</categoryEntries>
<forceEntries>
<forceEntry id="74f3-96ef-4e21-ff39" name="Legionary Kill Team" hidden="false">
<categoryLinks>
<categoryLink id="64de-3d04-3e8e-4496" name="Configuration" hidden="false" targetId="fb89-efb1-54e4-59c5" primary="false"/>
<categoryLink id="cc44-1fd1-c2b2-cfb6" name="Reference" hidden="false" targetId="322e-38ea-bf3e-c785" primary="false"/>
<categoryLink id="f5d8-d9c0-f949-c2da" name="Leader" hidden="false" targetId="3198-c1ce-dfd0-fb4f" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="3ddf-d0a6-5388-c745" type="min"/>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="35a7-0bb8-6e2f-b172" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="4dc9-7e47-e8fa-1876" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="false">
<constraints>
<constraint field="selections" scope="force" value="5" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="d2d6-dcb5-d3a8-0b3e" type="max"/>
<constraint field="selections" scope="parent" value="5" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f563-82b1-270b-e1e1" type="min"/>
</constraints>
</categoryLink>
<categoryLink id="d2b7-3453-83a4-002a" name="Legionary Heavy Gunner" hidden="false" targetId="033b-5d3f-9ecb-c29a" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4dcf-20a9-358b-4817" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="3d70-4e05-7068-942d" name="Legionary Icon Bearer" hidden="false" targetId="09c0-4734-8c8c-eb0c" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a0e6-9688-5bac-8e58" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="474f-fee9-b4ab-6c26" name="Legionary Shrivetalon" hidden="false" targetId="1fef-98f0-7c36-e8d0" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="113f-2b86-eaa5-9de1" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="2862-0d17-f4c4-9439" name="Legionary Anointed" hidden="false" targetId="c56e-40d7-d50f-75c6" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6b56-a4a6-ea49-34e4" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="4ef9-8c3b-eb9b-c7ab" name="Legionary Balefire Acolyte" hidden="false" targetId="c1b6-ab8c-7e9c-82eb" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5a9a-5a32-d7c2-604a" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="893a-076f-2e2f-666d" name="Legionary Butcher" hidden="false" targetId="b46b-359f-0477-cc44" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5262-ee5a-bde7-7844" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="f070-5837-da81-9dce" name="Legionary Gunner" hidden="false" targetId="c290-c2e1-8aae-f1bc" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e3c1-9a3b-89e0-7f82" type="max"/>
</constraints>
</categoryLink>
</categoryLinks>
</forceEntry>
</forceEntries>
<entryLinks>
<entryLink id="612a-99dc-dcfb-fa62" name="Warrior" hidden="false" collective="false" import="true" targetId="12bb-26d8-31fa-f62d" type="selectionEntry"/>
<entryLink id="bf36-55d8-955d-3608" name="Gunner" hidden="false" collective="false" import="true" targetId="6c43-8ade-91fe-e33c" type="selectionEntry"/>
<entryLink id="7aa9-ed71-156b-d1f9" name="Heavy Gunner" hidden="false" collective="false" import="true" targetId="caa0-b359-d3d0-50f0" type="selectionEntry"/>
<entryLink id="382b-d385-9da6-f826" name="Anointed" hidden="false" collective="false" import="true" targetId="67e8-2a30-2ea8-f64f" type="selectionEntry"/>
<entryLink id="3c4b-dd8e-576d-a2ab" name="Butcher" hidden="false" collective="false" import="true" targetId="5be4-b416-3f03-6f2c" type="selectionEntry"/>
<entryLink id="1d2f-ecf6-6d46-9b99" name="Shrivetalon" hidden="false" collective="false" import="true" targetId="e328-2311-9c28-1ae9" type="selectionEntry"/>
<entryLink id="5786-8cc4-b597-d17d" name="Balefire Acolyte" hidden="false" collective="false" import="true" targetId="cd4d-3cf7-a9d6-7c2b" type="selectionEntry"/>
<entryLink id="d0ba-3249-6607-25ba" name="Aspiring Champion" hidden="false" collective="false" import="true" targetId="2818-f929-4549-6911" type="selectionEntry"/>
<entryLink id="b67c-69c8-2e91-0fc2" name="Chosen" hidden="false" collective="false" import="true" targetId="83c8-fd7f-2eb4-e0b0" type="selectionEntry"/>
<entryLink id="a1b5-2f89-4fa2-b7de" name="Icon Bearer" hidden="false" collective="false" import="true" targetId="456e-677d-3e76-7516" type="selectionEntry"/>
</entryLinks>
<sharedSelectionEntries>
<selectionEntry id="12bb-26d8-31fa-f62d" name="Warrior" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="5c4a-8ed5-be15-d327" name="Warrior" 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">3</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">3+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">12</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="5363-b56f-967e-0512" name="LEGIONARY" hidden="false" targetId="baa0-a8a2-0f27-9714" primary="false"/>
<categoryLink id="d049-b686-c71f-1b6f" name="Chaos" hidden="false" targetId="ba61-d304-9352-ec15" primary="false"/>
<categoryLink id="7f73-d88d-1e22-3c9d" name="Heretic Astartes" hidden="false" targetId="801f-cd1d-2579-92e3" primary="false"/>
<categoryLink id="2a74-c4d8-0da4-f7c9" name="Legionary Warrior" hidden="false" targetId="2f59-a686-c78b-d960" primary="false"/>
<categoryLink id="b1db-f2cc-9ec8-2a48" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="fda6-8730-ea08-c7d7" 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="64c6-fd47-45a7-7d8e" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0f9f-610c-0dfe-c91d" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="5582-6e77-788b-5876" name="Boltgun and fists" hidden="false" collective="false" import="true" type="upgrade">
<entryLinks>
<entryLink id="8b7e-8d4b-2515-2655" name="Fists" hidden="false" collective="false" import="true" targetId="d94b-44b0-a761-815a" type="selectionEntry"/>
<entryLink id="e911-c448-278b-18a3" name="Boltgun" hidden="false" collective="false" import="true" targetId="1be2-ef0d-4a0a-7a5c" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="65df-f2bf-a496-7333" name="Bolt pistol and chainsword" hidden="false" collective="false" import="true" type="upgrade">
<entryLinks>
<entryLink id="4776-17ef-5461-bef1" name="Bolt pistol" hidden="false" collective="false" import="true" targetId="0625-94b9-6968-8fac" type="selectionEntry"/>
<entryLink id="fd85-6361-8e77-1c33" name="Chainsword" hidden="false" collective="false" import="true" targetId="19eb-54bc-342c-6db7" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="e26a-8ea7-00b2-8982" name="Mark of Chaos" hidden="false" collective="false" import="true" targetId="087b-a6c6-0aae-10cc" type="selectionEntryGroup"/>
<entryLink id="4388-54fe-c428-32f9" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
<entryLink id="a860-7fc3-e557-b3c8" name="Battle Honours - Combat" hidden="false" collective="false" import="true" targetId="ae2f-d9f3-a27c-cca6" type="selectionEntryGroup">
<entryLinks>
<entryLink id="ab99-70b2-74c4-0eb7" name="Legionary 4 - Servant of the Dark Gods" hidden="false" collective="false" import="true" targetId="80ab-e245-1b25-a0e0" type="selectionEntry"/>
<entryLink id="d2be-1799-8308-adb9" name="Legionary 2 - Warp-blessed" hidden="false" collective="false" import="true" targetId="5b36-c16a-8f0e-e023" type="selectionEntry"/>
<entryLink id="abd0-4bc0-d35a-5a49" name="Legionary 5 - Fuelled By Hate" hidden="false" collective="false" import="true" targetId="b250-90bf-ee62-63f9" type="selectionEntry"/>
<entryLink id="2654-e496-b78f-ceee" name="Legionary 3 - Devastating Assault" hidden="false" collective="false" import="true" targetId="fa27-850d-5113-4586" type="selectionEntry"/>
<entryLink id="cfe0-a2ee-988c-12bb" name="Legionary 1 - Apostle of Chaos" hidden="false" collective="false" import="true" targetId="22e8-27d2-d5a1-10f5" type="selectionEntry"/>
<entryLink id="af32-110b-c1b6-f5bf" name="Legionary 6 - Vengeance Incarnate" hidden="false" collective="false" import="true" targetId="1951-40ff-308d-45d8" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="cf42-58e3-d600-ab4e" name="Battle Honours - Staunch" hidden="false" collective="false" import="true" targetId="93ec-2874-675e-b46e" type="selectionEntryGroup">
<entryLinks>
<entryLink id="fb47-ecc2-61b1-53da" name="Legionary 1 - Apostle of Chaos" hidden="false" collective="false" import="true" targetId="22e8-27d2-d5a1-10f5" type="selectionEntry"/>
<entryLink id="7bf0-c844-ccbc-ef70" name="Legionary 2 - Warp-blessed" hidden="false" collective="false" import="true" targetId="5b36-c16a-8f0e-e023" type="selectionEntry"/>
<entryLink id="d9c9-32e9-f0a0-4fe0" name="Legionary 3 - Devastating Assault" hidden="false" collective="false" import="true" targetId="fa27-850d-5113-4586" type="selectionEntry"/>
<entryLink id="9248-b50d-4533-a86b" name="Legionary 4 - Servant of the Dark Gods" hidden="false" collective="false" import="true" targetId="80ab-e245-1b25-a0e0" type="selectionEntry"/>
<entryLink id="b7df-02a2-ada2-d91b" name="Legionary 5 - Fuelled By Hate" hidden="false" collective="false" import="true" targetId="b250-90bf-ee62-63f9" type="selectionEntry"/>
<entryLink id="587b-0ce2-a85b-b24a" name="Legionary 6 - Vengeance Incarnate" hidden="false" collective="false" import="true" targetId="1951-40ff-308d-45d8" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="7a4b-f09e-a0fc-6b50" name="Battle Honours - Marksman" hidden="false" collective="false" import="true" targetId="e84e-ae34-82a8-57b0" type="selectionEntryGroup">
<entryLinks>
<entryLink id="8c99-443b-1e78-f9de" name="Legionary 1 - Apostle of Chaos" hidden="false" collective="false" import="true" targetId="22e8-27d2-d5a1-10f5" type="selectionEntry"/>
<entryLink id="b209-f8cf-4021-e2eb" name="Legionary 2 - Warp-blessed" hidden="false" collective="false" import="true" targetId="5b36-c16a-8f0e-e023" type="selectionEntry"/>
<entryLink id="8211-f7b1-10e0-eba8" name="Legionary 3 - Devastating Assault" hidden="false" collective="false" import="true" targetId="fa27-850d-5113-4586" type="selectionEntry"/>
<entryLink id="061f-41ad-a578-7e80" name="Legionary 4 - Servant of the Dark Gods" hidden="false" collective="false" import="true" targetId="80ab-e245-1b25-a0e0" type="selectionEntry"/>
<entryLink id="a63e-c0ba-28e0-36b6" name="Legionary 5 - Fuelled By Hate" hidden="false" collective="false" import="true" targetId="b250-90bf-ee62-63f9" type="selectionEntry"/>
<entryLink id="7a9d-4b54-e017-0ffc" name="Legionary 6 - Vengeance Incarnate" hidden="false" collective="false" import="true" targetId="1951-40ff-308d-45d8" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="2063-980b-fe97-10be" name="Specialism" hidden="false" collective="false" import="true" targetId="f03a-7a94-11a2-62ff" type="selectionEntryGroup"/>
<entryLink id="bebe-1658-5652-efd9" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="6f32-2cf5-ba97-2841" name="Equipment" hidden="false" collective="false" import="true" targetId="ddeb-f40c-c8fb-edb5" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="d94b-44b0-a761-815a" name="Fists" 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="3946-bbf5-280b-11b4" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="36b6-989b-8604-183e" type="max"/>
</constraints>
<profiles>
<profile id="df7d-41bf-13f2-aa97" name="⚔ Fists" 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/4</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">-</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>
<selectionEntry id="1be2-ef0d-4a0a-7a5c" name="Boltgun" 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="9e27-07a1-87e8-c342" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="097e-3f9d-87d0-da4d" type="max"/>
</constraints>
<profiles>
<profile id="2821-ebe6-14c1-1313" name="⌖ Boltgun" 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/4</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">-</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>
<selectionEntry id="0625-94b9-6968-8fac" name="Bolt 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="6c70-2944-5ce7-757d" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6bbe-bcef-0d99-866a" type="max"/>
</constraints>
<profiles>
<profile id="c37d-ee8d-bbf2-7e79" name="⌖ Bolt 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">3/4</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Rng ⬟</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="25fc-67d7-c499-7bbd" name="Rng x" hidden="false" targetId="92de-2ad3-3554-0b3e" type="rule"/>
</infoLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="19eb-54bc-342c-6db7" name="Chainsword" 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="6095-d4c5-59f8-eaaa" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="eafa-6ef5-eea0-f140" type="max"/>
</constraints>
<profiles>
<profile id="0dcd-90c4-d191-aad5" name="⚔ Chainsword" 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">4/5</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">-</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>
<selectionEntry id="6c43-8ade-91fe-e33c" name="Gunner" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="f407-53c7-703f-7ffc" 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">3</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">3+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">12</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="2b11-2b95-d102-d601" name="LEGIONARY" hidden="false" targetId="baa0-a8a2-0f27-9714" primary="false"/>
<categoryLink id="d450-bb56-8484-63ee" name="Chaos" hidden="false" targetId="ba61-d304-9352-ec15" primary="false"/>
<categoryLink id="6ca2-da25-fa35-5136" name="Heretic Astartes" hidden="false" targetId="801f-cd1d-2579-92e3" primary="false"/>
<categoryLink id="335a-86f8-7a61-da96" name="Legionary Gunner" hidden="false" targetId="c290-c2e1-8aae-f1bc" primary="false"/>
<categoryLink id="a5ce-4702-a1fc-243d" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="a339-bbdb-5a4a-90fe" 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="f1db-f3a4-3719-d777" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0bb9-6ccf-cd27-3924" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="62be-4579-2dc0-b015" name="Flamer" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="34a1-a894-7907-4ba7" name="⌖ Flamer" 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">2+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">2/2</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Rng ⬟, Torrent ⬤</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="5524-449f-eee8-10f1" name="Rng x" hidden="false" targetId="92de-2ad3-3554-0b3e" type="rule"/>
<infoLink id="6333-68d0-ccc2-f5f2" name="Torrent x" hidden="false" targetId="ec4b-2d70-51a7-5653" type="rule"/>
</infoLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="fb3a-8d57-b94c-7706" name="Meltagun" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="56b4-af60-c2a1-e870" name="⌖ Meltagun" 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/3</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Rng ⬟, AP2</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">MW4</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="ff42-6f50-0424-a242" name="Rng x" hidden="false" targetId="92de-2ad3-3554-0b3e" type="rule"/>
<infoLink id="5d58-78cf-d0ab-9792" name="MWx" hidden="false" targetId="0d4b-7a76-d266-bcc1" type="rule"/>
<infoLink id="7f8b-7f74-b239-731b" name="APx" hidden="false" targetId="db98-339e-d0a2-e042" type="rule"/>
</infoLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="3a70-4224-0094-575c" name="Plasma gun" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="e19e-30ed-1cc6-4745" name="Plasma gun - Standard" 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">AP1</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
<profile id="3b7f-bf67-3e18-b2b5" name="Plasma gun - Supercharge" 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, Hot</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="cad3-46f6-f6a5-d7d4" name="APx" hidden="false" targetId="db98-339e-d0a2-e042" type="rule"/>
<infoLink id="2519-ea86-47b0-93db" name="Hot" hidden="false" targetId="83c3-fce7-8ac1-9872" type="rule"/>
</infoLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="bf5f-a304-4785-f079" name="Fists" hidden="false" collective="false" import="true" targetId="d94b-44b0-a761-815a" type="selectionEntry"/>
<entryLink id="616f-6d5d-722a-6233" name="Battle Honours - Marksman" hidden="false" collective="false" import="true" targetId="e84e-ae34-82a8-57b0" type="selectionEntryGroup">
<entryLinks>
<entryLink id="8aa6-c7dd-a07f-4bf6" name="Legionary 1 - Apostle of Chaos" hidden="false" collective="false" import="true" targetId="22e8-27d2-d5a1-10f5" type="selectionEntry"/>
<entryLink id="0253-c2b3-477b-3660" name="Legionary 2 - Warp-blessed" hidden="false" collective="false" import="true" targetId="5b36-c16a-8f0e-e023" type="selectionEntry"/>
<entryLink id="f414-c5a4-5773-bedf" name="Legionary 3 - Devastating Assault" hidden="false" collective="false" import="true" targetId="fa27-850d-5113-4586" type="selectionEntry"/>
<entryLink id="996d-993a-d9ab-e92d" name="Legionary 4 - Servant of the Dark Gods" hidden="false" collective="false" import="true" targetId="80ab-e245-1b25-a0e0" type="selectionEntry"/>
<entryLink id="f9df-291c-5037-c373" name="Legionary 5 - Fuelled By Hate" hidden="false" collective="false" import="true" targetId="b250-90bf-ee62-63f9" type="selectionEntry"/>
<entryLink id="1087-ce6b-584a-8c4c" name="Legionary 6 - Vengeance Incarnate" hidden="false" collective="false" import="true" targetId="1951-40ff-308d-45d8" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="fc11-13c3-5f8d-f166" name="Battle Honours - Staunch" hidden="false" collective="false" import="true" targetId="93ec-2874-675e-b46e" type="selectionEntryGroup">
<entryLinks>
<entryLink id="8fa5-00f9-675e-65e1" name="Legionary 1 - Apostle of Chaos" hidden="false" collective="false" import="true" targetId="22e8-27d2-d5a1-10f5" type="selectionEntry"/>
<entryLink id="b8ed-11cf-9513-c0da" name="Legionary 2 - Warp-blessed" hidden="false" collective="false" import="true" targetId="5b36-c16a-8f0e-e023" type="selectionEntry"/>
<entryLink id="7b4f-aa99-4316-5b34" name="Legionary 3 - Devastating Assault" hidden="false" collective="false" import="true" targetId="fa27-850d-5113-4586" type="selectionEntry"/>
<entryLink id="727e-ae41-13de-4fcd" name="Legionary 4 - Servant of the Dark Gods" hidden="false" collective="false" import="true" targetId="80ab-e245-1b25-a0e0" type="selectionEntry"/>
<entryLink id="d1e4-74f7-2bd4-a72c" name="Legionary 5 - Fuelled By Hate" hidden="false" collective="false" import="true" targetId="b250-90bf-ee62-63f9" type="selectionEntry"/>
<entryLink id="09d5-d7db-c260-6fae" name="Legionary 6 - Vengeance Incarnate" hidden="false" collective="false" import="true" targetId="1951-40ff-308d-45d8" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="b322-06c4-12c1-a949" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="23cc-ffec-d36d-a0d2" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
<entryLink id="583c-7ffb-8c73-bdfd" name="Mark of Chaos" hidden="false" collective="false" import="true" targetId="087b-a6c6-0aae-10cc" type="selectionEntryGroup"/>
<entryLink id="5a4e-3a46-cb86-c9e7" name="Specialism" hidden="false" collective="false" import="true" targetId="f03a-7a94-11a2-62ff" type="selectionEntryGroup"/>
<entryLink id="ba60-49f3-42a3-d7b6" name="Equipment" hidden="false" collective="false" import="true" targetId="ddeb-f40c-c8fb-edb5" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="caa0-b359-d3d0-50f0" name="Heavy Gunner" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="3439-3170-6d2c-5679" 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">3</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">3+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">12</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="7a36-4f5a-a686-a433" name="LEGIONARY" hidden="false" targetId="baa0-a8a2-0f27-9714" primary="false"/>
<categoryLink id="26ed-2b6b-213c-0313" name="Chaos" hidden="false" targetId="ba61-d304-9352-ec15" primary="false"/>
<categoryLink id="835b-6d4b-2fc2-f1c7" name="Heretic Astartes" hidden="false" targetId="801f-cd1d-2579-92e3" primary="false"/>
<categoryLink id="5765-bf23-0e9c-1afd" name="Legionary Heavy Gunner" hidden="false" targetId="033b-5d3f-9ecb-c29a" primary="false"/>
<categoryLink id="2408-5bef-8428-8f71" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="adfe-60c9-0ecc-0dbd" 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="cd44-daf4-b9d9-706b" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="32ea-591d-592d-9dc5" type="max"/>
</constraints>
<infoLinks>
<infoLink id="823b-1888-0d45-ad82" name="Px" hidden="false" targetId="1f11-c169-2746-13cf" type="rule"/>
</infoLinks>
<selectionEntries>
<selectionEntry id="9836-1e77-a380-ad0a" name="Heavy bolter" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="247b-121c-4f45-8223" name="⌖ Heavy bolter" 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">4/5</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Heavy, Fusillade</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">P1</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="f7c2-c950-2007-4eba" name="Heavy" hidden="false" targetId="1e77-6974-cf90-6008" type="rule"/>
<infoLink id="4f30-1fba-4780-0882" name="Fusillade" hidden="false" targetId="e2ae-574a-94ab-3550" type="rule"/>
</infoLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="6ac6-556d-87e8-e916" name="Missile launcher" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="07db-d155-f1df-2e72" name="Missile launcher - Frag" 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">Blast ⬤, Heavy</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
<profile id="5d94-818b-e9d3-0628" name="Missile launcher - Krak" 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/7</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">AP1, Heavy</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="2f62-4058-489b-7d68" name="APx" hidden="false" targetId="db98-339e-d0a2-e042" type="rule"/>
<infoLink id="cdca-a067-a73e-ed4e" name="Blast x" hidden="false" targetId="d848-be09-6d6d-4708" type="rule"/>
<infoLink id="0bae-08df-246a-5e54" name="Heavy" hidden="false" targetId="1e77-6974-cf90-6008" type="rule"/>
</infoLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="64ce-ad65-9e99-595f" name="Reaper chaincannon" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="dfe7-5006-895e-a7aa" name="⌖ Reaper chaincannon" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">6</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">Ceaseless, Heavy, Fusillade</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434"/>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="5c82-0320-73ea-ed8d" name="Fusillade" hidden="false" targetId="e2ae-574a-94ab-3550" type="rule"/>
<infoLink id="2300-ae36-f2c2-d40e" name="Heavy" hidden="false" targetId="1e77-6974-cf90-6008" type="rule"/>
<infoLink id="e469-44b8-28eb-6643" name="Ceaseless" hidden="false" targetId="ce9a-aa0d-7b46-3d04" type="rule"/>
</infoLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="4be8-df2d-f93a-d355" name="Battle Honours - Marksman" hidden="false" collective="false" import="true" targetId="e84e-ae34-82a8-57b0" type="selectionEntryGroup">
<entryLinks>
<entryLink id="13c2-2476-72d8-4fc2" name="Legionary 1 - Apostle of Chaos" hidden="false" collective="false" import="true" targetId="22e8-27d2-d5a1-10f5" type="selectionEntry"/>
<entryLink id="b45f-4a67-2614-6ec8" name="Legionary 2 - Warp-blessed" hidden="false" collective="false" import="true" targetId="5b36-c16a-8f0e-e023" type="selectionEntry"/>
<entryLink id="082a-bcb1-a26c-6a3e" name="Legionary 3 - Devastating Assault" hidden="false" collective="false" import="true" targetId="fa27-850d-5113-4586" type="selectionEntry"/>
<entryLink id="91a8-e855-2954-f06b" name="Legionary 4 - Servant of the Dark Gods" hidden="false" collective="false" import="true" targetId="80ab-e245-1b25-a0e0" type="selectionEntry"/>
<entryLink id="9980-d578-62c8-f531" name="Legionary 5 - Fuelled By Hate" hidden="false" collective="false" import="true" targetId="b250-90bf-ee62-63f9" type="selectionEntry"/>
<entryLink id="1571-c06b-122a-c7c6" name="Legionary 6 - Vengeance Incarnate" hidden="false" collective="false" import="true" targetId="1951-40ff-308d-45d8" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="33b4-457a-1cb8-c132" name="Battle Honours - Staunch" hidden="false" collective="false" import="true" targetId="93ec-2874-675e-b46e" type="selectionEntryGroup">
<entryLinks>
<entryLink id="7d89-a0dd-2818-1e7c" name="Legionary 1 - Apostle of Chaos" hidden="false" collective="false" import="true" targetId="22e8-27d2-d5a1-10f5" type="selectionEntry"/>
<entryLink id="5ae1-c9bf-b557-325d" name="Legionary 2 - Warp-blessed" hidden="false" collective="false" import="true" targetId="5b36-c16a-8f0e-e023" type="selectionEntry"/>
<entryLink id="1f46-22a0-1cc0-edb2" name="Legionary 3 - Devastating Assault" hidden="false" collective="false" import="true" targetId="fa27-850d-5113-4586" type="selectionEntry"/>
<entryLink id="a83d-94f5-be73-7037" name="Legionary 4 - Servant of the Dark Gods" hidden="false" collective="false" import="true" targetId="80ab-e245-1b25-a0e0" type="selectionEntry"/>
<entryLink id="6753-0fc2-3b5c-8c23" name="Legionary 5 - Fuelled By Hate" hidden="false" collective="false" import="true" targetId="b250-90bf-ee62-63f9" type="selectionEntry"/>
<entryLink id="9846-0b92-901f-d3e7" name="Legionary 6 - Vengeance Incarnate" hidden="false" collective="false" import="true" targetId="1951-40ff-308d-45d8" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="764c-4f97-804b-5930" name="Fists" hidden="false" collective="false" import="true" targetId="d94b-44b0-a761-815a" type="selectionEntry"/>
<entryLink id="cd05-465c-416c-ec23" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="01a0-aa74-b431-a183" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
<entryLink id="1aa9-c735-7b95-2a96" name="Specialism" hidden="false" collective="false" import="true" targetId="f03a-7a94-11a2-62ff" type="selectionEntryGroup"/>
<entryLink id="8fc6-a66c-8ffc-52a3" name="Mark of Chaos" hidden="false" collective="false" import="true" targetId="087b-a6c6-0aae-10cc" type="selectionEntryGroup"/>
<entryLink id="9482-1e92-bce3-8d99" name="Equipment" hidden="false" collective="false" import="true" targetId="ddeb-f40c-c8fb-edb5" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="67e8-2a30-2ea8-f64f" name="Anointed" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="ac1c-f951-a9a5-1af5" name="Anointed" 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">3</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">3+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">12</characteristic>
</characteristics>
</profile>
<profile id="3ece-1d17-c5e6-6d13" name="Unleash Daemon" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">Once per battle, when this operative is activated, the daemon can take control. If it does so, until the end of the battle:
- This operative cannot perform Overwatch, Pick Up, Shoot or mission actions.
- Each time this operative would lose a wound, roll one D6; on a 5+ that wound is not lost.
- Its daemonic claw gains the Ceaseless and Lethal 5+ special rules.
- Each time this operative is activated, it can perform two Fight actions during that activation.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="f00a-3c83-20c6-e82e" name="LEGIONARY" hidden="false" targetId="baa0-a8a2-0f27-9714" primary="false"/>
<categoryLink id="ac9e-7914-c48f-8f64" name="Chaos" hidden="false" targetId="ba61-d304-9352-ec15" primary="false"/>
<categoryLink id="f4b3-0601-37b9-b357" name="Heretic Astartes" hidden="false" targetId="801f-cd1d-2579-92e3" primary="false"/>
<categoryLink id="ec99-19af-cf7a-6e16" name="Legionary Anointed" hidden="false" targetId="c56e-40d7-d50f-75c6" primary="false"/>
<categoryLink id="63e8-19df-5ec4-b5d0" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="f29f-f12f-9514-28da" name="Daemonic claw" 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="a7de-fa4d-842e-43f5" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b719-dff0-b359-7524" type="max"/>
</constraints>
<profiles>
<profile id="4800-27ce-1d63-7952" name="⚔ Daemonic claw" 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">4/5</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">-</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">Rending</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="39e6-eea9-786a-2645" 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>
<entryLinks>
<entryLink id="38bd-df7d-b003-41bf" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="958a-c51c-c894-8a1c" name="Battle Honours - Combat" hidden="false" collective="false" import="true" targetId="ae2f-d9f3-a27c-cca6" type="selectionEntryGroup">
<entryLinks>
<entryLink id="6677-5292-02e2-8d2f" name="Legionary 4 - Servant of the Dark Gods" hidden="false" collective="false" import="true" targetId="80ab-e245-1b25-a0e0" type="selectionEntry"/>
<entryLink id="a1f2-c97e-e71a-2d73" name="Legionary 2 - Warp-blessed" hidden="false" collective="false" import="true" targetId="5b36-c16a-8f0e-e023" type="selectionEntry"/>
<entryLink id="0efc-cd64-d18d-f6f7" name="Legionary 5 - Fuelled By Hate" hidden="false" collective="false" import="true" targetId="b250-90bf-ee62-63f9" type="selectionEntry"/>
<entryLink id="655e-2bc3-de18-60b5" name="Legionary 3 - Devastating Assault" hidden="false" collective="false" import="true" targetId="fa27-850d-5113-4586" type="selectionEntry"/>
<entryLink id="2268-6dd7-d22f-9557" name="Legionary 1 - Apostle of Chaos" hidden="false" collective="false" import="true" targetId="22e8-27d2-d5a1-10f5" type="selectionEntry"/>
<entryLink id="f15a-8ce8-0050-22d4" name="Legionary 6 - Vengeance Incarnate" hidden="false" collective="false" import="true" targetId="1951-40ff-308d-45d8" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="aaba-fd18-ff3a-d49d" name="Battle Honours - Staunch" hidden="false" collective="false" import="true" targetId="93ec-2874-675e-b46e" type="selectionEntryGroup">
<entryLinks>
<entryLink id="7039-8d18-34bc-7868" name="Legionary 1 - Apostle of Chaos" hidden="false" collective="false" import="true" targetId="22e8-27d2-d5a1-10f5" type="selectionEntry"/>
<entryLink id="3f54-655e-e3c3-5e15" name="Legionary 2 - Warp-blessed" hidden="false" collective="false" import="true" targetId="5b36-c16a-8f0e-e023" type="selectionEntry"/>
<entryLink id="61d2-b577-01b2-8854" name="Legionary 3 - Devastating Assault" hidden="false" collective="false" import="true" targetId="fa27-850d-5113-4586" type="selectionEntry"/>
<entryLink id="84d2-7430-3c5e-0181" name="Legionary 4 - Servant of the Dark Gods" hidden="false" collective="false" import="true" targetId="80ab-e245-1b25-a0e0" type="selectionEntry"/>
<entryLink id="83f9-7dec-9240-e6f5" name="Legionary 5 - Fuelled By Hate" hidden="false" collective="false" import="true" targetId="b250-90bf-ee62-63f9" type="selectionEntry"/>
<entryLink id="61d3-75ab-be2f-0940" name="Legionary 6 - Vengeance Incarnate" hidden="false" collective="false" import="true" targetId="1951-40ff-308d-45d8" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="b003-1f5e-a915-8942" name="Battle Honours - Scout" hidden="false" collective="false" import="true" targetId="94bd-d409-fda3-9f9f" type="selectionEntryGroup">
<entryLinks>
<entryLink id="3cba-9f52-9332-759f" name="Legionary 1 - Apostle of Chaos" hidden="false" collective="false" import="true" targetId="22e8-27d2-d5a1-10f5" type="selectionEntry"/>
<entryLink id="15de-b134-c596-f157" name="Legionary 2 - Warp-blessed" hidden="false" collective="false" import="true" targetId="5b36-c16a-8f0e-e023" type="selectionEntry"/>
<entryLink id="6975-b356-3ff5-f800" name="Legionary 3 - Devastating Assault" hidden="false" collective="false" import="true" targetId="fa27-850d-5113-4586" type="selectionEntry"/>
<entryLink id="0486-6711-f8f9-0657" name="Legionary 4 - Servant of the Dark Gods" hidden="false" collective="false" import="true" targetId="80ab-e245-1b25-a0e0" type="selectionEntry"/>
<entryLink id="e9c7-bf75-3431-2acb" name="Legionary 5 - Fuelled By Hate" hidden="false" collective="false" import="true" targetId="b250-90bf-ee62-63f9" type="selectionEntry"/>
<entryLink id="deed-a20c-0a72-b19a" name="Legionary 6 - Vengeance Incarnate" hidden="false" collective="false" import="true" targetId="1951-40ff-308d-45d8" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="c5ae-5cd7-3d10-6f5c" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
<entryLink id="f387-eef4-92e6-cb94" name="Mark of Chaos" hidden="false" collective="false" import="true" targetId="087b-a6c6-0aae-10cc" type="selectionEntryGroup"/>
<entryLink id="8ce9-6080-6d0a-0f60" name="Specialism" hidden="false" collective="false" import="true" targetId="f03a-7a94-11a2-62ff" type="selectionEntryGroup"/>
<entryLink id="05a6-7e40-d296-bb4e" name="Bolt pistol" hidden="false" collective="false" import="true" targetId="0625-94b9-6968-8fac" type="selectionEntry"/>
<entryLink id="e068-0e1e-8175-db96" name="Equipment" hidden="false" collective="false" import="true" targetId="ddeb-f40c-c8fb-edb5" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="5be4-b416-3f03-6f2c" name="Butcher" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="f9e2-c12b-d843-c01b" name="Butcher" 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">3</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">3+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">12</characteristic>
</characteristics>
</profile>
<profile id="d533-43da-93e2-660e" name="Devastating Onslaught" 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, enemy operatives within Engagement Range of it cannot provide combat support for that combat.
- For the purposes of Dash, Fall Back and Normal Move actions enemy operatives would perform, treat the distance of this operative's Engagement Range as ⬤ for that action (instead of ▲).</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="89ad-eab4-0bcf-8e97" name="LEGIONARY" hidden="false" targetId="baa0-a8a2-0f27-9714" primary="false"/>
<categoryLink id="d2fc-689a-10a5-8281" name="Chaos" hidden="false" targetId="ba61-d304-9352-ec15" primary="false"/>
<categoryLink id="bdc0-f847-e20d-f104" name="Heretic Astartes" hidden="false" targetId="801f-cd1d-2579-92e3" primary="false"/>
<categoryLink id="1ee2-203b-50c9-a41c" name="Legionary Butcher" hidden="false" targetId="b46b-359f-0477-cc44" primary="false"/>
<categoryLink id="c5a7-58bb-0779-73f7" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="0db3-686e-af7d-631a" name="Double-handed chain axe" 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="c8ff-93e0-8fee-3034" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8999-29a9-efed-7003" type="max"/>
</constraints>
<profiles>
<profile id="01ad-d360-b839-8a3b" name="⚔ Double-handed chain axe" 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">4+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">5/7</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Vicious Blows*</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">Reap 2</characteristic>
</characteristics>
</profile>
<profile id="1f18-cf34-d4c0-f383" name="*Vicious Blows" 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:
- If this operative is the Attacker, this weapon gains the Ceaseless special rule for that combat.
- If this operative performed a Charge action during this activation, this weapon gains the Relentless special rule for that combat.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="266c-21a7-d708-9290" name="Reap x" hidden="false" targetId="bed1-0d23-de84-30a1" type="rule"/>
<infoLink id="be99-92eb-8d7c-5171" name="Ceaseless" hidden="false" targetId="ce9a-aa0d-7b46-3d04" type="rule"/>
<infoLink id="68e7-e786-3e5f-bcb9" 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="1cdf-aecb-f013-a80d" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="6f9e-b865-40e4-f388" name="Battle Honours - Combat" hidden="false" collective="false" import="true" targetId="ae2f-d9f3-a27c-cca6" type="selectionEntryGroup">
<entryLinks>
<entryLink id="4531-0c1e-abd1-cd56" name="Legionary 4 - Servant of the Dark Gods" hidden="false" collective="false" import="true" targetId="80ab-e245-1b25-a0e0" type="selectionEntry"/>
<entryLink id="c969-ca42-5006-21f0" name="Legionary 2 - Warp-blessed" hidden="false" collective="false" import="true" targetId="5b36-c16a-8f0e-e023" type="selectionEntry"/>
<entryLink id="46ea-ad48-6596-f09e" name="Legionary 5 - Fuelled By Hate" hidden="false" collective="false" import="true" targetId="b250-90bf-ee62-63f9" type="selectionEntry"/>
<entryLink id="424e-fcf3-eaf1-b54c" name="Legionary 3 - Devastating Assault" hidden="false" collective="false" import="true" targetId="fa27-850d-5113-4586" type="selectionEntry"/>
<entryLink id="6a8b-2e66-e9db-3fd3" name="Legionary 1 - Apostle of Chaos" hidden="false" collective="false" import="true" targetId="22e8-27d2-d5a1-10f5" type="selectionEntry"/>
<entryLink id="d871-da90-692e-c132" name="Legionary 6 - Vengeance Incarnate" hidden="false" collective="false" import="true" targetId="1951-40ff-308d-45d8" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="5c29-cf81-0c8e-d7fc" name="Battle Honours - Staunch" hidden="false" collective="false" import="true" targetId="93ec-2874-675e-b46e" type="selectionEntryGroup">
<entryLinks>
<entryLink id="d66f-25ae-c1b6-c257" name="Legionary 1 - Apostle of Chaos" hidden="false" collective="false" import="true" targetId="22e8-27d2-d5a1-10f5" type="selectionEntry"/>
<entryLink id="3adf-e6d3-85bd-9575" name="Legionary 2 - Warp-blessed" hidden="false" collective="false" import="true" targetId="5b36-c16a-8f0e-e023" type="selectionEntry"/>
<entryLink id="74b6-92b3-70a4-34af" name="Legionary 3 - Devastating Assault" hidden="false" collective="false" import="true" targetId="fa27-850d-5113-4586" type="selectionEntry"/>
<entryLink id="0ea5-a521-9419-85ea" name="Legionary 4 - Servant of the Dark Gods" hidden="false" collective="false" import="true" targetId="80ab-e245-1b25-a0e0" type="selectionEntry"/>
<entryLink id="f48b-d23f-68bb-1969" name="Legionary 5 - Fuelled By Hate" hidden="false" collective="false" import="true" targetId="b250-90bf-ee62-63f9" type="selectionEntry"/>
<entryLink id="a1d4-80bc-2ca1-b953" name="Legionary 6 - Vengeance Incarnate" hidden="false" collective="false" import="true" targetId="1951-40ff-308d-45d8" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="7c8c-c748-b3c2-6d34" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
<entryLink id="5ad6-e9d4-501f-c781" name="Mark of Chaos" hidden="false" collective="false" import="true" targetId="087b-a6c6-0aae-10cc" type="selectionEntryGroup"/>
<entryLink id="51e7-b5ca-09f3-6b70" name="Specialism" hidden="false" collective="false" import="true" targetId="f03a-7a94-11a2-62ff" type="selectionEntryGroup"/>
<entryLink id="84b1-3133-b5ef-9f56" name="Bolt pistol" hidden="false" collective="false" import="true" targetId="0625-94b9-6968-8fac" type="selectionEntry"/>
<entryLink id="9f8d-108c-2a07-01ff" name="Equipment" hidden="false" collective="false" import="true" targetId="ddeb-f40c-c8fb-edb5" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="e328-2311-9c28-1ae9" name="Shrivetalon" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="0750-f369-fd42-5f81" name="Shrivetalon" 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">3</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">3+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">12</characteristic>
</characteristics>
</profile>
<profile id="8eb8-3dc2-c664-c18f" name="Vicious Reflexes" 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, in the Resolve Successful Hits step of that combat, if you are the Defender, then you start instead of the Attacker when resolving successful hits.</characteristic>
</characteristics>
</profile>
<profile id="fe42-78a1-1baf-fd39" name="Horrifying Dismemberment" 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, if it incapacitates an enemy operative, select one enemy operative within ⬛ of it. Subtract 1 from that enemy operative's APL.</characteristic>
</characteristics>
</profile>
<profile id="605b-d6cf-e4b9-1944" name="Grisly Mark (2AP)" hidden="false" typeId="17cd-eb4c-f9cd-36f2" typeName="Unique Actions">
<characteristics>
<characteristic name="Unique Action" typeId="8d9f-0a91-4133-bc4a">Place a Grisly Mark token within ▲ of this operative. This operative can only perform this action once, and cannot perform this action if it is within Engagement Range of an enemy operative.
- Each time an enemy operative would perform a mission action or the Pick Up action, if that enemy operative is within ⬛ of your Grisly Mark token, one additional action point must be subtracted to perform that action.
- When determining control of an objective marker that Grisly Mark token is within ⬛ of, treat enemy operative's total APL as being one less. Not that this is not a modifier.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="da1a-cfa4-d611-9432" name="LEGIONARY" hidden="false" targetId="baa0-a8a2-0f27-9714" primary="false"/>
<categoryLink id="ae28-d400-270d-0802" name="Chaos" hidden="false" targetId="ba61-d304-9352-ec15" primary="false"/>
<categoryLink id="ce6c-1df0-9b29-8a84" name="Heretic Astartes" hidden="false" targetId="801f-cd1d-2579-92e3" primary="false"/>
<categoryLink id="0391-72d3-50e3-7076" name="Legionary Shrivetalon" hidden="false" targetId="1fef-98f0-7c36-e8d0" primary="false"/>
<categoryLink id="0091-2a81-381b-bb08" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="b974-29c4-69eb-7d2b" name="Flensing blades" 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="fbd8-446a-5e3b-6432" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="91da-6405-3b50-53d7" type="max"/>
</constraints>
<profiles>
<profile id="8301-179b-bc4d-9195" name="⚔ Flensing blades" 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/5</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Lethal 5+</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="c3b2-1de4-d45e-971c" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="a27b-9767-a216-8d6d" name="Battle Honours - Combat" hidden="false" collective="false" import="true" targetId="ae2f-d9f3-a27c-cca6" type="selectionEntryGroup">
<entryLinks>
<entryLink id="e366-a206-de0d-a916" name="Legionary 4 - Servant of the Dark Gods" hidden="false" collective="false" import="true" targetId="80ab-e245-1b25-a0e0" type="selectionEntry"/>
<entryLink id="3f5d-c531-f546-ff56" name="Legionary 2 - Warp-blessed" hidden="false" collective="false" import="true" targetId="5b36-c16a-8f0e-e023" type="selectionEntry"/>
<entryLink id="55f3-6df5-ea7e-657b" name="Legionary 5 - Fuelled By Hate" hidden="false" collective="false" import="true" targetId="b250-90bf-ee62-63f9" type="selectionEntry"/>
<entryLink id="e598-11ee-6997-e65e" name="Legionary 3 - Devastating Assault" hidden="false" collective="false" import="true" targetId="fa27-850d-5113-4586" type="selectionEntry"/>
<entryLink id="62f0-ff81-c441-ace2" name="Legionary 1 - Apostle of Chaos" hidden="false" collective="false" import="true" targetId="22e8-27d2-d5a1-10f5" type="selectionEntry"/>
<entryLink id="f3b3-70f4-5d11-016c" name="Legionary 6 - Vengeance Incarnate" hidden="false" collective="false" import="true" targetId="1951-40ff-308d-45d8" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="0004-cb1b-6435-eaee" name="Battle Honours - Scout" hidden="false" collective="false" import="true" targetId="94bd-d409-fda3-9f9f" type="selectionEntryGroup">
<entryLinks>
<entryLink id="d4fb-b66b-853f-987f" name="Legionary 4 - Servant of the Dark Gods" hidden="false" collective="false" import="true" targetId="80ab-e245-1b25-a0e0" type="selectionEntry"/>
<entryLink id="1334-8903-5166-c6e0" name="Legionary 2 - Warp-blessed" hidden="false" collective="false" import="true" targetId="5b36-c16a-8f0e-e023" type="selectionEntry"/>
<entryLink id="7023-736d-b24e-f9fe" name="Legionary 5 - Fuelled By Hate" hidden="false" collective="false" import="true" targetId="b250-90bf-ee62-63f9" type="selectionEntry"/>
<entryLink id="2fd4-26f7-802f-3db6" name="Legionary 3 - Devastating Assault" hidden="false" collective="false" import="true" targetId="fa27-850d-5113-4586" type="selectionEntry"/>
<entryLink id="69a4-75f3-c059-9706" name="Legionary 1 - Apostle of Chaos" hidden="false" collective="false" import="true" targetId="22e8-27d2-d5a1-10f5" type="selectionEntry"/>
<entryLink id="d527-599f-f7b8-c7df" name="Legionary 6 - Vengeance Incarnate" hidden="false" collective="false" import="true" targetId="1951-40ff-308d-45d8" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="6788-1a06-1590-2ffb" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
<entryLink id="4ce6-2f3d-8e2d-9ce2" name="Specialism" hidden="false" collective="false" import="true" targetId="f03a-7a94-11a2-62ff" type="selectionEntryGroup"/>
<entryLink id="cf7e-23be-6944-b6c9" name="Mark of Chaos" hidden="false" collective="false" import="true" targetId="087b-a6c6-0aae-10cc" type="selectionEntryGroup"/>
<entryLink id="eb69-6c10-5501-087b" name="Bolt pistol" hidden="false" collective="false" import="true" targetId="0625-94b9-6968-8fac" type="selectionEntry"/>
<entryLink id="57d3-c485-73a6-4eae" name="Equipment" hidden="false" collective="false" import="true" targetId="ddeb-f40c-c8fb-edb5" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="456e-677d-3e76-7516" name="Icon Bearer" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="c6e2-1416-09f7-7f25" name="Icon Bearer" 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">3</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">3+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">12</characteristic>
</characteristics>
</profile>
<profile id="073b-8f5c-096b-4d4f" name="Icon Bearer" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">When determining control of an objective marker, treat this operative's APL characteristic as being 1 higher. Note that this is not a modifier. In narrative play, this is cumulative with the Focused Battle Honour.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="32c7-ed34-6e44-f94f" name="Favoured of the Dark Gods" hidden="false" targetId="e8b7-2234-3661-be69" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="50db-293c-8e0d-bb7d" name="LEGIONARY" hidden="false" targetId="baa0-a8a2-0f27-9714" primary="false"/>
<categoryLink id="eee9-6bc9-ff83-38f2" name="Chaos" hidden="false" targetId="ba61-d304-9352-ec15" primary="false"/>
<categoryLink id="6bf0-8d16-e0d8-50d8" name="Heretic Astartes" hidden="false" targetId="801f-cd1d-2579-92e3" primary="false"/>
<categoryLink id="a73e-e109-74de-f077" name="Legionary Icon Bearer" hidden="false" targetId="09c0-4734-8c8c-eb0c" primary="false"/>
<categoryLink id="7aa2-1ec0-7e52-b8d0" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="588e-1477-55b3-5a11" 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="d254-88f6-0813-6c0e" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9d83-53f5-9986-3181" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="6094-18cb-e275-f87a" name="Boltgun and fists" hidden="false" collective="false" import="true" type="upgrade">
<entryLinks>
<entryLink id="2b45-13b1-8905-798a" name="Fists" hidden="false" collective="false" import="true" targetId="d94b-44b0-a761-815a" type="selectionEntry"/>
<entryLink id="a18f-2548-499f-fb46" name="Boltgun" hidden="false" collective="false" import="true" targetId="1be2-ef0d-4a0a-7a5c" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="6db9-4d54-9a40-952f" name="Bolt pistol and chainsword" hidden="false" collective="false" import="true" type="upgrade">
<entryLinks>
<entryLink id="3c54-6607-d8f3-a09c" name="Bolt pistol" hidden="false" collective="false" import="true" targetId="0625-94b9-6968-8fac" type="selectionEntry"/>
<entryLink id="49c5-5782-ddd5-a71b" name="Chainsword" hidden="false" collective="false" import="true" targetId="19eb-54bc-342c-6db7" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="5738-8230-04b2-adb9" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="4971-bb26-0660-98b8" name="Battle Honours - Combat" hidden="false" collective="false" import="true" targetId="ae2f-d9f3-a27c-cca6" type="selectionEntryGroup">
<entryLinks>
<entryLink id="90e8-242d-5937-d85b" name="Legionary 4 - Servant of the Dark Gods" hidden="false" collective="false" import="true" targetId="80ab-e245-1b25-a0e0" type="selectionEntry"/>
<entryLink id="1e53-45a5-affd-639c" name="Legionary 2 - Warp-blessed" hidden="false" collective="false" import="true" targetId="5b36-c16a-8f0e-e023" type="selectionEntry"/>
<entryLink id="989a-be6e-9211-088d" name="Legionary 5 - Fuelled By Hate" hidden="false" collective="false" import="true" targetId="b250-90bf-ee62-63f9" type="selectionEntry"/>
<entryLink id="db95-3119-9f5e-b81f" name="Legionary 3 - Devastating Assault" hidden="false" collective="false" import="true" targetId="fa27-850d-5113-4586" type="selectionEntry"/>
<entryLink id="ad5a-3263-0217-419b" name="Legionary 1 - Apostle of Chaos" hidden="false" collective="false" import="true" targetId="22e8-27d2-d5a1-10f5" type="selectionEntry"/>
<entryLink id="4b59-395f-0234-8995" name="Legionary 6 - Vengeance Incarnate" hidden="false" collective="false" import="true" targetId="1951-40ff-308d-45d8" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="843b-6792-6a20-3e50" name="Battle Honours - Marksman" hidden="false" collective="false" import="true" targetId="e84e-ae34-82a8-57b0" type="selectionEntryGroup">
<entryLinks>
<entryLink id="d843-64a1-43cc-edf9" name="Legionary 1 - Apostle of Chaos" hidden="false" collective="false" import="true" targetId="22e8-27d2-d5a1-10f5" type="selectionEntry"/>
<entryLink id="2ad1-18fc-9654-f687" name="Legionary 2 - Warp-blessed" hidden="false" collective="false" import="true" targetId="5b36-c16a-8f0e-e023" type="selectionEntry"/>
<entryLink id="fc03-cae1-f7d5-d36a" name="Legionary 3 - Devastating Assault" hidden="false" collective="false" import="true" targetId="fa27-850d-5113-4586" type="selectionEntry"/>
<entryLink id="ac8d-a3da-92aa-debe" name="Legionary 4 - Servant of the Dark Gods" hidden="false" collective="false" import="true" targetId="80ab-e245-1b25-a0e0" type="selectionEntry"/>
<entryLink id="aed9-786a-519b-42e4" name="Legionary 5 - Fuelled By Hate" hidden="false" collective="false" import="true" targetId="b250-90bf-ee62-63f9" type="selectionEntry"/>
<entryLink id="aada-7a4b-4162-ea40" name="Legionary 6 - Vengeance Incarnate" hidden="false" collective="false" import="true" targetId="1951-40ff-308d-45d8" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="dc7b-55d5-684b-0dd4" name="Battle Honours - Staunch" hidden="false" collective="false" import="true" targetId="93ec-2874-675e-b46e" type="selectionEntryGroup">
<entryLinks>
<entryLink id="6b30-ced3-c3e7-347a" name="Legionary 1 - Apostle of Chaos" hidden="false" collective="false" import="true" targetId="22e8-27d2-d5a1-10f5" type="selectionEntry"/>
<entryLink id="2a4d-d6b2-421a-2459" name="Legionary 2 - Warp-blessed" hidden="false" collective="false" import="true" targetId="5b36-c16a-8f0e-e023" type="selectionEntry"/>
<entryLink id="5984-07dc-3362-5a83" name="Legionary 3 - Devastating Assault" hidden="false" collective="false" import="true" targetId="fa27-850d-5113-4586" type="selectionEntry"/>
<entryLink id="49ce-8e0d-4166-fa39" name="Legionary 4 - Servant of the Dark Gods" hidden="false" collective="false" import="true" targetId="80ab-e245-1b25-a0e0" type="selectionEntry"/>
<entryLink id="a0b6-8c84-9be4-f9fb" name="Legionary 5 - Fuelled By Hate" hidden="false" collective="false" import="true" targetId="b250-90bf-ee62-63f9" type="selectionEntry"/>
<entryLink id="a9ae-ae5a-1834-50e6" name="Legionary 6 - Vengeance Incarnate" hidden="false" collective="false" import="true" targetId="1951-40ff-308d-45d8" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="45f9-8673-09f9-7ebb" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
<entryLink id="96ea-e881-d79a-7526" name="Mark of Chaos" hidden="false" collective="false" import="true" targetId="087b-a6c6-0aae-10cc" type="selectionEntryGroup"/>
<entryLink id="2751-4685-c002-6500" name="Specialism" hidden="false" collective="false" import="true" targetId="f03a-7a94-11a2-62ff" type="selectionEntryGroup"/>
<entryLink id="8d4b-927a-b425-e5f1" name="Equipment" hidden="false" collective="false" import="true" targetId="ddeb-f40c-c8fb-edb5" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="cd4d-3cf7-a9d6-7c2b" name="Balefire Acolyte" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="884d-cf69-a74a-2948" name="*Daemonic Energies" 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, in the Roll Attack Dice step of that combat, each time you retain a critical hit, the target suffers 2 mortal wounds.</characteristic>
</characteristics>
</profile>
<profile id="4860-e75b-94c3-e317" name="Manifest Psychic Power (1AP)" hidden="false" typeId="17cd-eb4c-f9cd-36f2" typeName="Unique Actions">
<characteristics>
<characteristic name="Unique Action" typeId="8d9f-0a91-4133-bc4a">Psychic action. Resolve a LEGIONARY psychic power. This operative cannot perform this action while within Engagement Range of an enemy operative.</characteristic>
</characteristics>
</profile>
<profile id="a1ab-896a-e0c1-8e58" name="Fireblast" hidden="false" typeId="031c-1555-fc2c-3d40" typeName="Psychic Power">
<characteristics>
<characteristic name="Effect" typeId="3895-3533-1c76-676a">Perform a free Shoot action using the ranged weapon below.</characteristic>
</characteristics>
</profile>
<profile id="8d12-5754-1605-70f8" name="⌖ Fireblast" 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/4</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">No Cover, Blast ⬤</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">Splash 1</characteristic>
</characteristics>
</profile>
<profile id="213c-bbaa-8070-c718" name="Balefire Acolyte" 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">3</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">3+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">12</characteristic>
</characteristics>
</profile>
<profile id="d2f3-b9bc-e3ae-9c9b" name="Malign Influence" hidden="false" typeId="031c-1555-fc2c-3d40" typeName="Psychic Power">
<characteristics>
<characteristic name="Effect" typeId="3895-3533-1c76-676a">Select one friendly LEGIONARY operative Visible to this operative. Until the end of the Turning Point, weapons that operative is equipped with gain the Lethal 5+, No Cover and Brutal special rules.</characteristic>
</characteristics>
</profile>
<profile id="4d74-0949-fd9e-4cef" name="Life Siphon" hidden="false" typeId="031c-1555-fc2c-3d40" typeName="Psychic Power">
<characteristics>
<characteristic name="Effect" typeId="3895-3533-1c76-676a">Perform a free Shoot action using the ranged weapon below.</characteristic>
</characteristics>
</profile>
<profile id="ea34-9ea8-e590-875e" name="⌖ Life Siphon" 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/3</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Siphon Life Force*</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
<profile id="8daa-593d-0e90-c018" name="*Siphon Life Force" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">Each time a friendly operative makes a shooting attack with this weapon, in the Resolve Successul Hits step of that shooting attack, if you retain two or more attack dice, you can select one friendly LEGIONARY operative within ⬟ of the target to regain D3 lost wounds.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="2573-3345-763b-f7ba" name="No Cover" hidden="false" targetId="c091-97f7-8640-5e56" type="rule"/>
<infoLink id="b867-b8fb-0036-0b5f" name="Splash x" hidden="false" targetId="eab8-73f5-feed-5924" type="rule"/>
<infoLink id="7c15-7e57-1a97-b51f" name="Blast x" hidden="false" targetId="d848-be09-6d6d-4708" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="95e8-d849-a65c-a4a3" name="LEGIONARY" hidden="false" targetId="baa0-a8a2-0f27-9714" primary="false"/>
<categoryLink id="2a69-92d8-37a2-1fcb" name="Chaos" hidden="false" targetId="ba61-d304-9352-ec15" primary="false"/>
<categoryLink id="3702-a388-0829-529b" name="Heretic Astartes" hidden="false" targetId="801f-cd1d-2579-92e3" primary="false"/>
<categoryLink id="c5f0-f30e-69b8-c46d" name="Psyker" hidden="false" targetId="55b9-413d-e975-492a" primary="false"/>
<categoryLink id="0229-8a31-4de9-8fb8" name="Legionary Balefire Acolyte" hidden="false" targetId="c1b6-ab8c-7e9c-82eb" primary="false"/>
<categoryLink id="e16e-3fbf-49cb-d02a" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="09b8-b452-44a4-8f94" name="Fell dagger" 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="8e99-d1da-acde-7fea" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a36d-e4fa-2d50-8fac" type="max"/>
</constraints>
<profiles>
<profile id="c0a9-8c9e-1292-12dd" name="⚔ Fell dagger" 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">Daemonic Energies*</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>