forked from BSData/wh40k-9e
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Chaos - Servants of the Abyss.cat
1305 lines (1305 loc) · 99.8 KB
/
Chaos - Servants of the Abyss.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="9837-3435-7452-d14b" name="Chaos - Servants of the Abyss" revision="12" battleScribeVersion="2.03" authorName="BSData Developers" authorUrl="https://discord.gg/KqPVhds" library="false" gameSystemId="28ec-711c-d87f-3aeb" gameSystemRevision="133" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<publications>
<publication id="8259-2a22-78ba-716a" name="Warhammer Quest: Blackstone Fortress - Escalation"/>
</publications>
<categoryEntries>
<categoryEntry id="3644-2f4f-07ce-6116" name="Faction: Heretic Astartes" hidden="false"/>
<categoryEntry id="2e99-986a-4809-d0b5" name="Faction: Black Legion" hidden="false"/>
<categoryEntry id="b0c7-cff4-f82b-2007" name="Faction: Servants of the Abyss" hidden="false"/>
<categoryEntry id="6140-918a-372e-e4c8" name="Chaos Lord" hidden="false"/>
<categoryEntry id="2cd3-3a95-3ba5-f6a8" name="Obsidius Mallex" hidden="false"/>
<categoryEntry id="2c15-9ceb-667c-b09a" name="Rogue Psyker" hidden="false"/>
<categoryEntry id="3b97-0693-7ef2-a209" name="Negavolt Cultists" hidden="false"/>
<categoryEntry id="4fe7-7414-b7a9-6632" name="Chaos Space Marines" hidden="false"/>
<categoryEntry id="f435-306a-dc02-a1ff" name="Black Legionnaires" hidden="false"/>
<categoryEntry id="d539-90e0-e5da-87fe" name="Traitor Guardsmen" hidden="false"/>
<categoryEntry id="21f6-175a-bf57-2d1d" name="Faction: Blackstone Construct" hidden="false"/>
<categoryEntry id="0864-e459-e7a9-74dd" name="Spindle Drones" hidden="false"/>
<categoryEntry id="fae9-a44d-32c3-21c6" name="Chaos Beastmen" hidden="false"/>
<categoryEntry id="c1b2-f117-cdcc-9145" name="Traitor Commissar" hidden="false"/>
<categoryEntry id="1f31-34ea-bcdb-de6e" name="Chaos Ogryn" hidden="false"/>
<categoryEntry id="1aad-1bc4-6055-639e" name="Cultists of the Abyss" hidden="false"/>
<categoryEntry id="229e-a9ea-94e2-b13e" name="Cultist Firebrand" hidden="false"/>
</categoryEntries>
<selectionEntries>
<selectionEntry id="15c2-7ea7-860e-ede6" name="Cultist Firebrand" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="02d2-4824-d932-9800" name="Cultist Firebrand" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">6"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">3+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">3+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">4</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">4</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">3</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">3</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">6</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">4+</characteristic>
</characteristics>
</profile>
<profile id="0d6c-aea8-b49a-fea1" name="Explosive Demise" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">If this model is reduced to 0 wounds, roll a dice before removing it from the battlefield; on a 5+ the warp energies contained within it burst out, and each unit within 3” suffers 1 mortal wound.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="5bc6-cf09-1553-ca2b" name="Servants of the Abyss" hidden="false" targetId="50ce-cc4f-7ac1-6a22" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="d620-e7ac-72ee-41b5" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
<categoryLink id="0446-3a16-de42-e4e4" name="Faction: Chaos" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="b06c-c54e-df90-facd" name="Faction: Servants of the Abyss" hidden="false" targetId="b0c7-cff4-f82b-2007" primary="false"/>
<categoryLink id="ec11-86d2-d3b4-fc4b" name="Character" hidden="false" targetId="ef18-746a-369f-43a4" primary="false"/>
<categoryLink id="c4aa-5441-98c6-5679" name="Infantry" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="e956-46f4-f34a-b85d" name="Cultist Firebrand" hidden="false" targetId="229e-a9ea-94e2-b13e" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="d1de-ed03-a861-ae56" name="Hellfire torch" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5af6-1b5f-8247-dd71" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c175-d134-7603-cab2" type="max"/>
</constraints>
<profiles>
<profile id="4807-fbd2-cbb2-56fb" name="Hellfire torch" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">8"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Assault D6</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">5</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-1</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">2</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">This weapon automatically hits its target.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="c13c-4793-6fd4-3969" name="Laspistol" hidden="false" collective="false" import="true" targetId="c10b-e1a4-c913-ae15" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="173d-fbe6-8409-bda0" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8d50-7699-0548-4eb4" type="max"/>
</constraints>
</entryLink>
<entryLink id="2d64-a89d-3d1a-66ad" name="Frag & Krak grenades" hidden="false" collective="false" import="true" targetId="cddf-945e-1335-e681" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="bb88-9a8c-3dc9-c465" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="628b-7c2f-6d1c-8849" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="2.0"/>
<cost name="pts" typeId="points" value="35.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="254c-526d-2d8b-1a4b" name="Obsidius Mallex" hidden="false" collective="false" import="true" targetId="25bc-f094-37a2-21fe" type="selectionEntry"/>
<entryLink id="2cad-26fa-a45d-3995" name="Rogue Psyker" hidden="false" collective="false" import="true" targetId="ff93-aa12-825c-1a53" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2cd3-3a95-3ba5-f6a8" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="571f-505f-27f6-3ff7" name="Elites" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="5f1a-c55d-2661-8c57" name="Rogue Psyker" hidden="false" collective="false" import="true" targetId="ff93-aa12-825c-1a53" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2cd3-3a95-3ba5-f6a8" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="83a3-59ad-81f3-31ce" name="New CategoryLink" hidden="false" targetId="ff36a6f3-19bf-4f48-8956-adacfd28fe74" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="fe26-ce8a-7b7b-caa1" name="Negavolt Cultists" hidden="false" collective="false" import="true" targetId="d48f-abbc-679e-c852" type="selectionEntry"/>
<entryLink id="2fc3-1746-72c4-159c" name="Black Legionnaires" hidden="false" collective="false" import="true" targetId="d10c-3d02-68de-b3dc" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2cd3-3a95-3ba5-f6a8" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="551b-c8e8-4a7a-87f3" name="New CategoryLink" hidden="false" targetId="5d76b6f5-20ae-4d70-8f59-ade72a2add3a" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="e97f-6e62-0121-af6c" name="Black Legionnaires" hidden="false" collective="false" import="true" targetId="d10c-3d02-68de-b3dc" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2cd3-3a95-3ba5-f6a8" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="77c6-41f5-6960-1076" name="New CategoryLink" hidden="false" targetId="ff36a6f3-19bf-4f48-8956-adacfd28fe74" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="9fd0-6ee0-d6d4-81d1" name="Traitor Guardsmen" hidden="false" collective="false" import="true" targetId="90b2-1601-f35a-bde4" type="selectionEntry"/>
<entryLink id="2743-b89d-421f-05e9" name="Chaos Beastmen" hidden="false" collective="false" import="true" targetId="18f8-b2c3-add2-3457" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2cd3-3a95-3ba5-f6a8" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="c542-7d4a-85e6-52fe" name="New CategoryLink" hidden="false" targetId="ff36a6f3-19bf-4f48-8956-adacfd28fe74" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="569f-1ed2-f9f0-2bb7" name="Chaos Beastmen" hidden="false" collective="false" import="true" targetId="18f8-b2c3-add2-3457" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2cd3-3a95-3ba5-f6a8" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="dc09-14bd-7803-22aa" name="New CategoryLink" hidden="false" targetId="5d76b6f5-20ae-4d70-8f59-ade72a2add3a" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="a233-6294-11f8-ec93" name="Chaos Ogryn" hidden="false" collective="false" import="true" targetId="2484-a240-4b43-4bbd" type="selectionEntry"/>
<entryLink id="1468-f116-994c-52a2" name="Traitor Commissar" hidden="false" collective="false" import="true" targetId="2b45-2846-0bd4-2201" type="selectionEntry"/>
<entryLink id="8b16-3101-dd68-f578" name="Cultists of the Abyss" hidden="false" collective="false" import="true" targetId="69b4-3c70-f40b-f1b9" type="selectionEntry">
<categoryLinks>
<categoryLink id="be9c-6068-b54a-1529" name="New CategoryLink" hidden="false" targetId="5d76b6f5-20ae-4d70-8f59-ade72a2add3a" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
<sharedSelectionEntries>
<selectionEntry id="25bc-f094-37a2-21fe" name="Obsidius Mallex" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="2532-b175-e823-305f" type="max"/>
</constraints>
<profiles>
<profile id="fda5-4f2c-f28c-c0a8" name="Obsidius Mallex" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">6"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">2+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">2+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">4</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">4</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">5</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">4</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">9</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
<profile id="64e3-3b53-f27b-89e3" name="Lord of Chaos" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">Re-roll hit rolls of 1 for friendly BLACK LEGION and friendly SERVANTS OF THE ABYSS units within 6" of Obsidius Mallex.</characteristic>
</characteristics>
</profile>
<profile id="1b5c-0cf3-1d35-41e8" name="Sigil of Corruption" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">Obsidius Mallex has a 4+ invulnerable save.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="a83f-9c5c-ed44-2320" name="Death to the False Emperor" hidden="false" targetId="9e53-53f4-6b54-0e52" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="0a5b-5a0c-b379-9a3e" name="Chaos" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="d454-56ef-937d-831d" name="Faction: Heretic Astartes" hidden="false" targetId="3644-2f4f-07ce-6116" primary="false"/>
<categoryLink id="db51-ed2a-7eb6-1c4f" name="Faction: Black Legion" hidden="false" targetId="2e99-986a-4809-d0b5" primary="false"/>
<categoryLink id="aa92-cf9c-af63-07c4" name="Faction: Servants of the Abyss" hidden="false" targetId="b0c7-cff4-f82b-2007" primary="false"/>
<categoryLink id="3031-5d0c-6b88-49da" name="Character" hidden="false" targetId="ef18-746a-369f-43a4" primary="false"/>
<categoryLink id="0f9f-e705-37c3-d588" name="Infantry" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="9e04-a9fd-d01f-caf7" name="Chaos Lord" hidden="false" targetId="6140-918a-372e-e4c8" primary="false"/>
<categoryLink id="6975-3da6-c793-e70a" name="Obsidius Mallex" hidden="false" targetId="2cd3-3a95-3ba5-f6a8" primary="false"/>
<categoryLink id="7b05-9de3-3555-34fc" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="d2e2-164a-e7e7-ced6" name="Thunder hammer" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5e84-4d49-a398-1c03" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="48cf-aaa9-040a-831d" type="max"/>
</constraints>
<profiles>
<profile id="3efe-e0e0-3c16-2092" name="Thunder hammer" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">Melee</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Melee</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">x2</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-3</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">3</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">When attacking with this weapon, subtract 1 from the hit roll.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="58d5-94fb-8a13-f443" name="Plasma pistol" hidden="false" collective="false" import="true" targetId="83be-1ba9-c326-4760" type="selectionEntry">
<modifiers>
<modifier type="set" field="points" value="0.0"/>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b247-02a0-20a4-7461" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8997-a992-88ff-b246" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="5.0"/>
<cost name="pts" typeId="points" value="130.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="ff93-aa12-825c-1a53" name="Rogue Psyker" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6373-4635-23e3-b08c" type="max"/>
</constraints>
<profiles>
<profile id="d6d5-b7fe-dc1a-b07f" name="Rogue Psyker" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">6"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">4+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">4+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">3</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">3</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">4</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">2</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">8</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">5+</characteristic>
</characteristics>
</profile>
<profile id="a2ae-2c72-73ae-7a22" name="Unrestrained Power" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">You can re-roll any dice rolls of 1 when taking a psychic test for this model. However, this model suffers Perils of the Warp on any psychic test that is a double, not just a double 1 or double 6.</characteristic>
</characteristics>
</profile>
<profile id="59e4-9f21-7e7e-2079" name="Rogue Psyker" hidden="false" typeId="bc97-dea9-9e88-bb7d" typeName="Psyker">
<characteristics>
<characteristic name="Cast" typeId="5afb-9914-904b-d3b3">1</characteristic>
<characteristic name="Deny" typeId="b5ac-9c20-5d5a-6f9b">1</characteristic>
<characteristic name="Powers Known" typeId="69d7-b45e-00a2-7e46">Smite</characteristic>
<characteristic name="Other" typeId="c2e2-f115-0003-5d7b">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="dbd5-da56-202a-d7a3" name="Servants of the Abyss" hidden="false" targetId="50ce-cc4f-7ac1-6a22" type="rule"/>
<infoLink id="bd48-0a9a-5d42-fd0f" name="Slaves to Mallex" hidden="false" targetId="8a91-062d-c0dd-59dc" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="bb89-1fa3-44e2-5fbf" name="Chaos" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="25df-62d3-0bef-53c2" name="Faction: Servants of the Abyss" hidden="false" targetId="b0c7-cff4-f82b-2007" primary="false"/>
<categoryLink id="7471-c052-1e47-8aa7" name="Character" hidden="false" targetId="ef18-746a-369f-43a4" primary="false"/>
<categoryLink id="87f2-5f18-16b5-c229" name="Infantry" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="b239-55eb-60ae-724f" name="Psyker" hidden="false" targetId="e691-aad7-d21c-1023" primary="false"/>
<categoryLink id="73b0-b485-9ea0-0065" name="Rogue Psyker" hidden="false" targetId="2c15-9ceb-667c-b09a" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="145b-6acf-d82b-232d" name="Chaos stave" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b1a6-55d5-005d-1625" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f76e-4dcd-0c32-0733" type="max"/>
</constraints>
<profiles>
<profile id="12ed-95c3-a3a6-aed1" name="Chaos stave" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">Melee</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Melee</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">User</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-1</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">D3</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="de83-ca3b-6f6e-bf9c" name="Smite" hidden="false" collective="false" import="true" targetId="03fd-db47-5333-1e1f" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e0b0-4b18-5398-8602" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7724-1a6e-b76d-e93e" type="max"/>
</constraints>
</entryLink>
<entryLink id="e65e-def8-5c79-66f4" name="Laspistol" hidden="false" collective="false" import="true" targetId="c10b-e1a4-c913-ae15" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="24a1-d494-adb7-2d9b" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="eeec-f627-0d12-f830" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="2.0"/>
<cost name="pts" typeId="points" value="35.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="d48f-abbc-679e-c852" name="Negavolt Cultists" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="5ac2-072d-ef39-1e67" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="c54a-58de-e13b-7ea1" name="Chaos" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="9556-e9b2-c02e-ed74" name="Faction: Servants of the Abyss" hidden="false" targetId="b0c7-cff4-f82b-2007" primary="false"/>
<categoryLink id="e852-ba25-3b88-08a0" name="Infantry" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="3aec-e973-2dd5-1bb4" name="Negavolt Cultists" hidden="false" targetId="3b97-0693-7ef2-a209" primary="false"/>
<categoryLink id="9ad0-2d5a-13b3-3f16" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="7eec-e640-47e4-1170" name="Negavolt Cultist" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="4.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="45d1-c1bf-1c64-cfa8" type="max"/>
<constraint field="selections" scope="parent" value="4.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7c4a-808b-683f-40db" type="min"/>
</constraints>
<profiles>
<profile id="3e14-aefe-9d01-d3a7" name="Negavolt Cultists" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">6"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">3+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">4+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">3</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">3</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">1</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">3</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">8</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">6+</characteristic>
</characteristics>
</profile>
<profile id="d8fe-e161-db1f-10a9" name="Voltagheist Field" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">Models in this unit have a 5+ invulnerable save. When this unit completes a charge move, choose one of the targets you charged and roll a D6 for each model in the charging unit. Each roll of 6 inflicts a mortal wound on the unit you chose.</characteristic>
</characteristics>
</profile>
<profile id="b371-913f-0ea4-fcf9" name="Fanatical Devotion" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">Each time a model in this unit loses a wound, roll a D6; on a 5+ the model does not lose that wound.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="8f3e-aff4-b99c-5336" name="Servants of the Abyss" hidden="false" targetId="50ce-cc4f-7ac1-6a22" type="rule"/>
</infoLinks>
<selectionEntries>
<selectionEntry id="1e23-b28c-f3b9-862a" name="Electro-goads" hidden="false" collective="true" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6217-2031-9a49-b99f" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e245-1e87-321b-eb10" type="max"/>
</constraints>
<profiles>
<profile id="88d8-2452-555e-ded3" name="Electro-goads" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">Melee</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Melee</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">+2</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">0</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">1</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">Each hit roll of 6 made with this weapon scores 3 hits.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="2.0"/>
<cost name="pts" typeId="points" value="50.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="d10c-3d02-68de-b3dc" name="Black Legionnaires" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="set" field="0bd7-ddc5-ef4b-971e" value="0.0">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2cd3-3a95-3ba5-f6a8" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="0bd7-ddc5-ef4b-971e" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="3fb9-7452-687a-ed4e" name="Chaos" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="b56b-273f-c2cd-7a4b" name="Faction: Heretic Astartes" hidden="false" targetId="3644-2f4f-07ce-6116" primary="false"/>
<categoryLink id="5061-3af0-dfac-6cfe" name="Faction: Black Legion" hidden="false" targetId="2e99-986a-4809-d0b5" primary="false"/>
<categoryLink id="55b5-b003-4c9b-3e26" name="Faction: Servants of the Abyss" hidden="false" targetId="b0c7-cff4-f82b-2007" primary="false"/>
<categoryLink id="5d66-c739-2cb2-742f" name="Infantry" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="9c05-932e-8ed6-f77f" name="Chaos Space Marines" hidden="false" targetId="4fe7-7414-b7a9-6632" primary="false"/>
<categoryLink id="20d0-1105-0402-6c00" name="Black Legionnaires" hidden="false" targetId="f435-306a-dc02-a1ff" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="323d-7468-b5e6-1193" name="Black Legionnaire" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8c7c-1ae3-5120-fe3a" type="min"/>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e324-1904-de61-8096" type="max"/>
</constraints>
<profiles>
<profile id="ff23-366e-15ae-fa2f" name="Mallex's Followers" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">If your army is Battle-forged, you can only include this unit in a Detachment which also includes OBSIDIUS MALLEX. Furthermore, this unit does not take up slots in a Detachment that includes OBSIDIUS MALLEX.</characteristic>
</characteristics>
</profile>
<profile id="c364-99e6-3f8d-b9ed" name="Black Legionnaire" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">6"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">3+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">3+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">4</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">4</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">1</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">1</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">7</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="e8d3-6804-9e91-537c" name="Servants of the Abyss" hidden="false" targetId="50ce-cc4f-7ac1-6a22" type="rule"/>
<infoLink id="375f-62a1-0242-b96c" name="Death to the False Emperor" hidden="false" targetId="9e53-53f4-6b54-0e52" type="profile"/>
</infoLinks>
<entryLinks>
<entryLink id="f30c-bb60-e3a3-d8cf" name="Bolt pistol" hidden="false" collective="false" import="true" targetId="37d3-7098-d596-9948" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3b58-489a-dd2f-8f8c" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="698b-c064-8fbd-990d" type="max"/>
</constraints>
</entryLink>
<entryLink id="f12c-f6d6-b8c7-3add" name="Boltgun" hidden="false" collective="false" import="true" targetId="ca06-ac13-d02f-6f9a" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6aae-2783-393d-e7bc" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d118-f203-25ba-c111" type="max"/>
</constraints>
</entryLink>
<entryLink id="6e65-cd9d-eb77-a22e" name="Frag & Krak grenades" hidden="false" collective="false" import="true" targetId="cddf-945e-1335-e681" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9605-e83d-5a19-b57e" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9ddc-89c9-881b-25c5" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="1.0"/>
<cost name="pts" typeId="points" value="28.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="90b2-1601-f35a-bde4" name="Traitor Guardsmen" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="roster" value="2.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="c170-698c-489e-17e7" type="max"/>
</constraints>
<profiles>
<profile id="368e-e622-1b1e-4ddf" name="Traitor Guardsman" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">6"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">4+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">4+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">3</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">3</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">1</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">1</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">6</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">5+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="d038-6256-2e42-c4c8" name="Servants of the Abyss" hidden="false" targetId="50ce-cc4f-7ac1-6a22" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="af9b-fee5-5f66-ea90" name="Chaos" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="ad4c-f59a-12ae-88a4" name="Faction: Servants of the Abyss" hidden="false" targetId="b0c7-cff4-f82b-2007" primary="false"/>
<categoryLink id="2e38-6f8f-6456-2d5b" name="Infantry" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="12bb-27ac-b809-3d58" name="Traitor Guardsmen" hidden="false" targetId="d539-90e0-e5da-87fe" primary="false"/>
<categoryLink id="9373-78b6-ba8e-417c" name="New CategoryLink" hidden="false" targetId="5d76b6f5-20ae-4d70-8f59-ade72a2add3a" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="48c3-e6a4-2e76-fe65" name="Traitor Sergeant" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1d44-66ee-e2d2-f026" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ee9b-a2c2-fbf9-614d" type="max"/>
</constraints>
<profiles>
<profile id="b9d6-a329-7023-d079" name="Traitor Sergeant" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">6"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">4+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">4+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">3</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">3</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">1</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">2</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">7</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">5+</characteristic>
</characteristics>
</profile>
</profiles>
<entryLinks>
<entryLink id="eddd-f51c-2e60-353c" name="Laspistol" hidden="false" collective="false" import="true" targetId="c10b-e1a4-c913-ae15" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9240-58d6-6210-189d" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3a44-f096-d00c-45ed" type="max"/>
</constraints>
</entryLink>
<entryLink id="fe26-084a-5d6d-79fe" name="Chainsword" hidden="false" collective="false" import="true" targetId="0dd1-2e2b-7dd1-5495" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0e0c-5ccc-1e9d-5a69" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="12e6-a853-23bb-c9dc" type="max"/>
</constraints>
</entryLink>
<entryLink id="0597-1821-6409-5f56" name="Frag grenade" hidden="false" collective="false" import="true" targetId="f68e-9984-71fe-6bca" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0254-afe8-65bd-8b4e" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9b6e-d139-788c-0113" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="f218-a234-0898-1aef" name="Traitor Guardsman" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1e09-20c0-cc1f-3896" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2769-c0fa-1642-1950" type="max"/>
</constraints>
<entryLinks>
<entryLink id="068c-4f01-102b-a1d5" name="Flamer" hidden="false" collective="false" import="true" targetId="fd22-6743-2d4c-dd62" type="selectionEntry">
<modifiers>
<modifier type="set" field="points" value="0.0"/>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="00dc-ee64-0847-e485" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8034-cd8e-80ec-7ec9" type="max"/>
</constraints>
</entryLink>
<entryLink id="bdd5-2ff4-0fba-724c" name="Frag grenade" hidden="false" collective="false" import="true" targetId="f68e-9984-71fe-6bca" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c48f-68b1-8af4-7a86" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="af21-dfc7-b1c5-dd8e" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="78bd-2b47-2760-30d8" name="Traitor Guardsman" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="29c2-5b5d-0d83-7514" type="max"/>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a30c-ab84-af83-2809" type="min"/>
</constraints>
<selectionEntries>
<selectionEntry id="4341-083b-f970-f377" name="Lasgun" hidden="false" collective="true" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="94f1-9d13-9c79-120d" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="29b0-1fb9-f43b-a6ee" type="max"/>
</constraints>
<infoLinks>
<infoLink id="9b06-b21d-3a36-894c" name="Lasgun" hidden="false" targetId="d174-eb55-aaa6-d032" type="profile"/>
</infoLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="6581-b9cd-e98a-afad" name="Frag grenades" hidden="false" collective="true" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5925-2448-7851-59b9" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="89d0-fc5d-f6f8-ba7f" type="max"/>
</constraints>
<infoLinks>
<infoLink id="cbcd-8694-c2b0-20a0" name="Frag grenade" hidden="false" targetId="fdd8-1a5f-5722-d6ee" type="profile"/>
</infoLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="5f7a-5879-e9ed-befb" name="Traitor Guardsman" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b2c6-84d3-0c5d-fa0b" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cf87-a122-24c0-f498" type="min"/>
</constraints>
<selectionEntries>
<selectionEntry id="6d14-8a79-b05d-b435" name="Lasgun" hidden="false" collective="true" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="db50-4cd7-08cf-4cf3" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cfc3-e7bf-c062-0aa6" type="max"/>
</constraints>
<infoLinks>
<infoLink id="117c-7edd-dbe6-0b4a" name="Lasgun" hidden="false" targetId="d174-eb55-aaa6-d032" type="profile"/>
</infoLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="649d-9213-ef40-d2cd" name="Frag grenades" hidden="false" collective="true" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4a3d-5a94-3501-df98" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6e0b-db70-b3e7-45b1" type="max"/>
</constraints>
<infoLinks>
<infoLink id="d7d0-1102-7d17-6645" name="Frag grenade" hidden="false" targetId="fdd8-1a5f-5722-d6ee" type="profile"/>
</infoLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="7dbb-900d-2f28-636a" name="Krak grenade" hidden="false" collective="false" import="true" targetId="0f23-cd69-d106-371e" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9596-978e-5f7a-1944" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="07bc-caaf-763a-c5f8" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="da31-ffa1-86b4-98aa" name="Traitor Guardsman" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2bcc-e90a-d1fd-226e" type="min"/>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="056c-61a3-5085-9c9d" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="7af7-5085-158b-844b" name="Brutal assault weapon" hidden="false" collective="true" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="666d-34ad-36a1-6ba7" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6c9e-8761-8733-a34c" type="max"/>
</constraints>
<profiles>
<profile id="ad0b-cf30-152c-878e" name="Brutal assault weapon" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">Melee</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Melee</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">User</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">0</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">1</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">Each time the bearer fights, it can make 1 additional attack with this weapon.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="1dd6-90c4-e646-7d5e" name="Frag grenades" hidden="false" collective="true" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7c0f-6d29-495c-05c9" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8261-f4d5-d738-b1ee" type="max"/>
</constraints>
<infoLinks>
<infoLink id="6b96-b693-4edd-058e" name="Frag grenade" hidden="false" targetId="fdd8-1a5f-5722-d6ee" type="profile"/>
</infoLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="ff10-22c7-81a0-7b6c" name="Autopistol/Laspistol" hidden="false" collective="true" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="05a7-0980-5b18-2160" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="66f6-adf1-f5db-aeb3" type="min"/>
</constraints>
<profiles>
<profile id="34d0-1b15-128c-b0c9" name="Autopistol/Laspistol" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">12"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Pistol 1</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">3</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">0</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">1</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="2.0"/>
<cost name="pts" typeId="points" value="40.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="18f8-b2c3-add2-3457" name="Chaos Beastmen" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="df16-d190-edcf-0089" type="max"/>
</constraints>
<profiles>
<profile id="3bfe-8b4a-c794-c851" name="Savage Charge" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">Add 1 to the Strength and Attacks characteristics of models in this unit if it made a charge move in the same turn.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="0807-77d8-4ad1-b003" name="Servants of the Abyss" hidden="false" targetId="50ce-cc4f-7ac1-6a22" type="rule"/>
<infoLink id="a5ae-4b95-58e8-3837" name="Slaves to Mallex" hidden="false" targetId="8a91-062d-c0dd-59dc" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="8cd8-7372-3f08-7bef" name="Chaos" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="7de8-d8a7-4797-0415" name="Faction: Servants of the Abyss" hidden="false" targetId="b0c7-cff4-f82b-2007" primary="false"/>
<categoryLink id="faed-ead7-2b96-22de" name="Infantry" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="c419-da28-d8c6-a35e" name="Chaos Beastmen" hidden="false" targetId="fae9-a44d-32c3-21c6" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="bcfe-0f0c-3c2a-1467" name="Chaos Beastman" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="4.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e533-1000-5f9e-d40a" type="min"/>
<constraint field="selections" scope="parent" value="4.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="96d4-19f8-1459-5fbe" type="max"/>
</constraints>
<profiles>
<profile id="cc26-ba82-0a40-e02d" name="Chaos Beastman" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">6"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">3+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">4+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">4</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">4</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">1</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">1</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">6</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">5+</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry id="2b3d-34c8-9ab7-f271" name="Chainsword/Brutal assault weapon" hidden="false" collective="true" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="19cb-6b43-09b8-afc8" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9a6f-b104-cd8c-a509" type="max"/>
</constraints>
<profiles>
<profile id="8fa3-9f81-9f55-27da" name="Chainsword/Brutal assault weapon" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">Melee</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Melee</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">User</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">0</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">1</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">Each time the bearer fights, it can make 1 additional attack with this weapon.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="0307-3fd9-6506-dc5a" name="Autopistol/Laspistol" hidden="false" collective="true" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1cd4-fec2-2c74-0778" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="40f9-c713-7c6c-5abc" type="min"/>
</constraints>
<profiles>
<profile id="31cf-af89-18f4-e553" name="Autopistol/Laspistol" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">12"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Pistol 1</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">3</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">0</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">1</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="31eb-b918-678c-cc13" name="Frag & Krak grenades" hidden="false" collective="false" import="true" targetId="cddf-945e-1335-e681" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="dcc6-6cc1-060d-1463" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ce96-cc8b-7146-b854" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="1.0"/>
<cost name="pts" typeId="points" value="26.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="2b45-2846-0bd4-2201" name="Traitor Commissar" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="8c53-5b93-676e-e41a" name="Traitor Commissar" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">6"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">2+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">3+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">3</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">3</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">4</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">3</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">9</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">4+</characteristic>
</characteristics>
</profile>
<profile id="ed02-a088-e913-f7c2" name="Refractor Field" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">This model has a 5+ invulnerable save.</characteristic>
</characteristics>
</profile>
<profile id="0799-b4df-81a6-3e48" name="Enforcer" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">Friendly TRAITOR GUARDSMEN units within 6" of this model can use this model's Leadership instead of their own.</characteristic>
</characteristics>
</profile>
<profile id="5531-8d67-fde1-683c" name="Forwards! For the Dark Gods!" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">At the start of your Movement phase, you can pick one friendly TRAITOR GUARDSMEN unit within 6" of this model. That unit suffers 1 mortal wound, and until the end of the turn, add 3 to Advance and Charge rolls made for that unit.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="7a31-2590-7a28-8b9d" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
<categoryLink id="b59d-1de0-b7f6-3c41" name="Faction: Chaos" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="ed00-3207-71b9-9dcf" name="Faction: Servants of the Abyss" hidden="false" targetId="b0c7-cff4-f82b-2007" primary="false"/>
<categoryLink id="a6b9-59db-661a-46ee" name="Character" hidden="false" targetId="ef18-746a-369f-43a4" primary="false"/>
<categoryLink id="0f25-dac8-0bed-4023" name="Infantry" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="80b6-764c-88fe-a6b7" name="Traitor Commissar" hidden="false" targetId="c1b2-f117-cdcc-9145" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="bf09-1226-6e15-fff3" name="Power fist" hidden="false" collective="false" import="true" targetId="f122-3720-fa32-4215" type="selectionEntry">
<modifiers>
<modifier type="set" field="points" value="0.0"/>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4afb-f163-5510-1b27" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7eb1-564c-67e3-93f2" type="max"/>
</constraints>
</entryLink>
<entryLink id="89cd-9a4b-e274-1f68" name="Bolt pistol" hidden="false" collective="false" import="true" targetId="0334-f487-8229-0c1a" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2c60-18f2-60e7-7a4f" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4f76-a2ab-830b-9970" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="55.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="4.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="2484-a240-4b43-4bbd" name="Chaos Ogryn" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="b454-f3c3-14a8-d11a" name="Chaos Ogryn" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">6"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">3+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">4+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">5</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">5</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">6</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">4</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">8</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">5+</characteristic>
</characteristics>
</profile>
<profile id="95f5-5566-1a02-9f68" name="Avalanche of Muscle" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">Add 1 to the Attacks characteristic of this model during any turn in which it made a successful charge.</characteristic>
</characteristics>
</profile>
<profile id="db76-1b3f-f8e4-769e" name="Bodyguard" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">Roll a D6 each time a TRAITOR COMMISSAR loses a wound whilst it is within 3" of any friendly models with this ability; on a 3+ the TRAITOR COMMISSAR does not lose a wound but one of theose friendly models suffers a mortal wound.</characteristic>
</characteristics>
</profile>