forked from BSData/horus-heresy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path(HH) Chaos Daemons Army List.cat
8356 lines (8339 loc) · 595 KB
/
(HH) Chaos Daemons Army List.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="640c-568f-af74-400f" name="(HH V1) Chaos Daemons: Codex (2013)" revision="64" battleScribeVersion="2.03" authorName="https://github.com/BSData/horus-heresy/" authorContact="" authorUrl="http://battlescribedata.appspot.com/#/repo/horus-heresy" library="false" gameSystemId="ca571888-56a9-c58e-ddaf-54f4713538bc" gameSystemRevision="164" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<publications>
<publication id="640c-568f-pubN68833" name="https://www.forgeworld.co.uk/resources/fw_site/fw_pdfs/Warhammer_40000/Corbax_Utterblight.pdf"/>
<publication id="640c-568f-pubN71445" name="IA Apoc (2013)"/>
<publication id="640c-568f-pubN73053" name="Imperial Armout 13"/>
<publication id="640c-568f-pubN77007" name="Imperial Armour 13"/>
<publication id="640c-568f-pubN78599" name="Imperial Armour: Apocalypse (2013)"/>
<publication id="640c-568f-pubN82090" name="Dataslate: Be'lakor"/>
<publication id="640c-568f-pubN96313" name="Escalation"/>
<publication id="640c-568f-pubN96420" name="Escalaton"/>
<publication id="640c-568f-pubN104201" name="Chaos Daemons"/>
<publication id="640c-568f-pubN109411" name="LA:AODAL"/>
<publication id="640c-568f-pubN109928" name="Errata Oct 22nd 2014"/>
</publications>
<categoryEntries>
<categoryEntry id="485123232344415441232323" name="HQ" hidden="false"/>
<categoryEntry id="456c6974657323232344415441232323" name="Elites" hidden="false"/>
<categoryEntry id="54726f6f707323232344415441232323" name="Troops" hidden="false"/>
<categoryEntry id="466173742041747461636b23232344415441232323" name="Fast Attack" hidden="false"/>
<categoryEntry id="486561767920537570706f727423232344415441232323" name="Heavy Support" hidden="false"/>
<categoryEntry id="5297-7e0f-fa0b-3537" name="Allegiance" hidden="false"/>
<categoryEntry id="1bcc0dc0-daee-dd60-6d6b-8510ffb8202f" name="Lords of War" hidden="false"/>
<categoryEntry id="466f7274696669636174696f6e23232344415441232323" name="Fortification" hidden="false"/>
</categoryEntries>
<forceEntries>
<forceEntry id="657a-bc81-4ae3-8a5b" name="Allied Detachment" hidden="false">
<categoryLinks>
<categoryLink id="3b95-133c-7378-9866" name="HQ" hidden="false" targetId="485123232344415441232323" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7d52-9a33-8a76-f0ab" type="min"/>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="191d-95d4-4652-be25" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="825e-c512-94d5-869d" name="Troops" hidden="false" targetId="54726f6f707323232344415441232323" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="bf39-7b4a-bd66-a1ec" type="min"/>
<constraint field="selections" scope="force" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c875-3549-0515-ed00" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="0281-412f-8ca9-e9de" name="Fast Attack" hidden="false" targetId="466173742041747461636b23232344415441232323" primary="false">
<constraints>
<constraint field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3059-fbea-1d17-6dab" type="min"/>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="131f-9710-0017-5459" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="43bd-4f9a-df01-33cc" name="Elites" hidden="false" targetId="456c6974657323232344415441232323" primary="false">
<constraints>
<constraint field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1d5d-82d8-6226-0223" type="min"/>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="522c-802e-228b-d2aa" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="edc1-44da-a7c7-a6d9" name="Heavy Support" hidden="false" targetId="486561767920537570706f727423232344415441232323" primary="false">
<constraints>
<constraint field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ac3f-40b0-1fc5-3b82" type="min"/>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="20c1-b04d-3ec4-5118" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="9485-1c54-2f0b-010c" name="Use Playtest Rules" hidden="false" targetId="fdf4-0683-3e84-5a4b" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="25ba-08c7-f871-f88c" type="max"/>
</constraints>
</categoryLink>
</categoryLinks>
</forceEntry>
</forceEntries>
<entryLinks>
<entryLink id="e96e-db72-cd1e-23e3" name="Cor'bax Utterblight" hidden="false" collective="false" import="true" targetId="c764-6b3b-f49f-c61e" type="selectionEntry">
<modifiers>
<modifier type="set" field="points" value="355.0"/>
</modifiers>
<categoryLinks>
<categoryLink id="3e7b-f28e-f490-d7a2" name="New CategoryLink" hidden="false" targetId="1bcc0dc0-daee-dd60-6d6b-8510ffb8202f" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="af35-cf59-ee7e-1118" name="Daemon Prince" hidden="false" collective="false" import="true" targetId="1e1c-ebde-afaf-12ab" type="selectionEntry">
<categoryLinks>
<categoryLink id="9d06-ff57-068d-1d2b" name="New CategoryLink" hidden="false" targetId="485123232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="6bdb-5f33-2a25-afc2" name="Daemon Prince" hidden="false" collective="false" import="true" targetId="1e1c-ebde-afaf-12ab" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="aadc-dc6f-2f27-e926" type="equalTo"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="296f-6e6d-ce01-6d84" type="equalTo"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="82dd-7e56-181f-008f" type="equalTo"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="10ea-aaeb-7cbd-f648" type="equalTo"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="58c9-f812-0adc-4105" type="equalTo"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2102-6ec8-b30a-e803" type="equalTo"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2276-01c7-1651-26ad" type="equalTo"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d184-75d9-c4ee-9444" type="equalTo"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="5202-702d-90b7-115c" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="30f6-a817-4ee5-994e" name="New CategoryLink" hidden="false" targetId="486561767920537570706f727423232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="7d20-19a9-afbb-9b4d" name="Plague Hulk of Nurgle" hidden="false" collective="false" import="true" targetId="6011-28b9-d850-8019" type="selectionEntry">
<categoryLinks>
<categoryLink id="3b60-5e0a-9001-85ab" name="New CategoryLink" hidden="false" targetId="486561767920537570706f727423232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="1962-078b-9627-e826" name="An'ggrath the Unbound" hidden="false" collective="false" import="true" targetId="c52e-4263-8664-7230" type="selectionEntry">
<categoryLinks>
<categoryLink id="44a4-65d2-d521-9b65" name="New CategoryLink" hidden="false" targetId="1bcc0dc0-daee-dd60-6d6b-8510ffb8202f" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="a2d7-808f-b0c5-9b3a" name="Daemonettes of Slaanesh" hidden="false" collective="false" import="true" targetId="2379-c282-6e0e-dd6e" type="selectionEntry">
<categoryLinks>
<categoryLink id="d32c-2050-c1d8-e478" name="New CategoryLink" hidden="false" targetId="54726f6f707323232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="deb0-ecd8-ac5f-6119" name="Kytan Daemon Engine" hidden="false" collective="false" import="true" targetId="4c7a-c78f-21dc-b01d" type="selectionEntry">
<categoryLinks>
<categoryLink id="22fe-2b7a-47ba-2685" name="New CategoryLink" hidden="false" targetId="1bcc0dc0-daee-dd60-6d6b-8510ffb8202f" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="e94b-8e43-c385-1352" name="Spined Chaos Beast" hidden="false" collective="false" import="true" targetId="2a4a-8f01-dd70-6125" type="selectionEntry">
<categoryLinks>
<categoryLink id="71bf-1592-5f2a-b7ff" name="New CategoryLink" hidden="false" targetId="456c6974657323232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="02a7-b8f4-12b5-8452" name="Burning Chariot of Tzeentch" hidden="false" collective="false" import="true" targetId="43a8-6e78-73a7-317e" type="selectionEntry">
<categoryLinks>
<categoryLink id="7946-2423-9503-6dbb" name="New CategoryLink" hidden="false" targetId="486561767920537570706f727423232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="9640-b3ff-718d-822a" name="Bloodcrushers of Khorne" hidden="false" collective="false" import="true" targetId="69d3-e9ac-04d6-ad3c" type="selectionEntry">
<categoryLinks>
<categoryLink id="e007-870d-6937-833c" name="New CategoryLink" hidden="false" targetId="456c6974657323232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="d1f1-6446-2406-8b40" name="Giant Chaos Spawn" hidden="true" collective="false" import="true" targetId="c0bc-278d-0bc9-7e81" type="selectionEntry"/>
<entryLink id="ecc1-6747-6ed9-0e54" name="Beast of Nurgle" hidden="false" collective="false" import="true" targetId="1320-2184-57b9-82d0" type="selectionEntry">
<categoryLinks>
<categoryLink id="46d8-f195-9793-9330" name="New CategoryLink" hidden="false" targetId="456c6974657323232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="cdbc-962f-27fe-d7c8" name="Bloodthirster of Unfettered Fury" hidden="false" collective="false" import="true" targetId="10ea-aaeb-7cbd-f648" type="selectionEntry">
<categoryLinks>
<categoryLink id="0117-f805-3837-65c7" name="New CategoryLink" hidden="false" targetId="485123232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="751c-864f-ba3f-8e19" name="Bloodthirster of Insensate Rage" hidden="false" collective="false" import="true" targetId="2102-6ec8-b30a-e803" type="selectionEntry">
<categoryLinks>
<categoryLink id="dd8f-4693-507e-8ee8" name="New CategoryLink" hidden="false" targetId="485123232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="828a-725c-1f5f-77a7" name="Mamon, Daemon Prince of Nurgle" hidden="false" collective="false" import="true" targetId="623e-fb64-8b68-24e2" type="selectionEntry">
<categoryLinks>
<categoryLink id="6799-15d3-0bbd-1f7c" name="New CategoryLink" hidden="false" targetId="485123232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="9b2b-aab4-1146-aa82" name="Chaos Knight Paladin" hidden="true" collective="false" import="true" targetId="1618-239a-2fa0-ec7e" type="selectionEntry"/>
<entryLink id="b4ea-d203-06b4-c3fe" name="Be'lakor, The Dark Master" hidden="false" collective="false" import="true" targetId="e7d5-b3fb-521a-9215" type="selectionEntry">
<categoryLinks>
<categoryLink id="c58f-462c-16f8-02d7" name="New CategoryLink" hidden="false" targetId="485123232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="5b3a-9177-850b-37b0" name="Brimstone Horrors" hidden="false" collective="false" import="true" targetId="6acc-d892-b7ae-35b5" type="selectionEntry">
<categoryLinks>
<categoryLink id="5a57-fbd2-9192-9701" name="New CategoryLink" hidden="false" targetId="54726f6f707323232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="8f8b-5487-553c-9ca6" name="Pink Horrors of Tzeentch" hidden="false" collective="false" import="true" targetId="0f5b-77ea-5734-1376" type="selectionEntry">
<categoryLinks>
<categoryLink id="97ba-40c3-8131-517f" name="New CategoryLink" hidden="false" targetId="54726f6f707323232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="ae1d-f260-5014-61b9" name="Fiends of Slaanesh" hidden="false" collective="false" import="true" targetId="4800-8283-e6cb-1cc1" type="selectionEntry">
<categoryLinks>
<categoryLink id="7fea-2809-e32a-6218" name="New CategoryLink" hidden="false" targetId="456c6974657323232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="ba67-da56-b410-5816" name="Uraka 'The Warfiend'" hidden="false" collective="false" import="true" targetId="5cad-72aa-5bfc-ca57" type="selectionEntry">
<categoryLinks>
<categoryLink id="7d08-8aed-3b39-b41f" name="New CategoryLink" hidden="false" targetId="485123232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="2542-7c35-6732-3a83" name="Aetaos'rau'keres" hidden="false" collective="false" import="true" targetId="da4b-9734-d68d-97b9" type="selectionEntry">
<categoryLinks>
<categoryLink id="de51-f48a-911e-081d" name="New CategoryLink" hidden="false" targetId="1bcc0dc0-daee-dd60-6d6b-8510ffb8202f" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="c6ed-cc02-a7b5-0203" name="Chaos Furies" hidden="false" collective="false" import="true" targetId="4f9e-a2e7-783d-ca0e" type="selectionEntry">
<categoryLinks>
<categoryLink id="ccff-ba30-e2ea-c0f8" name="New CategoryLink" hidden="false" targetId="466173742041747461636b23232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="afdf-2e73-a1d0-8a60" name="Greater Brass Scorpion of Khorne" hidden="false" collective="false" import="true" targetId="c0a4-ef83-7fcd-00cf" type="selectionEntry">
<categoryLinks>
<categoryLink id="9430-6efd-00ef-c64a" name="New CategoryLink" hidden="false" targetId="1bcc0dc0-daee-dd60-6d6b-8510ffb8202f" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="295c-06ec-2cb9-ec11" name="Chaos Knight Errant" hidden="true" collective="false" import="true" targetId="68d8-8e79-2398-a1fb" type="selectionEntry"/>
<entryLink id="d27f-f466-c061-8257" name="Flesh Hounds of Khorne" hidden="false" collective="false" import="true" targetId="d480-5db3-6dab-c952" type="selectionEntry">
<categoryLinks>
<categoryLink id="e9b6-c4c9-eda1-5c6d" name="New CategoryLink" hidden="false" targetId="466173742041747461636b23232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="0bc5-6803-15ff-e529" name="Bloodletters of Khorne" hidden="false" collective="false" import="true" targetId="72df-6da9-0772-3be3" type="selectionEntry">
<categoryLinks>
<categoryLink id="6d75-8127-2f32-9b8c" name="New CategoryLink" hidden="false" targetId="54726f6f707323232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="a36b-b459-51d2-a553" name="Blight Drones of Nurgle" hidden="false" collective="false" import="true" targetId="478b-7a13-7e19-7f98" type="selectionEntry">
<categoryLinks>
<categoryLink id="c3b9-1a22-bfce-4adc" name="New CategoryLink" hidden="false" targetId="466173742041747461636b23232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="3776-24c5-b271-4309" name="Flamers of Tzeentch" hidden="false" collective="false" import="true" targetId="0c7b-36fe-5d2f-48b8" type="selectionEntry">
<categoryLinks>
<categoryLink id="7b30-5f00-2d2e-c924" name="New CategoryLink" hidden="false" targetId="456c6974657323232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="5566-0eaf-18f0-1d32" name="Blue Horrors" hidden="false" collective="false" import="true" targetId="cca7-9a05-cc56-6d74" type="selectionEntry">
<categoryLinks>
<categoryLink id="463b-19cc-d9b8-c50d" name="New CategoryLink" hidden="false" targetId="54726f6f707323232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="2c33-5e9d-c3fa-af33" name="Samus, Daemon Prince of the Ruinstorm" hidden="false" collective="false" import="true" targetId="60a7-a2c7-0f4e-72fa" type="selectionEntry">
<categoryLinks>
<categoryLink id="1045-6588-2e0f-abcb" name="New CategoryLink" hidden="false" targetId="485123232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="e3c3-4026-7125-6174" name="Blood Slaughterers of Khorne" hidden="false" collective="false" import="true" targetId="3cb8-b090-10d5-8c7b" type="selectionEntry">
<categoryLinks>
<categoryLink id="a56d-ce88-b221-8bc7" name="New CategoryLink" hidden="false" targetId="486561767920537570706f727423232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="ba3b-6b2e-c280-07fc" name="Chaos Decimator Daemon Engine" hidden="false" collective="false" import="true" targetId="f625-80b7-e69b-1897" type="selectionEntry">
<categoryLinks>
<categoryLink id="4c67-b410-b17e-d0a5" name="New CategoryLink" hidden="false" targetId="456c6974657323232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="1096-d9b7-5b1b-dbcf" name="Zarakynel" hidden="false" collective="false" import="true" targetId="6633-f2bd-c4a1-d619" type="selectionEntry">
<categoryLinks>
<categoryLink id="5a33-c18a-bcf0-836e" name="New CategoryLink" hidden="false" targetId="1bcc0dc0-daee-dd60-6d6b-8510ffb8202f" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="d1cf-443f-e405-c5f5" name="Soul Grinder of Chaos" hidden="false" collective="false" import="true" targetId="f631-8ba8-0d1b-3ed1" type="selectionEntry">
<categoryLinks>
<categoryLink id="e0a9-0f73-efaa-a773" name="New CategoryLink" hidden="false" targetId="486561767920537570706f727423232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="a0ab-9b2c-797d-4472" name="Plague Drones of Nurgle" hidden="false" collective="false" import="true" targetId="8fe9-e4ce-3227-109b" type="selectionEntry">
<categoryLinks>
<categoryLink id="0752-2b65-5e42-51f8" name="New CategoryLink" hidden="false" targetId="466173742041747461636b23232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="118e-5448-447f-c826" name="Screamers of Tzeentch" hidden="false" collective="false" import="true" targetId="8830-55fb-8dd6-ae37" type="selectionEntry">
<categoryLinks>
<categoryLink id="2efe-bbbb-e4e4-a697" name="New CategoryLink" hidden="false" targetId="466173742041747461636b23232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="6bc1-9bac-fd9b-a7f4" name="Lord of Change" hidden="false" collective="false" import="true" targetId="82dd-7e56-181f-008f" type="selectionEntry">
<categoryLinks>
<categoryLink id="d30c-5050-6f8c-2dd1" name="New CategoryLink" hidden="false" targetId="485123232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="88c6-ca03-2585-fea3" name="Nurglings" hidden="false" collective="false" import="true" targetId="64e6-0c00-930a-041f" type="selectionEntry">
<categoryLinks>
<categoryLink id="8036-31cd-b7a6-3fed" name="New CategoryLink" hidden="false" targetId="54726f6f707323232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="349a-6723-2c1c-6729" name="Seekers of Slaanesh" hidden="false" collective="false" import="true" targetId="eba0-6b65-77e3-2b1c" type="selectionEntry">
<categoryLinks>
<categoryLink id="5c29-ec2f-b3dc-6712" name="New CategoryLink" hidden="false" targetId="466173742041747461636b23232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="3fb2-21ac-f216-4ba5" name="Warp Storm Table" hidden="false" collective="false" import="true" targetId="e5a9-3830-8d2a-7cfc" type="selectionEntry"/>
<entryLink id="572d-a309-da7b-af68" name="Wrath of Khorne Bloodthirster" hidden="false" collective="false" import="true" targetId="aadc-dc6f-2f27-e926" type="selectionEntry">
<categoryLinks>
<categoryLink id="481b-9518-1f35-cc2f" name="New CategoryLink" hidden="false" targetId="485123232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="c93b-d528-716c-295b" name="Scabeiathrax the Bloated" hidden="false" collective="false" import="true" targetId="98f3-4b40-2aa1-d3af" type="selectionEntry">
<categoryLinks>
<categoryLink id="c55b-7f4e-6289-1faa" name="New CategoryLink" hidden="false" targetId="1bcc0dc0-daee-dd60-6d6b-8510ffb8202f" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="f7d2-d464-dc54-632c" name="Skull Cannon of Khorne" hidden="false" collective="false" import="true" targetId="bdb1-333c-deff-9421" type="selectionEntry">
<categoryLinks>
<categoryLink id="75ea-e899-eada-b75c" name="New CategoryLink" hidden="false" targetId="486561767920537570706f727423232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="421a-5f78-4df2-6ff7" name="Ku'gath, The Plaguefather" hidden="false" collective="false" import="true" targetId="58c9-f812-0adc-4105" type="selectionEntry">
<categoryLinks>
<categoryLink id="236e-cec5-2a54-2fcf" name="New CategoryLink" hidden="false" targetId="485123232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="423a-8ff0-75c1-cc1d" name="The Masque of Slaanesh" hidden="false" collective="false" import="true" targetId="986c-2742-ca14-67bb" type="selectionEntry">
<categoryLinks>
<categoryLink id="d003-5373-d539-e51f" name="New CategoryLink" hidden="false" targetId="485123232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="0963-231c-d7c9-ccb4" name="The Blue Scribes" hidden="false" collective="false" import="true" targetId="72c8-fbd1-3545-72cc" type="selectionEntry">
<categoryLinks>
<categoryLink id="4dc4-8524-eadd-6232" name="New CategoryLink" hidden="false" targetId="485123232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="de9f-5196-8e29-da65" name="Plaguebearers of Nurgle" hidden="false" collective="false" import="true" targetId="e3c5-f5c9-8599-6877" type="selectionEntry">
<categoryLinks>
<categoryLink id="6ad5-bd2b-4b41-b086" name="New CategoryLink" hidden="false" targetId="54726f6f707323232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="72ae-a06b-7e6f-3cf2" name="Hellflayers of Slaanesh" hidden="false" collective="false" import="true" targetId="5510-34ef-843c-c43e" type="selectionEntry">
<categoryLinks>
<categoryLink id="72bd-240a-0a86-4e14" name="New CategoryLink" hidden="false" targetId="466173742041747461636b23232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="254b-56e8-4d4f-65bc" name="Khorne Lord of Skulls" hidden="false" collective="false" import="true" targetId="8582-2c48-6f35-dafd" type="selectionEntry">
<categoryLinks>
<categoryLink id="126c-ee6d-5f9d-8b6a" name="New CategoryLink" hidden="false" targetId="1bcc0dc0-daee-dd60-6d6b-8510ffb8202f" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="5a9f-0d6b-96a9-7ab1" name="Kairos Fateweaver" hidden="false" collective="false" import="true" targetId="5202-702d-90b7-115c" type="selectionEntry">
<categoryLinks>
<categoryLink id="de4f-38ad-1220-1c42" name="New CategoryLink" hidden="false" targetId="485123232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="5299-7c94-bd72-8d37" name="Keeper of Secrets" hidden="false" collective="false" import="true" targetId="2276-01c7-1651-26ad" type="selectionEntry">
<categoryLinks>
<categoryLink id="8270-1133-ec60-b122" name="New CategoryLink" hidden="false" targetId="485123232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="839c-89f3-e053-abb4" name="Daemonic Heralds" hidden="false" collective="false" import="true" targetId="57b7-84c2-b736-3bed" type="selectionEntry">
<categoryLinks>
<categoryLink id="15bf-67d0-3e2f-26f6" name="New CategoryLink" hidden="false" targetId="485123232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="e026-8c9a-418f-c345" name="Skarbarand" hidden="false" collective="false" import="true" targetId="d184-75d9-c4ee-9444" type="selectionEntry">
<categoryLinks>
<categoryLink id="c2ed-29d6-815a-fa52" name="New CategoryLink" hidden="false" targetId="485123232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="7231-c8d0-c632-75d5" name="Great Unclean One" hidden="false" collective="false" import="true" targetId="296f-6e6d-ce01-6d84" type="selectionEntry">
<categoryLinks>
<categoryLink id="bc4f-fa55-3ae9-bbb1" name="New CategoryLink" hidden="false" targetId="485123232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="29ef-6d56-9d3f-5c98" name="Imperial Castelum Stronghold" hidden="false" collective="false" import="true" targetId="e40b-468f-f1d7-d05d" type="selectionEntry">
<categoryLinks>
<categoryLink id="a1f2-c87d-dd58-10bb" name="New CategoryLink" hidden="false" targetId="466f7274696669636174696f6e23232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="115d-dd09-66b2-6c31" name="Manufactorum" hidden="false" collective="false" import="true" targetId="6140-dc64-5896-957f" type="selectionEntry">
<categoryLinks>
<categoryLink id="c693-e076-4cc8-b105" name="New CategoryLink" hidden="false" targetId="466f7274696669636174696f6e23232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="c8cf-80ab-49d9-981d" name="Imperial Bastion" hidden="false" collective="false" import="true" targetId="55c6-268b-357f-d070" type="selectionEntry">
<categoryLinks>
<categoryLink id="0d4f-7ca3-eccd-5634" name="New CategoryLink" hidden="false" targetId="466f7274696669636174696f6e23232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="070b-1b44-05a7-3eb5" name="Sanctum Imperialis" hidden="false" collective="false" import="true" targetId="e0b3-77ca-af76-bd8b" type="selectionEntry">
<categoryLinks>
<categoryLink id="77d3-faf4-2341-bd38" name="New CategoryLink" hidden="false" targetId="466f7274696669636174696f6e23232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="4b47-d70e-36a5-bd6c" name="Plasma Obliterator" hidden="false" collective="false" import="true" targetId="3015-0b77-e848-c0f5" type="selectionEntry">
<categoryLinks>
<categoryLink id="e142-8254-2406-c925" name="New CategoryLink" hidden="false" targetId="466f7274696669636174696f6e23232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="b3dc-03a0-38c7-5ddb" name="Wall of Martyrs Vengeance Weapon Battery" hidden="false" collective="false" import="true" targetId="04bf-6c22-19fb-4e46" type="selectionEntry">
<categoryLinks>
<categoryLink id="606a-9cb6-c6dd-0072" name="New CategoryLink" hidden="false" targetId="466f7274696669636174696f6e23232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="f188-372e-516a-cffd" name="Shrine of the Aquila" hidden="false" collective="false" import="true" targetId="595a-908e-96a1-f121" type="selectionEntry">
<categoryLinks>
<categoryLink id="df5e-db09-64a6-c4f0" name="New CategoryLink" hidden="false" targetId="466f7274696669636174696f6e23232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="c248-b0e3-3965-def0" name="Imperial Primus Redoubt" hidden="false" collective="false" import="true" targetId="c05d-2231-2481-4037" type="selectionEntry">
<categoryLinks>
<categoryLink id="9737-b39b-35b0-996e" name="New CategoryLink" hidden="false" targetId="466f7274696669636174696f6e23232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="8ed3-70f3-4a74-6a67" name="Wall of Martyrs Imperial Defence Line" hidden="false" collective="false" import="true" targetId="0f73-97f2-b832-f6d0" type="selectionEntry">
<categoryLinks>
<categoryLink id="1dae-c6fa-6367-e4f6" name="New CategoryLink" hidden="false" targetId="466f7274696669636174696f6e23232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="fe9d-fd2f-0609-4d17" name="Wall of Martyrs Imperial Defence Emplacement" hidden="false" collective="false" import="true" targetId="df05-8179-624e-f8b2" type="selectionEntry">
<categoryLinks>
<categoryLink id="6df8-14fa-4322-2d50" name="New CategoryLink" hidden="false" targetId="466f7274696669636174696f6e23232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="2934-4193-f946-0e0c" name="Wall of Martyrs Imperial Bunker" hidden="false" collective="false" import="true" targetId="0116-c81b-1c0f-251c" type="selectionEntry">
<categoryLinks>
<categoryLink id="cf3d-8b21-bf82-06cb" name="New CategoryLink" hidden="false" targetId="466f7274696669636174696f6e23232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="ae16-1579-6931-7d17" name="Wall of Martyrs Firestorm Redoubt" hidden="false" collective="false" import="true" targetId="a172-78de-aaa6-2201" type="selectionEntry">
<categoryLinks>
<categoryLink id="f5a1-83e4-4037-0f57" name="New CategoryLink" hidden="false" targetId="466f7274696669636174696f6e23232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="7c96-69f8-24eb-4e39" name="Fortification" hidden="false" collective="false" import="true" targetId="66c9-eaa6-a91a-00ed" type="selectionEntry">
<categoryLinks>
<categoryLink id="3b57-3adb-66a8-6260" name="New CategoryLink" hidden="false" targetId="466f7274696669636174696f6e23232344415441232323" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="d8ec-06bc-baf5-e3c7" name="Basilica Administratum" hidden="false" collective="false" import="true" targetId="e10f-7b90-ecd3-80a5" type="selectionEntry">
<categoryLinks>
<categoryLink id="5f2b-04da-fde7-2043" name="New CategoryLink" hidden="false" targetId="466f7274696669636174696f6e23232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="6aa3-02d4-d401-96b5" name="Aquila Strongpoint" hidden="false" collective="false" import="true" targetId="16d6-25c4-af92-4329" type="selectionEntry">
<categoryLinks>
<categoryLink id="337b-682b-7060-56bc" name="New CategoryLink" hidden="false" targetId="466f7274696669636174696f6e23232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="5277-7a30-fd14-1c31" name="Aquila Strongpoint" hidden="false" collective="false" import="true" targetId="16d6-25c4-af92-4329" type="selectionEntry">
<categoryLinks>
<categoryLink id="3b30-3bd7-bf6c-c079" name="New CategoryLink" hidden="false" targetId="466f7274696669636174696f6e23232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="db77-6183-2605-8ad9" name="Aegis Defense Line" hidden="false" collective="false" import="true" targetId="a505-05af-bd44-56b6" type="selectionEntry">
<categoryLinks>
<categoryLink id="875c-518d-1058-2280" name="New CategoryLink" hidden="false" targetId="466f7274696669636174696f6e23232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
<sharedSelectionEntries>
<selectionEntry id="c764-6b3b-f49f-c61e" name="Cor'bax Utterblight" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="4e95-b1e4-63b0-7b21" name="Cor'bax Utterblight" publicationId="640c-568f-pubN68833" hidden="false" typeId="556e697423232344415441232323" typeName="Unit">
<characteristics>
<characteristic name="Unit Type" typeId="556e6974205479706523232344415441232323">Monstrous Creature (Character)</characteristic>
<characteristic name="WS" typeId="575323232344415441232323">6</characteristic>
<characteristic name="BS" typeId="425323232344415441232323">3</characteristic>
<characteristic name="S" typeId="5323232344415441232323">6</characteristic>
<characteristic name="T" typeId="5423232344415441232323">8</characteristic>
<characteristic name="W" typeId="5723232344415441232323">7</characteristic>
<characteristic name="I" typeId="4923232344415441232323">9</characteristic>
<characteristic name="A" typeId="4123232344415441232323">4</characteristic>
<characteristic name="LD" typeId="4c4423232344415441232323">9</characteristic>
<characteristic name="Save" typeId="5361766523232344415441232323">-</characteristic>
</characteristics>
</profile>
</profiles>
<rules>
<rule id="33d9-fe98-d097-8fa6" name="Gaping Maw" publicationId="640c-568f-pubN68833" hidden="false">
<description>Cor’bax’s vast maw opens wide enough to swallow enemies whole. When fighting against infantry models, any To Hit rolls of 5 or 6 made in the Assault phase by Cor’bax have the Instant Death special rule. Roll to wound and save with these attacks separately.</description>
</rule>
<rule id="bd33-ff5a-7b00-bf43" name="Noisome Tide of Flesh" publicationId="640c-568f-pubN68833" hidden="false">
<description>Cor’bax Utterblight’s corporeal form is little more than a mass of roiling gelatinous and pestilential flesh, which makes him even harder to harm than many of his Daemon kin and allows him to seethe across the battlefield like a destroying tide of plague.
Cor’bax Utterblight inflicts D3 Hammer of Wrath hits when charging. He ignores all dangerous terrain and difficult terrain. He counts as being armed with assault grenades when charging. In addition, if he is destroyed replace his model with the Massive Blast (7") template. All models under the template that do not have the Daemon of Nurgle special rule suffer a single Poisoned (4+) AP 4 hit.</description>
</rule>
<rule id="e300-9af4-712b-b5c2" name="Poisoned (3+)" hidden="false"/>
<rule id="2d0b-97c5-c3e9-1a72" name="Psyker (Mastery Level 2)" hidden="false"/>
</rules>
<infoLinks>
<infoLink id="96c6-be67-4b84-0774" hidden="false" targetId="d219-2314-4834-c054" type="rule"/>
<infoLink id="0573-74f9-ab7a-a512" hidden="false" targetId="ece8645d-de4f-c7a6-1031-2ea5d25d807f" type="rule"/>
<infoLink id="52ba-f0a2-d913-d84e" name="fear" hidden="false" targetId="dc70-e199-5525-e78c" type="rule"/>
</infoLinks>
<entryLinks>
<entryLink id="9229-a1d7-f975-c159" hidden="false" collective="false" import="true" targetId="bc47ebb1-051d-12f5-85f9-a2520a661c51" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="0bf1d6b4-3c08-3649-d746-2e1982938ba3" name="Aura of Acquiescense" page="0" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="minSelections" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<rules>
<rule id="e5864ca1-3f08-27e7-c947-a6b5e6894043" name="Aura of Acquiescense" page="0" hidden="false"/>
</rules>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="d74306ce-6dee-47c1-b111-56a519e9e910" name="Aura of Decay" page="0" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="minSelections" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="5922820d-710f-7d1e-d1fc-a26d7fa92b9a" name="Banner of Blood" page="0" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<infoLinks>
<infoLink id="316594ca-e57d-7444-2b2e-621c9e910a84" hidden="false" targetId="8375119f-55e4-7cf7-70ef-36ae7da87f7e" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="10.0"/>
</costs>
</selectionEntry>
<selectionEntry id="54b7ec6d-44c0-56e7-ab13-aef0be6e9b83" name="Blasted Standard" page="0" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<infoLinks>
<infoLink id="7c37d54b-a1f8-dbeb-6472-ff93706f9477" hidden="false" targetId="1b5f95f3-b556-15b4-3752-1cbfdcdb1be7" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="10.0"/>
</costs>
</selectionEntry>
<selectionEntry id="1e268eeb-78d5-99ca-50e9-4737b7b50c95" name="Blessings of the Blood God" page="0" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<rules>
<rule id="fa47817f-b950-f467-c758-e22bd670f09e" name="2+ Invul Save Against Force/Psychic Attacks" page="0" hidden="false"/>
</rules>
<costs>
<cost name="pts" typeId="points" value="5.0"/>
</costs>
</selectionEntry>
<selectionEntry id="f9d5b4d9-3d52-5281-61f4-01d7db2b7efb" name="Cloud of Flies" page="0" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="minSelections" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="f18931f3-81ef-799f-eaa3-07c0067183b9" name="Daemon of Khorne" page="0" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="minSelections" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<rules>
<rule id="862272fe-e01b-1b07-649e-0e9c1d51f72d" name="Furious Charge" page="0" hidden="false"/>
<rule id="49dcd576-26a2-acfc-d007-2b662962b9a6" name="Hatred (Daemon of Slaanesh)" page="0" hidden="false"/>
<rule id="edfe-6a87-8739-c321" name="5+ Invulnerable Save" page="0" hidden="false"/>
<rule id="4456-9dbd-0291-d6f8" name="Fear" page="0" hidden="false"/>
</rules>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="bc47ebb1-051d-12f5-85f9-a2520a661c51" name="Daemon of Nurgle" page="0" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="minSelections" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<rules>
<rule id="83f92eae-db3e-69da-3a67-f976a19c0831" name="Hatred (Daemon of Tzeencth)" page="0" hidden="false"/>
<rule id="cab69fbe-1d59-0b3d-9e52-74b3a7ae1270" name="Shrouded" page="0" hidden="false"/>
<rule id="3b63f550-07ec-6058-57ce-f2054c85c46f" name="Slow & Purposeful" page="0" hidden="false"/>
<rule id="69e3-6d83-d1f5-3f99" name="5+ Invulnerable Save" page="0" hidden="false"/>
<rule id="9396-1126-2a65-02fa" name="Fear" page="0" hidden="false"/>
</rules>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="0c1bfed3-f6ff-c810-fa80-9494794a1bdd" name="Daemon of Slaanesh" page="0" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="minSelections" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<rules>
<rule id="806a8b12-d9da-f6a3-43af-c51c7e88ac56" name="Hatred (Daemon of Khorne)" page="0" hidden="false"/>
<rule id="3e4b87a1-e9ac-19db-4576-0896be1eaece" name="Fleet" page="0" hidden="false"/>
<rule id="dd33f64a-b209-e998-9d61-7a8fb1b40919" name="Rending" page="0" hidden="false"/>
<rule id="559dd6d7-a406-0212-8275-7b49a5208b90" name="Additional inches when Run, Flat Out moves" page="0" hidden="false"/>
<rule id="4f62-4879-6084-1d41" name="5+ Invulnerable Save" page="0" hidden="false"/>
<rule id="8c71-023b-deb5-5266" name="Fear" page="0" hidden="false"/>
</rules>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="a567e325-4907-1e0f-0a93-b2e3f562a1f8" name="Daemon of Tzeentch" page="0" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="minSelections" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<rules>
<rule id="b39e1b4c-3c91-0591-9894-886c33200f3d" name="Hatred (Daemon of Nurgle)" page="0" hidden="false"/>
<rule id="bbc6fb08-e389-b97e-43f3-e221fc7154c0" name="Tzeentch Psyker Powers" page="0" hidden="false"/>
<rule id="3954ae34-dad8-8faa-8abd-7f4e53da2409" name="Re-roll all Saving throws results of 1" page="0" hidden="false"/>
<rule id="1a9a-42df-55f1-9d4a" name="5+ Invulnerable Save" page="0" hidden="false"/>
<rule id="ded6-8c64-471d-98ba" name="Fear" page="0" hidden="false"/>
</rules>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="3ea18292-e8be-46a0-77c2-4a3b7e8aa16b" name="Daemonic Flight" page="0" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="40.0"/>
</costs>
</selectionEntry>
<selectionEntry id="07ddce08-173c-9cf4-47d2-bc017205d59c" name="Daemonic Psyker Level" page="0" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="25.0"/>
</costs>
</selectionEntry>
<selectionEntry id="40debf19-f2ad-becd-81f4-699c4fe513c4" name="Exalted Locus of Beguilement" page="0" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="f167db00-eae6-97aa-5497-85390c2e281f" hidden="false" targetId="f0572e80-c3a6-3df8-f98d-2e5a8f74c149" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="d4ed832d-7bda-1f28-fcb7-6c1dfd09a70e" name="Exalted Locus of Conjuration" page="0" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="9a3e1699-3445-1e0f-ebef-b2bda820de21" hidden="false" targetId="d22adfca-34c9-d6ca-034b-c5e21dc08d46" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="bfd50561-6c39-a235-0fdd-d8f348a600b0" name="Exalted Locus of Contagion" page="0" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="0889227d-c2f1-1be3-74e9-2fabf866ba46" hidden="false" targetId="f8950615-4df3-152e-9f8f-6308a078b6a5" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="17533900-ae42-e9a3-cd9d-09dcf482c81c" name="Exalted Locus of Wrath" page="0" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="625be167-22ba-c6dc-14ce-ec385ce3a7ad" hidden="false" targetId="447c353f-26f0-87cb-1ee9-8aacf4ca6311" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="685156ec-d040-61a1-65e7-cf5ba676de3f" name="Fighter Ace" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="maxInRoster" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="35.0"/>
</costs>
</selectionEntry>
<selectionEntry id="d5e01c3c-2df1-41a2-522b-f10a78922850" name="Flames of Tzeentch" page="0" hidden="false" collective="false" import="true" type="upgrade">
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="034114c1-262b-4a89-ac3c-4b293da58a3b" name="Fury of Khorne" page="0" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="minSelections" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<rules>
<rule id="ef79bebb-893f-921e-59ec-553673772a8f" name="Rending" page="0" hidden="false"/>
</rules>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="d3d8728d-8655-6472-a8fc-0dca1f5dcf7a" name="Greater Locus of Change" page="0" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="87de3481-d984-f0c7-e190-dee95d8085d8" hidden="false" targetId="7234cfd3-7878-6c3c-4d8c-bb4ba71fbd98" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="0ff72112-a688-fb93-815c-992eb420559d" name="Greater Locus of Fecundity" page="0" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="cea5ec08-be1f-02a3-3258-f7aee8702132" hidden="false" targetId="8451920b-8b38-134a-3b16-7c65e7c26429" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="6f3aa57b-2e4d-8df3-d7fd-f1d7d3b6b0ef" name="Greater Locus of Fury" page="0" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="9d9b69b0-95ca-697d-ed8c-ed22ef88cdb1" hidden="false" targetId="95e8f813-4b22-1f94-f566-0dcc3bcf6bfa" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="f4419e49-d65d-93f4-f8dc-bfd46c2db717" name="Greater Locus of Swiftness" page="0" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="cef423fe-d5cd-9ec5-ff86-e418b470603f" hidden="false" targetId="390061fa-2828-9c86-a55e-8cf1ab4b7c3f" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="1cd321b1-b131-875d-9d25-9929053cfd50" name="Instrument of Chaos" page="0" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<rules>
<rule id="9fad0078-0704-5fff-7df2-57770e59f704" name="Instrument of Chaos" page="0" hidden="false"/>
</rules>
<costs>
<cost name="pts" typeId="points" value="10.0"/>
</costs>
</selectionEntry>
<selectionEntry id="799770af-f51a-6d44-d51a-0ab301bd978c" name="Lesser Locus of Abjuration" page="0" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="bce99a48-7966-35ba-1d9e-15ab844eaeba" hidden="false" targetId="fbb667d5-8f46-f433-9656-f173a7abc283" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="fc9d4788-aaf6-73d3-5137-4ce1e5f67665" name="Lesser Locus of Grace" page="0" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="5cf599cf-70ff-bd28-9f0e-bd650265458e" hidden="false" targetId="53e054c0-d3ed-590a-5d77-db1cf45742ce" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="9b75f082-4d5c-8f8e-3c7d-a72b6d8d346a" name="Lesser Locus of Transmogrification" page="0" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="06202346-1a66-0bce-7a3d-4f39346d26bc" hidden="false" targetId="7fc4dafe-ecea-a8d2-8dc7-7cd1b58b6351" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="e76a75c1-2f6b-bc2e-b2d7-1270ae51514f" name="Lesser Locus of Virulence" page="0" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="121755ed-4493-25f1-7234-410d15f2e0cb" hidden="false" targetId="e8614f30-7c26-21f0-74c0-ea5b73c18bb3" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="ce2721f1-f9e2-333c-5db8-aec9c13b34fb" name="Master of Sorcery" page="0" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="minSelections" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="51c3b1ee-a20f-4c86-7a5e-e9ba457fc548" name="Plague Banner" page="0" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<infoLinks>
<infoLink id="383b9ab4-803f-92bf-df66-bfe575a8a086" hidden="false" targetId="f5002729-935e-853f-0071-9a65b1d163ea" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="10.0"/>
</costs>
</selectionEntry>
<selectionEntry id="9d5d757f-9ab5-403a-4b68-4766f397bbbb" name="Rapturous Standard" page="0" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<infoLinks>
<infoLink id="17d830bb-7fee-5a87-56c0-c4943039e3fe" hidden="false" targetId="0e35d665-ef26-d0db-1ab8-bfbbc044a347" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="10.0"/>
</costs>
</selectionEntry>
<selectionEntry id="2dbba0bf-d126-25af-85a2-b0506738fdb5" name="Soul Devourer" page="0" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="minSelections" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<rules>
<rule id="a0381a4e-4a9b-0147-afa8-adaf8102238d" name="Soul Devour" page="0" hidden="false"/>
</rules>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="f1bdd112-9f6c-f677-4e98-892b33d6f16e" name="Unholy Might" page="0" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="20.0"/>
</costs>
</selectionEntry>
<selectionEntry id="ab06-4df6-b427-4e06" name="Warlord" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="maxInRoster" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="e5a9-3830-8d2a-7cfc" name="Warp Storm Table" page="0" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<infoLinks>
<infoLink id="fbf6-6dc1-ed32-792a" hidden="false" targetId="f8658573-6aee-52ba-0d4e-be967a7472c6" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="6ece2600-dc3e-467f-8971-57f48ae89a58" name="Warp-forged Armour" page="0" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="20.0"/>
</costs>
</selectionEntry>
<selectionEntry id="6a4d5beb-257b-2e41-f56c-c50e256964cb" name="We are Legion" page="0" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="minSelections" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<rules>
<rule id="7cd59299-3cdc-ad47-3b54-55e8c96f6d40" name="We are Legion" page="0" hidden="false"/>
</rules>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="3cb8-b090-10d5-8c7b" name="Blood Slaughterers of Khorne" publicationId="640c-568f-pubN71445" page="0" hidden="false" collective="false" import="true" type="unit">
<selectionEntries>
<selectionEntry id="ffee-daec-6fc4-f078" name="Blood Slaughterer of Khorne" page="0" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="1b73-606e-46be-eb81" type="min"/>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="2b7b-cec3-63a4-941b" type="max"/>
</constraints>
<profiles>
<profile id="8a45-ef35-5a00-4c49" name="Blood Slaughterer of Khorne" page="0" hidden="false" typeId="57616c6b657223232344415441232323" typeName="Walker">
<modifiers>
<modifier type="decrement" field="4123232344415441232323" value="1">
<conditions>
<condition field="selections" scope="3cb8-b090-10d5-8c7b" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="07c9-f395-637d-8b9c" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="WS" typeId="575323232344415441232323">5</characteristic>
<characteristic name="BS" typeId="425323232344415441232323">1</characteristic>
<characteristic name="S" typeId="5323232344415441232323">6</characteristic>
<characteristic name="Front" typeId="46726f6e7423232344415441232323">13</characteristic>
<characteristic name="Side" typeId="5369646523232344415441232323">12</characteristic>
<characteristic name="Rear" typeId="5265617223232344415441232323">10</characteristic>
<characteristic name="I" typeId="4923232344415441232323">4</characteristic>
<characteristic name="A" typeId="4123232344415441232323">3</characteristic>
<characteristic name="HP" typeId="485023232344415441232323">3</characteristic>
<characteristic name="Type" typeId="5479706523232344415441232323">Vehicle (Walker)</characteristic>
</characteristics>
</profile>
</profiles>
<rules>
<rule id="33d4-0a49-6add-83a1" name="Fury of Khorne" page="0" hidden="false">
<description>When charging into Assault, the Blood Slaughterer gains +D3 attacks instead.</description>
</rule>
<rule id="128a-84ce-77a9-9d51" name="Blind Fury" page="0" hidden="false">
<description>It must always move as fast as possible towards the closest visible enemy and must consolidate towards the closest visible enemy. If it chooses to run during the shooting phase, it must be towards the closest visible enemy. Does not apply if there are no visible enemies.</description>
</rule>
</rules>
<infoLinks>
<infoLink id="2dd4-0947-592a-a07e" hidden="false" targetId="d219-2314-4834-c054" type="rule"/>
<infoLink id="662f-3f87-ea4d-6178" hidden="false" targetId="69e5-fc02-1f9d-63c2" type="rule"/>
<infoLink id="0136-3ed2-ba22-769f" hidden="false" targetId="87adee1e-acae-74dc-0663-046470e4c144" type="rule"/>
<infoLink id="2a1f-63ce-9ce5-5fed" name="" hidden="false" targetId="0ba8-83bc-74c1-43c2" type="rule"/>
</infoLinks>
<selectionEntryGroups>
<selectionEntryGroup id="1606-a35a-a841-d523" name="Weapons" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="9ba5-2bbe-ba50-67c8" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="acd7-e106-8a28-cf70" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="9efd-0075-6cb1-1dfa" name="2x Dreadnought CCW" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="0ba6-77ad-23ba-b1c6" type="max"/>
</constraints>
<infoLinks>
<infoLink id="657d-4c40-7ba4-13d4" hidden="false" targetId="3b26-3098-155f-0e58" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="07c9-f395-637d-8b9c" name="Impaler and Dreadnought CCW" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="099b-3395-4558-63dd" type="max"/>
</constraints>
<profiles>
<profile id="cddf-2596-c43e-111d" name="Impaler" page="0" hidden="false" typeId="576561706f6e23232344415441232323" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="52616e676523232344415441232323">12"</characteristic>
<characteristic name="Strength" typeId="537472656e67746823232344415441232323">8</characteristic>
<characteristic name="AP" typeId="415023232344415441232323">3</characteristic>
<characteristic name="Type" typeId="5479706523232344415441232323">Assault 1, Impaler</characteristic>
</characteristics>
</profile>
</profiles>
<rules>
<rule id="e444-94a6-1f4c-0f00" name="Impaler" page="0" hidden="false">
<description>Drags the target model into Close Combat. Counts as a shooting attack that hits on a 4+. If successfuly hit or penetrating (and the target survives), move the target 2D6" straight towards the Blood Slaughterer.
Cannot drag model through obstructions it cannot normally pass through and stops 1" away from the obstruction.
Super-heavies, Gargantuan Creatures and buildings cannot be dragged by the impaler.</description>
</rule>
</rules>
<infoLinks>
<infoLink id="c7c5-7c48-8661-a92e" hidden="false" targetId="3b26-3098-155f-0e58" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="5.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="2a94-4a09-af24-aefc" hidden="false" collective="false" import="true" targetId="f18931f3-81ef-799f-eaa3-07c0067183b9" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="130.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="1618-239a-2fa0-ec7e" name="Chaos Knight Paladin" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="d6ec-893c-a965-791c" name="Chaos Knight Paladin" hidden="false" typeId="57616c6b657223232344415441232323" typeName="Walker">
<characteristics>
<characteristic name="WS" typeId="575323232344415441232323"/>
<characteristic name="BS" typeId="425323232344415441232323"/>
<characteristic name="S" typeId="5323232344415441232323"/>
<characteristic name="Front" typeId="46726f6e7423232344415441232323"/>
<characteristic name="Side" typeId="5369646523232344415441232323"/>
<characteristic name="Rear" typeId="5265617223232344415441232323"/>
<characteristic name="I" typeId="4923232344415441232323"/>
<characteristic name="A" typeId="4123232344415441232323"/>
<characteristic name="HP" typeId="485023232344415441232323"/>
<characteristic name="Type" typeId="5479706523232344415441232323"/>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry id="aa6a-6588-5094-bad3" name="Heavy Stubbers" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="8e2b-e0dd-9944-ff16" type="min"/>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="f3bb-61da-7a9f-1b7a" type="max"/>
</constraints>
<profiles>
<profile id="2bab-87fa-535a-babd" name="Heavy Stubber" hidden="false" typeId="576561706f6e23232344415441232323" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="52616e676523232344415441232323"/>
<characteristic name="Strength" typeId="537472656e67746823232344415441232323"/>
<characteristic name="AP" typeId="415023232344415441232323"/>
<characteristic name="Type" typeId="5479706523232344415441232323"/>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="808d-2157-b904-ee46" name="Foe-reaper Chainsword" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="c24f-08fb-fdf0-cbf2" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="319c-bc6c-cf2b-f146" type="max"/>
</constraints>
<profiles>
<profile id="7714-c77c-7eca-53ca" name="Foe-reaper Chainsword" hidden="false" typeId="576561706f6e23232344415441232323" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="52616e676523232344415441232323"/>
<characteristic name="Strength" typeId="537472656e67746823232344415441232323"/>
<characteristic name="AP" typeId="415023232344415441232323"/>
<characteristic name="Type" typeId="5479706523232344415441232323"/>
</characteristics>
</profile>
</profiles>