-
Notifications
You must be signed in to change notification settings - Fork 92
/
2021 - Blooded.cat
2371 lines (2365 loc) · 194 KB
/
2021 - Blooded.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="bfeb-dc54-faa7-a9ba" name="Blooded" revision="10" battleScribeVersion="2.03" library="false" gameSystemId="3b7e-7dab-f79f-2e74" gameSystemRevision="3" xmlns="http://www.battlescribe.net/schema/catalogueSchema" type="catalogue">
<categoryEntries>
<categoryEntry id="a07d-2f4e-2358-5660" name="Traitor Chieftain" hidden="false"/>
<categoryEntry id="dd95-f453-40a2-118d" name="Traitor Brimstone Grenadier" hidden="false"/>
<categoryEntry id="3cae-5a9d-d7dc-0634" name="Traitor Butcher" hidden="false"/>
<categoryEntry id="a9e4-e0ea-e8fc-0660" name="Traitor Commsman" hidden="false"/>
<categoryEntry id="da6c-726c-0ecc-71bd" name="Traitor Corpseman" hidden="false"/>
<categoryEntry id="7c2a-6c5f-9210-154e" name="Traitor Flenser" hidden="false"/>
<categoryEntry id="d78a-9e4a-716b-d0ea" name="Traitor Gunner" hidden="false"/>
<categoryEntry id="872c-e158-4a8f-0527" name="Traitor Sharpshooter" hidden="false"/>
<categoryEntry id="e40d-4982-203f-b3a0" name="Traitor Thug" hidden="false"/>
<categoryEntry id="8e4f-7897-3cb2-eabc" name="Traitor Trench Sweeper" hidden="false"/>
<categoryEntry id="062c-527b-2f10-89c3" name="Traitor Trooper" hidden="false"/>
<categoryEntry id="7cb0-30cb-75f2-21fc" name="Traitor Enforcer" hidden="false"/>
<categoryEntry id="fc5f-d572-7d38-fa84" name="Traitor Ogryn" hidden="false"/>
<categoryEntry id="4e44-aedf-3498-4e1b" name="BLOODED" hidden="false"/>
<categoryEntry id="0e02-9fa7-8004-6c36" name="Militarum Traitoris" hidden="false"/>
<categoryEntry id="39c7-f66f-59b8-3b88" name="Four of:" hidden="false"/>
</categoryEntries>
<forceEntries>
<forceEntry id="d74a-102d-ac5c-e9ac" name="Blooded Kill Team" hidden="false">
<categoryLinks>
<categoryLink id="31ba-7fec-95a9-f27d" name="Configuration" hidden="false" targetId="fb89-efb1-54e4-59c5" primary="false"/>
<categoryLink id="dcab-95cd-ece2-37f3" name="Leader" hidden="false" targetId="3198-c1ce-dfd0-fb4f" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7afe-bea9-d7c4-6135" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c5e5-2ff1-34f4-bd77" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="b75e-8fa3-12be-d7b3" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="false">
<modifierGroups>
<modifierGroup>
<repeats>
<repeat field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="fc5f-d572-7d38-fa84" repeats="1" roundUp="false"/>
</repeats>
<modifiers>
<modifier type="decrement" field="b6e5-3677-eaf9-5590" value="1"/>
<modifier type="decrement" field="6d7c-06b1-5a01-4b34" value="1"/>
</modifiers>
</modifierGroup>
<modifierGroup>
<repeats>
<repeat field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7cb0-30cb-75f2-21fc" repeats="1" roundUp="false"/>
</repeats>
<modifiers>
<modifier type="decrement" field="b6e5-3677-eaf9-5590" value="1"/>
<modifier type="decrement" field="6d7c-06b1-5a01-4b34" value="1"/>
</modifiers>
</modifierGroup>
</modifierGroups>
<constraints>
<constraint field="selections" scope="parent" value="14" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b6e5-3677-eaf9-5590" type="max"/>
<constraint field="selections" scope="parent" value="14" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6d7c-06b1-5a01-4b34" type="min"/>
</constraints>
</categoryLink>
<categoryLink id="55ba-3d20-6cb0-4e59" name="Traitor Thug" hidden="false" targetId="e40d-4982-203f-b3a0" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="1e30-36dc-f3de-4b1d" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="c08b-5301-ef2d-33df" name="Traitor Butcher" hidden="false" targetId="3cae-5a9d-d7dc-0634" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="87b1-7c1d-f130-2976" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="8ea7-ede0-7869-5276" name="Traitor Commsman" hidden="false" targetId="a9e4-e0ea-e8fc-0660" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="2ec6-737a-ccc6-8b68" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="65cf-f5f5-20d1-0d33" name="Traitor Corpseman" hidden="false" targetId="da6c-726c-0ecc-71bd" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="7ca9-a65c-eeb0-f77c" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="2402-153f-81b8-cfc8" name="Traitor Flenser" hidden="false" targetId="7c2a-6c5f-9210-154e" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="2955-9351-e7e4-7877" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="abe9-6c4c-ec18-1453" name="Traitor Gunner" hidden="false" targetId="d78a-9e4a-716b-d0ea" primary="false">
<constraints>
<constraint field="selections" scope="force" value="2" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="61c0-3765-5808-b106" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="8749-4682-4418-6441" name="Traitor Sharpshooter" hidden="false" targetId="872c-e158-4a8f-0527" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="b510-80bc-31d9-0151" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="3439-e3ed-ac48-6eed" name="Traitor Trench Sweeper" hidden="false" targetId="8e4f-7897-3cb2-eabc" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="e031-de8b-1c95-7462" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="0122-6cd8-ec98-192e" name="Traitor Ogryn" hidden="false" targetId="fc5f-d572-7d38-fa84" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="527e-c4d0-463f-3787" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="12e4-a9b3-2a77-f91d" name="Traitor Enforcer" hidden="false" targetId="7cb0-30cb-75f2-21fc" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="315c-a46d-f79c-b234" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="8f9d-27ff-18a5-0995" name="Traitor Brimstone Grenadier" hidden="false" targetId="dd95-f453-40a2-118d" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="b3fb-8a92-a030-f10a" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="4239-963a-b4d5-2438" name="Four of:" hidden="false" targetId="39c7-f66f-59b8-3b88" primary="false">
<modifierGroups>
<modifierGroup>
<repeats>
<repeat field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7cb0-30cb-75f2-21fc" repeats="1" roundUp="false"/>
</repeats>
<modifiers>
<modifier type="decrement" field="2db7-fe67-49a6-7abc" value="1"/>
</modifiers>
</modifierGroup>
<modifierGroup>
<repeats>
<repeat field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="fc5f-d572-7d38-fa84" repeats="1" roundUp="false"/>
</repeats>
<modifiers>
<modifier type="decrement" field="2db7-fe67-49a6-7abc" value="1"/>
</modifiers>
</modifierGroup>
</modifierGroups>
<constraints>
<constraint field="selections" scope="parent" value="4" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2db7-fe67-49a6-7abc" type="min"/>
</constraints>
</categoryLink>
</categoryLinks>
</forceEntry>
</forceEntries>
<selectionEntries>
<selectionEntry id="efd6-0b4f-3e9c-8158" name="Traitor Brimstone Grenadier" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="eb9e-547f-ddbc-faf3" name="Traitor Brimstone Grenadier" 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">5+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">7</characteristic>
</characteristics>
</profile>
<profile id="ba2e-be8c-0163-89a5" name="Grenadier" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">This operative is equipped with frag and krak grenades and they do not cost any equipment points.</characteristic>
</characteristics>
</profile>
<profile id="7f05-7b62-bdc2-ddb9" name="Explosive Demise" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">If this operative is incapacitated, you can use this ability. If you do so, roll one D6, subtracting 1 from the result if this operative is within Engagement Range of an enemy operative: on a 3+, each operative Visible to and within ⬤ of this operative suffers D3 mortal wounds.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="b5c5-22cb-ff99-7d23" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
<categoryLink id="65a3-881b-2093-561b" name="BLOODED" hidden="false" targetId="4e44-aedf-3498-4e1b" primary="false"/>
<categoryLink id="1f42-0d05-fec5-cb07" name="Chaos" hidden="false" targetId="ba61-d304-9352-ec15" primary="false"/>
<categoryLink id="ffc2-6276-3811-5a12" name="Militarum Traitoris" hidden="false" targetId="0e02-9fa7-8004-6c36" primary="false"/>
<categoryLink id="20de-4daa-820e-8eb7" name="Traitor Brimstone Grenadier" hidden="false" targetId="dd95-f453-40a2-118d" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="15b0-e66e-e374-641e" name="Diabolik bomb" 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="764c-0685-e710-1a4a" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f4c0-e701-e775-938e" type="max"/>
</constraints>
<profiles>
<profile id="4658-5abf-4685-72f3" name="⌖ Diabolik bomb" 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/3</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Rng ⬟, Blast ⬤, Indirect, Limited</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">Splash 2</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="1e77-e2af-69c5-de3b" name="Limited" hidden="false" targetId="1eb0-6ad3-3e5a-d8ec" type="rule"/>
<infoLink id="5d7b-f4fb-4c38-57bb" name="Blast x" hidden="false" targetId="d848-be09-6d6d-4708" type="rule"/>
<infoLink id="09ea-7d39-1a4c-e4ce" name="Splash x" hidden="false" targetId="eab8-73f5-feed-5924" type="rule"/>
<infoLink id="1fb4-7bae-dd2f-25f9" name="Indirect" hidden="false" targetId="653d-16a5-eefb-8b71" type="rule"/>
<infoLink id="0418-9c92-b740-27cc" 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>
</selectionEntries>
<entryLinks>
<entryLink id="34ad-e431-e776-c923" name="Bayonet" hidden="false" collective="false" import="true" targetId="6b8b-b609-d36b-51aa" type="selectionEntry"/>
<entryLink id="d494-2646-c7d2-67fc" name="Lasgun" hidden="false" collective="false" import="true" targetId="2738-e795-58a5-a1db" type="selectionEntry"/>
<entryLink id="16a7-a980-2ee9-102d" name="Krak Grenade" hidden="false" collective="false" import="true" targetId="a494-1f2c-b00a-3b59" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="bdd5-f9cc-08e0-8459" type="min"/>
</constraints>
</entryLink>
<entryLink id="3e5e-bbcc-1061-ea7c" name="Frag Grenade" hidden="false" collective="false" import="true" targetId="afe5-8d04-a923-b22e" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4f07-dcef-921f-9bfe" type="min"/>
</constraints>
</entryLink>
<entryLink id="bb91-f0a8-0372-e5db" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="2e41-15b2-7a18-1b1f" name="Equipment" hidden="false" collective="false" import="true" targetId="9155-1282-eb36-89f5" type="selectionEntryGroup"/>
<entryLink id="7cd1-6036-961a-c008" name="Specialism" hidden="false" collective="false" import="true" targetId="eeb2-4002-2c34-3243" type="selectionEntryGroup"/>
<entryLink id="714a-04a9-0ce4-065a" name="Battle Honours - Scout" hidden="false" collective="false" import="true" targetId="94bd-d409-fda3-9f9f" type="selectionEntryGroup">
<entryLinks>
<entryLink id="ae9c-9b27-f953-fba5" name="Blooded 2 - Motivation for Violence" hidden="false" collective="false" import="true" targetId="cfc5-a67a-3efe-a63b" type="selectionEntry"/>
<entryLink id="eceb-25b9-0992-1077" name="Blooded 3 - Bitter Resolve" hidden="false" collective="false" import="true" targetId="a532-3a43-4029-9cbc" type="selectionEntry"/>
<entryLink id="04b5-f244-c357-02e9" name="Blooded 4 - Marauder" hidden="false" collective="false" import="true" targetId="bb77-a770-3036-269a" type="selectionEntry"/>
<entryLink id="b555-04e5-0849-37ef" name="Blooded 5 - Zealous" hidden="false" collective="false" import="true" targetId="0403-b867-2d43-3b6c" type="selectionEntry"/>
<entryLink id="dd81-0e6e-ba98-a964" name="Blooded 6 - Audacious" hidden="false" collective="false" import="true" targetId="11d4-d91d-15ad-4fc5" type="selectionEntry"/>
<entryLink id="3cd1-0d2a-bd22-d595" name="Blooded 1 - Ardent on the Trigger" hidden="false" collective="false" import="true" targetId="3069-0f6f-4d3c-68ff" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="8a93-8de6-7f87-7fd2" name="Battle Honours - Staunch" hidden="false" collective="false" import="true" targetId="93ec-2874-675e-b46e" type="selectionEntryGroup">
<entryLinks>
<entryLink id="6457-0205-7bcc-48f3" name="Blooded 2 - Motivation for Violence" hidden="false" collective="false" import="true" targetId="cfc5-a67a-3efe-a63b" type="selectionEntry"/>
<entryLink id="4f7e-847b-6147-18c7" name="Blooded 3 - Bitter Resolve" hidden="false" collective="false" import="true" targetId="a532-3a43-4029-9cbc" type="selectionEntry"/>
<entryLink id="7fcc-2f64-3b35-0665" name="Blooded 4 - Marauder" hidden="false" collective="false" import="true" targetId="bb77-a770-3036-269a" type="selectionEntry"/>
<entryLink id="2bf4-1026-65f3-9176" name="Blooded 5 - Zealous" hidden="false" collective="false" import="true" targetId="0403-b867-2d43-3b6c" type="selectionEntry"/>
<entryLink id="c86f-ff4b-655a-c271" name="Blooded 6 - Audacious" hidden="false" collective="false" import="true" targetId="11d4-d91d-15ad-4fc5" type="selectionEntry"/>
<entryLink id="9335-6d93-c6ba-1f27" name="Blooded 1 - Ardent on the Trigger" hidden="false" collective="false" import="true" targetId="3069-0f6f-4d3c-68ff" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="1240-7000-595d-50a8" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="fa94-8c2b-16c6-26de" name="Traitor Butcher" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="bf8c-405d-f39c-2700" name="Traitor 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">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">5+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">8</characteristic>
</characteristics>
</profile>
<profile id="c59f-b7f8-e66e-95db" name="Unholy Sustenance" 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, it regains D3 lost wounds.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="2249-b6fc-4a4d-1e7f" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
<categoryLink id="0857-50d2-3021-e9a3" name="BLOODED" hidden="false" targetId="4e44-aedf-3498-4e1b" primary="false"/>
<categoryLink id="4f29-0b96-7411-e6e6" name="Chaos" hidden="false" targetId="ba61-d304-9352-ec15" primary="false"/>
<categoryLink id="c620-0247-8f18-2da6" name="Militarum Traitoris" hidden="false" targetId="0e02-9fa7-8004-6c36" primary="false"/>
<categoryLink id="8b65-4214-ee5f-2801" name="Traitor Butcher" hidden="false" targetId="3cae-5a9d-d7dc-0634" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="c81e-8336-a40f-e5fb" name="Power weapon and cleaver" 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="2587-f673-fc47-2c4b" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8154-8359-a319-0d73" type="max"/>
</constraints>
<profiles>
<profile id="25b1-7984-6a3b-f3a6" name="⚔ Power weapon and cleaver" 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/6</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Lethal 5+, Blood Offering*</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
<profile id="7bb2-5cc6-e99e-4ee6" name="*Blood Offering" 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 you strike with a critical hit, add one Blooded token to your pool.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="10d8-b262-b608-e805" 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="3732-07d2-ad36-8a7f" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="986c-66de-57c8-90ca" name="Equipment" hidden="false" collective="false" import="true" targetId="9155-1282-eb36-89f5" type="selectionEntryGroup"/>
<entryLink id="b4c4-4b7f-60f5-00f1" name="Specialism" hidden="false" collective="false" import="true" targetId="eeb2-4002-2c34-3243" type="selectionEntryGroup"/>
<entryLink id="efb3-478b-da65-44a1" name="Battle Honours - Combat" hidden="false" collective="false" import="true" targetId="ae2f-d9f3-a27c-cca6" type="selectionEntryGroup">
<entryLinks>
<entryLink id="5cf8-b652-c117-a30b" name="Blooded 2 - Motivation for Violence" hidden="false" collective="false" import="true" targetId="cfc5-a67a-3efe-a63b" type="selectionEntry"/>
<entryLink id="776d-f56b-a1f7-0cb6" name="Blooded 3 - Bitter Resolve" hidden="false" collective="false" import="true" targetId="a532-3a43-4029-9cbc" type="selectionEntry"/>
<entryLink id="d734-0cfe-cb95-0a69" name="Blooded 4 - Marauder" hidden="false" collective="false" import="true" targetId="bb77-a770-3036-269a" type="selectionEntry"/>
<entryLink id="834c-bbae-86b9-bd2e" name="Blooded 5 - Zealous" hidden="false" collective="false" import="true" targetId="0403-b867-2d43-3b6c" type="selectionEntry"/>
<entryLink id="a37f-9d93-d1e0-4d42" name="Blooded 6 - Audacious" hidden="false" collective="false" import="true" targetId="11d4-d91d-15ad-4fc5" type="selectionEntry"/>
<entryLink id="8eec-ed52-818c-ce93" name="Blooded 1 - Ardent on the Trigger" hidden="false" collective="false" import="true" targetId="3069-0f6f-4d3c-68ff" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="f5d9-82b1-191b-31fc" name="Battle Honours - Staunch" hidden="false" collective="false" import="true" targetId="93ec-2874-675e-b46e" type="selectionEntryGroup">
<entryLinks>
<entryLink id="d314-bdec-6af0-66fd" name="Blooded 2 - Motivation for Violence" hidden="false" collective="false" import="true" targetId="cfc5-a67a-3efe-a63b" type="selectionEntry"/>
<entryLink id="de26-52a5-d2b3-98a3" name="Blooded 3 - Bitter Resolve" hidden="false" collective="false" import="true" targetId="a532-3a43-4029-9cbc" type="selectionEntry"/>
<entryLink id="2bd8-b683-e280-51bf" name="Blooded 4 - Marauder" hidden="false" collective="false" import="true" targetId="bb77-a770-3036-269a" type="selectionEntry"/>
<entryLink id="80a8-d155-3126-f4d2" name="Blooded 5 - Zealous" hidden="false" collective="false" import="true" targetId="0403-b867-2d43-3b6c" type="selectionEntry"/>
<entryLink id="00bf-4c48-bd9c-fb2f" name="Blooded 6 - Audacious" hidden="false" collective="false" import="true" targetId="11d4-d91d-15ad-4fc5" type="selectionEntry"/>
<entryLink id="8538-067a-0788-c965" name="Blooded 1 - Ardent on the Trigger" hidden="false" collective="false" import="true" targetId="3069-0f6f-4d3c-68ff" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="fe18-0fc4-3721-c448" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="001e-ea8d-d513-129c" name="Traitor Commsman" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="9f70-22d5-f7c2-66b1" name="Traitor Commsman" 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">5+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">7</characteristic>
</characteristics>
</profile>
<profile id="b528-ac71-09a7-16e7" name="Signal (1AP)" hidden="false" typeId="17cd-eb4c-f9cd-36f2" typeName="Unique Actions">
<characteristics>
<characteristic name="Unique Action" typeId="8d9f-0a91-4133-bc4a">Select one friendly BLOODED operative Visible to and within ⬟ of this operative. Add 1 to its APL. This operative cannot perform this action while within Engagement Range of an enemy operative.</characteristic>
</characteristics>
</profile>
<profile id="d662-dd50-83b4-b922" name="Sacrilegious Actuation (1AP)" hidden="false" typeId="17cd-eb4c-f9cd-36f2" typeName="Unique Actions">
<characteristics>
<characteristic name="Unique Action" typeId="8d9f-0a91-4133-bc4a">You can select one friendly BLOODED operative Visible to and within ⬟ of this operative, remove its Blooded token (if any) and return it to your pool. It cannot be a token that operative is only treated as having. Select one friendly BLOODED operative that does not have a Blooded token that is Visible to and within ⬟ of this operative. Assign one Blooded token to it from your pool. This operative cannot perform this action while within Engagement Range of an enemy operative, or if you cannot assign a Blooded token.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="a489-fccb-88b3-7688" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
<categoryLink id="8406-e222-8878-7f88" name="BLOODED" hidden="false" targetId="4e44-aedf-3498-4e1b" primary="false"/>
<categoryLink id="a7f4-30bc-0c11-8e4a" name="Chaos" hidden="false" targetId="ba61-d304-9352-ec15" primary="false"/>
<categoryLink id="e025-6630-886c-7f53" name="Militarum Traitoris" hidden="false" targetId="0e02-9fa7-8004-6c36" primary="false"/>
<categoryLink id="2904-8cfe-506d-8dcc" name="Traitor Commsman" hidden="false" targetId="a9e4-e0ea-e8fc-0660" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="a1bc-0ed4-331f-0ec1" name="Lasgun" hidden="false" collective="false" import="true" targetId="2738-e795-58a5-a1db" type="selectionEntry"/>
<entryLink id="8e58-f910-84e5-fa5e" name="Bayonet" hidden="false" collective="false" import="true" targetId="6b8b-b609-d36b-51aa" type="selectionEntry"/>
<entryLink id="daaa-c502-f1ca-2223" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="a3ab-51a8-b342-661c" name="Battle Honours - Staunch" hidden="false" collective="false" import="true" targetId="93ec-2874-675e-b46e" type="selectionEntryGroup">
<entryLinks>
<entryLink id="f4ce-da0e-eecf-23dc" name="Blooded 2 - Motivation for Violence" hidden="false" collective="false" import="true" targetId="cfc5-a67a-3efe-a63b" type="selectionEntry"/>
<entryLink id="9bb4-6a12-bf0d-3617" name="Blooded 3 - Bitter Resolve" hidden="false" collective="false" import="true" targetId="a532-3a43-4029-9cbc" type="selectionEntry"/>
<entryLink id="b7e2-43b0-c687-5ea5" name="Blooded 4 - Marauder" hidden="false" collective="false" import="true" targetId="bb77-a770-3036-269a" type="selectionEntry"/>
<entryLink id="3fcc-db4e-5a83-5a4f" name="Blooded 5 - Zealous" hidden="false" collective="false" import="true" targetId="0403-b867-2d43-3b6c" type="selectionEntry"/>
<entryLink id="57e4-337c-6e11-10e7" name="Blooded 6 - Audacious" hidden="false" collective="false" import="true" targetId="11d4-d91d-15ad-4fc5" type="selectionEntry"/>
<entryLink id="afb2-f4d0-712f-c00c" name="Blooded 1 - Ardent on the Trigger" hidden="false" collective="false" import="true" targetId="3069-0f6f-4d3c-68ff" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="b3d4-2308-95de-eba6" name="Battle Honours - Scout" hidden="false" collective="false" import="true" targetId="94bd-d409-fda3-9f9f" type="selectionEntryGroup">
<entryLinks>
<entryLink id="856f-e7dd-72ee-d983" name="Blooded 2 - Motivation for Violence" hidden="false" collective="false" import="true" targetId="cfc5-a67a-3efe-a63b" type="selectionEntry"/>
<entryLink id="870a-9c02-f345-74dc" name="Blooded 3 - Bitter Resolve" hidden="false" collective="false" import="true" targetId="a532-3a43-4029-9cbc" type="selectionEntry"/>
<entryLink id="5798-29f7-659f-8023" name="Blooded 4 - Marauder" hidden="false" collective="false" import="true" targetId="bb77-a770-3036-269a" type="selectionEntry"/>
<entryLink id="2598-ab11-65c3-cec3" name="Blooded 5 - Zealous" hidden="false" collective="false" import="true" targetId="0403-b867-2d43-3b6c" type="selectionEntry"/>
<entryLink id="f124-e742-21c5-fa34" name="Blooded 6 - Audacious" hidden="false" collective="false" import="true" targetId="11d4-d91d-15ad-4fc5" type="selectionEntry"/>
<entryLink id="238e-4264-25c1-45ef" name="Blooded 1 - Ardent on the Trigger" hidden="false" collective="false" import="true" targetId="3069-0f6f-4d3c-68ff" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="9143-d800-ab98-90ca" name="Equipment" hidden="false" collective="false" import="true" targetId="9155-1282-eb36-89f5" type="selectionEntryGroup"/>
<entryLink id="b627-af52-4bf0-b039" name="Specialism" hidden="false" collective="false" import="true" targetId="eeb2-4002-2c34-3243" type="selectionEntryGroup"/>
<entryLink id="77fc-9a93-be4e-6dd0" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="e1fc-87f6-dbc6-5e7e" name="Traitor Corpseman" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="5505-870a-5f39-c207" name="Traitor Commsman" 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">5+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">7</characteristic>
</characteristics>
</profile>
<profile id="8156-4c5d-db10-9f39" name="Stimm (1AP)" hidden="false" typeId="17cd-eb4c-f9cd-36f2" typeName="Unique Actions">
<characteristics>
<characteristic name="Unique Action" typeId="8d9f-0a91-4133-bc4a">Select one friendly BLOODED operative Visible to and within ▲ of this operative, then select one of the stimm effects below. You can only select each stimm effect for each operative once per battle. This operative cannot perform this action while within Engagement Range of an enemy operative.
- The selected operative regains 2D3 lost wounds.
- Until the end of the battle, the melee weapons this operative is equipped with gain the Relentless special rule.
- Until the end of the battle, each time the selected operative would lose a wound, roll one D6: on a 6, that wound is not lost.</characteristic>
</characteristics>
</profile>
<profile id="6112-ab5e-3dd6-3601" name="Regular Dosage" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">At the end of the Select a Kill Team step of the mission sequence, if this operative is selected for deployment, you can select one friendly BLOODED operative to gain a stimm effect (see below).</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="6366-d794-0e00-a91a" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
<categoryLink id="3a46-5098-ee43-356a" name="BLOODED" hidden="false" targetId="4e44-aedf-3498-4e1b" primary="false"/>
<categoryLink id="2de7-5337-4988-bee9" name="Chaos" hidden="false" targetId="ba61-d304-9352-ec15" primary="false"/>
<categoryLink id="0363-4d8d-9b4a-a036" name="Militarum Traitoris" hidden="false" targetId="0e02-9fa7-8004-6c36" primary="false"/>
<categoryLink id="cb13-dc92-42dc-ef0f" name="Traitor Corpseman" hidden="false" targetId="da6c-726c-0ecc-71bd" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="f904-ff7a-442a-2ff3" name="Stim needle" 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="8d6b-2ae1-12c7-840d" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c354-7583-ddb3-1fd8" type="max"/>
</constraints>
<profiles>
<profile id="7603-2b74-f88b-105e" name="⚔ Stim needle" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">3</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">5+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">1/4</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="beae-56f3-55d4-5504" 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="7749-1760-3d0c-177a" name="Lasgun" hidden="false" collective="false" import="true" targetId="2738-e795-58a5-a1db" type="selectionEntry"/>
<entryLink id="63bf-5183-d0e5-7726" name="Bayonet" hidden="false" collective="false" import="true" targetId="6b8b-b609-d36b-51aa" type="selectionEntry"/>
<entryLink id="d928-3f8d-70ef-e8a6" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="4844-dd43-2261-e2ec" name="Battle Honours - Staunch" hidden="false" collective="false" import="true" targetId="93ec-2874-675e-b46e" type="selectionEntryGroup">
<entryLinks>
<entryLink id="8d26-fed8-ba25-ce0a" name="Blooded 2 - Motivation for Violence" hidden="false" collective="false" import="true" targetId="cfc5-a67a-3efe-a63b" type="selectionEntry"/>
<entryLink id="e6cd-76fb-2c6c-90b5" name="Blooded 3 - Bitter Resolve" hidden="false" collective="false" import="true" targetId="a532-3a43-4029-9cbc" type="selectionEntry"/>
<entryLink id="ffcc-2cfe-b2fe-ceaa" name="Blooded 4 - Marauder" hidden="false" collective="false" import="true" targetId="bb77-a770-3036-269a" type="selectionEntry"/>
<entryLink id="304d-057f-c3bb-a216" name="Blooded 5 - Zealous" hidden="false" collective="false" import="true" targetId="0403-b867-2d43-3b6c" type="selectionEntry"/>
<entryLink id="967f-a27e-5560-253b" name="Blooded 6 - Audacious" hidden="false" collective="false" import="true" targetId="11d4-d91d-15ad-4fc5" type="selectionEntry"/>
<entryLink id="d837-8275-214b-e91e" name="Blooded 1 - Ardent on the Trigger" hidden="false" collective="false" import="true" targetId="3069-0f6f-4d3c-68ff" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="f26c-8288-9ae5-3e46" name="Battle Honours - Scout" hidden="false" collective="false" import="true" targetId="94bd-d409-fda3-9f9f" type="selectionEntryGroup">
<entryLinks>
<entryLink id="78aa-3d12-fa15-c611" name="Blooded 2 - Motivation for Violence" hidden="false" collective="false" import="true" targetId="cfc5-a67a-3efe-a63b" type="selectionEntry"/>
<entryLink id="d295-cd80-8a4c-29a0" name="Blooded 3 - Bitter Resolve" hidden="false" collective="false" import="true" targetId="a532-3a43-4029-9cbc" type="selectionEntry"/>
<entryLink id="17b5-b2eb-1d67-9f95" name="Blooded 4 - Marauder" hidden="false" collective="false" import="true" targetId="bb77-a770-3036-269a" type="selectionEntry"/>
<entryLink id="0cdf-86bb-0547-6fa4" name="Blooded 5 - Zealous" hidden="false" collective="false" import="true" targetId="0403-b867-2d43-3b6c" type="selectionEntry"/>
<entryLink id="da5f-11ab-e288-3b06" name="Blooded 6 - Audacious" hidden="false" collective="false" import="true" targetId="11d4-d91d-15ad-4fc5" type="selectionEntry"/>
<entryLink id="6959-aa46-4ece-16e8" name="Blooded 1 - Ardent on the Trigger" hidden="false" collective="false" import="true" targetId="3069-0f6f-4d3c-68ff" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="f926-4aa3-6783-9aae" name="Equipment" hidden="false" collective="false" import="true" targetId="9155-1282-eb36-89f5" type="selectionEntryGroup"/>
<entryLink id="a61b-29ef-4f80-cb5f" name="Specialism" hidden="false" collective="false" import="true" targetId="eeb2-4002-2c34-3243" type="selectionEntryGroup"/>
<entryLink id="ced8-4431-6fbe-f586" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="d708-f976-177d-df7a" name="Traitor Enforcer (counts as 2)" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="name" value="Traitor Enforcer"/>
</modifiers>
<modifierGroups>
<modifierGroup type="and">
<modifiers>
<modifier type="set-primary" value="39c7-f66f-59b8-3b88" field="category"/>
</modifiers>
<conditions>
<condition type="notInstanceOf" value="1" field="selections" scope="force" childId="7138-2b60-74ce-a90b" shared="true"/>
</conditions>
</modifierGroup>
</modifierGroups>
<profiles>
<profile id="4321-0f00-d82a-41ea" name="Traitor Enforcer" 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="92ab-28f9-998a-9db4" name="Gruelling Disciplinarian" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">While a friendly BLOODED operative is Visible to and within ⬛ of this operative, it is not treated as being injured (only ignore the modifier to its Movement characteristic as a result of being injured if it is activated with ⬛ of this operative).</characteristic>
</characteristics>
</profile>
<profile id="43ee-1969-1fce-b0a0" name="Enforce (1AP)" hidden="false" typeId="17cd-eb4c-f9cd-36f2" typeName="Unique Actions">
<characteristics>
<characteristic name="Unique Action" typeId="8d9f-0a91-4133-bc4a">Select one other friendly BLOODED operative that is not ready and is Visible to and within ⬛ of this operative. Then select one of the following:
- That operative immediately performs a free Dash action.
- If that operative has an Engage order, it can perform an Overwatch action.
This operative cannot perform this action while within Engagement Range of an enemy operative.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="4cca-a84d-3e4f-c96b" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
<categoryLink id="8646-df90-e522-a42f" name="Chaos" hidden="false" targetId="ba61-d304-9352-ec15" primary="false"/>
<categoryLink id="0344-3c9b-5916-7ec5" name="Militarum Traitoris" hidden="false" targetId="0e02-9fa7-8004-6c36" primary="false"/>
<categoryLink id="68da-d956-4b62-67d8" name="Traitor Enforcer" hidden="false" targetId="7cb0-30cb-75f2-21fc" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="a241-93c8-2039-8c85" name="Power fist" 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="7819-a61c-e061-96a7" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f552-3455-3851-0d73" type="max"/>
</constraints>
<profiles>
<profile id="2cca-3215-ac1d-07a9" name="⚔ Power fist" 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">Brutal</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="de3e-3ea9-c4ad-f9c9" 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="4ec8-e749-d5c8-199a" name="Bolt pistol" hidden="false" collective="false" import="true" targetId="a095-cad2-08f4-e5c4" type="selectionEntry"/>
<entryLink id="1ff7-6299-b95d-3f88" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="c89c-7612-bb64-2fc8" name="Battle Honours - Combat" hidden="false" collective="false" import="true" targetId="ae2f-d9f3-a27c-cca6" type="selectionEntryGroup">
<entryLinks>
<entryLink id="9e9e-147b-957c-3ed7" name="Blooded 2 - Motivation for Violence" hidden="false" collective="false" import="true" targetId="cfc5-a67a-3efe-a63b" type="selectionEntry"/>
<entryLink id="45a7-f458-00bb-bdec" name="Blooded 3 - Bitter Resolve" hidden="false" collective="false" import="true" targetId="a532-3a43-4029-9cbc" type="selectionEntry"/>
<entryLink id="ddb3-3adb-9d89-1b85" name="Blooded 4 - Marauder" hidden="false" collective="false" import="true" targetId="bb77-a770-3036-269a" type="selectionEntry"/>
<entryLink id="2087-b89c-ac42-85d8" name="Blooded 5 - Zealous" hidden="false" collective="false" import="true" targetId="0403-b867-2d43-3b6c" type="selectionEntry"/>
<entryLink id="d2c9-aa2a-4b29-c77b" name="Blooded 6 - Audacious" hidden="false" collective="false" import="true" targetId="11d4-d91d-15ad-4fc5" type="selectionEntry"/>
<entryLink id="51b5-f5e6-bde1-1540" name="Blooded 1 - Ardent on the Trigger" hidden="false" collective="false" import="true" targetId="3069-0f6f-4d3c-68ff" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="8292-ceb5-d47b-cde5" name="Battle Honours - Staunch" hidden="false" collective="false" import="true" targetId="93ec-2874-675e-b46e" type="selectionEntryGroup">
<entryLinks>
<entryLink id="87fa-f4f6-43ac-2199" name="Blooded 2 - Motivation for Violence" hidden="false" collective="false" import="true" targetId="cfc5-a67a-3efe-a63b" type="selectionEntry"/>
<entryLink id="957c-d685-2a22-7547" name="Blooded 3 - Bitter Resolve" hidden="false" collective="false" import="true" targetId="a532-3a43-4029-9cbc" type="selectionEntry"/>
<entryLink id="2b94-c1d8-b13f-dbcc" name="Blooded 4 - Marauder" hidden="false" collective="false" import="true" targetId="bb77-a770-3036-269a" type="selectionEntry"/>
<entryLink id="4fb4-99a1-9f5c-b26a" name="Blooded 5 - Zealous" hidden="false" collective="false" import="true" targetId="0403-b867-2d43-3b6c" type="selectionEntry"/>
<entryLink id="c51d-b44c-4fe4-d5c9" name="Blooded 6 - Audacious" hidden="false" collective="false" import="true" targetId="11d4-d91d-15ad-4fc5" type="selectionEntry"/>
<entryLink id="672f-370a-2fe8-ce4d" name="Blooded 1 - Ardent on the Trigger" hidden="false" collective="false" import="true" targetId="3069-0f6f-4d3c-68ff" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="0397-8d6c-fcd5-0d51" name="Equipment" hidden="false" collective="false" import="true" targetId="9155-1282-eb36-89f5" type="selectionEntryGroup"/>
<entryLink id="1db4-0727-54b0-f58b" name="Specialism" hidden="false" collective="false" import="true" targetId="eeb2-4002-2c34-3243" type="selectionEntryGroup"/>
<entryLink id="4e43-4305-a59b-d5d2" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="fc18-f363-fc3a-0783" name="Traitor Flenser" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="1801-366c-bd6d-83e8" name="Traitor Flenser" 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">5+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">7</characteristic>
</characteristics>
</profile>
<profile id="44ea-aa37-20b8-0909" name="Wretched" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">This operative can perform a Charge action while it has a Conceal order. If this operative is incapacitated in combat, if you have any remaining attack dice, you can strike with one attack dice before this model is removed from the killzone.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="3d17-06de-e8ad-5ee7" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
<categoryLink id="972a-edb5-19b0-ff15" name="BLOODED" hidden="false" targetId="4e44-aedf-3498-4e1b" primary="false"/>
<categoryLink id="28ca-c027-7b78-5c4f" name="Chaos" hidden="false" targetId="ba61-d304-9352-ec15" primary="false"/>
<categoryLink id="339b-f51b-2dcb-4a13" name="Militarum Traitoris" hidden="false" targetId="0e02-9fa7-8004-6c36" primary="false"/>
<categoryLink id="037f-f99f-2b84-51d8" name="Traitor Flenser" hidden="false" targetId="7c2a-6c5f-9210-154e" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="7150-a8fb-07a8-cf0a" name="Skinning 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="7454-0d96-a4dd-e8ce" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d933-97f6-4de0-8a30" type="max"/>
</constraints>
<profiles>
<profile id="a1ba-55f6-f647-5697" name="⚔ Skinning blades" 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">Ceaseless, Stalk*</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
<profile id="93b1-0226-29c8-fa11" name="*Stalk" 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, if it is within ⬤ of Light or Heavy terrain, this weapon gains the Lethal 5+ special rule for that combat.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="de17-8147-e565-63f4" name="Ceaseless" hidden="false" targetId="ce9a-aa0d-7b46-3d04" type="rule"/>
<infoLink id="270b-73c4-d41a-cee0" 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="8be2-dd90-3548-d280" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="5704-68c7-f3e7-ca58" name="Battle Honours - Combat" hidden="false" collective="false" import="true" targetId="ae2f-d9f3-a27c-cca6" type="selectionEntryGroup">
<entryLinks>
<entryLink id="642c-f8e8-8063-00c0" name="Blooded 2 - Motivation for Violence" hidden="false" collective="false" import="true" targetId="cfc5-a67a-3efe-a63b" type="selectionEntry"/>
<entryLink id="4c33-052e-8d74-41ca" name="Blooded 3 - Bitter Resolve" hidden="false" collective="false" import="true" targetId="a532-3a43-4029-9cbc" type="selectionEntry"/>
<entryLink id="7b23-135a-bb56-95d3" name="Blooded 4 - Marauder" hidden="false" collective="false" import="true" targetId="bb77-a770-3036-269a" type="selectionEntry"/>
<entryLink id="b665-f895-d32a-6729" name="Blooded 5 - Zealous" hidden="false" collective="false" import="true" targetId="0403-b867-2d43-3b6c" type="selectionEntry"/>
<entryLink id="1089-560d-51eb-beac" name="Blooded 6 - Audacious" hidden="false" collective="false" import="true" targetId="11d4-d91d-15ad-4fc5" type="selectionEntry"/>
<entryLink id="b7ba-1fb2-ab70-fec3" name="Blooded 1 - Ardent on the Trigger" hidden="false" collective="false" import="true" targetId="3069-0f6f-4d3c-68ff" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="a2a9-323a-1e86-89f2" name="Battle Honours - Scout" hidden="false" collective="false" import="true" targetId="94bd-d409-fda3-9f9f" type="selectionEntryGroup">
<entryLinks>
<entryLink id="8134-9fd5-f51f-bc7d" name="Blooded 2 - Motivation for Violence" hidden="false" collective="false" import="true" targetId="cfc5-a67a-3efe-a63b" type="selectionEntry"/>
<entryLink id="34e8-3aef-a463-4aa9" name="Blooded 3 - Bitter Resolve" hidden="false" collective="false" import="true" targetId="a532-3a43-4029-9cbc" type="selectionEntry"/>
<entryLink id="1996-b9fb-8967-b02c" name="Blooded 4 - Marauder" hidden="false" collective="false" import="true" targetId="bb77-a770-3036-269a" type="selectionEntry"/>
<entryLink id="6a4c-7160-6584-ecce" name="Blooded 5 - Zealous" hidden="false" collective="false" import="true" targetId="0403-b867-2d43-3b6c" type="selectionEntry"/>
<entryLink id="62a6-4ec7-4215-56e2" name="Blooded 6 - Audacious" hidden="false" collective="false" import="true" targetId="11d4-d91d-15ad-4fc5" type="selectionEntry"/>
<entryLink id="62ba-5e0b-dc0f-221a" name="Blooded 1 - Ardent on the Trigger" hidden="false" collective="false" import="true" targetId="3069-0f6f-4d3c-68ff" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="4c3a-71e6-0da0-289d" name="Equipment" hidden="false" collective="false" import="true" targetId="9155-1282-eb36-89f5" type="selectionEntryGroup"/>
<entryLink id="b4c7-7b67-1c07-215b" name="Specialism" hidden="false" collective="false" import="true" targetId="eeb2-4002-2c34-3243" type="selectionEntryGroup"/>
<entryLink id="a5f2-f764-0fbc-b9d1" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="50ee-64b9-1f90-84a2" name="Traitor Gunner w/ flamer" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="f7d8-2d1c-ffc9-ae6a" value="1">
<conditions>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="d74a-102d-ac5c-e9ac" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="force" value="-1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="f7d8-2d1c-ffc9-ae6a" type="max"/>
</constraints>
<infoLinks>
<infoLink id="1b59-282b-9c90-466d" name="Traitor Gunner" hidden="false" targetId="cbb5-155e-bddc-375e" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="31a8-9298-a965-dc55" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
<categoryLink id="28ed-dade-a5a2-8228" name="BLOODED" hidden="false" targetId="4e44-aedf-3498-4e1b" primary="false"/>
<categoryLink id="07cf-0fd9-4db0-1517" name="Chaos" hidden="false" targetId="ba61-d304-9352-ec15" primary="false"/>
<categoryLink id="04cf-33c1-c721-162e" name="Militarum Traitoris" hidden="false" targetId="0e02-9fa7-8004-6c36" primary="false"/>
<categoryLink id="f212-a525-d95a-1539" name="Traitor Gunner" hidden="false" targetId="d78a-9e4a-716b-d0ea" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="4395-def1-d747-3fd9" name="Flamer" 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="14ce-4783-988c-9f73" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="255d-8869-7662-7c96" type="max"/>
</constraints>
<profiles>
<profile id="6067-0605-ea5e-707d" 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="e685-65f3-7158-7e45" name="Rng x" hidden="false" targetId="92de-2ad3-3554-0b3e" type="rule"/>
<infoLink id="fcd6-5d5d-0fe5-4791" 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>
</selectionEntries>
<entryLinks>
<entryLink id="03e0-19b6-00d1-c3ee" name="Battle Honours - Marksman" hidden="false" collective="false" import="true" targetId="e84e-ae34-82a8-57b0" type="selectionEntryGroup">
<entryLinks>
<entryLink id="40b5-9d24-02de-0ea5" name="Blooded 2 - Motivation for Violence" hidden="false" collective="false" import="true" targetId="cfc5-a67a-3efe-a63b" type="selectionEntry"/>
<entryLink id="02c6-2ca9-ad6a-0128" name="Blooded 3 - Bitter Resolve" hidden="false" collective="false" import="true" targetId="a532-3a43-4029-9cbc" type="selectionEntry"/>
<entryLink id="8ffc-19d9-2b7f-c31c" name="Blooded 4 - Marauder" hidden="false" collective="false" import="true" targetId="bb77-a770-3036-269a" type="selectionEntry"/>
<entryLink id="e5c7-3ce5-ebb4-d886" name="Blooded 5 - Zealous" hidden="false" collective="false" import="true" targetId="0403-b867-2d43-3b6c" type="selectionEntry"/>
<entryLink id="a55c-a37b-3fa7-b761" name="Blooded 6 - Audacious" hidden="false" collective="false" import="true" targetId="11d4-d91d-15ad-4fc5" type="selectionEntry"/>
<entryLink id="0e7a-d7d3-776d-8c5e" name="Blooded 1 - Ardent on the Trigger" hidden="false" collective="false" import="true" targetId="3069-0f6f-4d3c-68ff" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="514c-b779-90c5-ee79" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="a329-4ff7-9542-e233" name="Equipment" hidden="false" collective="false" import="true" targetId="9155-1282-eb36-89f5" type="selectionEntryGroup"/>
<entryLink id="e32f-c405-f2ce-ef2a" name="Specialism" hidden="false" collective="false" import="true" targetId="eeb2-4002-2c34-3243" type="selectionEntryGroup"/>
<entryLink id="8dc1-1cfa-a804-6b20" name="Bayonet" hidden="false" collective="false" import="true" targetId="6b8b-b609-d36b-51aa" type="selectionEntry"/>
<entryLink id="bc81-80ba-17a4-3d51" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="f962-2f96-fbcc-8084" name="Traitor Gunner w/ grenade launcher" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="08cc-dcc6-bcc7-ce80" value="1">
<conditions>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="d74a-102d-ac5c-e9ac" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="force" value="-1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="08cc-dcc6-bcc7-ce80" type="max"/>
</constraints>
<infoLinks>
<infoLink id="139e-56b2-8557-7c32" name="Traitor Gunner" hidden="false" targetId="cbb5-155e-bddc-375e" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="5831-b86a-ab08-de45" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
<categoryLink id="009c-b0e4-c6b9-7ce0" name="BLOODED" hidden="false" targetId="4e44-aedf-3498-4e1b" primary="false"/>
<categoryLink id="11ed-ac62-9df6-c499" name="Chaos" hidden="false" targetId="ba61-d304-9352-ec15" primary="false"/>
<categoryLink id="45e9-301d-e29c-41b6" name="Militarum Traitoris" hidden="false" targetId="0e02-9fa7-8004-6c36" primary="false"/>
<categoryLink id="d84c-0e97-2d65-5ab6" name="Traitor Gunner" hidden="false" targetId="d78a-9e4a-716b-d0ea" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="0ace-999a-bf88-6fd0" name="Grenade launcher" 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="3868-8d6b-3284-7476" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="469d-2ea3-4106-c67e" type="max"/>
</constraints>
<profiles>
<profile id="997d-05af-e225-1f16" name="⌖ Grenade 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">4+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">2/4</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Blast ⬤</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
<profile id="e06b-9e8f-e04b-7197" name="⌖ Grenade 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">4+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">4/5</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">AP1</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="7106-b03b-d16c-8fc1" name="Blast x" hidden="false" targetId="d848-be09-6d6d-4708" type="rule"/>
<infoLink id="046a-475d-eca7-ef80" 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>
</selectionEntries>
<entryLinks>
<entryLink id="8b35-d59a-77ce-17dc" name="Battle Honours - Marksman" hidden="false" collective="false" import="true" targetId="e84e-ae34-82a8-57b0" type="selectionEntryGroup">
<entryLinks>
<entryLink id="b52f-897f-cee2-3637" name="Blooded 2 - Motivation for Violence" hidden="false" collective="false" import="true" targetId="cfc5-a67a-3efe-a63b" type="selectionEntry"/>
<entryLink id="7676-eb1a-b502-192a" name="Blooded 3 - Bitter Resolve" hidden="false" collective="false" import="true" targetId="a532-3a43-4029-9cbc" type="selectionEntry"/>
<entryLink id="247f-b7b7-5a40-ddd0" name="Blooded 4 - Marauder" hidden="false" collective="false" import="true" targetId="bb77-a770-3036-269a" type="selectionEntry"/>
<entryLink id="3fb9-ad65-0d06-3584" name="Blooded 5 - Zealous" hidden="false" collective="false" import="true" targetId="0403-b867-2d43-3b6c" type="selectionEntry"/>
<entryLink id="17e7-2b15-ea6b-e21b" name="Blooded 6 - Audacious" hidden="false" collective="false" import="true" targetId="11d4-d91d-15ad-4fc5" type="selectionEntry"/>
<entryLink id="3448-197e-3d1b-411b" name="Blooded 1 - Ardent on the Trigger" hidden="false" collective="false" import="true" targetId="3069-0f6f-4d3c-68ff" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="f428-ca81-af27-6a8a" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="8d37-f75e-7014-db35" name="Equipment" hidden="false" collective="false" import="true" targetId="9155-1282-eb36-89f5" type="selectionEntryGroup"/>
<entryLink id="58de-ce0a-9e02-2159" name="Specialism" hidden="false" collective="false" import="true" targetId="eeb2-4002-2c34-3243" type="selectionEntryGroup"/>
<entryLink id="4806-4112-cfb1-0592" name="Bayonet" hidden="false" collective="false" import="true" targetId="6b8b-b609-d36b-51aa" type="selectionEntry"/>
<entryLink id="904a-afd6-bfd4-e48f" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="08db-5e7e-9301-ed57" name="Traitor Gunner w/ meltagun" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="d2c7-a616-6b10-2aa2" value="1">
<conditions>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="d74a-102d-ac5c-e9ac" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="force" value="-1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="d2c7-a616-6b10-2aa2" type="max"/>
</constraints>
<infoLinks>
<infoLink id="c098-878d-3bdc-144a" name="Traitor Gunner" hidden="false" targetId="cbb5-155e-bddc-375e" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="47d5-cfca-3035-9feb" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
<categoryLink id="ed33-6fc5-2fce-7f29" name="BLOODED" hidden="false" targetId="4e44-aedf-3498-4e1b" primary="false"/>
<categoryLink id="83f6-9873-2c00-856f" name="Chaos" hidden="false" targetId="ba61-d304-9352-ec15" primary="false"/>
<categoryLink id="517e-7fa8-0677-4611" name="Militarum Traitoris" hidden="false" targetId="0e02-9fa7-8004-6c36" primary="false"/>
<categoryLink id="8d49-52d8-3afb-9a6d" name="Traitor Gunner" hidden="false" targetId="d78a-9e4a-716b-d0ea" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="a30b-d33d-e0d4-4196" name="Meltagun" 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="302b-4716-a7bf-4462" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1925-a16a-69fa-1605" type="max"/>
</constraints>
<profiles>
<profile id="c323-36b9-f802-d0f5" 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">4+</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="fb3a-d90f-c71b-dff5" name="Rng x" hidden="false" targetId="92de-2ad3-3554-0b3e" type="rule"/>
<infoLink id="bb7b-4c87-7de9-ce3f" name="APx" hidden="false" targetId="db98-339e-d0a2-e042" type="rule"/>
<infoLink id="958d-35a4-37dc-7256" name="MWx" hidden="false" targetId="0d4b-7a76-d266-bcc1" type="rule"/>
</infoLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="9763-e883-95f5-b6b0" name="Battle Honours - Marksman" hidden="false" collective="false" import="true" targetId="e84e-ae34-82a8-57b0" type="selectionEntryGroup">
<entryLinks>
<entryLink id="1bd5-658f-b3c6-aadf" name="Blooded 2 - Motivation for Violence" hidden="false" collective="false" import="true" targetId="cfc5-a67a-3efe-a63b" type="selectionEntry"/>
<entryLink id="b679-d7dd-41e4-afdf" name="Blooded 3 - Bitter Resolve" hidden="false" collective="false" import="true" targetId="a532-3a43-4029-9cbc" type="selectionEntry"/>
<entryLink id="69eb-254a-8097-27f2" name="Blooded 4 - Marauder" hidden="false" collective="false" import="true" targetId="bb77-a770-3036-269a" type="selectionEntry"/>
<entryLink id="c133-3359-ba85-83b6" name="Blooded 5 - Zealous" hidden="false" collective="false" import="true" targetId="0403-b867-2d43-3b6c" type="selectionEntry"/>
<entryLink id="aa39-7bd5-480e-0fed" name="Blooded 6 - Audacious" hidden="false" collective="false" import="true" targetId="11d4-d91d-15ad-4fc5" type="selectionEntry"/>
<entryLink id="1065-a4e4-da2b-42d7" name="Blooded 1 - Ardent on the Trigger" hidden="false" collective="false" import="true" targetId="3069-0f6f-4d3c-68ff" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="bf62-d66e-0e18-8012" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="ffe0-ae2c-f01f-11dc" name="Equipment" hidden="false" collective="false" import="true" targetId="9155-1282-eb36-89f5" type="selectionEntryGroup"/>
<entryLink id="c0c5-1dfb-70ac-9bb5" name="Specialism" hidden="false" collective="false" import="true" targetId="eeb2-4002-2c34-3243" type="selectionEntryGroup"/>
<entryLink id="2db1-3318-0cda-9cee" name="Bayonet" hidden="false" collective="false" import="true" targetId="6b8b-b609-d36b-51aa" type="selectionEntry"/>
<entryLink id="aaab-0dfc-083e-5de1" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="bb95-eb2d-8805-8e28" name="Traitor Gunner w/ plasma gun" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="a4a7-98ed-30c3-0b50" value="1">
<conditions>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="d74a-102d-ac5c-e9ac" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="force" value="-1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="a4a7-98ed-30c3-0b50" type="max"/>
</constraints>
<infoLinks>
<infoLink id="57d6-9ae7-18e6-ea95" name="Traitor Gunner" hidden="false" targetId="cbb5-155e-bddc-375e" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="f539-0b5a-037e-becb" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
<categoryLink id="d6ba-2294-8b5c-233a" name="BLOODED" hidden="false" targetId="4e44-aedf-3498-4e1b" primary="false"/>
<categoryLink id="b96b-012f-ec9c-bc18" name="Chaos" hidden="false" targetId="ba61-d304-9352-ec15" primary="false"/>
<categoryLink id="87fd-e320-f9ec-1c4e" name="Militarum Traitoris" hidden="false" targetId="0e02-9fa7-8004-6c36" primary="false"/>
<categoryLink id="e1c7-ae9c-6efb-4efa" name="Traitor Gunner" hidden="false" targetId="d78a-9e4a-716b-d0ea" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="4854-60e5-3e0b-c3ff" name="Plasma gun" 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="8f98-df9c-6111-5bc6" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d989-801a-059d-ad75" type="max"/>
</constraints>
<profiles>
<profile id="042f-ffb6-0f10-b299" 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">4+</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="521f-dbb6-9580-5564" 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">4+</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="cbd6-ca7f-e430-fd42" name="APx" hidden="false" targetId="db98-339e-d0a2-e042" type="rule"/>
<infoLink id="5529-dc96-7064-6044" 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>
<entryLinks>
<entryLink id="ace7-1d1c-f721-db8b" name="Battle Honours - Marksman" hidden="false" collective="false" import="true" targetId="e84e-ae34-82a8-57b0" type="selectionEntryGroup">
<entryLinks>
<entryLink id="1f12-de63-f651-b509" name="Blooded 2 - Motivation for Violence" hidden="false" collective="false" import="true" targetId="cfc5-a67a-3efe-a63b" type="selectionEntry"/>
<entryLink id="7f9f-8f2d-9668-416a" name="Blooded 3 - Bitter Resolve" hidden="false" collective="false" import="true" targetId="a532-3a43-4029-9cbc" type="selectionEntry"/>
<entryLink id="ccc1-08b6-b50f-c35b" name="Blooded 4 - Marauder" hidden="false" collective="false" import="true" targetId="bb77-a770-3036-269a" type="selectionEntry"/>
<entryLink id="50be-2908-f5f1-44d3" name="Blooded 5 - Zealous" hidden="false" collective="false" import="true" targetId="0403-b867-2d43-3b6c" type="selectionEntry"/>
<entryLink id="9bef-e8e2-6f60-b7a6" name="Blooded 6 - Audacious" hidden="false" collective="false" import="true" targetId="11d4-d91d-15ad-4fc5" type="selectionEntry"/>
<entryLink id="1b55-0ffb-4b72-3db4" name="Blooded 1 - Ardent on the Trigger" hidden="false" collective="false" import="true" targetId="3069-0f6f-4d3c-68ff" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="c25f-8e89-4fb6-51ae" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="c686-5891-f782-0ed5" name="Equipment" hidden="false" collective="false" import="true" targetId="9155-1282-eb36-89f5" type="selectionEntryGroup"/>
<entryLink id="15c5-bcf3-964b-5a48" name="Specialism" hidden="false" collective="false" import="true" targetId="eeb2-4002-2c34-3243" type="selectionEntryGroup"/>
<entryLink id="6c8b-760e-f165-dbaf" name="Bayonet" hidden="false" collective="false" import="true" targetId="6b8b-b609-d36b-51aa" type="selectionEntry"/>
<entryLink id="4d0c-5e92-31fb-c5b4" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="7169-14fd-391f-d80e" name="Traitor Ogryn (counts as 2)" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="name" value="Traitor Ogryn"/>
</modifiers>
<modifierGroups>
<modifierGroup type="and">
<modifiers>
<modifier type="set-primary" value="39c7-f66f-59b8-3b88" field="category"/>
</modifiers>
<conditions>
<condition type="notInstanceOf" value="1" field="selections" scope="force" childId="7138-2b60-74ce-a90b" shared="true"/>
</conditions>
</modifierGroup>
</modifierGroups>
<profiles>
<profile id="481e-ae56-f875-8ddf" name="Traitor Ogryn" 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">5+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">16</characteristic>
</characteristics>
</profile>
<profile id="b27d-7ee8-db65-38d1" name="Avalanche of Muscle" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">Each time this operative finishes a Charge action, select one enemy operative within Engagement Range of it to suffer D3 mortal wounds.</characteristic>
</characteristics>
</profile>
<profile id="a806-333e-4412-e43a" name="Chem-enhanced" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">You can ignore any or all modifiers to this operative's APL and it is not affected by the Stun critical hit rule.</characteristic>
</characteristics>
</profile>
<profile id="d076-1729-29de-97e2" name="Brute" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">This operative cannot perform mission actions or the Pick Up action. Unless otherwise specified, this operative cannot be equipped with equipment.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="a747-0665-9fe8-d6b4" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
<categoryLink id="c25f-fb21-d72a-1c97" name="Chaos" hidden="false" targetId="ba61-d304-9352-ec15" primary="false"/>