generated from BSData/TemplateDataRepo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Chaos - Thousand Sons.cat
6017 lines (6017 loc) · 435 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 xmlns="http://www.battlescribe.net/schema/catalogueSchema" id="1069-10ff-3ba9-873b" name="Chaos - Thousand Sons" revision="21" battleScribeVersion="2.03" library="false" gameSystemId="sys-352e-adc2-7639-d6a9" gameSystemRevision="1" type="catalogue">
<publications>
<publication id="015a-6212-d737-9044" name="Index - Thousand Sons"/>
</publications>
<profileTypes>
<profileType id="6be6-a982-36ad-841a" name="Cabal Rituals">
<characteristicTypes>
<characteristicType id="ace0-c8c2-e1fe-18b0" name="Cost"/>
<characteristicType id="4e3c-58dd-9e6e-e1f4" name="Effect"/>
</characteristicTypes>
</profileType>
<profileType id="b74a-bcb9-3e72-83e4" name="Crimson King">
<characteristicTypes>
<characteristicType id="d650-cfd1-3e18-1a8d" name="Effect"/>
</characteristicTypes>
</profileType>
</profileTypes>
<categoryEntries>
<categoryEntry id="1b57-d2d1-a0ab-019e" name="Ahriman" hidden="false"/>
<categoryEntry id="913a-baae-b89b-995d" name="Ahriman on Disc of Tzeentch" hidden="false"/>
<categoryEntry id="c3f6-5c31-2007-41df" name="Land Raider" hidden="false"/>
<categoryEntry id="116c-4068-d3f1-d67c" name="Predator Annihilator" hidden="false"/>
<categoryEntry id="ffc4-68d3-fcff-6dab" name="Predator Destructor" hidden="false"/>
<categoryEntry id="56d9-9e64-788e-3f3e" name="Rhino" hidden="false"/>
<categoryEntry id="6342-2cd6-f518-f565" name="Spawn" hidden="false"/>
<categoryEntry id="14a3-33f9-b5a8-b6df" name="Vindicator" hidden="false"/>
<categoryEntry id="486a-4fe5-2b63-6d4b" name="Defiler" hidden="false"/>
<categoryEntry id="010f-ca66-75a1-379b" name="Exalted Sorcerer" hidden="false"/>
<categoryEntry id="b1a9-e7ae-72fe-cb9b" name="Forgefiend" hidden="false"/>
<categoryEntry id="646d-c72b-f00a-640f" name="Helbrute" hidden="false"/>
<categoryEntry id="41b5-9462-b98a-ed59" name="Heldrake" hidden="false"/>
<categoryEntry id="14c6-7790-6e57-92b9" name="Infernal Master" hidden="false"/>
<categoryEntry id="6928-471e-41da-01a7" name="Magnus the Red" hidden="false"/>
<categoryEntry id="5568-6a60-e712-8b64" name="Maulerfiend" hidden="false"/>
<categoryEntry id="d9c7-99b5-1d37-3021" name="Mutalith Vortex Beast" hidden="false"/>
<categoryEntry name="Rubric Marines" hidden="false" id="cd-b0e0-7663-a659"/>
<categoryEntry name="Terminator" hidden="false" id="6957-5c6d-824d-8804"/>
<categoryEntry name="Scarab Occult Terminators" hidden="false" id="5fdf-d92f-3c62-9a2e"/>
<categoryEntry name="Sorcerer" hidden="false" id="3789-4546-1d0a-f02b"/>
<categoryEntry name="Cultists" hidden="false" id="1b94-375f-5a5b-7dc1"/>
<categoryEntry name="Tzaangor Enlightened" hidden="false" id="7251-9ffe-99e5-bdc8"/>
<categoryEntry name="Enlightened" hidden="false" id="220d-15e5-e0db-4db"/>
<categoryEntry name="Tzaangor Shaman" hidden="false" id="527e-a024-3c7f-e5df"/>
<categoryEntry name="Tzaangors" hidden="false" id="5438-1567-83a-d29c"/>
<categoryEntry name="Hellblade" hidden="false" id="6fad-1189-322-915a"/>
<categoryEntry name="Hell Talon" hidden="false" id="d975-1963-1946-b7cd"/>
<categoryEntry name="Disc of Tzeentch" hidden="false" id="9783-ae8d-13dc-1e64"/>
<categoryEntry name="Chaos Lord" hidden="false" id="f46d-bef6-a3e5-4b66"/>
</categoryEntries>
<selectionEntries>
<selectionEntry id="87f0-0a14-9b6b-f367" name="Rituals reference" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="761d-0fe1-31df-1b5a" value="0"/>
</modifiers>
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="761d-0fe1-31df-1b5a" type="min"/>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="297e-923a-0166-2720" type="max"/>
</constraints>
<profiles>
<profile id="281a-fced-cb79-1fb1" name="1. Weaver of Fates (Psychic)" hidden="false" typeId="6be6-a982-36ad-841a" typeName="Cabal Rituals">
<characteristics>
<characteristic name="Cost" typeId="ace0-c8c2-e1fe-18b0">2</characteristic>
<characteristic name="Effect" typeId="4e3c-58dd-9e6e-e1f4">Use this Ritual at the start of any phase. Once during that phase, when a saving throw is failed for a friendly THOUSAND SONS model whose unit is within 18" of this Psyker, you can re-roll that saving throw.</characteristic>
</characteristics>
</profile>
<profile id="2b05-d481-749c-5dc2" name="2. Temporal Surge (Psychic)" hidden="false" typeId="6be6-a982-36ad-841a" typeName="Cabal Rituals">
<characteristics>
<characteristic name="Cost" typeId="ace0-c8c2-e1fe-18b0">5</characteristic>
<characteristic name="Effect" typeId="4e3c-58dd-9e6e-e1f4">Use this Ritual at the start of your Shooting phase. Select one friendly THOUSAND SONS unit within 18" of this PSYKER; unless that unit is within Engagement range of one or more enemy units, it can make a Normal move. If it does, that unit is not eligible to declare a charge this turn.</characteristic>
</characteristics>
</profile>
<profile id="3ec8-073a-6733-faed" name="3. Echoes from the Warp (Psychic)" hidden="false" typeId="6be6-a982-36ad-841a" typeName="Cabal Rituals">
<characteristics>
<characteristic name="Cost" typeId="ace0-c8c2-e1fe-18b0">6</characteristic>
<characteristic name="Effect" typeId="4e3c-58dd-9e6e-e1f4">Use this Ritual at the start of any phase. Once this phase, you can select this PSYKER’s unit as the target of a Stratagem for 0CP, even if you have already used that Stratagem this phase.</characteristic>
</characteristics>
</profile>
<profile id="d0ad-643f-41db-76b4" name="4. Doombolt (Psychic)" hidden="false" typeId="6be6-a982-36ad-841a" typeName="Cabal Rituals">
<characteristics>
<characteristic name="Cost" typeId="ace0-c8c2-e1fe-18b0">7</characteristic>
<characteristic name="Effect" typeId="4e3c-58dd-9e6e-e1f4">Use this Ritual at the start of your Shooting phase. Select one enemy unit within 18" of and visible to this PSYKER and roll one D6: on a 1, that enemy unit suffers D3 mortal wounds; on a 2-5, it suffers D3+3 mortal wounds; on a 6, it suffers D3+6 mortal wounds.</characteristic>
</characteristics>
</profile>
<profile id="e595-1ea6-ed77-6206" name="5. Twist of Fate (Psychic)" hidden="false" typeId="6be6-a982-36ad-841a" typeName="Cabal Rituals">
<characteristics>
<characteristic name="Cost" typeId="ace0-c8c2-e1fe-18b0">9</characteristic>
<characteristic name="Effect" typeId="4e3c-58dd-9e6e-e1f4">Use this Ritual at the start of any phase. Select one enemy unit within 18" of and visible to this PSYKER; until the end of the phase, armour saving throws cannot be made for models in that unit.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="b907-2b09-5592-c155" name="New CategoryLink" hidden="false" targetId="4ac9-fd30-1e3d-b249" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="5aa6-fabd-9ce9-01f9" name="Detachment Choice" hidden="false" collective="false" import="true" targetId="3b0d-dccf-8661-be1c" type="selectionEntry"/>
<entryLink id="b1b7-3c3b-c789-e1f1" name="Ahriman" hidden="false" collective="false" import="true" targetId="05f1-7fda-a0da-ea40" type="selectionEntry"/>
<entryLink id="5847-34cb-f4d4-f5f0" name="Ahriman on Disc of Tzeentch" hidden="false" collective="false" import="true" targetId="3bfa-bf00-b5ed-cc81" type="selectionEntry"/>
<entryLink id="0e64-a79a-af7c-5b5f" name="Thousand Sons Land Raider" hidden="false" collective="false" import="true" targetId="dfde-eaff-e63e-3aae" type="selectionEntry"/>
<entryLink id="70e3-266d-822c-677c" name="World Eaters Predator Annihilator" hidden="false" collective="false" import="true" targetId="a619-beee-4bde-d049" type="selectionEntry"/>
<entryLink id="482e-2586-c4e4-37f7" name="Thousand Sons Predator Destructor" hidden="false" collective="false" import="true" targetId="4819-dbbe-8547-4e23" type="selectionEntry"/>
<entryLink id="1957-3e4e-c38b-9c31" name="World Eaters Rhino" hidden="false" collective="false" import="true" targetId="8d9b-b949-2557-dcc4" type="selectionEntry"/>
<entryLink id="9d98-ef75-6e9a-0616" name="Thousand Sons Chaos Spawn" hidden="false" collective="false" import="true" targetId="60de-4c77-95e1-1337" type="selectionEntry"/>
<entryLink id="f24f-e542-0dc3-0f35" name="Thousand Sons Vindicator" hidden="false" collective="false" import="true" targetId="3413-b8fd-e22c-da4f" type="selectionEntry"/>
<entryLink id="2a95-aeda-e244-35f4" name="Thousand Sons Defiler" hidden="false" collective="false" import="true" targetId="0858-3078-f052-b11b" type="selectionEntry"/>
<entryLink id="bccb-bed8-e98d-c278" name="Exalted Sorcerer" hidden="false" collective="false" import="true" targetId="c3a6-8fab-45f0-2d45" type="selectionEntry"/>
<entryLink id="a8c7-bbea-e81d-f2db" name="Exalted Sorcerer on Disc of Tzeentch" hidden="false" collective="false" import="true" targetId="1724-8c9c-c385-16c6" type="selectionEntry"/>
<entryLink id="407b-59cb-a040-856e" name="Thousand Sons Forgefiend" hidden="false" collective="false" import="true" targetId="d2f1-7a0b-f7cd-9b46" type="selectionEntry"/>
<entryLink id="10b3-2b43-9984-b652" name="Thousand Sons Helbrute" hidden="false" collective="false" import="true" targetId="5b9d-e3c1-3d55-8276" type="selectionEntry"/>
<entryLink id="e16d-0390-e80b-618c" name="Thousand Sons Heldrake" hidden="false" collective="false" import="true" targetId="637a-d542-35aa-e95c" type="selectionEntry"/>
<entryLink id="fa01-afbc-eb36-3fcf" name="Infernal Master" hidden="false" collective="false" import="true" targetId="1693-5e00-da69-57bb" type="selectionEntry"/>
<entryLink id="87e5-234f-587c-b917" name="Magnus the Red" hidden="false" collective="false" import="true" targetId="91dc-9aad-0505-52a8" type="selectionEntry"/>
<entryLink id="1837-8c0d-0123-817d" name="Thousand Sons Maulerfiend" hidden="false" collective="false" import="true" targetId="f2aa-19fd-335a-09b3" type="selectionEntry"/>
<entryLink id="0d44-a7e3-517e-cc85" name="Mutalith Vortex Beast" hidden="false" collective="false" import="true" targetId="094c-c618-92c1-b394" type="selectionEntry"/>
<entryLink import="true" name="Rubric Marines" hidden="false" type="selectionEntry" id="4b-186d-15aa-8749" targetId="5d3d-e13b-8b76-dad3"/>
<entryLink import="true" name="Scarab Occult Terminators" hidden="false" type="selectionEntry" id="ad0-9341-6146-3751" targetId="b1cf-c5-5121-92a4"/>
<entryLink import="true" name="Thousand Sons Sorcerer" hidden="false" type="selectionEntry" id="597b-83ac-60d8-5889" targetId="af1e-9a3d-785c-47f8"/>
<entryLink import="true" name="Thousand Sons Sorcerer in Terminator Armour" hidden="false" type="selectionEntry" id="f7d0-f6ee-1fd5-b4da" targetId="c6d1-e73b-9d26-5d8b"/>
<entryLink import="true" name="Thousand Sons Cultists" hidden="false" type="selectionEntry" id="ee2d-bdb6-78bb-62cd" targetId="9cd8-1a0-914b-c212"/>
<entryLink import="true" name="Thousand Sons Daemon Prince" hidden="false" type="selectionEntry" id="8b7c-94a7-c872-438d" targetId="eccd-e442-607b-3fd0"/>
<entryLink import="true" name="Thousand Sons Daemon Prince with wings" hidden="false" type="selectionEntry" id="2d6b-f5cf-6f01-9475" targetId="66f4-929e-1769-f277"/>
<entryLink import="true" name="Tzaangor Enlightened" hidden="false" type="selectionEntry" id="a714-99f7-a2da-2362" targetId="1703-3edd-5eb3-fcef"/>
<entryLink import="true" name="Tzaangor Shaman" hidden="false" type="selectionEntry" id="bf1b-fbd4-f85a-eb40" targetId="c251-bd54-441-4799"/>
<entryLink import="true" name="Tzaangors" hidden="false" type="selectionEntry" id="1ba0-1223-9d11-a596" targetId="f5b9-50c8-5c60-d8ea"/>
<entryLink import="true" name="Chaos Thunderhawk" hidden="false" type="selectionEntry" id="893b-fe01-6569-9fcb" targetId="6844-986c-b0ea-6dd5">
<categoryLinks>
<categoryLink targetId="7002-1fbb-7571-e8e7" id="6d5d-5064-beba-ce99" primary="false" name="Faction: Thousand Sons"/>
<categoryLink targetId="b188-114f-6ba5-79a1" id="b8b1-d666-f21f-59f6" primary="false" name="Tzeentch"/>
</categoryLinks>
</entryLink>
<entryLink import="true" name="Kratos" hidden="false" type="selectionEntry" id="bf31-6313-ef6f-92a2" targetId="78aa-3f99-5fb7-7f83">
<categoryLinks>
<categoryLink targetId="7002-1fbb-7571-e8e7" id="91bd-aaac-19f7-854c" primary="false" name="Faction: Thousand Sons"/>
<categoryLink targetId="4c00-2578-faf5-6918" id="d83-aad3-9990-e0b2" primary="false" name="Chaos"/>
<categoryLink targetId="b188-114f-6ba5-79a1" id="8239-50e1-ced6-4ad5" primary="false" name="Tzeentch"/>
</categoryLinks>
</entryLink>
<entryLink import="true" name="Cerberus" hidden="false" type="selectionEntry" id="4a7d-9d6d-4e47-e990" targetId="4044-b458-fb4d-d05b">
<categoryLinks>
<categoryLink targetId="7002-1fbb-7571-e8e7" id="2e6c-c911-b970-751a" primary="false" name="Faction: Thousand Sons"/>
<categoryLink targetId="4c00-2578-faf5-6918" id="f756-1862-bc21-2d57" primary="false" name="Chaos"/>
<categoryLink targetId="b188-114f-6ba5-79a1" id="c8b1-567c-cadb-e434" primary="false" name="Tzeentch"/>
</categoryLinks>
</entryLink>
<entryLink import="true" name="Deredeo Dreadnought" hidden="false" type="selectionEntry" id="52ff-2d98-cbb6-a38f" targetId="d38d-c3a2-f753-efea">
<categoryLinks>
<categoryLink targetId="7002-1fbb-7571-e8e7" id="6e8e-222-c3c8-435b" primary="false" name="Faction: Thousand Sons"/>
<categoryLink targetId="4c00-2578-faf5-6918" id="5f70-686-e11a-3060" primary="false" name="Chaos"/>
<categoryLink targetId="b188-114f-6ba5-79a1" id="463b-ed0c-9aaa-a883" primary="false" name="Tzeentch"/>
</categoryLinks>
</entryLink>
<entryLink import="true" name="Relic Contemptor Dreadnought" hidden="false" type="selectionEntry" id="2c93-c337-c4f0-e3c6" targetId="783a-1c02-b377-b169">
<categoryLinks>
<categoryLink targetId="7002-1fbb-7571-e8e7" id="9272-1d2e-432d-68c3" primary="false" name="Faction: Thousand Sons"/>
<categoryLink targetId="4c00-2578-faf5-6918" id="f15a-765e-339b-b6a" primary="false" name="Chaos"/>
<categoryLink targetId="b188-114f-6ba5-79a1" id="937e-36ab-ee0e-af46" primary="false" name="Tzeentch"/>
</categoryLinks>
</entryLink>
<entryLink import="true" name="Leviathan Dreadnought" hidden="false" type="selectionEntry" id="c0d7-3b1b-480a-3692" targetId="14d4-8062-f090-6719">
<categoryLinks>
<categoryLink targetId="7002-1fbb-7571-e8e7" id="842b-f995-826f-9e2b" primary="false" name="Faction: Thousand Sons"/>
<categoryLink targetId="4c00-2578-faf5-6918" id="f4e0-7586-f847-cc43" primary="false" name="Chaos"/>
<categoryLink targetId="b188-114f-6ba5-79a1" id="6d2c-5de2-f8a2-cf2e" primary="false" name="Tzeentch"/>
</categoryLinks>
</entryLink>
<entryLink import="true" name="Land Raider Proteus" hidden="false" type="selectionEntry" id="ca3f-6404-8f96-c869" targetId="34c8-1025-33f7-baaf">
<categoryLinks>
<categoryLink targetId="7002-1fbb-7571-e8e7" id="ce83-1015-a49-ba3a" primary="false" name="Faction: Thousand Sons"/>
<categoryLink targetId="4c00-2578-faf5-6918" id="cd5b-8a2f-d1d9-2273" primary="false" name="Chaos"/>
<categoryLink targetId="b188-114f-6ba5-79a1" id="15bc-8b42-fc53-5612" primary="false" name="Tzeentch"/>
</categoryLinks>
</entryLink>
<entryLink import="true" name="Land Raider Achilles" hidden="false" type="selectionEntry" id="8468-f7fa-78b-466e" targetId="3006-ffe-2b0c-6b1b">
<categoryLinks>
<categoryLink targetId="7002-1fbb-7571-e8e7" id="4590-13c6-4a11-b25a" primary="false" name="Faction: Thousand Sons"/>
<categoryLink targetId="4c00-2578-faf5-6918" id="7fa2-d6ff-a0cc-5160" primary="false" name="Chaos"/>
<categoryLink targetId="b188-114f-6ba5-79a1" id="f247-6fdd-f2b-9ac" primary="false" name="Tzeentch"/>
</categoryLinks>
</entryLink>
<entryLink import="true" name="Sicaran Battle Tank" hidden="false" type="selectionEntry" id="8a18-8e2f-6a15-5a49" targetId="b2f1-197b-fb3b-687f">
<categoryLinks>
<categoryLink targetId="7002-1fbb-7571-e8e7" id="a9bb-d08c-25a7-32b2" primary="false" name="Faction: Thousand Sons"/>
<categoryLink targetId="4c00-2578-faf5-6918" id="42db-1364-ffc0-fb2e" primary="false" name="Chaos"/>
<categoryLink targetId="b188-114f-6ba5-79a1" id="2817-652-2adf-d723" primary="false" name="Tzeentch"/>
</categoryLinks>
</entryLink>
<entryLink import="true" name="Sicaran Punisher" hidden="false" type="selectionEntry" id="3e5d-2c07-bac4-395" targetId="68aa-28bf-bd73-3355">
<categoryLinks>
<categoryLink targetId="7002-1fbb-7571-e8e7" id="d2ea-962a-8d7a-d980" primary="false" name="Faction: Thousand Sons"/>
<categoryLink targetId="4c00-2578-faf5-6918" id="bd1e-80f-7cdc-90e5" primary="false" name="Chaos"/>
<categoryLink targetId="b188-114f-6ba5-79a1" id="bb50-5dcf-497-b10b" primary="false" name="Tzeentch"/>
</categoryLinks>
</entryLink>
<entryLink import="true" name="Sicaran Venator" hidden="false" type="selectionEntry" id="4346-ce92-fe15-867a" targetId="e63e-2aa6-f840-b54e">
<categoryLinks>
<categoryLink targetId="7002-1fbb-7571-e8e7" id="7311-f72a-f8c-2032" primary="false" name="Faction: Thousand Sons"/>
<categoryLink targetId="4c00-2578-faf5-6918" id="a111-6189-f03f-2257" primary="false" name="Chaos"/>
<categoryLink targetId="b188-114f-6ba5-79a1" id="2760-30ad-3f69-862c" primary="false" name="Tzeentch"/>
</categoryLinks>
</entryLink>
<entryLink import="true" name="Rapier Carrier" hidden="false" type="selectionEntry" id="26c2-72ff-ff15-cd" targetId="2aee-e03c-836e-4c6e">
<categoryLinks>
<categoryLink targetId="7002-1fbb-7571-e8e7" id="70ed-aa4f-2a06-b321" primary="false" name="Faction: Thousand Sons"/>
<categoryLink targetId="4c00-2578-faf5-6918" id="9d62-ca5f-3647-f7cb" primary="false" name="Chaos"/>
<categoryLink targetId="b188-114f-6ba5-79a1" id="47a3-be3e-d045-bb21" primary="false" name="Tzeentch"/>
</categoryLinks>
</entryLink>
<entryLink import="true" name="Whirlwind Scorpius" hidden="false" type="selectionEntry" id="3d73-b555-e3e8-8100" targetId="97dc-f0c8-1354-88fb">
<categoryLinks>
<categoryLink targetId="7002-1fbb-7571-e8e7" id="897b-3a35-4309-bebf" primary="false" name="Faction: Thousand Sons"/>
<categoryLink targetId="4c00-2578-faf5-6918" id="53ca-4c17-5d1f-95a2" primary="false" name="Chaos"/>
<categoryLink targetId="b188-114f-6ba5-79a1" id="d15a-d94e-35ed-2bfd" primary="false" name="Tzeentch"/>
</categoryLinks>
</entryLink>
<entryLink import="true" name="Xiphon Interceptor" hidden="false" type="selectionEntry" id="cb23-5079-6be1-c843" targetId="1aa5-d081-2442-4c37">
<categoryLinks>
<categoryLink targetId="7002-1fbb-7571-e8e7" id="440e-980a-9e0e-95d8" primary="false" name="Faction: Thousand Sons"/>
<categoryLink targetId="4c00-2578-faf5-6918" id="247a-2e26-7a2b-afa4" primary="false" name="Chaos"/>
<categoryLink targetId="b188-114f-6ba5-79a1" id="13f7-94f9-c87c-a490" primary="false" name="Tzeentch"/>
</categoryLinks>
</entryLink>
<entryLink import="true" name="Storm Eagle Gunship" hidden="false" type="selectionEntry" id="a198-c51c-c245-aebe" targetId="3b7d-b14e-603-e1ad">
<categoryLinks>
<categoryLink targetId="7002-1fbb-7571-e8e7" id="f565-da0e-77b3-e508" primary="false" name="Faction: Thousand Sons"/>
<categoryLink targetId="4c00-2578-faf5-6918" id="95ff-e14b-f292-23b0" primary="false" name="Chaos"/>
<categoryLink targetId="b188-114f-6ba5-79a1" id="fe6b-bb70-3fbd-2194" primary="false" name="Tzeentch"/>
</categoryLinks>
</entryLink>
<entryLink import="true" name="Fire Raptor Gunship" hidden="false" type="selectionEntry" id="3082-c9fe-b2b6-2594" targetId="1fc7-7880-e4d4-acbf">
<categoryLinks>
<categoryLink targetId="7002-1fbb-7571-e8e7" id="62a0-fb26-e824-7ee5" primary="false" name="Faction: Thousand Sons"/>
<categoryLink targetId="4c00-2578-faf5-6918" id="2c49-e895-b3bd-c5af" primary="false" name="Chaos"/>
<categoryLink targetId="b188-114f-6ba5-79a1" id="c543-ef9c-1d81-fb61" primary="false" name="Tzeentch"/>
</categoryLinks>
</entryLink>
<entryLink import="true" name="Typhon" hidden="false" type="selectionEntry" id="ab45-1b93-3f22-12e8" targetId="f60c-1b93-9ee8-59d2">
<categoryLinks>
<categoryLink targetId="7002-1fbb-7571-e8e7" id="774c-e3dc-8648-9fff" primary="false" name="Faction: Thousand Sons"/>
<categoryLink targetId="4c00-2578-faf5-6918" id="e239-50ff-5e0a-e1f6" primary="false" name="Chaos"/>
<categoryLink targetId="b188-114f-6ba5-79a1" id="bf31-411a-a3bb-d39a" primary="false" name="Tzeentch"/>
</categoryLinks>
</entryLink>
<entryLink import="true" name="Spartan" hidden="false" type="selectionEntry" id="bd70-e819-4f8d-f85a" targetId="7b3a-9a63-6200-ec7">
<categoryLinks>
<categoryLink targetId="7002-1fbb-7571-e8e7" id="4881-faff-d3ab-219e" primary="false" name="Faction: Thousand Sons"/>
<categoryLink targetId="4c00-2578-faf5-6918" id="1033-7448-5ac8-6f01" primary="false" name="Chaos"/>
<categoryLink targetId="b188-114f-6ba5-79a1" id="c290-be93-36c5-6bba" primary="false" name="Tzeentch"/>
</categoryLinks>
</entryLink>
<entryLink import="true" name="Fellblade" hidden="false" type="selectionEntry" id="bdb1-c3b2-7bcf-1b17" targetId="585d-722b-4304-2f63">
<categoryLinks>
<categoryLink targetId="7002-1fbb-7571-e8e7" id="2bae-6e66-1ca2-4f63" primary="false" name="Faction: Thousand Sons"/>
<categoryLink targetId="4c00-2578-faf5-6918" id="4946-b1fa-ec7f-bf5" primary="false" name="Chaos"/>
<categoryLink targetId="b188-114f-6ba5-79a1" id="7404-d2cc-4b85-9dbf" primary="false" name="Tzeentch"/>
</categoryLinks>
</entryLink>
<entryLink import="true" name="Falchion" hidden="false" type="selectionEntry" id="a308-d6b5-4187-d7b7" targetId="625b-29e4-7be7-db5a">
<categoryLinks>
<categoryLink targetId="7002-1fbb-7571-e8e7" id="7eb4-8f2b-4c62-e57" primary="false" name="Faction: Thousand Sons"/>
<categoryLink targetId="4c00-2578-faf5-6918" id="1cd2-1380-6768-8f65" primary="false" name="Chaos"/>
<categoryLink targetId="b188-114f-6ba5-79a1" id="3a75-1323-eab0-5fb0" primary="false" name="Tzeentch"/>
</categoryLinks>
</entryLink>
<entryLink import="true" name="Mastodon" hidden="false" type="selectionEntry" id="8913-1061-dda9-5c2" targetId="e337-7f05-f1b3-d64e">
<categoryLinks>
<categoryLink targetId="7002-1fbb-7571-e8e7" id="c490-8ae9-c4e3-539c" primary="false" name="Faction: Thousand Sons"/>
<categoryLink targetId="4c00-2578-faf5-6918" id="ccec-ea50-8eae-6b08" primary="false" name="Chaos"/>
<categoryLink targetId="b188-114f-6ba5-79a1" id="6659-ee8c-d2af-7927" primary="false" name="Tzeentch"/>
</categoryLinks>
</entryLink>
<entryLink import="true" name="Sokar-pattern Stormbird" hidden="false" type="selectionEntry" id="148e-92af-5705-bcea" targetId="a80f-8343-85f3-716a">
<categoryLinks>
<categoryLink targetId="7002-1fbb-7571-e8e7" id="bc01-c7eb-db43-fbe4" primary="false" name="Faction: Thousand Sons"/>
<categoryLink targetId="4c00-2578-faf5-6918" id="da05-c271-e8d5-f0b9" primary="false" name="Chaos"/>
<categoryLink targetId="b188-114f-6ba5-79a1" id="823a-5913-63d5-735d" primary="false" name="Tzeentch"/>
</categoryLinks>
</entryLink>
<entryLink import="true" name="Terrax-pattern Termite" hidden="false" type="selectionEntry" id="3ffb-3c2c-e402-eefd" targetId="3d36-e9d7-54c5-deb7">
<categoryLinks>
<categoryLink targetId="7002-1fbb-7571-e8e7" id="a004-d923-cc2a-d139" primary="false" name="Faction: Thousand Sons"/>
<categoryLink targetId="4c00-2578-faf5-6918" id="60d7-7c95-77f6-371b" primary="false" name="Chaos"/>
<categoryLink targetId="b188-114f-6ba5-79a1" id="38f4-8a4d-4da2-f942" primary="false" name="Tzeentch"/>
</categoryLinks>
</entryLink>
<entryLink import="true" name="Hell Talon [Legends]" hidden="false" type="selectionEntry" id="b838-70c8-756e-dc55" targetId="3a8-a34f-76aa-b56a"/>
<entryLink import="true" name="Hellblade [Legends]" hidden="false" type="selectionEntry" id="b66b-33d2-80fe-567e" targetId="c4ab-b52d-3ac0-5d56"/>
<entryLink import="true" name="Sorcerer on Disc of Tzeentch" hidden="false" type="selectionEntry" id="2187-4600-48b-e0b2" targetId="ef19-b2dd-72ae-4f96"/>
<entryLink import="true" name="Chaos Lord on Disc of Tzeentch [Legends]" hidden="false" type="selectionEntry" id="451-4875-c7fa-f2bf" targetId="dc89-ef5-e91d-b155"/>
<entryLink import="true" name="Show/Hide Options" hidden="false" type="selectionEntry" id="981d-335a-34ad-652e" targetId="e8ef-836a-a9d1-901d">
<entryLinks>
<entryLink import="true" name="Show Chaos Knights" hidden="false" type="selectionEntry" id="f6b2-9b69-eeb6-dc57" targetId="aeb4-96de-7401-eaa3"/>
<entryLink import="true" name="Show Tzeentch Daemons" hidden="false" type="selectionEntry" id="cdf2-f9be-ffc5-d470" targetId="1248-8642-b42f-1dca"/>
<entryLink import="true" name="Show Titans" hidden="false" type="selectionEntry" id="b017-73b9-43f3-534" targetId="f26b-79db-80e0-3a3b"/>
</entryLinks>
</entryLink>
</entryLinks>
<sharedSelectionEntries>
<selectionEntry id="3b0d-dccf-8661-be1c" name="Detachment Choice" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="63bb-10ae-4d3f-8c89" type="min"/>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6546-7600-959d-faac" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="f68a-6e07-0936-90a1" name="New CategoryLink" hidden="false" targetId="4ac9-fd30-1e3d-b249" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="e74a-04a4-bb91-d5ec" name="Detachment" hidden="false" collective="false" import="true" defaultSelectionEntryId="16cb-7eb7-e9fc-f7ea">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3c19-2e4d-3b70-04d2" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5006-5ba3-4f99-7ce1" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="16cb-7eb7-e9fc-f7ea" name="Cult of Magic" hidden="false" collective="false" import="true" type="upgrade">
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="a021-c1a0-c35c-f10f" name="Warlord" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8885-f042-8b61-5578" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="c9f3-764a-0c38-1d34" name="Warlord" hidden="false" targetId="5c0e-4c31-d51b-e470" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="05f1-7fda-a0da-ea40" name="Ahriman" publicationId="015a-6212-d737-9044" page="7-8" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="9403-dbf7-4d98-f7c6" value="0">
<conditions>
<condition field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="3bfa-bf00-b5ed-cc81" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="9403-dbf7-4d98-f7c6" type="max"/>
</constraints>
<profiles>
<profile id="6d90-3db1-e467-158d" name="Ahriman" hidden="false" typeId="c547-1836-d8a-ff4f" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">6"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">4</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">3+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">5</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">6+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">1</characteristic>
</characteristics>
</profile>
<profile id="59fc-90f2-82f7-c85e" name="Rubric Lord" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">While this model is leading a unit, each time a model in that unit makes an attack, add 1 to the Wound roll.</characteristic>
</characteristics>
</profile>
<profile id="106d-2ec8-c28a-04e4" name="Arch-Sorcerer of Tzeentch (Psychic)" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">Once per battle, you can select this model to use a Ritual for 0 Cabal points (see Cabal of Sorcerers). If you do, all the other rules for using Rituals still apply.</characteristic>
</characteristics>
</profile>
<profile id="dea9-e361-a24a-1b5d" name="Invulnerable Save" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">This model has a 4+ invulnerable save.</characteristic>
</characteristics>
</profile>
<profile id="2afc-e7c8-04d3-e115" name="Leader" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">This model can be attached to the following unit:
- RUBRIC MARINES</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="7eb1-7754-4d78-0451" name="Leader" hidden="false" targetId="b4dd-3e1f-41cb-218f" type="rule"/>
<infoLink id="3957-5f78-990f-4b6a" name="Kindred Sorcery" hidden="false" targetId="4258-60ff-8457-a123" type="rule"/>
<infoLink id="ea4d-825b-575c-da8d" name="Cabal of Sorcerers" hidden="false" targetId="a70c-2007-30f7-a357" type="rule">
<modifiers>
<modifier type="append" field="name" value="3"/>
</modifiers>
</infoLink>
</infoLinks>
<categoryLinks>
<categoryLink id="a845-9408-da08-dc2e" name="Faction: Thousand Sons" hidden="false" targetId="7002-1fbb-7571-e8e7" primary="false"/>
<categoryLink id="d8ed-be0f-b75d-79e7" name="Infantry" hidden="false" targetId="cf47-a0d7-7207-29dc" primary="false"/>
<categoryLink id="34ee-fcaa-3880-b187" name="Character" hidden="false" targetId="9cfd-1c32-585f-7d5c" primary="false"/>
<categoryLink id="2919-8f9a-756c-ed91" name="New CategoryLink" hidden="false" targetId="4f3a-f0f7-6647-348d" primary="true"/>
<categoryLink id="4a64-5436-c3cb-f8a8" name="Psyker" hidden="false" targetId="13bf-2bee-3ae0-b414" primary="false"/>
<categoryLink id="7af8-4079-bf9f-fbb7" name="Chaos" hidden="false" targetId="4c00-2578-faf5-6918" primary="false"/>
<categoryLink id="11e4-fd16-5d70-d9fe" name="Tzeentch" hidden="false" targetId="b188-114f-6ba5-79a1" primary="false"/>
<categoryLink id="f1f8-72c8-0a7c-f03c" name="Ahriman" hidden="false" targetId="1b57-d2d1-a0ab-019e" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="c951-3dc9-ab01-a0c0" name="Inferno bolt pistol" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d337-cc38-e353-9f5d" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c92c-4dbe-1dac-ce35" type="max"/>
</constraints>
<profiles>
<profile id="1b56-839c-f81d-5a7e" name="Inferno bolt pistol" hidden="false" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">12"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">1</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">2+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">4</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">-1</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">1</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Pistol</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="399c-0977-083a-bc0a" name="Pistol" hidden="false" targetId="8bf7-8812-923d-29e4" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="df79-4fe6-4f55-b65b" name="Psychic Stalk" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1d13-c7ce-145b-2923" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="437c-fc84-848f-9f86" type="max"/>
</constraints>
<profiles>
<profile id="f7d3-259c-714e-e397" name="Psychic Stalk" hidden="false" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">18"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">1</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">2+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">6</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">-1</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">D6</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Precision, Psychic</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="3cea-c171-0a75-a119" name="Precision" hidden="false" targetId="9143-31ae-e0a6-6007" type="rule"/>
<infoLink id="4e69-f663-6f9d-c6b0" name="Psychic" hidden="false" targetId="e9c4-2bb8-12ee-cd1b" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="04f9-97e1-8744-226e" name="Black Staff of Ahriman" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f3c6-8f2e-af6b-cd08" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e873-2c65-3c3e-fbf6" type="max"/>
</constraints>
<profiles>
<profile id="ee60-31fd-1a47-5fda" name="Black Staff of Ahriman" hidden="false" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">5</characteristic>
<characteristic name="WS" typeId="95d1-95f-45b4-11d6">2+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">7</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">-1</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">3</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">Psychic</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="9e28-c35e-51a9-4865" name="Psychic" hidden="false" targetId="e9c4-2bb8-12ee-cd1b" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="1a04-3d6d-9c8f-08e8" name="Warlord" hidden="false" collective="false" import="true" targetId="a021-c1a0-c35c-f10f" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="130"/>
<cost name="Cabal Points" typeId="5878-a561-3259-89b6" value="3"/>
</costs>
</selectionEntry>
<selectionEntry id="3bfa-bf00-b5ed-cc81" name="Ahriman on Disc of Tzeentch" publicationId="015a-6212-d737-9044" page="9-10" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="3031-51e7-8857-f0d3" value="0">
<conditions>
<condition field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="05f1-7fda-a0da-ea40" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="3031-51e7-8857-f0d3" type="max"/>
</constraints>
<profiles>
<profile id="7d58-695c-0937-b4a0" name="Ahriman" hidden="false" typeId="c547-1836-d8a-ff4f" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">10"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">4</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">3+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">6</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">6+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">1</characteristic>
</characteristics>
</profile>
<profile id="8f1d-56cb-a37f-2a5e" name="Rubric Lord" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">While this model is leading a unit, each time a model in that unit makes an attack, add 1 to the Wound roll.</characteristic>
</characteristics>
</profile>
<profile id="e117-9164-7606-ef92" name="Arch-Sorcerer of Tzeentch (Psychic)" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">Once per battle, you can select this model to use a Ritual for 0 Cabal points (see Cabal of Sorcerers). If you do, all the other rules for using Rituals still apply.</characteristic>
</characteristics>
</profile>
<profile id="2c8e-c194-2a9b-e9ba" name="Invulnerable Save" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">This model has a 4+ invulnerable save.</characteristic>
</characteristics>
</profile>
<profile id="e029-9e54-4a48-28ce" name="Leader" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">This model can be attached to the following unit:
- RUBRIC MARINES</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="10a3-0a5d-6d3a-a57e" name="Leader" hidden="false" targetId="b4dd-3e1f-41cb-218f" type="rule"/>
<infoLink id="b657-de3b-6ceb-ad40" name="Cabal of Sorcerers" hidden="false" targetId="a70c-2007-30f7-a357" type="rule">
<modifiers>
<modifier type="append" field="name" value="3"/>
</modifiers>
</infoLink>
<infoLink id="971b-05b3-eedf-3bf9" name="Kindred Sorcery" hidden="false" targetId="4258-60ff-8457-a123" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="ba7f-0c8d-efeb-5462" name="Faction: Thousand Sons" hidden="false" targetId="7002-1fbb-7571-e8e7" primary="false"/>
<categoryLink id="ec26-67f7-d367-5bc9" name="Infantry" hidden="false" targetId="cf47-a0d7-7207-29dc" primary="false"/>
<categoryLink id="8c20-264c-6c7d-cc18" name="Character" hidden="false" targetId="9cfd-1c32-585f-7d5c" primary="false"/>
<categoryLink id="52b5-17e8-994e-28f0" name="New CategoryLink" hidden="false" targetId="4f3a-f0f7-6647-348d" primary="true"/>
<categoryLink id="06fd-70d2-764e-2f79" name="Psyker" hidden="false" targetId="13bf-2bee-3ae0-b414" primary="false"/>
<categoryLink id="8ff5-671a-57b8-5b5a" name="Chaos" hidden="false" targetId="4c00-2578-faf5-6918" primary="false"/>
<categoryLink id="48a8-45e0-02ef-b31f" name="Tzeentch" hidden="false" targetId="b188-114f-6ba5-79a1" primary="false"/>
<categoryLink id="8bbb-9f20-d2bb-bd75" name="Fly" hidden="false" targetId="c619-2086-bbcf-69c9" primary="false"/>
<categoryLink id="7a20-5fba-2e62-2eb3" name="Ahriman on Disc of Tzeentch" hidden="false" targetId="913a-baae-b89b-995d" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="610a-72a8-1b22-eefc" name="Inferno bolt pistol" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7ccb-ee74-61a0-a6d2" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c5b2-fe77-7077-c683" type="max"/>
</constraints>
<profiles>
<profile id="9330-e880-57d2-a1bf" name="Inferno bolt pistol" hidden="false" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">12"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">1</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">2+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">4</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">-1</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">1</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Pistol</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="1b7f-6cd1-a94c-b8d6" name="Pistol" hidden="false" targetId="8bf7-8812-923d-29e4" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="570a-6d55-51ee-9fc7" name="Psychic Stalk" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7693-e7bb-97db-c26b" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e103-fcd9-5f81-9f8b" type="max"/>
</constraints>
<profiles>
<profile id="6eeb-c063-998a-fcce" name="Psychic Stalk" hidden="false" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">18"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">1</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">2+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">6</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">-1</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">D6</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Precision, Psychic</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="b550-7c66-0d4b-235e" name="Precision" hidden="false" targetId="9143-31ae-e0a6-6007" type="rule"/>
<infoLink id="2e0e-9d6e-2bb8-546e" name="Psychic" hidden="false" targetId="e9c4-2bb8-12ee-cd1b" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="93c8-9c05-8892-b481" name="Black Staff of Ahriman" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e88f-7f9e-5ba5-ff96" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0b03-6b42-9ded-76dd" type="max"/>
</constraints>
<profiles>
<profile id="0c82-7e88-173e-dd05" name="Black Staff of Ahriman" hidden="false" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">5</characteristic>
<characteristic name="WS" typeId="95d1-95f-45b4-11d6">2+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">7</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">-1</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">3</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">Psychic</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="65b9-0303-e47c-b040" name="Psychic" hidden="false" targetId="e9c4-2bb8-12ee-cd1b" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="cbf9-c09a-8ce8-83cc" name="Warlord" hidden="false" collective="false" import="true" targetId="a021-c1a0-c35c-f10f" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="140"/>
<cost name="Cabal Points" typeId="5878-a561-3259-89b6" value="3"/>
</costs>
</selectionEntry>
<selectionEntry id="dfde-eaff-e63e-3aae" name="Thousand Sons Land Raider" hidden="false" collective="false" import="true" type="model" publicationId="015a-6212-d737-9044" page="11-12">
<constraints>
<constraint field="selections" scope="force" value="3" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="cc02-f9a1-9f6b-d30c" type="max"/>
</constraints>
<profiles>
<profile id="220f-e24f-611f-c04b" name="Thousand Sons Land Raider" hidden="false" typeId="c547-1836-d8a-ff4f" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">10"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">12</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">2+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">16</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">6+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">5</characteristic>
</characteristics>
</profile>
<profile id="0886-6e3f-6dbb-714a" name="Assault Ramp" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">Each time a unit disembarks from this model after it has made a Normal move, that unit is still eligible to declare a charge this turn.</characteristic>
</characteristics>
</profile>
<profile id="8b0e-b331-f7d4-2ff7" name="Thousand Sons Land Raider" hidden="false" typeId="74f8-5443-9d6d-1f1e" typeName="Transport">
<characteristics>
<characteristic name="Capacity" typeId="30f2-be70-861d-1b84">This model has a transport capacity of 12 THOUSAND SONS INFANTRY models (excluding CULTIST and TZAANGOR models). Each TERMINATOR model takes up the space of 2 models.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="d022-13f6-bf15-6865" name="Deadly Demise" hidden="false" targetId="b68a-5ded-65ac-98c" type="rule">
<modifiers>
<modifier type="append" field="name" value="D6"/>
</modifiers>
</infoLink>
<infoLink id="f2e5-1c1c-b9f7-abcf" name="Damaged: 1-5 wounds remaining" hidden="false" targetId="cb08-29a7-4ffc-2561" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="c060-e70f-cb08-5bfe" name="Faction: Thousand Sons" hidden="false" targetId="7002-1fbb-7571-e8e7" primary="false"/>
<categoryLink id="3f02-082f-62ef-4bf0" name="New CategoryLink" hidden="false" targetId="dbd4-63-af05-998" primary="true"/>
<categoryLink id="d4b7-dbcf-b760-c0ab" name="Transport" hidden="false" targetId="75e8-57c4-40e3-1817" primary="false"/>
<categoryLink id="cee1-57b2-71a7-0c9f" name="Smoke" hidden="false" targetId="6df-937-16bc-8c1a" primary="false"/>
<categoryLink id="010d-e9ce-d230-d138" name="Chaos" hidden="false" targetId="4c00-2578-faf5-6918" primary="false"/>
<categoryLink id="7c33-d775-6083-7b98" name="Tzeentch" hidden="false" targetId="b188-114f-6ba5-79a1" primary="false"/>
<categoryLink id="9aed-f078-4119-d5d3" name="Land Raider" hidden="false" targetId="c3f6-5c31-2007-41df" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="d70b-4812-759c-f036" name="Soulshatter lascannon" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="2" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c506-93d2-edd3-024a" type="min"/>
<constraint field="selections" scope="parent" value="2" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8995-b605-43a2-15d5" type="max"/>
</constraints>
<profiles>
<profile id="a2e4-5ffa-8328-6b75" name="Soulshatter lascannon" hidden="false" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">48"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">2</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">3+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">12</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">-3</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">D6+1</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="e055-be6d-68ad-83ef" name="Armoured tracks" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ae99-d21f-d64f-346d" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a27e-e8f8-1891-1711" type="max"/>
</constraints>
<profiles>
<profile id="7398-3946-f8d2-51d1" name="Armoured tracks" hidden="false" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">6</characteristic>
<characteristic name="WS" typeId="95d1-95f-45b4-11d6">4+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">8</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">0</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">1</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="9d2e-6347-5b63-9e36" name="Pintle weapon" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="caf3-cdf3-bc0c-5bda" type="max"/>
</constraints>
<entryLinks>
<entryLink id="4a57-c01e-abe3-73e4" name="Inferno combi-bolter" hidden="false" collective="false" import="true" targetId="9147-8824-3c93-86ed" type="selectionEntry"/>
<entryLink id="8f06-9fcc-e637-d0e1" name="Inferno combi-weapon" hidden="false" collective="false" import="true" targetId="52e6-005f-6c73-2fd5" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="b35a-9bec-549c-03c0" name="Twin heavy bolter" hidden="false" collective="false" import="true" targetId="a1ae-8d4d-90a9-dfdc" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e2d6-fa78-9be3-66bb" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1706-72bf-813b-2a1c" type="max"/>
</constraints>
</entryLink>
<entryLink id="2cfb-1343-986f-670d" name="Havoc launcher" hidden="false" collective="false" import="true" targetId="6cce-b8be-75bc-c249" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="240"/>
<cost name="Cabal Points" typeId="5878-a561-3259-89b6" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="6cce-b8be-75bc-c249" name="Havoc launcher" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5c14-aa7a-d051-ae07" type="max"/>
</constraints>
<profiles>
<profile id="7962-73c0-216d-c7c0" name="Havoc launcher" hidden="false" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">48"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">D6</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">3+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">5</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">0</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">1</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Blast</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="08fa-0c86-e03f-a624" name="Blast" hidden="false" targetId="6c1f-1cf7-ff25-c99e" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="9147-8824-3c93-86ed" name="Inferno combi-bolter" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="9e59-f480-0eef-ad56" name="Inferno combi-bolter" hidden="false" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">24"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">2</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">3+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">4</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">-1</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">1</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Rapid Fire 2</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
<infoLinks>
<infoLink name="Rapid Fire" hidden="false" type="rule" id="15ed-d41c-d17-7afb" targetId="c5c8-8b58-b8b6-7786"/>
</infoLinks>
</selectionEntry>
<selectionEntry id="52e6-005f-6c73-2fd5" name="Inferno combi-weapon" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="5e46-f2a1-7a4b-bb6c" name="Inferno combi-weapon" hidden="false" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">24"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">1</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">4+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">4</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">-1</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">1</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Anti-Infantry 4+, Devastating Wounds, Rapid Fire 1</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="c7ae-ba11-bc8c-33a8" name="Anti-" hidden="false" targetId="4111-82e3-9444-e942" type="rule"/>
<infoLink id="2c81-1644-0759-b2dc" name="Devastating Wounds" hidden="false" targetId="be1e-ac8e-1e2c-3528" type="rule"/>
<infoLink id="5e53-e61f-bd87-0c26" name="Rapid Fire" hidden="false" targetId="c5c8-8b58-b8b6-7786" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="a1ae-8d4d-90a9-dfdc" name="Twin inferno heavy bolter" publicationId="015a-6212-d737-9044" page="11-12" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="9429-b2b3-9268-f8ca" name="Twin inferno heavy bolter" hidden="false" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">36"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">3</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">3+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">5</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">-2</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">2</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Sustained Hits 1, Twin-linked</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="bf06-9741-dae5-447c" name="Sustained Hits" hidden="false" targetId="1897-c22c-9597-12b1" type="rule"/>
<infoLink id="0175-df16-8b8e-bed2" name="Twin-linked" hidden="false" targetId="cf93-ad4d-2f08-a79d" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="a619-beee-4bde-d049" name="Thousand Sons Predator Annihilator" publicationId="015a-6212-d737-9044" page="13-14" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="force" value="3" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="a25f-a767-f578-5a3e" type="max"/>
</constraints>
<profiles>
<profile id="c61b-3bc9-f793-3804" name="Thousand Sons Predator Annihilator" hidden="false" typeId="c547-1836-d8a-ff4f" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">10"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">10</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">3+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">11</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">6+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">3</characteristic>
</characteristics>
</profile>
<profile id="efa5-c1d9-a512-e566" name="Annihilator" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">Each time this model makes a ranged attack that targets a MONSTER or VEHICLE unit, re-roll a Damage roll of 1.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="8679-6135-5e0a-5eca" name="Deadly Demise" hidden="false" targetId="b68a-5ded-65ac-98c" type="rule">
<modifiers>
<modifier type="append" field="name" value="D3"/>
</modifiers>
</infoLink>
<infoLink id="b1ee-18a1-6187-0c6f" name="Damaged: 1-4 wounds remaining" hidden="false" targetId="d44e-2f5-cadf-9eb" type="profile"/>
<infoLink id="38f8-ef51-63ec-5d2d" name="Kindred Sorcery" hidden="false" targetId="4258-60ff-8457-a123" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="3849-e9db-1a61-4439" name="Faction: Thousand Sons" hidden="false" targetId="7002-1fbb-7571-e8e7" primary="false"/>
<categoryLink id="6312-ae24-8d65-3266" name="New CategoryLink" hidden="false" targetId="dbd4-63-af05-998" primary="true"/>
<categoryLink id="59e8-db49-79a1-8d6a" name="Smoke" hidden="false" targetId="6df-937-16bc-8c1a" primary="false"/>
<categoryLink id="574a-0849-ca4a-5875" name="Chaos" hidden="false" targetId="4c00-2578-faf5-6918" primary="false"/>
<categoryLink id="8806-22c0-0880-2adc" name="Tzeentch" hidden="false" targetId="b188-114f-6ba5-79a1" primary="false"/>
<categoryLink id="a745-c470-0be0-a1cf" name="Predator Annihilator" hidden="false" targetId="116c-4068-d3f1-d67c" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="3514-c454-dfef-1efd" name="Predator twin lascannon" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2dd8-6054-9d03-e0d8" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e3db-b676-15c8-b8f1" type="max"/>
</constraints>
<profiles>
<profile id="319b-d68a-a899-f38e" name="Predator twin lascannon" hidden="false" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">48"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">1</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">3+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">14</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">-3</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">D6+1</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Twin-linked</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="0149-f3ac-83cf-650d" name="Twin-linked" hidden="false" targetId="cf93-ad4d-2f08-a79d" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="f2d7-b453-d648-f8f8" name="Pintle weapon" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a2c6-bc82-5ee6-bd1d" type="max"/>
</constraints>
<entryLinks>
<entryLink id="fc5a-1c4d-935c-a426" name="Inferno combi-bolter" hidden="false" collective="false" import="true" targetId="9147-8824-3c93-86ed" type="selectionEntry"/>
<entryLink id="f85d-ae15-9f28-ab70" name="Inferno combi-weapon" hidden="false" collective="false" import="true" targetId="52e6-005f-6c73-2fd5" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="61db-1c16-d7fa-792a" name="Sponsons" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="aa19-94f1-75e0-0524" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="975a-d856-a774-ff89" name="2 inferno heavy bolters" hidden="false" collective="false" import="true" type="upgrade">
<entryLinks>
<entryLink id="2c6f-7925-c515-b075" name="Heavy bolter" hidden="false" collective="false" import="true" targetId="04ac-1d06-d97b-2787" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="2" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ac7a-0e0f-fe45-30b6" type="min"/>
<constraint field="selections" scope="parent" value="2" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1c0d-b6e9-7202-8ae6" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="426a-581a-0a3b-6b20" name="2 lascannons" hidden="false" collective="false" import="true" type="upgrade">
<entryLinks>
<entryLink id="7ff2-4864-83f8-1689" name="Lascannon" hidden="false" collective="false" import="true" targetId="1b45-adcf-7f93-1267" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="2" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0549-cd19-e574-f9aa" type="min"/>
<constraint field="selections" scope="parent" value="2" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="26c6-9e7f-e195-f0be" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="ec17-174b-b12b-ae79" name="Armoured tracks" hidden="false" collective="false" import="true" targetId="1f8b-6d3e-840c-2c17" type="selectionEntry"/>
<entryLink id="32a6-87d1-264f-3814" name="Havoc launcher" hidden="false" collective="false" import="true" targetId="6cce-b8be-75bc-c249" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="130"/>
<cost name="Cabal Points" typeId="5878-a561-3259-89b6" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="04ac-1d06-d97b-2787" name="Inferno heavy bolter" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="4d05-ae06-7ab1-5240" name="Inferno heavy bolter" hidden="false" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">36"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">3</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">3+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">5</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">-2</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">2</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="1b45-adcf-7f93-1267" name="Lascannon" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="ea3f-234d-91d0-f64d" name="Lascannon" hidden="false" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">48"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">1</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">3+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">12</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">-3</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">D6+1</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="1f8b-6d3e-840c-2c17" name="Armoured tracks" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7afd-52c1-eeda-fa68" type="min"/>