forked from BSData/wh40k-9e
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Chaos - Thousand Sons.cat
7159 lines (7154 loc) · 552 KB
/
Chaos - Thousand Sons.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="c553-15f3-3890-be39" name="Chaos - Thousand Sons" revision="73" battleScribeVersion="2.03" authorName="BSData Developers" authorContact="@Mad_Spy" authorUrl="https://discord.gg/KqPVhds" library="false" gameSystemId="28ec-711c-d87f-3aeb" gameSystemRevision="133" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<profileTypes>
<profileType id="d059-e800-687c-6148" name="Boon of Tzeentch - D6 Roll">
<characteristicTypes>
<characteristicType id="7b1e-d737-8471-712f" name="Effect"/>
</characteristicTypes>
</profileType>
<profileType id="dd44-1ab7-0a76-130d" name="Boon of Change - D3 Roll">
<characteristicTypes>
<characteristicType id="d9d0-fb29-706c-c99b" name="Effect"/>
</characteristicTypes>
</profileType>
<profileType id="9760-a771-d0c8-a624" name="Warp Vortex - D6 Roll">
<characteristicTypes>
<characteristicType id="65d3-42cb-a871-8c1c" name="Effect"/>
</characteristicTypes>
</profileType>
<profileType id="0df0-4184-4497-92fd" name="Mutated Beyond Reason">
<characteristicTypes>
<characteristicType id="44eb-303c-2970-925a" name="Effect"/>
</characteristicTypes>
</profileType>
</profileTypes>
<categoryEntries>
<categoryEntry id="848a6ff2-0def-4c72-8433-ff7da70e6bc7" name="HQ" hidden="false"/>
<categoryEntry id="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" name="Elites" hidden="false"/>
<categoryEntry id="5d76b6f5-20ae-4d70-8f59-ade72a2add3a" name="Troops" hidden="false"/>
<categoryEntry id="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" name="Heavy Support" hidden="false"/>
<categoryEntry id="c274d0b0-5866-44bc-9810-91c136ae7438" name="Fast Attack" hidden="false"/>
<categoryEntry id="c888f08a-6cea-4a01-8126-d374a9231554" name="Lord of War" hidden="false"/>
<categoryEntry id="d713cda3-5d0f-40d8-b621-69233263ec2a" name="Fortification" hidden="false"/>
<categoryEntry id="ca10-a5dd-f54f-0ed5" name="Faction: Heretic Astartes" hidden="false"/>
<categoryEntry id="012f-abfc-397b-3519" name="Faction: Tzeentch" hidden="false"/>
<categoryEntry id="5723-c15a-5882-1f57" name="Faction: Thousand Sons" hidden="false"/>
<categoryEntry id="0bc5-6451-5612-4a25" name="Daemon" hidden="false"/>
<categoryEntry id="c35d-97e7-5b2a-0a70" name="Daemon Engine" hidden="false"/>
<categoryEntry id="36b8-cf23-7648-ece9" name="Terminator" hidden="false"/>
<categoryEntry id="68f9-33bb-bd2b-c777" name="Sorcerer" hidden="false"/>
<categoryEntry id="558b-7eec-30a5-96e4" name="Ahriman" hidden="false"/>
<categoryEntry id="009b-907d-77fd-74b7" name="Exalted Sorcerer" hidden="false"/>
<categoryEntry id="686e-44d9-16b6-bd1c" name="Tzaangors" hidden="false"/>
<categoryEntry id="a277-8b97-4b35-7475" name="Scarab Occult Terminators" hidden="false"/>
<categoryEntry id="5392-407a-9cd4-4f10" name="Rubric Marines" hidden="false"/>
<categoryEntry id="78c6-7b31-7569-1840" name="Daemon Prince" hidden="false"/>
<categoryEntry id="0c0a-3974-d2ae-7e7b" name="Chaos Cultists" hidden="false"/>
<categoryEntry id="1559-2058-167a-71c9" name="Helbrute" hidden="false"/>
<categoryEntry id="810e-a919-a9ed-d08f" name="Heldrake" hidden="false"/>
<categoryEntry id="b464-809f-7165-9db0" name="Chaos Land Raider" hidden="false"/>
<categoryEntry id="305d-b621-e5cc-df0e" name="Chaos Predator" hidden="false"/>
<categoryEntry id="e985-3139-049e-f8c6" name="Chaos Rhino" hidden="false"/>
<categoryEntry id="e87e-b031-cdd2-1b91" name="Chaos Vindicator" hidden="false"/>
<categoryEntry id="9dce-3e76-feb2-64f1" name="Chaos Spawn" hidden="false"/>
<categoryEntry id="6648-888c-8bd8-25c4" name="Defiler" hidden="false"/>
<categoryEntry id="db01-64b3-d7fb-45bd" name="Forgefiend" hidden="false"/>
<categoryEntry id="63cb-0276-fa48-8a59" name="Maulerfiend" hidden="false"/>
<categoryEntry id="78db-6138-0daf-7fc2" name="Tzaangor Shaman" hidden="false"/>
<categoryEntry id="e810-3c92-2c69-d2f9" name="Enlightened" hidden="false"/>
<categoryEntry id="ffe1-be7b-20f4-f250" name="Mutalith Vortex Beast" hidden="false"/>
</categoryEntries>
<entryLinks>
<entryLink id="8d04-1842-4c3f-0d5f" name="Chaos Land Raider" hidden="false" collective="false" import="true" targetId="6991-43a5-55d4-323f" type="selectionEntry"/>
<entryLink id="0c61-92af-76ea-52e3" name="Heldrake" hidden="false" collective="false" import="true" targetId="0d77-1f37-3b32-c978" type="selectionEntry"/>
<entryLink id="6e4d-426c-9064-c9aa" name="Daemon Prince of Tzeentch" hidden="false" collective="false" import="true" targetId="c5a2-5d3b-99c9-7b99" type="selectionEntry"/>
<entryLink id="0c6a-c6e7-46c7-afa0" name="Sorcerer [LEGENDS]" hidden="false" collective="false" import="true" targetId="9832-6438-ea96-d6d6" type="selectionEntry"/>
<entryLink id="96c2-f0fb-8039-47f8" name="Sorcerer on Disc of Tzeentch [LEGENDS]" hidden="false" collective="false" import="true" targetId="b855-577a-d427-2e12" type="selectionEntry"/>
<entryLink id="a0bd-98c4-cba7-b313" name="Sorcerer in Terminator Armour [LEGENDS]" hidden="false" collective="false" import="true" targetId="313d-d939-4be9-9e48" type="selectionEntry"/>
<entryLink id="51be-47e8-f4e5-2ba2" name="Maulerfiend" hidden="false" collective="false" import="true" targetId="a374-0611-5092-b88b" type="selectionEntry"/>
<entryLink id="d35b-e538-397f-6632" name="Defiler" hidden="false" collective="false" import="true" targetId="67df-ff04-b483-f1c3" type="selectionEntry"/>
<entryLink id="4c77-3306-fb1f-4839" name="Chaos Vindicator" hidden="false" collective="false" import="true" targetId="5f6a-5432-b9a3-cc77" type="selectionEntry"/>
<entryLink id="ee13-2f6c-97ea-1b3b" name="Chaos Predator" hidden="false" collective="false" import="true" targetId="9765-6363-9d49-b571" type="selectionEntry"/>
<entryLink id="68a1-ca29-c0ee-362e" name="Chaos Cultists" hidden="false" collective="false" import="true" targetId="94ba-3961-e217-214a" type="selectionEntry"/>
<entryLink id="c033-b5f9-0707-e533" name="Rubric Marines" hidden="false" collective="false" import="true" targetId="7142-e365-1c12-efd6" type="selectionEntry"/>
<entryLink id="65d2-4d61-d7fc-f838" name="Helbrute" hidden="false" collective="false" import="true" targetId="5cae-15dc-4a5d-0b9b" type="selectionEntry"/>
<entryLink id="f693-9d05-eddf-152c" name="Chaos Rhino" hidden="false" collective="false" import="true" targetId="a008-7caa-0650-327c" type="selectionEntry"/>
<entryLink id="e0d3-6932-c3e8-6ba9" name="Ahriman" hidden="false" collective="false" import="true" targetId="ee14-de68-b811-ebd0" type="selectionEntry"/>
<entryLink id="3226-028f-1769-6950" name="Ahriman on Disc of Tzeentch" hidden="false" collective="false" import="true" targetId="ea3f-d47c-01f9-f553" type="selectionEntry"/>
<entryLink id="59cc-6c0e-be67-9701" name="Exalted Sorcerer" hidden="false" collective="false" import="true" targetId="9dc2-52bf-4cec-9183" type="selectionEntry"/>
<entryLink id="1290-a78a-08fa-0e32" name="Exalted Sorcerer on Disc of Tzeentch" hidden="false" collective="false" import="true" targetId="3f62-11e4-522b-1fb6" type="selectionEntry"/>
<entryLink id="a548-b694-1109-71dc" name="Tzaangors" hidden="false" collective="false" import="true" targetId="aa64-5c8e-b2d5-86b0" type="selectionEntry"/>
<entryLink id="0fc2-5b7d-f9dd-1f82" name="Chaos Spawn" hidden="false" collective="false" import="true" targetId="0397-abbc-52c1-556c" type="selectionEntry"/>
<entryLink id="0108-d929-bf43-2f51" name="Forgefiend" hidden="false" collective="false" import="true" targetId="9b2d-c7bd-4fd3-b2ef" type="selectionEntry"/>
<entryLink id="9d75-8df8-e929-79b0" name="Magnus the Red" hidden="false" collective="false" import="true" targetId="3100-4809-5d50-b433" type="selectionEntry"/>
<entryLink id="742d-777b-2b31-5e71" name="Scarab Occult Terminators" hidden="false" collective="false" import="true" targetId="c8ba-1df2-c188-f6b8" type="selectionEntry"/>
<entryLink id="cd13-8f18-1524-bf98" name="Tzaangor Shaman" hidden="false" collective="false" import="true" targetId="82df-c079-24a3-7b58" type="selectionEntry"/>
<entryLink id="2193-7bc9-49c9-3202" name="Tzaangor Enlightened" hidden="false" collective="false" import="true" targetId="99f4-5952-9b42-7a8a" type="selectionEntry"/>
<entryLink id="ddab-f272-9758-5ea6" name="Mutalith Vortex Beast" hidden="false" collective="false" import="true" targetId="919b-6dd6-fc12-e1be" type="selectionEntry"/>
<entryLink id="70ef-1331-88c8-d921" name="Relics of the Thousand Sons (1 Relic)" hidden="false" collective="false" import="true" targetId="1b20-1c27-6f89-ddbe" type="selectionEntry"/>
<entryLink id="e035-0a3d-52b6-9435" name="Relics of the Thousand Sons (2 Relics)" hidden="false" collective="false" import="true" targetId="28f9-4d6e-4f32-3322" type="selectionEntry"/>
<entryLink id="1e40-d33c-bcaf-aff5" name="Land Raider Variant (Open Play)" hidden="false" collective="false" import="true" targetId="5ea6-c789-f6b9-5c00" type="selectionEntry">
<infoLinks>
<infoLink id="590a-d4e2-2ff1-7154" name="Special Abilities" hidden="false" targetId="e4fd-b1fa-9c9c-3138" type="infoGroup"/>
</infoLinks>
<categoryLinks>
<categoryLink id="2e3d-d017-40a7-4c05" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="e3b2-5333-80f4-0c3f" name="New CategoryLink" hidden="false" targetId="ca10-a5dd-f54f-0ed5" primary="false"/>
<categoryLink id="43eb-54cf-f526-a57e" name="New CategoryLink" hidden="false" targetId="5723-c15a-5882-1f57" primary="false"/>
<categoryLink id="0005-5e61-62d2-46c8" name="New CategoryLink" hidden="false" targetId="012f-abfc-397b-3519" primary="false"/>
<categoryLink id="f5aa-ab32-c2f5-ea4c" name="New CategoryLink" hidden="false" targetId="c888f08a-6cea-4a01-8126-d374a9231554" primary="true"/>
<categoryLink id="031e-c884-cb50-2111" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="0106-edae-6626-686e" name="Chaos Decimator" hidden="false" collective="false" import="true" targetId="19d7-59fa-6050-caf8" type="selectionEntry">
<infoLinks>
<infoLink id="ec1c-bdc7-1871-2379" name="Special Abilities" hidden="false" targetId="e4fd-b1fa-9c9c-3138" type="infoGroup"/>
</infoLinks>
<categoryLinks>
<categoryLink id="43a5-6c4a-32fd-9278" name="Faction: Tzeentch" hidden="false" targetId="012f-abfc-397b-3519" primary="false"/>
<categoryLink id="ea1e-bffb-bf59-4d05" name="Faction: Thousand Sons" hidden="false" targetId="5723-c15a-5882-1f57" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="d19a-13f2-49ce-8e47" name="Hellforged Contemptor Dreadnought" hidden="false" collective="false" import="true" targetId="c593-94fc-fbf9-d0df" type="selectionEntry">
<infoLinks>
<infoLink id="db2f-cf3e-7d8c-0f1c" name="Special Abilities" hidden="false" targetId="e4fd-b1fa-9c9c-3138" type="infoGroup"/>
</infoLinks>
<categoryLinks>
<categoryLink id="d3e4-a280-0a94-4114" name="Faction: Tzeentch" hidden="false" targetId="012f-abfc-397b-3519" primary="false"/>
<categoryLink id="3951-797f-4e76-8421" name="Faction: Thousand Sons" hidden="false" targetId="5723-c15a-5882-1f57" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="c852-8ffd-0dea-c313" name="Hellforged Land Raider Proteus" hidden="false" collective="false" import="true" targetId="cbe6-e033-9937-7a1d" type="selectionEntry">
<infoLinks>
<infoLink id="7b33-9052-59fe-7f5f" name="Special Abilities" hidden="false" targetId="e4fd-b1fa-9c9c-3138" type="infoGroup"/>
</infoLinks>
<categoryLinks>
<categoryLink id="7ac0-0dbd-5c0c-8d6e" name="Faction: Tzeentch" hidden="false" targetId="012f-abfc-397b-3519" primary="false"/>
<categoryLink id="edec-d278-78ac-624e" name="Faction: Thousand Sons" hidden="false" targetId="5723-c15a-5882-1f57" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="3733-5b07-0e4e-921b" name="Hellforged Land Raider Achilles" hidden="false" collective="false" import="true" targetId="315a-a3db-0caa-6446" type="selectionEntry">
<infoLinks>
<infoLink id="8d3b-a4da-16cc-830f" name="Special Abilities" hidden="false" targetId="e4fd-b1fa-9c9c-3138" type="infoGroup"/>
</infoLinks>
<categoryLinks>
<categoryLink id="2381-8b91-2ce3-f872" name="Faction: Tzeentch" hidden="false" targetId="012f-abfc-397b-3519" primary="false"/>
<categoryLink id="6276-e0d4-c453-a3c3" name="Faction: Thousand Sons" hidden="false" targetId="5723-c15a-5882-1f57" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="307b-a506-636d-f4f8" name="Hellforged Predator" hidden="false" collective="false" import="true" targetId="9e4c-e0d2-2ff0-5e95" type="selectionEntry">
<infoLinks>
<infoLink id="fcd5-7601-e230-45db" name="Special Abilities" hidden="false" targetId="e4fd-b1fa-9c9c-3138" type="infoGroup"/>
</infoLinks>
<categoryLinks>
<categoryLink id="9c04-1fc3-77ad-7acd" name="Faction: Tzeentch" hidden="false" targetId="012f-abfc-397b-3519" primary="false"/>
<categoryLink id="03b9-492d-261c-e211" name="Faction: Thousand Sons" hidden="false" targetId="5723-c15a-5882-1f57" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="4bd6-585e-844b-106e" name="Hellforged Scorpius" hidden="false" collective="false" import="true" targetId="d174-1eae-f6b8-e293" type="selectionEntry">
<infoLinks>
<infoLink id="aad5-d70d-7a80-943e" name="Special Abilities" hidden="false" targetId="e4fd-b1fa-9c9c-3138" type="infoGroup"/>
</infoLinks>
<categoryLinks>
<categoryLink id="1294-f153-af57-a2a4" name="Faction: Tzeentch" hidden="false" targetId="012f-abfc-397b-3519" primary="false"/>
<categoryLink id="cc77-b04d-35a2-03ac" name="Faction: Thousand Sons" hidden="false" targetId="5723-c15a-5882-1f57" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="bbf5-1d4b-fae8-901b" name="Hellforged Sicaran" hidden="false" collective="false" import="true" targetId="f280-8863-be14-0159" type="selectionEntry">
<infoLinks>
<infoLink id="c400-66fd-39a3-9078" name="Special Abilities" hidden="false" targetId="e4fd-b1fa-9c9c-3138" type="infoGroup"/>
</infoLinks>
<categoryLinks>
<categoryLink id="a27e-8ab7-2e03-52e4" name="Faction: Tzeentch" hidden="false" targetId="012f-abfc-397b-3519" primary="false"/>
<categoryLink id="6d92-3497-d7f1-ee1b" name="Faction: Thousand Sons" hidden="false" targetId="5723-c15a-5882-1f57" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="ff93-e200-c514-f658" name="Hellforged Sicaran Venator" hidden="false" collective="false" import="true" targetId="31a0-13f1-0374-f511" type="selectionEntry">
<infoLinks>
<infoLink id="cd6a-c746-4436-f95f" name="Special Abilities" hidden="false" targetId="e4fd-b1fa-9c9c-3138" type="infoGroup"/>
</infoLinks>
<categoryLinks>
<categoryLink id="2bc9-e6ed-1831-215a" name="Faction: Tzeentch" hidden="false" targetId="012f-abfc-397b-3519" primary="false"/>
<categoryLink id="9599-5a38-4ae1-13dc" name="Faction: Thousand Sons" hidden="false" targetId="5723-c15a-5882-1f57" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="06a2-9f0e-0d10-b635" name="Hellforged Spartan Assault Tank" hidden="false" collective="false" import="true" targetId="eb46-865e-8ccf-a439" type="selectionEntry">
<infoLinks>
<infoLink id="99d3-7e75-56b4-85ba" name="Special Abilities" hidden="false" targetId="e4fd-b1fa-9c9c-3138" type="infoGroup"/>
</infoLinks>
<categoryLinks>
<categoryLink id="0cac-94cb-b4f1-d6a5" name="Faction: Tzeentch" hidden="false" targetId="012f-abfc-397b-3519" primary="false"/>
<categoryLink id="f8ed-4031-5f25-8ac1" name="Faction: Thousand Sons" hidden="false" targetId="5723-c15a-5882-1f57" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="4505-075f-9b55-71b9" name="Hellforged Deredeo Dreadnought" hidden="false" collective="false" import="true" targetId="e261-2875-56c7-caf9" type="selectionEntry">
<infoLinks>
<infoLink id="501c-67ed-d6db-494d" name="Special Abilities" hidden="false" targetId="e4fd-b1fa-9c9c-3138" type="infoGroup"/>
</infoLinks>
<categoryLinks>
<categoryLink id="a89c-7370-7123-5f64" name="Faction: Tzeentch" hidden="false" targetId="012f-abfc-397b-3519" primary="false"/>
<categoryLink id="ebfd-38e4-93a3-76a3" name="Faction: Thousand Sons" hidden="false" targetId="5723-c15a-5882-1f57" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="daf0-5945-62c8-cd8b" name="Hellforged Leviathan Dreadnought" hidden="false" collective="false" import="true" targetId="f6c4-89ad-891b-4beb" type="selectionEntry">
<infoLinks>
<infoLink id="7466-e409-8e16-4068" name="Special Abilities" hidden="false" targetId="e4fd-b1fa-9c9c-3138" type="infoGroup"/>
</infoLinks>
<categoryLinks>
<categoryLink id="8928-39b6-ffb5-4ba7" name="Faction: Tzeentch" hidden="false" targetId="012f-abfc-397b-3519" primary="false"/>
<categoryLink id="61ea-e167-5f73-b480" name="Faction: Thousand Sons" hidden="false" targetId="5723-c15a-5882-1f57" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="2500-e860-f1cb-f305" name="Hellforged Dreadclaw Drop Pod" hidden="false" collective="false" import="true" targetId="f5b8-443f-f85c-90f1" type="selectionEntry">
<infoLinks>
<infoLink id="8e35-dfac-122d-913e" name="Special Abilities" hidden="false" targetId="e4fd-b1fa-9c9c-3138" type="infoGroup"/>
</infoLinks>
<categoryLinks>
<categoryLink id="5502-0801-aa30-b6af" name="Faction: Tzeentch" hidden="false" targetId="012f-abfc-397b-3519" primary="false"/>
<categoryLink id="deb2-2820-c231-3ef3" name="Faction: Thousand Sons" hidden="false" targetId="5723-c15a-5882-1f57" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="6b38-ffc6-b328-6672" name="Hellforged Kharybdis Assault Claw" hidden="false" collective="false" import="true" targetId="e730-3bab-f956-9a95" type="selectionEntry">
<infoLinks>
<infoLink id="ac73-b54f-b257-d1ec" name="Special Abilities" hidden="false" targetId="e4fd-b1fa-9c9c-3138" type="infoGroup"/>
</infoLinks>
<categoryLinks>
<categoryLink id="d3bd-0e72-8324-3a28" name="Faction: Tzeentch" hidden="false" targetId="012f-abfc-397b-3519" primary="false"/>
<categoryLink id="524b-496f-831c-7d56" name="Faction: Thousand Sons" hidden="false" targetId="5723-c15a-5882-1f57" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="80c8-b034-b107-6e99" name="Hellforged Cerberus Heavy Destroyer" hidden="false" collective="false" import="true" targetId="0c8f-8122-f2dc-ba7b" type="selectionEntry">
<infoLinks>
<infoLink id="83f9-7c39-5f14-734a" name="Special Abilities" hidden="false" targetId="e4fd-b1fa-9c9c-3138" type="infoGroup"/>
</infoLinks>
<categoryLinks>
<categoryLink id="d1d9-cc58-7749-704f" name="Faction: Tzeentch" hidden="false" targetId="012f-abfc-397b-3519" primary="false"/>
<categoryLink id="ea80-fa82-a0aa-cdc6" name="Faction: Thousand Sons" hidden="false" targetId="5723-c15a-5882-1f57" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="7cae-db25-34c2-5a89" name="Hellforged Typhon Heavy Siege Tank" hidden="false" collective="false" import="true" targetId="c011-cf2f-ae1e-3b1a" type="selectionEntry">
<infoLinks>
<infoLink id="67a9-ebbc-d1e6-cad8" name="Special Abilities" hidden="false" targetId="e4fd-b1fa-9c9c-3138" type="infoGroup"/>
</infoLinks>
<categoryLinks>
<categoryLink id="fd1c-e923-f8b8-b123" name="Faction: Tzeentch" hidden="false" targetId="012f-abfc-397b-3519" primary="false"/>
<categoryLink id="afc0-7ad3-73b6-2dae" name="Faction: Thousand Sons" hidden="false" targetId="5723-c15a-5882-1f57" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="4caa-f3c9-3b19-49df" name="Hellforged Fellblade" hidden="false" collective="false" import="true" targetId="6fe4-b1d3-46d1-3481" type="selectionEntry">
<infoLinks>
<infoLink id="d5ec-20d1-f048-2c8b" name="Special Abilities" hidden="false" targetId="e4fd-b1fa-9c9c-3138" type="infoGroup"/>
</infoLinks>
<categoryLinks>
<categoryLink id="0e7d-5662-14d2-e0fc" name="Faction: Tzeentch" hidden="false" targetId="012f-abfc-397b-3519" primary="false"/>
<categoryLink id="d393-4dc4-e59a-fabc" name="Faction: Thousand Sons" hidden="false" targetId="5723-c15a-5882-1f57" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="3c9b-d1f9-13a9-ff51" name="Hellforged Falchion" hidden="false" collective="false" import="true" targetId="a308-f638-e0af-3e5e" type="selectionEntry">
<infoLinks>
<infoLink id="edd8-5c53-b080-f8f9" name="Special Abilities" hidden="false" targetId="e4fd-b1fa-9c9c-3138" type="infoGroup"/>
</infoLinks>
<categoryLinks>
<categoryLink id="3ed3-d8b7-d0e2-da2f" name="Faction: Tzeentch" hidden="false" targetId="012f-abfc-397b-3519" primary="false"/>
<categoryLink id="b998-c0cc-643d-3d6f" name="Faction: Thousand Sons" hidden="false" targetId="5723-c15a-5882-1f57" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="48d3-4dfe-e87c-c4d6" name="Hellforged Mastodon" hidden="false" collective="false" import="true" targetId="3099-f431-71d0-f357" type="selectionEntry">
<infoLinks>
<infoLink id="69ac-f5d7-8716-36d8" name="Special Abilities" hidden="false" targetId="e4fd-b1fa-9c9c-3138" type="infoGroup"/>
</infoLinks>
<categoryLinks>
<categoryLink id="1174-33ad-4a7f-5d4a" name="Faction: Tzeentch" hidden="false" targetId="012f-abfc-397b-3519" primary="false"/>
<categoryLink id="92e7-6677-55f8-df46" name="Faction: Thousand Sons" hidden="false" targetId="5723-c15a-5882-1f57" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="69a4-dbd5-9a00-47d5" name="Chaos Vindicator Laser Destroyer" hidden="false" collective="false" import="true" targetId="f957-f774-e452-34ea" type="selectionEntry">
<infoLinks>
<infoLink id="691e-823d-ac63-01f7" name="Special Abilities" hidden="false" targetId="e4fd-b1fa-9c9c-3138" type="infoGroup"/>
</infoLinks>
<categoryLinks>
<categoryLink id="7a28-fb60-8010-2689" name="Faction: Tzeentch" hidden="false" targetId="012f-abfc-397b-3519" primary="false"/>
<categoryLink id="6aeb-1da6-7c0f-df7a" name="Faction: Thousand Sons" hidden="false" targetId="5723-c15a-5882-1f57" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="4590-e90e-2aea-297f" name="Chaos Hell Blade" hidden="false" collective="false" import="true" targetId="5d38-a97d-a864-dd4b" type="selectionEntry">
<infoLinks>
<infoLink id="17e3-f54f-80de-7c41" name="Special Abilities" hidden="false" targetId="e4fd-b1fa-9c9c-3138" type="infoGroup"/>
</infoLinks>
<categoryLinks>
<categoryLink id="cdf4-e3d7-3392-91ff" name="Faction: Tzeentch" hidden="false" targetId="012f-abfc-397b-3519" primary="false"/>
<categoryLink id="bed4-f3e7-fbce-d411" name="Faction: Thousand Sons" hidden="false" targetId="5723-c15a-5882-1f57" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="f242-def2-b413-f772" name="Chaos Hell Talon" hidden="false" collective="false" import="true" targetId="dc79-77bc-6adb-dfbe" type="selectionEntry">
<infoLinks>
<infoLink id="da31-ed16-b174-bc0f" name="Special Abilities" hidden="false" targetId="e4fd-b1fa-9c9c-3138" type="infoGroup"/>
</infoLinks>
<categoryLinks>
<categoryLink id="35c6-e11c-dace-a85f" name="Faction: Tzeentch" hidden="false" targetId="012f-abfc-397b-3519" primary="false"/>
<categoryLink id="7966-a271-5da7-32d1" name="Faction: Thousand Sons" hidden="false" targetId="5723-c15a-5882-1f57" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="6440-ce1e-ad4d-5d4b" name="Chaos Storm Eagle Assault Gunship" hidden="false" collective="false" import="true" targetId="0ebf-e4c7-f8ca-ce1b" type="selectionEntry">
<infoLinks>
<infoLink id="fc7a-1564-e40b-396b" name="Special Abilities" hidden="false" targetId="e4fd-b1fa-9c9c-3138" type="infoGroup"/>
</infoLinks>
<categoryLinks>
<categoryLink id="7a88-3de7-f3ae-d887" name="Faction: Tzeentch" hidden="false" targetId="012f-abfc-397b-3519" primary="false"/>
<categoryLink id="a6d2-92d0-ac60-9d1c" name="Faction: Thousand Sons" hidden="false" targetId="5723-c15a-5882-1f57" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="84bf-85f4-f08c-d60b" name="Chaos Fire Raptor Assault Gunship" hidden="false" collective="false" import="true" targetId="ceaa-1081-bed7-f249" type="selectionEntry">
<infoLinks>
<infoLink id="cf05-ea6e-91a8-faf6" name="Special Abilities" hidden="false" targetId="e4fd-b1fa-9c9c-3138" type="infoGroup"/>
</infoLinks>
<categoryLinks>
<categoryLink id="84bc-a3d9-2a63-8a11" name="Faction: Tzeentch" hidden="false" targetId="012f-abfc-397b-3519" primary="false"/>
<categoryLink id="50c0-3dff-ace5-3515" name="Faction: Thousand Sons" hidden="false" targetId="5723-c15a-5882-1f57" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="8ffb-7bb3-f360-c21a" name="Chaos Thunderhawk Assault Gunship" hidden="false" collective="false" import="true" targetId="5994-ab72-97e3-f36b" type="selectionEntry">
<infoLinks>
<infoLink id="116b-d8ee-dfb1-41b7" name="Special Abilities" hidden="false" targetId="e4fd-b1fa-9c9c-3138" type="infoGroup"/>
</infoLinks>
<categoryLinks>
<categoryLink id="b4e0-b8ec-6cf8-9c51" name="Faction: Tzeentch" hidden="false" targetId="012f-abfc-397b-3519" primary="false"/>
<categoryLink id="3c57-0a48-9402-d619" name="Faction: Thousand Sons" hidden="false" targetId="5723-c15a-5882-1f57" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="286f-544c-4b1a-1e80" name="Chaos Sokar Pattern Stormbird Gunship" hidden="false" collective="false" import="true" targetId="086a-3326-18e2-477f" type="selectionEntry">
<infoLinks>
<infoLink id="8c9d-92cb-33c4-70d1" name="Special Abilities" hidden="false" targetId="e4fd-b1fa-9c9c-3138" type="infoGroup"/>
</infoLinks>
<categoryLinks>
<categoryLink id="6ad3-0c44-bb3b-8c5d" name="Faction: Tzeentch" hidden="false" targetId="012f-abfc-397b-3519" primary="false"/>
<categoryLink id="e5e9-66bb-2274-4061" name="Faction: Thousand Sons" hidden="false" targetId="5723-c15a-5882-1f57" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="0cdf-7462-9ae6-d13b" name="Chaos Xiphon Interceptor" hidden="false" collective="false" import="true" targetId="a096-b74b-efa6-9bb4" type="selectionEntry">
<infoLinks>
<infoLink id="c489-1a7b-7036-95eb" name="Special Abilities" hidden="false" targetId="e4fd-b1fa-9c9c-3138" type="infoGroup"/>
</infoLinks>
<categoryLinks>
<categoryLink id="858d-d775-118b-1ce4" name="Faction: Tzeentch" hidden="false" targetId="012f-abfc-397b-3519" primary="false"/>
<categoryLink id="7129-4269-a3f2-ebee" name="Faction: Thousand Sons" hidden="false" targetId="5723-c15a-5882-1f57" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="bc3e-9a42-e831-3677" name="Terrax-Pattern Termite Assault Drill" hidden="false" collective="false" import="true" targetId="732b-967e-1bca-5846" type="selectionEntry">
<infoLinks>
<infoLink id="6a3e-7bf4-280c-8491" name="Special Abilities" hidden="false" targetId="e4fd-b1fa-9c9c-3138" type="infoGroup"/>
</infoLinks>
<categoryLinks>
<categoryLink id="8204-3c99-3af9-6932" name="Faction: Tzeentch" hidden="false" targetId="012f-abfc-397b-3519" primary="false"/>
<categoryLink id="c4dc-b853-d8d8-d374" name="Faction: Thousand Sons" hidden="false" targetId="5723-c15a-5882-1f57" primary="false"/>
<categoryLink id="7ba1-01b3-0a42-3034" name="New CategoryLink" hidden="false" targetId="1b66-3f5f-6705-079a" primary="true"/>
<categoryLink id="dc67-63aa-1179-baf4" name="Faction: Chaos" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="66a6-d2ef-6688-61d1" name="Faction: Heretic Astartes" hidden="false" targetId="ca10-a5dd-f54f-0ed5" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="1167-4623-4d05-3317" name="Sorcerer in Terminator Armour" hidden="false" collective="false" import="true" targetId="b2f5-48e5-4cb8-87f4" type="selectionEntry"/>
<entryLink id="f261-56bf-cc85-e9f1" name="Sorcerer" hidden="false" collective="false" import="true" targetId="6b5e-2dae-029c-16ac" type="selectionEntry"/>
<entryLink id="7022-801c-0aaa-cf43" name="Cults of the Legion" hidden="false" collective="false" import="true" targetId="5708-e013-87c5-a84f" type="selectionEntry"/>
</entryLinks>
<rules>
<rule id="b363-f50e-a470-ff87" name="Daemonic Ritual" hidden="false">
<description>Instead of moving in their Movement phase, any THOUSAND SONS CHARACTER can, at the end of their Movement phase, attempt to summon a TZEENTCH DAEMON unit with this ability by performing a Daemonic Ritual (the character cannot do so if they arrived as reinforcements this turn).
Roll up to 3 dice - this is your summoning roll. You can summon to the battlefield one new TZEENTCH DAEMONS unit that has the Daemonic Ritual ability and a Power Rating equal to or less than the total result. This unit is treated as reinforcements for your army and can be placed anywhere on the battlefield that is wholly within 12" of the character and is more than 9" from any enemy model. If the total rolled is insufficient to summon any unit, the ritual fails and no new unit is summoned.
If your summoning roll included any doubles, your character suffers a mortal wound. If it contained any triples, it instead suffers D3 mortal wounds.</description>
</rule>
</rules>
<sharedSelectionEntries>
<selectionEntry id="9765-6363-9d49-b571" name="Chaos Predator" page="0" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="dcec-84e3-a202-5ba7" name="Chaos Predator" page="0" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">*</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">6+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">*</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">6</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">7</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">11</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">*</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">8</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
<profile id="f353-cbc8-8cf8-a9b1" name="Chaos Predator" hidden="false" typeId="5f4f-ea74-0630-4afe" typeName="Wound Track">
<characteristics>
<characteristic name="Remaining W" typeId="8e45-c866-b2d4-c9ab">-</characteristic>
<characteristic name="Characteristic 1" typeId="bf41-c860-50bc-2a7e">M</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">BS</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">A</characteristic>
</characteristics>
</profile>
<profile id="0466-132c-378a-ed22" name="Chaos Predator1" hidden="false" typeId="5f4f-ea74-0630-4afe" typeName="Wound Track">
<characteristics>
<characteristic name="Remaining W" typeId="8e45-c866-b2d4-c9ab">6-11+</characteristic>
<characteristic name="Characteristic 1" typeId="bf41-c860-50bc-2a7e">12"</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">3+</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">3</characteristic>
</characteristics>
</profile>
<profile id="ffdb-13f2-2610-6540" name="Chaos Predator2" hidden="false" typeId="5f4f-ea74-0630-4afe" typeName="Wound Track">
<characteristics>
<characteristic name="Remaining W" typeId="8e45-c866-b2d4-c9ab">3-5</characteristic>
<characteristic name="Characteristic 1" typeId="bf41-c860-50bc-2a7e">6"</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">4+</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">D3</characteristic>
</characteristics>
</profile>
<profile id="6518-bdc6-f975-a6ec" name="Chaos Predator3" hidden="false" typeId="5f4f-ea74-0630-4afe" typeName="Wound Track">
<characteristics>
<characteristic name="Remaining W" typeId="8e45-c866-b2d4-c9ab">1-2</characteristic>
<characteristic name="Characteristic 1" typeId="bf41-c860-50bc-2a7e">3"</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">5+</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">1</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="113f-c728-f886-9d6d" name="Explodes" hidden="false" targetId="9446-1148-da70-4028" type="profile"/>
<infoLink id="7743-c0da-688c-1425" name="Smoke Launchers" hidden="false" targetId="c883-3078-1367-cc2c" type="profile"/>
<infoLink id="834a-5d41-536f-e5ea" name="Special Abilities" hidden="false" targetId="e4fd-b1fa-9c9c-3138" type="infoGroup"/>
</infoLinks>
<categoryLinks>
<categoryLink id="c962-e65e-be8e-8607" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
<categoryLink id="d544-2dc7-1eca-0a9c" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
<categoryLink id="23bc-4374-312b-0f00" name="New CategoryLink" hidden="false" targetId="ca10-a5dd-f54f-0ed5" primary="false"/>
<categoryLink id="1f88-49ad-03d5-12c7" name="New CategoryLink" hidden="false" targetId="012f-abfc-397b-3519" primary="false"/>
<categoryLink id="42c3-da7d-1a0e-ba20" name="New CategoryLink" hidden="false" targetId="5723-c15a-5882-1f57" primary="false"/>
<categoryLink id="9ffe-a69b-a566-20cc" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="a276-e974-8f48-61ce" name="New CategoryLink" hidden="false" targetId="305d-b621-e5cc-df0e" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="b5d5-8152-ad97-48f8" name="Predator autocannon options" hidden="false" collective="false" import="true" defaultSelectionEntryId="76c9-26af-dbca-8448">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="eed2-cf94-693e-1bf6" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="975b-7389-4fab-089b" type="min"/>
</constraints>
<selectionEntries>
<selectionEntry id="76c9-26af-dbca-8448" name="Predator autocannon" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="c0cf-ee9a-c500-8872" name="Predator autocannon" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">48"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Heavy 2D3</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">7</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-1</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">3</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="40.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="4689-7cbe-6243-c589" name="Twin lascannon" hidden="false" collective="false" import="true" targetId="ee18-b1cd-6b60-464d" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="6656-b5c9-6961-8ba7" name="2x Weapon options" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5e8a-c578-e899-f285" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="05f4-b9d7-b79c-53ae" name="Two heavy bolters" hidden="false" collective="false" import="true" type="upgrade">
<entryLinks>
<entryLink id="1ea3-7247-b20d-2f0d" name="Heavy bolter" hidden="false" collective="false" import="true" targetId="05ab-e7cc-e856-c36f" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b2e9-d384-5f8a-372f" type="max"/>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7a49-1d4c-1d9c-bdf5" type="min"/>
</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="c9f2-0a93-bb22-e49b" name="Two lascannons" hidden="false" collective="false" import="true" type="upgrade">
<entryLinks>
<entryLink id="33c0-501f-23b5-0893" name="Lascannon" hidden="false" collective="false" import="true" targetId="a908-4664-11cd-f8b2" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5ad0-a468-6776-6cb9" type="max"/>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7874-f938-a410-6584" type="min"/>
</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>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="1f14-3677-3768-e2d3" name="Havoc launcher" hidden="false" collective="false" import="true" targetId="f668-0ff7-69d5-be65" type="selectionEntry"/>
<entryLink id="ca5f-5ebd-ef7f-3c2f" name="Combi-weapons" hidden="false" collective="false" import="true" targetId="5383-9a88-9883-e144" type="selectionEntryGroup"/>
<entryLink id="4844-4802-8f53-80a7" name="Has Battle Honours" hidden="false" collective="false" import="true" targetId="4763-757f-499f-d998" type="selectionEntry"/>
<entryLink id="c7bf-ec1e-991f-3c30" name="Battle Honours" hidden="false" collective="false" import="true" targetId="5518-d0f5-a880-d71c" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="90.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="9.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="5f6a-5432-b9a3-cc77" name="Chaos Vindicator" page="0" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="6fc1-a101-f128-2dab" name="Chaos Vindicator" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">*</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">6+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">*</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">6</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">8</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">11</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">*</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">8</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
<profile id="775f-d13d-d896-85d7" name="Chaos Vindicator" hidden="false" typeId="5f4f-ea74-0630-4afe" typeName="Wound Track">
<characteristics>
<characteristic name="Remaining W" typeId="8e45-c866-b2d4-c9ab">-</characteristic>
<characteristic name="Characteristic 1" typeId="bf41-c860-50bc-2a7e">M</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">BS</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">A</characteristic>
</characteristics>
</profile>
<profile id="1185-7a47-16c4-0dbc" name="Chaos Vindicator1" hidden="false" typeId="5f4f-ea74-0630-4afe" typeName="Wound Track">
<characteristics>
<characteristic name="Remaining W" typeId="8e45-c866-b2d4-c9ab">6-11+</characteristic>
<characteristic name="Characteristic 1" typeId="bf41-c860-50bc-2a7e">10"</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">3+</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">3</characteristic>
</characteristics>
</profile>
<profile id="d556-9b62-8ebb-4c9b" name="Chaos Vindicator2" hidden="false" typeId="5f4f-ea74-0630-4afe" typeName="Wound Track">
<characteristics>
<characteristic name="Remaining W" typeId="8e45-c866-b2d4-c9ab">3-5</characteristic>
<characteristic name="Characteristic 1" typeId="bf41-c860-50bc-2a7e">5"</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">4+</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">D3</characteristic>
</characteristics>
</profile>
<profile id="d541-d81a-86b9-781c" name="Chaos Vindicator3" hidden="false" typeId="5f4f-ea74-0630-4afe" typeName="Wound Track">
<characteristics>
<characteristic name="Remaining W" typeId="8e45-c866-b2d4-c9ab">1-2</characteristic>
<characteristic name="Characteristic 1" typeId="bf41-c860-50bc-2a7e">3"</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">5+</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">1</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="ba49-f4e3-1c2d-e149" name="Explodes" hidden="false" targetId="9446-1148-da70-4028" type="profile"/>
<infoLink id="4493-daab-dd56-c199" name="Special Abilities" hidden="false" targetId="e4fd-b1fa-9c9c-3138" type="infoGroup"/>
</infoLinks>
<categoryLinks>
<categoryLink id="a236-231b-1b4e-6cc2" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
<categoryLink id="be04-b383-a80d-89a0" name="New CategoryLink" hidden="false" targetId="ca10-a5dd-f54f-0ed5" primary="false"/>
<categoryLink id="bd63-de45-285c-c00a" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
<categoryLink id="9799-ed08-3476-86b5" name="New CategoryLink" hidden="false" targetId="5723-c15a-5882-1f57" primary="false"/>
<categoryLink id="31dc-9b6a-da95-18c0" name="New CategoryLink" hidden="false" targetId="012f-abfc-397b-3519" primary="false"/>
<categoryLink id="858f-d3cd-ffe2-71be" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="e700-632c-2e92-6268" name="New CategoryLink" hidden="false" targetId="e87e-b031-cdd2-1b91" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="38bf-d9ed-920c-c9cc" name="Havoc launcher" hidden="false" collective="false" import="true" targetId="f668-0ff7-69d5-be65" type="selectionEntry"/>
<entryLink id="8a77-1956-c989-1a24" name="Combi-weapons" hidden="false" collective="false" import="true" targetId="5383-9a88-9883-e144" type="selectionEntryGroup"/>
<entryLink id="8f66-4a32-b0e4-c15e" name="New EntryLink" hidden="false" collective="false" import="true" targetId="a8f6-49e7-ea35-aca5" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0dda-b65d-4b9a-bd35" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="eeaf-2f37-9908-8e1b" type="min"/>
</constraints>
</entryLink>
<entryLink id="8bcc-0154-0980-e1e4" name="Has Battle Honours" hidden="false" collective="false" import="true" targetId="4763-757f-499f-d998" type="selectionEntry"/>
<entryLink id="c184-d775-6c37-2df3" name="Battle Honours" hidden="false" collective="false" import="true" targetId="5518-d0f5-a880-d71c" type="selectionEntryGroup"/>
<entryLink id="73cf-22d9-2fa6-5656" name="Demolisher cannon" hidden="false" collective="false" import="true" targetId="1f7e-32c4-61af-510f" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="305f-9678-96e4-2bd5" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="45ee-c578-a48d-cbcf" type="min"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="130.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="8.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="c5a2-5d3b-99c9-7b99" name="Daemon Prince of Tzeentch" page="0" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="5746-8975-d4e5-72f6" name="Daemon Prince" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<modifiers>
<modifier type="set" field="0bdf-a96e-9e38-7779" value="12"">
<conditions>
<condition field="selections" scope="c5a2-5d3b-99c9-7b99" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="f7de-60d1-a265-a420" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">8"</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">7</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">6</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">8</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">4</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">10</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
<profile id="7624-303a-73f7-154e" name="Daemon Prince" hidden="false" typeId="bc97-dea9-9e88-bb7d" typeName="Psyker">
<characteristics>
<characteristic name="Cast" typeId="5afb-9914-904b-d3b3">2</characteristic>
<characteristic name="Deny" typeId="b5ac-9c20-5d5a-6f9b">1</characteristic>
<characteristic name="Powers Known" typeId="69d7-b45e-00a2-7e46">Smite and two powers from the Dark Hereticus discipline, Discipline of Change and/or Discipline of Tzeentch.</characteristic>
<characteristic name="Other" typeId="c2e2-f115-0003-5d7b"/>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="2c65-43c6-922d-0004" name="Death to the False Emperor" hidden="false" targetId="27a8-c34a-7a70-904e" type="profile"/>
<infoLink id="9a6f-a8cd-bc26-84b3" name="Prince of Tzeentch" hidden="false" targetId="6c28-5b6b-0879-5f1d" type="profile"/>
<infoLink id="933e-a026-4c96-2dd5" name="Ephemeral Daemon" hidden="false" targetId="6d5a-5f5e-dc4b-7444" type="profile"/>
<infoLink id="0bf7-7db7-413e-7e11" name="Special Abilities" hidden="false" targetId="e4fd-b1fa-9c9c-3138" type="infoGroup"/>
<infoLink id="da68-69f5-96ca-8678" name="Cult Powers" hidden="false" targetId="cef0-8e82-1650-113f" type="infoGroup"/>
<infoLink id="e811-2317-c1c8-84c2" name="Brotherhood of Sorcerors" hidden="false" targetId="dc84-166c-30bd-57ba" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="c5a2-5d3b-99c9-7b99-848a6ff2-0def-4c72-8433-ff7da70e6bc7" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
<categoryLink id="5b18-4bfa-cbfe-a87d" name="New CategoryLink" hidden="false" targetId="ef18-746a-369f-43a4" primary="false"/>
<categoryLink id="5b48-2199-c520-3ad3" name="New CategoryLink" hidden="false" targetId="0bc5-6451-5612-4a25" primary="false"/>
<categoryLink id="74b3-3eed-2351-009c" name="New CategoryLink" hidden="false" targetId="3b77-decb-d468-6bcc" primary="false"/>
<categoryLink id="eeb1-f348-26d8-0c07" name="New CategoryLink" hidden="false" targetId="ca10-a5dd-f54f-0ed5" primary="false"/>
<categoryLink id="6e23-ed67-3e6b-2155" name="New CategoryLink" hidden="false" targetId="e691-aad7-d21c-1023" primary="false"/>
<categoryLink id="4d01-aec2-6510-1c8e" name="New CategoryLink" hidden="false" targetId="5723-c15a-5882-1f57" primary="false"/>
<categoryLink id="853c-5962-1dc8-6e08" name="New CategoryLink" hidden="false" targetId="012f-abfc-397b-3519" primary="false"/>
<categoryLink id="0b10-97cf-2e39-646d" name="New CategoryLink" hidden="false" targetId="78c6-7b31-7569-1840" primary="false"/>
<categoryLink id="61b8-60d3-250e-95a8" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="f7de-60d1-a265-a420" name="Wings" 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="25e1-cd0f-f15d-1ab6" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="0b55-0bac-0af9-a2af" name="New CategoryLink" hidden="false" targetId="3117-16d8-fcef-4f56" primary="false"/>
</categoryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="1.0"/>
<cost name="pts" typeId="points" value="35.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="c8b6-53f1-329f-75e2" name="Hellforged sword options" hidden="false" collective="false" import="true" defaultSelectionEntryId="6768-4032-c530-3500">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="af21-0685-7c68-2fc1" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="5523-dfd9-5436-01af" type="min"/>
</constraints>
<entryLinks>
<entryLink id="c989-1ce5-fca0-c08b" name="Malefic talon" hidden="false" collective="false" import="true" targetId="ab5a-b591-31e2-e0d0" type="selectionEntry">
<modifiers>
<modifier type="set" field="points" value="15.0"/>
</modifiers>
</entryLink>
<entryLink id="6768-4032-c530-3500" name="Hellforged sword" hidden="false" collective="false" import="true" targetId="7d05-2c25-26b8-d4da" type="selectionEntry"/>
<entryLink id="2545-690a-5d9e-5a7f" name="Daemonic axe" hidden="false" collective="false" import="true" targetId="73f0-ec59-a8ea-4ce9" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="cbd7-27ec-200c-478a" name="Psychic Powers" hidden="false" collective="false" import="true">
<modifiers>
<modifier type="increment" field="7c33-e746-ece0-f770" value="1">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="6e59-e3c2-836b-3a01" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7c33-e746-ece0-f770" type="max"/>
</constraints>
<entryLinks>
<entryLink id="e727-2098-ceb0-c068" name="Dark Hereticus Discipline" hidden="false" collective="false" import="true" targetId="cca1-01a1-45fa-e054" type="selectionEntryGroup"/>
<entryLink id="4fde-9ea3-2966-af61" name="Discipline of Change" hidden="false" collective="false" import="true" targetId="c436-bcc7-8498-be61" type="selectionEntryGroup"/>
<entryLink id="a548-c734-b2cf-279d" name="Tzeentch Discipline" hidden="false" collective="false" import="true" targetId="7bb0-f8ee-4b51-4b43" type="selectionEntryGroup"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="c884-fb3b-a6b9-fb68" name="Malefic talon" hidden="false" collective="false" import="true" targetId="ab5a-b591-31e2-e0d0" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="982e-6f3f-b67b-c2aa" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="d8fd-c86d-a183-cf3a" type="max"/>
</constraints>
</entryLink>
<entryLink id="2063-87ae-5099-6f84" 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="9f39-044a-c37d-0546" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7c0b-1ed6-35ed-ed49" type="min"/>
</constraints>
</entryLink>
<entryLink id="a6c0-3302-bc54-e8d3" name="Sorcerous Arcana" hidden="false" collective="false" import="true" targetId="c766-a2c3-4ac9-fbbb" type="selectionEntryGroup"/>
<entryLink id="8146-3355-84eb-754e" name="Warlord" hidden="false" collective="false" import="true" targetId="9aed-5e2d-8d51-5f31" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="09ac-c616-00da-c5bb" type="max"/>
</constraints>
</entryLink>
<entryLink id="8f52-db8b-b222-c006" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="18b9-a369-20ee-a31b" type="selectionEntryGroup"/>
<entryLink id="0a64-1dd3-13bd-da46" name="Is a Custom Character" hidden="false" collective="false" import="true" targetId="43c4-8968-c599-ad5f" type="selectionEntry"/>
<entryLink id="8794-3fb8-dcb9-9b50" name="Custom Character Selections" hidden="false" collective="false" import="true" targetId="8774-e003-4a50-56c7" type="selectionEntryGroup"/>
<entryLink id="c0c9-721e-54e5-57bf" name="Magister" hidden="false" collective="false" import="true" targetId="abbd-9c4e-522b-4cd1" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="150.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="8.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="67df-ff04-b483-f1c3" name="Defiler" page="0" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="92f7-4fa7-8d78-1f4e" name="Defiler" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">*</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">4+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">*</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">8</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">7</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">14</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">*</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">8</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
<profile id="94d3-1f50-0f53-1cc7" name="Defiler" hidden="false" typeId="5f4f-ea74-0630-4afe" typeName="Wound Track">
<characteristics>
<characteristic name="Remaining W" typeId="8e45-c866-b2d4-c9ab">-</characteristic>
<characteristic name="Characteristic 1" typeId="bf41-c860-50bc-2a7e">M</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">BS</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">A</characteristic>
</characteristics>
</profile>
<profile id="0860-4463-13ed-94ba" name="Defiler1" hidden="false" typeId="5f4f-ea74-0630-4afe" typeName="Wound Track">
<characteristics>
<characteristic name="Remaining W" typeId="8e45-c866-b2d4-c9ab">8-14+</characteristic>
<characteristic name="Characteristic 1" typeId="bf41-c860-50bc-2a7e">8"</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">4+</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">4</characteristic>
</characteristics>
</profile>
<profile id="3186-3f9d-3e10-4fec" name="Defiler2" hidden="false" typeId="5f4f-ea74-0630-4afe" typeName="Wound Track">
<characteristics>
<characteristic name="Remaining W" typeId="8e45-c866-b2d4-c9ab">4-7</characteristic>
<characteristic name="Characteristic 1" typeId="bf41-c860-50bc-2a7e">6"</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">5+</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">3</characteristic>
</characteristics>
</profile>
<profile id="13f0-20c0-aeb3-721a" name="Defiler3" hidden="false" typeId="5f4f-ea74-0630-4afe" typeName="Wound Track">
<characteristics>
<characteristic name="Remaining W" typeId="8e45-c866-b2d4-c9ab">1-3</characteristic>
<characteristic name="Characteristic 1" typeId="bf41-c860-50bc-2a7e">4"</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">5+</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">2</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="5ab5-00ee-f312-6033" name="Explodes" hidden="false" targetId="9446-1148-da70-4028" type="profile"/>
<infoLink id="c736-96a1-f303-347b" name="Daemonic" hidden="false" targetId="126f-8dee-afb0-f9bd" type="profile"/>
<infoLink id="7890-822a-4a71-8c31" name="Infernal Regeneration" hidden="false" targetId="d9f4-3f35-8c4b-f847" type="profile"/>
<infoLink id="47ec-5b4a-29e9-6652" name="Special Abilities" hidden="false" targetId="e4fd-b1fa-9c9c-3138" type="infoGroup"/>
</infoLinks>
<categoryLinks>
<categoryLink id="1eac-cd86-fbf1-b28e" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
<categoryLink id="b893-69ce-8a50-eedd" name="New CategoryLink" hidden="false" targetId="0bc5-6451-5612-4a25" primary="false"/>
<categoryLink id="1a30-dc53-c197-1d63" name="New CategoryLink" hidden="false" targetId="c35d-97e7-5b2a-0a70" primary="false"/>
<categoryLink id="c87b-d6b9-9b95-de45" name="New CategoryLink" hidden="false" targetId="ca10-a5dd-f54f-0ed5" primary="false"/>
<categoryLink id="9c74-0ffb-df21-a8a4" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
<categoryLink id="6bdc-2e6c-d400-78a4" name="New CategoryLink" hidden="false" targetId="5723-c15a-5882-1f57" primary="false"/>
<categoryLink id="6de3-10ab-3c6b-5601" name="New CategoryLink" hidden="false" targetId="012f-abfc-397b-3519" primary="false"/>
<categoryLink id="7ac5-00c5-cc15-47b7" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="701a-e887-3964-1ad9" name="New CategoryLink" hidden="false" targetId="6648-888c-8bd8-25c4" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="a065-6733-00d0-cdf5" name="Defiler claws" 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="247e-c7fc-80c5-b6f4" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="db07-c7ab-daf1-6fc2" type="min"/>
</constraints>
<profiles>
<profile id="56a6-6b62-77e7-449c" name="Defiler claws" 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">D6</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="c978-c6d1-053b-9e8f" name="Twin heavy flamer options" hidden="false" collective="false" import="true" defaultSelectionEntryId="cef3-8221-d9fe-2393">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="2131-3983-10cc-0037" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="5a83-a703-081d-3404" type="min"/>
</constraints>
<selectionEntries>
<selectionEntry id="5502-7607-7594-2169" name="Defiler scourge" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="9375-4dd0-84e8-197d" name="Defiler scourge" 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">+4</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-2</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">3</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">Each time the bearer fights, it can make 3 additional attacks with this weapon.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="10.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="149c-9784-d9ea-951a" name="Havoc launcher" hidden="false" collective="false" import="true" targetId="f668-0ff7-69d5-be65" type="selectionEntry"/>
<entryLink id="cef3-8221-d9fe-2393" name="Twin heavy flamer" hidden="false" collective="false" import="true" targetId="8d70-a6af-cbad-f08c" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="a1f9-6d35-a433-90d9" name="Reaper autocannon options" hidden="false" collective="false" import="true" defaultSelectionEntryId="d71e-6c4b-0cc0-bcb1">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="6c2a-6844-d1f3-faaf" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="7361-9fa9-2dc3-94c2" type="min"/>
</constraints>
<entryLinks>
<entryLink id="e70b-14b2-0b6a-1745" name="New EntryLink" hidden="false" collective="false" import="true" targetId="ee18-b1cd-6b60-464d" type="selectionEntry"/>
<entryLink id="a0a5-40b4-d658-8b6d" name="Twin heavy bolter" hidden="false" collective="false" import="true" targetId="09d8-7790-ed3f-4d6d" type="selectionEntry"/>
<entryLink id="d71e-6c4b-0cc0-bcb1" name="Reaper autocannon" hidden="false" collective="false" import="true" targetId="5ab4-1ee7-95ad-7e15" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="0cd7-e061-3471-eb96" name="Combi-weapons" hidden="false" collective="false" import="true" targetId="5383-9a88-9883-e144" type="selectionEntryGroup"/>
<entryLink id="1f5f-6312-4edd-d675" name="New EntryLink" hidden="false" collective="false" import="true" targetId="a8f6-49e7-ea35-aca5" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="208a-c28e-1d19-ce05" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7bb8-0882-739f-b242" type="min"/>
</constraints>
</entryLink>
<entryLink id="91e5-1198-b9cc-c19e" name="Battle cannon" hidden="false" collective="false" import="true" targetId="1d7b-4f46-b77b-ead1" 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="438f-35fc-55fa-ddd7" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c57f-75ea-d387-34c1" type="min"/>
</constraints>
</entryLink>
<entryLink id="84f8-d1d6-1be9-1016" name="Has Battle Honours" hidden="false" collective="false" import="true" targetId="4763-757f-499f-d998" type="selectionEntry"/>
<entryLink id="cbd0-9028-fbd5-fb4d" name="Battle Honours" hidden="false" collective="false" import="true" targetId="5518-d0f5-a880-d71c" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="120.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="11.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="0d77-1f37-3b32-c978" name="Heldrake" page="" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="4584-d763-afb5-0bba" name="Heldrake" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">*</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">*</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">4+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">7</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">7</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">12</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">*</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">8</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
<profile id="478e-c6f2-6003-1a69" name="Heldrake" hidden="false" typeId="5f4f-ea74-0630-4afe" typeName="Wound Track">
<characteristics>
<characteristic name="Remaining W" typeId="8e45-c866-b2d4-c9ab"/>
<characteristic name="Characteristic 1" typeId="bf41-c860-50bc-2a7e">M</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">WS</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">A</characteristic>
</characteristics>
</profile>
<profile id="3e6c-8723-83a5-462a" name="Heldrake1" hidden="false" typeId="5f4f-ea74-0630-4afe" typeName="Wound Track">
<characteristics>
<characteristic name="Remaining W" typeId="8e45-c866-b2d4-c9ab">7-12</characteristic>
<characteristic name="Characteristic 1" typeId="bf41-c860-50bc-2a7e">30"</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">3+</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">4</characteristic>
</characteristics>
</profile>
<profile id="49b0-17e4-06cf-1000" name="Heldrake2" hidden="false" typeId="5f4f-ea74-0630-4afe" typeName="Wound Track">
<characteristics>
<characteristic name="Remaining W" typeId="8e45-c866-b2d4-c9ab">4-6</characteristic>
<characteristic name="Characteristic 1" typeId="bf41-c860-50bc-2a7e">20"</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">4+</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">3</characteristic>
</characteristics>
</profile>
<profile id="40af-8c67-c812-d8b8" name="Heldrake3" hidden="false" typeId="5f4f-ea74-0630-4afe" typeName="Wound Track">
<characteristics>
<characteristic name="Remaining W" typeId="8e45-c866-b2d4-c9ab">1-3</characteristic>
<characteristic name="Characteristic 1" typeId="bf41-c860-50bc-2a7e">10"</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">5+</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">2</characteristic>
</characteristics>
</profile>
<profile id="fad9-4795-ee80-ae55" name="Crash and Burn" 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 D6 before removing the model from the battlefield; on a 6 it crashes in a fiery explosion and each unit within 6" suffers D3 mortal wounds.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="fc94-8f49-944c-df76" name="Daemonic" hidden="false" targetId="126f-8dee-afb0-f9bd" type="profile"/>
<infoLink id="0edd-ba98-a3b9-a06a" name="Infernal Regeneration" hidden="false" targetId="d9f4-3f35-8c4b-f847" type="profile"/>
<infoLink id="c70b-f07b-eb78-f552" name="Special Abilities" hidden="false" targetId="e4fd-b1fa-9c9c-3138" type="infoGroup"/>
</infoLinks>
<categoryLinks>
<categoryLink id="0d77-1f37-3b32-c978-c274d0b0-5866-44bc-9810-91c136ae7438" hidden="false" targetId="e888-1504-aa61-95ff" primary="true"/>
<categoryLink id="ed11-225d-05ae-e33f" name="New CategoryLink" hidden="false" targetId="0bc5-6451-5612-4a25" primary="false"/>
<categoryLink id="c8df-d905-d396-5599" name="New CategoryLink" hidden="false" targetId="c35d-97e7-5b2a-0a70" primary="false"/>
<categoryLink id="d5a5-42a2-cd20-e8d3" name="New CategoryLink" hidden="false" targetId="ca10-a5dd-f54f-0ed5" primary="false"/>
<categoryLink id="c30e-0250-c31a-f280" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
<categoryLink id="82ce-c554-cc29-5788" name="New CategoryLink" hidden="false" targetId="3117-16d8-fcef-4f56" primary="false"/>
<categoryLink id="30d8-ffe2-34d9-9529" name="New CategoryLink" hidden="false" targetId="5723-c15a-5882-1f57" primary="false"/>
<categoryLink id="69cd-4017-8525-fcfa" name="New CategoryLink" hidden="false" targetId="012f-abfc-397b-3519" primary="false"/>
<categoryLink id="54bb-83db-8235-632f" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="82b0-3ff6-e495-fb9c" name="New CategoryLink" hidden="false" targetId="810e-a919-a9ed-d08f" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="3208-50f4-086c-64ee" name="Heldrake claws" 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="bec2-34bb-b9f0-2940" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a847-f853-e999-7ee7" type="min"/>
</constraints>
<profiles>
<profile id="67f5-005c-e7a5-8ec7" name="Heldrake claws" 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">When attacking models that can Fly, you may add 1 to this weapon's hit roll.</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>
<selectionEntryGroups>
<selectionEntryGroup id="2c11-c71e-03f2-53d0" name="Weapon" hidden="false" collective="false" import="true" defaultSelectionEntryId="cdbb-40a8-53ff-859a">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="ad4c-5b37-5248-43e3" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="ac72-4f68-de14-98ec" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="cdbb-40a8-53ff-859a" name="Hades autocannon" page="0" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="33ba-fe70-afd6-3bb7" name="Hades autocannon" hidden="false" targetId="3351-60e7-b298-81aa" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="25.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="1329-ce9d-108a-e7df" name="Baleflamer" page="0" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="ec79-4876-9415-d84b" hidden="false" targetId="a58c-7337-46b9-0d95" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="20.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>