forked from BSData/horus-heresy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2022 - LA - Thousand Sons.cat
1842 lines (1842 loc) · 145 KB
/
2022 - LA - 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="abac-8dd1-df65-e253" name="LA - XV: Thousand Sons" revision="5" battleScribeVersion="2.03" authorName="Arkangelmark5" authorContact="BSData Developers Discord" library="false" gameSystemId="28d4-bd2e-4858-ece6" gameSystemRevision="13" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<entryLinks>
<entryLink id="5900-484e-9f23-c753" name=" XV: Thousand Sons" hidden="false" collective="false" import="false" targetId="21c3-2f28-7820-e51a" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d49c-72c4-b170-6dc6" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9206-fcb8-ba7e-4fbf" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="5f54-eecd-70e9-68ae" name="New CategoryLink" hidden="false" targetId="e90d-e5a8-f42d-da84" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="4ca2-991b-8a05-495b" name="Ahzek Ahriman" hidden="false" collective="false" import="false" targetId="f1d9-5c86-f496-61f0" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="f9c0-0c5a-3e24-58c7" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="a860-2386-adfb-9190" name="HQ:" hidden="false" targetId="4f85-eb33-30c9-8f51" primary="true"/>
<categoryLink id="0195-28e3-c5c1-05d4" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
<categoryLink id="920c-4841-9359-1c16" name="Compulsory HQ:" hidden="false" targetId="f823-8c1d-6a87-26a1" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="ef34-0fc0-70a1-9511" name="Ammitara Occult Intercession Cabal" hidden="false" collective="false" import="false" targetId="d3ad-275c-e22b-a28f" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d344-d97b-4687-8a62" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="355f-01ed-32c7-4131" name="New CategoryLink" hidden="false" targetId="20ef-cd01-a8da-376e" primary="true"/>
<categoryLink id="a731-aa94-4f2c-24d5" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="eccd-7e17-7359-665c" name="Castellax-Achea Automata" hidden="false" collective="false" import="false" targetId="95cb-9366-295e-f10d" type="selectionEntry">
<categoryLinks>
<categoryLink id="96c0-503c-eb35-b5c3" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
<categoryLink id="dc90-d478-5300-3dd9" name="New CategoryLink" hidden="false" targetId="7aee-565f-b0ae-294e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="803c-bb4e-a743-cfe2" name="Magistus Amon" hidden="false" collective="false" import="false" targetId="161b-2f2a-8616-9d4f" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="f9c0-0c5a-3e24-58c7" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="4f1c-f718-fd3a-7b34" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
<categoryLink id="f9a9-61a7-3163-99e5" name="New CategoryLink" hidden="false" targetId="4f85-eb33-30c9-8f51" primary="true"/>
<categoryLink id="dca3-8510-af4c-2eba" name="Compulsory HQ:" hidden="false" targetId="f823-8c1d-6a87-26a1" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="2f6f-dd0e-e3b7-262e" name="Magnus the Red" hidden="false" collective="false" import="false" targetId="8baf-c9b9-b622-0272" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="f9c0-0c5a-3e24-58c7" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="9eae-bf6a-4193-af6b" name="New CategoryLink" hidden="false" targetId="ad5f-31db-8bc7-5c46" primary="true"/>
<categoryLink id="922a-8088-b111-6bad" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="cefc-c45c-128a-fbce" name="Sekhmet Terminator Cabal" hidden="false" collective="false" import="false" targetId="dda2-bdd0-3ced-b427" type="selectionEntry">
<categoryLinks>
<categoryLink id="ac58-0cd7-c143-5583" name="New CategoryLink" hidden="false" targetId="7aee-565f-b0ae-294e" primary="true"/>
<categoryLink id="993d-e85b-bfeb-8a0e" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="b132-3f20-976c-ff1c" name="Khenetai Occult Cabal" hidden="false" collective="false" import="false" targetId="faa7-27d5-2ee2-5d58" type="selectionEntry">
<categoryLinks>
<categoryLink id="a55f-2ae6-b17c-e872" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
<categoryLink id="7bfb-d732-cefe-f207" name="New CategoryLink" hidden="false" targetId="7aee-565f-b0ae-294e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="396f-5ab5-e4c1-89c4" name="Contemptor-Osiron Dreadnought Talon" hidden="false" collective="false" import="true" targetId="eef1-0f91-a59f-b3e2" type="selectionEntry">
<categoryLinks>
<categoryLink id="8ada-aa38-fcb3-d993" name="New CategoryLink" hidden="false" targetId="7aee-565f-b0ae-294e" primary="true"/>
<categoryLink id="497d-849e-d9b4-be08" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
</categoryLinks>
</entryLink>
</entryLinks>
<sharedSelectionEntries>
<selectionEntry id="d3ad-275c-e22b-a28f" name="Ammitara Occult Intercession Cabal" hidden="false" collective="false" import="true" type="unit">
<rules>
<rule id="c2b4-d048-052c-ba6a" name="Mind Killer" publicationId="d0df-7166-5cd3-89fd" page="90" hidden="false">
<description>At the start of their turn, before any models are moved, a Psychic check may be made once for each Ammitara Intercession Cabal by the controlling player, using the Leadership Characteristic of any model with the unit that does not have the Independent Character special rule. If the Check is passed, the Shooting Attacks of all models in the unit with the Psyker Unit Sub-type gain the Rending (4+) and Ignores Cover special rules in addition to any other effects their weapons might have, for the duration of the turn. This does not replace or improve any other versions of the Rending (X) special rule already possessed by the unit and may not be used when attacking with weapons that have either the Template or the Blast (X) special rules. If the Check is failed then no benefit is gained and the unit suffers Perils of the Warp.</description>
</rule>
</rules>
<infoLinks>
<infoLink id="01bc-e9e5-ad1e-3dd6" name="Scout" hidden="false" targetId="aacf-9a7e-982d-b793" type="rule"/>
<infoLink id="0aa5-4f98-7457-fa00" name="Infiltrate" hidden="false" targetId="0e32-5b92-a95a-8464" type="rule"/>
<infoLink id="ed2d-1c94-1154-99aa" name="Move Through Cover" hidden="false" targetId="2b6f-bfec-759e-1746" type="rule"/>
<infoLink id="432d-548e-f694-8c15" name="Relentless" hidden="false" targetId="7adf-ac9a-5035-522d" type="rule"/>
<infoLink id="d9d7-3f8d-2221-4a72" name="Shrouded (X)" hidden="false" targetId="10c3-fdb0-089f-ca65" type="rule">
<modifiers>
<modifier type="set" field="name" value="Shrouded (6+)"/>
</modifiers>
</infoLink>
</infoLinks>
<categoryLinks>
<categoryLink id="4f4b-14a1-2bc3-0dae" name="Infantry:" hidden="false" targetId="8b4f-bfe2-ce7b-f1b1" primary="false"/>
<categoryLink id="280a-d3f2-d095-83c1" name="Legiones Astartes" hidden="false" targetId="11f2-472f-c1d1-9ae9" primary="false"/>
<categoryLink id="adbf-ca76-7b97-3526" name="Skirmish Sub-type:" hidden="false" targetId="59a4-7b61-600a-c457" primary="false"/>
<categoryLink id="5e1a-c5d0-2524-ec10" name="Light Sub-type:" hidden="false" targetId="bff2-ae16-74a8-8712" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="f786-ea3b-93e3-b24c" name="Ammitara Fate" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cd9d-6555-139c-ac1c" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b1a3-e470-7fbd-1515" type="min"/>
</constraints>
<profiles>
<profile id="97b5-08b9-57fe-3f5d" name="Ammitara Fate" publicationId="d0df-7166-5cd3-89fd" page="90" hidden="false" typeId="4bb2-cb95-e6c8-5a21" typeName="Unit">
<characteristics>
<characteristic name="Unit Type" typeId="ddd7-6f5c-a939-b69e">Infantry (Light, Psyker, Skirmish)</characteristic>
<characteristic name="Move" typeId="893e-2d76-8f04-44e5">8"</characteristic>
<characteristic name="WS" typeId="cc42-7ed5-7092-5c84">4</characteristic>
<characteristic name="BS" typeId="74ae-c840-0036-d244">5</characteristic>
<characteristic name="S" typeId="e478-41d4-a092-48a8">4</characteristic>
<characteristic name="T" typeId="c32b-5fdd-3fbe-9b1f">4</characteristic>
<characteristic name="W" typeId="57ee-1126-32a9-5672">1</characteristic>
<characteristic name="I" typeId="62d3-22d7-2d49-52dc">4</characteristic>
<characteristic name="A" typeId="f111-2ce5-dd12-d6b0">2</characteristic>
<characteristic name="Ld" typeId="e8a6-1da9-d384-8727">8</characteristic>
<characteristic name="Save" typeId="e593-6b3c-f169-04f0">4+</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="70dd-9240-a310-b1da" name="Character" hidden="false" targetId="f75a-d5c1-59ba-5c5a" primary="false"/>
<categoryLink id="44c0-6cc5-6fea-0efa" name="Light Sub-type:" hidden="false" targetId="bff2-ae16-74a8-8712" primary="false"/>
<categoryLink id="075a-42ce-300a-8b4f" name="Skirmish Sub-type:" hidden="false" targetId="59a4-7b61-600a-c457" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="a00a-9922-6df6-38d1" name="May take:" hidden="false" collective="false" import="true">
<entryLinks>
<entryLink id="936a-3742-e9ba-2cad" name="Nuncio-Vox" hidden="false" collective="false" import="true" targetId="005e-aae6-ddac-bb45" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fa5a-76d6-6d07-e532" type="max"/>
</constraints>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="10.0"/>
</costs>
</entryLink>
<entryLink id="3a63-ff4f-d663-08eb" name="Meltabombs" hidden="false" collective="false" import="true" targetId="b9dd-3b21-f3f8-78e3" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c8e4-4fe5-2ed2-51e9" type="max"/>
</constraints>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="5.0"/>
</costs>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="75.0"/>
</costs>
</selectionEntry>
<selectionEntry id="2f2d-3799-8787-45b7" name="Ammitara Intercessors" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="9.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="292c-49ad-2d1d-ac1e" type="max"/>
<constraint field="selections" scope="parent" value="4.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="13b3-8c6e-ba6d-2f9b" type="min"/>
</constraints>
<profiles>
<profile id="d39d-9aaf-d806-6985" name="Ammitara Intercessors" publicationId="d0df-7166-5cd3-89fd" page="90" hidden="false" typeId="4bb2-cb95-e6c8-5a21" typeName="Unit">
<characteristics>
<characteristic name="Unit Type" typeId="ddd7-6f5c-a939-b69e">Infantry (Character, Light, Psyker, Skirmish)</characteristic>
<characteristic name="Move" typeId="893e-2d76-8f04-44e5">8"</characteristic>
<characteristic name="WS" typeId="cc42-7ed5-7092-5c84">4</characteristic>
<characteristic name="BS" typeId="74ae-c840-0036-d244">5</characteristic>
<characteristic name="S" typeId="e478-41d4-a092-48a8">4</characteristic>
<characteristic name="T" typeId="c32b-5fdd-3fbe-9b1f">4</characteristic>
<characteristic name="W" typeId="57ee-1126-32a9-5672">1</characteristic>
<characteristic name="I" typeId="62d3-22d7-2d49-52dc">4</characteristic>
<characteristic name="A" typeId="f111-2ce5-dd12-d6b0">1</characteristic>
<characteristic name="Ld" typeId="e8a6-1da9-d384-8727">7</characteristic>
<characteristic name="Save" typeId="e593-6b3c-f169-04f0">4+</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="e865-2752-163b-293f" name="Light Sub-type:" hidden="false" targetId="bff2-ae16-74a8-8712" primary="false"/>
<categoryLink id="ef7e-6a43-4e20-d68e" name="Skirmish Sub-type:" hidden="false" targetId="59a4-7b61-600a-c457" primary="false"/>
</categoryLinks>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="25.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="e802-0586-08c9-c6e9" name="2) Bolt Pistols:" hidden="false" collective="false" import="true" defaultSelectionEntryId="8aed-5856-132d-4b17">
<modifiers>
<modifier type="increment" field="82c2-2414-5fa7-2bce" value="1.0">
<repeats>
<repeat field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2f2d-3799-8787-45b7" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="0b0e-eb41-af38-e15d" value="1.0">
<repeats>
<repeat field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2f2d-3799-8787-45b7" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="82c2-2414-5fa7-2bce" value="4.0"/>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0b0e-eb41-af38-e15d" type="max"/>
<constraint field="selections" scope="parent" value="5.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="82c2-2414-5fa7-2bce" type="min"/>
</constraints>
<entryLinks>
<entryLink id="185b-8767-fe08-21cb" name="Asphyx Bolt Pistol" hidden="false" collective="false" import="true" targetId="07f7-c486-f597-a1b9" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="1.0"/>
</costs>
</entryLink>
<entryLink id="8aed-5856-132d-4b17" name="Bolt Pistol" hidden="false" collective="false" import="true" targetId="e5ae-6872-37aa-8600" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="c1b1-3760-be20-d597" name="1) Main Weapons:" hidden="false" collective="false" import="true" defaultSelectionEntryId="96ea-4b62-6aae-0cb3">
<modifiers>
<modifier type="increment" field="a0a9-118b-40d4-bde5" value="1.0">
<repeats>
<repeat field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2f2d-3799-8787-45b7" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="4ef6-a5f1-1e32-487d" value="1.0">
<repeats>
<repeat field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2f2d-3799-8787-45b7" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="4ef6-a5f1-1e32-487d" value="4.0"/>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a0a9-118b-40d4-bde5" type="max"/>
<constraint field="selections" scope="parent" value="5.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4ef6-a5f1-1e32-487d" type="min"/>
</constraints>
<selectionEntryGroups>
<selectionEntryGroup id="dda1-1067-30d0-4ba6" name="One in five may exchange their Nemesis bolter for:" hidden="false" collective="false" import="true">
<modifiers>
<modifier type="increment" field="782d-b6fe-cf4a-b23e" value="1.0">
<repeats>
<repeat field="selections" scope="parent" value="5.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="782d-b6fe-cf4a-b23e" type="max"/>
</constraints>
<entryLinks>
<entryLink id="c9e4-5663-a412-faa1" name="Meltagun" hidden="false" collective="false" import="true" targetId="4ebd-57e0-3560-e568" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="5.0"/>
</costs>
</entryLink>
<entryLink id="bc23-4350-1c52-e06d" name="Plasma Gun" hidden="false" collective="false" import="true" targetId="f0d1-332b-c719-ede7" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="10.0"/>
</costs>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="96ea-4b62-6aae-0cb3" name="Nemesis Bolter" hidden="false" collective="false" import="true" targetId="c10a-61f8-9c33-fe8a" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="3917-2a71-78b2-20da" name="Dedicated Transport:" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="0c9c-24b5-fcfb-435f" type="max"/>
</constraints>
<entryLinks>
<entryLink id="b5e7-449d-b458-870e" name="Storm Eagle Gunship" hidden="false" collective="false" import="true" targetId="8aa5-ff31-7de7-19d4" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="85c2-ae14-65c4-d607" type="max"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="f200-1d8b-7cad-4352" name="Scout Armour" hidden="false" collective="false" import="true" targetId="b282-55aa-d1e2-ebe7" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="59a4-6296-4df8-b25e" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b5bb-83c2-49b1-a03d" type="min"/>
</constraints>
</entryLink>
<entryLink id="3dd8-9ff6-7eb1-bbb3" name="Frag Grenades" hidden="false" collective="false" import="true" targetId="cf9c-327b-3449-00d7" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3f15-19c4-a68a-2fa0" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b800-5fe6-320d-3dc7" type="min"/>
</constraints>
</entryLink>
<entryLink id="6f1b-fc05-f05e-7876" name="Krak Grenades" hidden="false" collective="false" import="true" targetId="99df-2421-acf7-a5ad" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e4dc-67e2-fd85-d46b" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b1b1-695b-a098-4bac" type="min"/>
</constraints>
</entryLink>
<entryLink id="1493-7a22-be9c-8a60" name="Shroud Bombs" hidden="false" collective="false" import="true" targetId="5d4d-36b7-6bf5-fc92" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f38c-97e8-04f2-61e7" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9d5e-0838-0e3a-9935" type="min"/>
</constraints>
</entryLink>
<entryLink id="c6b5-57dd-8db1-4d93" name="Cult Arcana:" hidden="false" collective="false" import="true" targetId="e6a0-3ea2-f7ca-411f" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="95cb-9366-295e-f10d" name="Castellax-Achea Automata" hidden="false" collective="false" import="true" type="upgrade">
<rules>
<rule id="01cd-939f-c8a5-3e4a" name="Psy -automata" publicationId="09c5-eeae-f398-b653" page="267" hidden="false">
<description>Models with the Psy-automata Sub - type that are not within 6" of a friendly model with the Psyker Sub-type and both the Legiones Astartes (Thousand Sons) and Independent Character special rules are subject to the Programmed Behaviour provision:
- During both the controlling player s Shooting phase and the Charge sub- phase, a Psy -automata unit must attempt a Shooting Attack and /or Charge if there is an enemy unit within range, and must target the closest enemy unit possible that is within its line of sight and is a valid target for a Shooting Attack or Charge. If two or more targets are equally close then the controlling player chooses which will be the target of a Shooting Attack or Charge.
• A model with the Psy -automata Sub- type may fire all weapons they are equipped with in each Shooting Attack they make, including as part of a Reaction where eligible ( this rule on its own does not allow' Automata units to make Reactions).
• Models with the Psy-automata Sub- type may fire Heavy and Ordnance weapons and count as Stationary even if they moved in the preceding Movement phase, and may declare Charges as normal regardless of any Shooting Attacks made in the same turn.
• Models with the Psy -automata Sub-type may fire Heavy and Ordnance weapons and count as Stationary even if they moved in the preceding Movement phase, and may declare charges as normal regardless of any Shooting Attacks made in the same turn.
• Models with the Psy -automata Sub -type ignore any penalties to their Initiative Characteristic when Charging into or through Difficult Terrain or Dangerous Terrain.
• When using a Psychic Weapon to make a Shooting Attack from within 12" of a Castellax-Achea model, a model with the Psyker Sub- type and with the Legiones Astartes (Thousand Sons) special rule may use the Castellax- Achea model as the origin point of the attack, drawing line of sight and range from it rather than themselves.</description>
</rule>
</rules>
<infoLinks>
<infoLink id="e9dd-447e-a8de-1ddb" name="Legiones Astartes (Thousand Sons) " hidden="false" targetId="2377-1d73-44bc-fee2" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="c1ad-3434-2f99-5b24" name="Automata Unit-type:" hidden="false" targetId="d8ab-8e21-e193-63ba" primary="false"/>
<categoryLink id="02a9-7e5a-890d-2cf8" name="Legiones Astartes" hidden="false" targetId="11f2-472f-c1d1-9ae9" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="403b-b9ba-b004-d4a5" name="Castellax-Achea" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c355-0b58-7786-486c" type="min"/>
<constraint field="selections" scope="parent" value="5.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d171-ea6f-1563-62ef" type="max"/>
</constraints>
<profiles>
<profile id="0492-c094-882d-9108" name="Castellax - Achea" publicationId="09c5-eeae-f398-b653" page="266" hidden="false" typeId="4bb2-cb95-e6c8-5a21" typeName="Unit">
<characteristics>
<characteristic name="Unit Type" typeId="ddd7-6f5c-a939-b69e">Automata (Psy -automata, Psyker)</characteristic>
<characteristic name="Move" typeId="893e-2d76-8f04-44e5">7"</characteristic>
<characteristic name="WS" typeId="cc42-7ed5-7092-5c84">3</characteristic>
<characteristic name="BS" typeId="74ae-c840-0036-d244">4</characteristic>
<characteristic name="S" typeId="e478-41d4-a092-48a8">6</characteristic>
<characteristic name="T" typeId="c32b-5fdd-3fbe-9b1f">6</characteristic>
<characteristic name="W" typeId="57ee-1126-32a9-5672">4</characteristic>
<characteristic name="I" typeId="62d3-22d7-2d49-52dc">3</characteristic>
<characteristic name="A" typeId="f111-2ce5-dd12-d6b0">2</characteristic>
<characteristic name="Ld" typeId="e8a6-1da9-d384-8727">8</characteristic>
<characteristic name="Save" typeId="e593-6b3c-f169-04f0">2+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="56ae-b7de-6255-f20e" name="Hammer of Wrath (X)" hidden="false" targetId="aec0-c3aa-1e4e-1779" type="rule">
<modifiers>
<modifier type="set" field="name" value="Hammer of Wrath (1)"/>
</modifiers>
</infoLink>
<infoLink id="9cfa-b588-f36d-fbc1" name="Adamantium Will (X+)" hidden="false" targetId="4380-44a5-f01a-d964" type="rule">
<modifiers>
<modifier type="set" field="name" value="Adamantium Will (4+)"/>
</modifiers>
</infoLink>
</infoLinks>
<categoryLinks>
<categoryLink id="b81a-622a-27d1-2522" name="Automata Unit-type:" hidden="false" targetId="d8ab-8e21-e193-63ba" primary="false"/>
</categoryLinks>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="140.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="63bd-b91e-cade-bf5a" name="Any model may replace its Æther-Fire Cannon with:" hidden="false" collective="false" import="true" defaultSelectionEntryId="113d-a1c0-2555-4291">
<modifiers>
<modifier type="increment" field="6b41-8040-8cec-7482" value="1.0">
<repeats>
<repeat field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="model" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="add3-5d43-600f-02ed" value="1.0">
<repeats>
<repeat field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="model" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="6b41-8040-8cec-7482" value="1.0"/>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="6b41-8040-8cec-7482" type="min"/>
<constraint field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="add3-5d43-600f-02ed" type="max"/>
</constraints>
<entryLinks>
<entryLink id="113d-a1c0-2555-4291" name="Æther-Fire Cannon" hidden="false" collective="false" import="true" targetId="0139-b673-7b21-0470" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="5.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="aa91-418d-e233-95a8" type="max"/>
</constraints>
</entryLink>
<entryLink id="f165-991b-2f99-75ff" name="Asphyx Bolt Cannon" hidden="false" collective="false" import="true" targetId="ebce-ebc9-8ff7-d42d" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="5.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="51d5-e5bc-1fae-c7b6" type="max"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="2b7a-993c-d297-9c3f" name="Achea Force Claw" hidden="false" collective="false" import="true" targetId="ecf4-e882-7893-5a67" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c10c-6001-b021-0f64" type="min"/>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6642-7ac8-1f55-767a" type="max"/>
</constraints>
</entryLink>
<entryLink id="58a8-96b6-6424-ca65" name="Asphyx Bolter" hidden="false" collective="false" import="true" targetId="88c0-4623-9da3-f2b5" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ae8d-d591-1c32-72cb" type="min"/>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1b14-b391-4c37-942e" type="max"/>
</constraints>
</entryLink>
<entryLink id="79e1-fb19-9ccf-e317" name="Atomantic Deflector" hidden="false" collective="false" import="true" targetId="38fb-9a0b-edef-a497" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1359-acba-3971-4c46" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9496-724a-3cdf-15f7" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="eef1-0f91-a59f-b3e2" name="Contemptor-Osiron Dreadnought Talon" hidden="false" collective="false" import="true" type="unit">
<infoLinks>
<infoLink id="1082-9f2c-235b-5cfd" name="Legiones Astartes (Thousand Sons) " hidden="false" targetId="2377-1d73-44bc-fee2" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="b5d7-81e8-c908-4d38" name="Dreadnought Unit-type:" hidden="false" targetId="4280-4963-02b5-e31d" primary="false"/>
<categoryLink id="051f-84da-a459-4760" name="Legiones Astartes" hidden="false" targetId="11f2-472f-c1d1-9ae9" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="1626-a09f-d9ed-dca1" name="Contemptor-Osiron Dreadnought" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="name" value="Contemptor-Osiron Magus Dreadnought">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0a85-fbcb-f946-530f" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4e29-f267-8293-82e0" type="min"/>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4be3-e253-5948-e58c" type="max"/>
</constraints>
<profiles>
<profile id="216b-57b5-50b5-c63e" name="Contemptor-Osiron Dreadnought" publicationId="09c5-eeae-f398-b653" page="264" hidden="false" typeId="4bb2-cb95-e6c8-5a21" typeName="Unit">
<characteristics>
<characteristic name="Unit Type" typeId="ddd7-6f5c-a939-b69e">Dreadnought (Psyker)</characteristic>
<characteristic name="Move" typeId="893e-2d76-8f04-44e5">8</characteristic>
<characteristic name="WS" typeId="cc42-7ed5-7092-5c84">5</characteristic>
<characteristic name="BS" typeId="74ae-c840-0036-d244">5</characteristic>
<characteristic name="S" typeId="e478-41d4-a092-48a8">7</characteristic>
<characteristic name="T" typeId="c32b-5fdd-3fbe-9b1f">7</characteristic>
<characteristic name="W" typeId="57ee-1126-32a9-5672">6</characteristic>
<characteristic name="I" typeId="62d3-22d7-2d49-52dc">4</characteristic>
<characteristic name="A" typeId="f111-2ce5-dd12-d6b0">3</characteristic>
<characteristic name="Ld" typeId="e8a6-1da9-d384-8727">9</characteristic>
<characteristic name="Save" typeId="e593-6b3c-f169-04f0">2+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="fb8e-818b-26f7-7e4d" name="Dreadnought Talon" hidden="false" targetId="a924-2634-73fd-aa96" type="rule"/>
<infoLink id="f97c-5ffa-4d98-2e6b" name="Adamantium Will (X+)" hidden="false" targetId="4380-44a5-f01a-d964" type="rule">
<modifiers>
<modifier type="set" field="name" value="Adamantium Will (4+)"/>
</modifiers>
</infoLink>
</infoLinks>
<categoryLinks>
<categoryLink id="7e1b-a2cc-89f8-3824" name="Dreadnought Unit-type:" hidden="false" targetId="4280-4963-02b5-e31d" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="0d4e-fb30-c8db-6ebc" name="1) May replace its Gravis bolt cannon with one of the following:" hidden="false" collective="false" import="true" defaultSelectionEntryId="e55e-1905-46b8-71ba">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0507-8004-69dd-c821" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c019-a938-8ace-c4bf" type="max"/>
</constraints>
<entryLinks>
<entryLink id="e55e-1905-46b8-71ba" name="Gravis Bolt Cannon" hidden="false" collective="false" import="true" targetId="3b5f-52ab-6534-94a3" type="selectionEntry"/>
<entryLink id="a933-01ae-318a-db08" name="Gravis Melta Cannon" hidden="false" collective="false" import="true" targetId="ef6c-f656-171a-03e1" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="5.0"/>
</costs>
</entryLink>
<entryLink id="ec39-c1ca-0bc3-09ba" name="Æther-Fire Magna-Cannon" hidden="false" collective="false" import="true" targetId="ab6a-176c-e2e4-e902" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="10.0"/>
</costs>
</entryLink>
<entryLink id="7cd1-0b22-b462-fece" name="Kheres Assault Cannon" hidden="false" collective="false" import="true" targetId="fe77-2e74-160d-c7af" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="10.0"/>
</costs>
</entryLink>
<entryLink id="0f43-5237-a49e-b443" name="Conversion Beam Cannon" hidden="false" collective="false" import="true" targetId="5775-0d94-8e13-8c1f" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="20.0"/>
</costs>
</entryLink>
<entryLink id="4801-a1f6-ca0c-5617" name="Gravis Lascannon" hidden="false" collective="false" import="true" targetId="1fe0-7c96-5200-0e39" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="20.0"/>
</costs>
</entryLink>
<entryLink id="2881-e11d-8a07-78a3" name="Gravis Force Blade" hidden="false" collective="false" import="true" targetId="96aa-954e-b2e9-92df" type="selectionEntry">
<modifiers>
<modifier type="append" field="name" value="with in-built combi-bolter"/>
</modifiers>
</entryLink>
<entryLink id="ea68-705f-0f67-b5fc" name="Volkite Dual-Culverin" hidden="false" collective="false" import="true" targetId="fead-f3b9-f7c7-1081" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="15.0"/>
</costs>
</entryLink>
<entryLink id="b21b-1107-8f46-8ada" name="Gravis Autocannon" hidden="false" collective="false" import="true" targetId="8a23-e57d-b4a8-14a9" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="10.0"/>
</costs>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="e1be-b698-edc3-9111" name="May take one of the following:" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5c6c-321b-760f-f46a" type="max"/>
</constraints>
<entryLinks>
<entryLink id="df13-2ee6-341b-aa9c" name="Havoc Launcher" hidden="false" collective="false" import="true" targetId="bde9-5abf-ec3d-2273" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="10.0"/>
</costs>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="2572-555b-d054-1ad2" name="2) May replace an in-built combi-bolter on a Gravis force blade with one of the following:" hidden="false" collective="false" import="true" defaultSelectionEntryId="ef9d-06a1-ebd4-a3af">
<modifiers>
<modifier type="set" field="8d22-ecdd-65cd-534a" value="2.0">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2881-e11d-8a07-78a3" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="ce2c-6462-a0ce-5894" value="2.0">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2881-e11d-8a07-78a3" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ce2c-6462-a0ce-5894" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8d22-ecdd-65cd-534a" type="max"/>
</constraints>
<entryLinks>
<entryLink id="ef9d-06a1-ebd4-a3af" name="Combi-Bolter" hidden="false" collective="false" import="true" targetId="a498-c66f-9eb7-ca9a" type="selectionEntry"/>
<entryLink id="be4e-bbac-8934-4c94" name="Heavy Flamer" hidden="false" collective="false" import="true" targetId="5507-b432-3b4c-df12" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="5.0"/>
</costs>
</entryLink>
<entryLink id="6651-1fc0-3b7a-81ea" name="Graviton Gun" hidden="false" collective="false" import="true" targetId="5303-5a3e-de51-1707" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="15.0"/>
</costs>
</entryLink>
<entryLink id="0807-a778-877b-9910" name="Meltagun" hidden="false" collective="false" import="true" targetId="4ebd-57e0-3560-e568" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="15.0"/>
</costs>
</entryLink>
<entryLink id="21b7-9560-500c-bd4c" name="Æther-Fire Blaster" hidden="false" collective="false" import="true" targetId="d078-5f42-c02b-c73d" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="10.0"/>
</costs>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="cfb7-7546-a17c-0c4c" name="Atomantic Deflector" hidden="false" collective="false" import="true" targetId="38fb-9a0b-edef-a497" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5dc6-0891-1d20-d5dc" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3862-99b9-ceeb-f0d4" type="max"/>
</constraints>
</entryLink>
<entryLink id="7f00-c665-e967-00e9" name="Gravis Force Blade" hidden="false" collective="false" import="true" targetId="96aa-954e-b2e9-92df" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="8c29-21ca-3ac5-21ad" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="d907-0448-70b4-c7d2" type="max"/>
</constraints>
</entryLink>
<entryLink id="70f1-3c3a-46ca-4d34" name="Prosperine Arcana:" hidden="false" collective="false" import="true" targetId="e6a0-3ea2-f7ca-411f" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="200.0"/>
</costs>
</selectionEntry>
<selectionEntry id="0a85-fbcb-f946-530f" name="Contemptor-Osiron Magus Upgrade" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="1626-a09f-d9ed-dca1" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="17bc-0cbc-df7b-53ee" type="max"/>
<constraint field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4cce-2169-075f-860c" type="min"/>
</constraints>
<entryLinks>
<entryLink id="760c-7f8f-6d8f-c686" name="Psychic Disciplines" hidden="false" collective="false" import="true" targetId="d632-a8aa-19f1-8e72" type="selectionEntryGroup">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="25.0"/>
</costs>
</entryLink>
</entryLinks>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="50.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="f277-d841-fee1-b3a8" name="Dedicated Transport:" hidden="false" collective="false" import="true">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="1626-a09f-d9ed-dca1" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<entryLinks>
<entryLink id="c206-6b8d-7be8-fb89" name="Dreadnought Drop Pod" hidden="false" collective="false" import="true" targetId="1ffe-82e4-12db-538d" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="2425-2752-02bf-f9ea" type="max"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="161b-2f2a-8616-9d4f" name="Magistus Amon" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="d75d-fcad-c8ca-0a77" type="max"/>
</constraints>
<infoLinks>
<infoLink id="003c-d933-e89e-dc9c" name="Legiones Astartes (Thousand Sons) " hidden="false" targetId="2377-1d73-44bc-fee2" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="68e3-d5fc-41b5-8cf7" name="Infantry:" hidden="false" targetId="8b4f-bfe2-ce7b-f1b1" primary="false"/>
<categoryLink id="83a3-0ef9-edb4-003d" name="Legiones Astartes" hidden="false" targetId="11f2-472f-c1d1-9ae9" primary="false"/>
<categoryLink id="de93-44e6-fcd3-f27a" name="Independant Character" hidden="false" targetId="4f07-3d45-4f28-a0c6" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="7214-1716-4e2a-3b57" name="Magistus Amon" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9244-64fb-4c33-193b" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9d6f-d688-5a67-a6e2" type="min"/>
</constraints>
<profiles>
<profile id="6d47-d0f4-6196-7450" name="Magistus Amon" publicationId="09c5-eeae-f398-b653" page="272" hidden="false" typeId="4bb2-cb95-e6c8-5a21" typeName="Unit">
<characteristics>
<characteristic name="Unit Type" typeId="ddd7-6f5c-a939-b69e">Infantry (Character, Psyker, Unique)
</characteristic>
<characteristic name="Move" typeId="893e-2d76-8f04-44e5">7"</characteristic>
<characteristic name="WS" typeId="cc42-7ed5-7092-5c84">6</characteristic>
<characteristic name="BS" typeId="74ae-c840-0036-d244">5</characteristic>
<characteristic name="S" typeId="e478-41d4-a092-48a8">4</characteristic>
<characteristic name="T" typeId="c32b-5fdd-3fbe-9b1f">4</characteristic>
<characteristic name="W" typeId="57ee-1126-32a9-5672">3</characteristic>
<characteristic name="I" typeId="62d3-22d7-2d49-52dc">5</characteristic>
<characteristic name="A" typeId="f111-2ce5-dd12-d6b0">4</characteristic>
<characteristic name="Ld" typeId="e8a6-1da9-d384-8727">10</characteristic>
<characteristic name="Save" typeId="e593-6b3c-f169-04f0">2+</characteristic>
</characteristics>
</profile>
</profiles>
<rules>
<rule id="176d-6cb5-3c80-4e91" name="Magister of Dust" publicationId="09c5-eeae-f398-b653" page="273" hidden="false">
<description>Magistus Amon gains the Divination and Telepathy Disciplines from the Core Psychic Discipline list at no additional points cost and may not select any other Minor Arcana or Psychic Disciplines.</description>
</rule>
</rules>
<infoLinks>
<infoLink id="77e5-69bc-2466-f310" name="Infiltrate" hidden="false" targetId="0e32-5b92-a95a-8464" type="rule"/>
<infoLink id="df88-a557-b6da-db45" name="Relentless" hidden="false" targetId="7adf-ac9a-5035-522d" type="rule"/>
</infoLinks>
<selectionEntries>
<selectionEntry id="c609-1504-8ba4-2a09" name="Psychic powers" 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="3090-a6f3-a7cc-b756" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="bf7d-363e-e28d-82cf" type="max"/>
</constraints>
<infoLinks>
<infoLink id="da86-bfff-4310-2636" name="Aetheric Lightning" hidden="false" targetId="3d0c-e779-247f-0332" type="profile"/>
</infoLinks>
<entryLinks>
<entryLink id="4284-9471-581d-005c" name="Psychic Discipline: Divination" hidden="false" collective="false" import="true" targetId="0c22-a776-e7e3-2981" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b7f4-7336-96b8-98a9" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="49f4-c26e-968d-29b7" type="max"/>
</constraints>
</entryLink>
<entryLink id="49b4-3424-b3ee-ac34" name="Psychic Discipline: Telepathy" hidden="false" collective="false" import="true" targetId="b751-a605-75e8-dd6f" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ec41-115d-b782-adbd" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="ebb1-efcd-d2b0-afda" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="31b0-afe6-8133-33bf" name="The Armour of Shades" 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="4dbf-e7ef-22fb-d663" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5278-ff39-8901-782a" type="max"/>
</constraints>
<profiles>
<profile id="a3f3-1dd4-52f2-c1ab" name="The Armour of Shades" publicationId="09c5-eeae-f398-b653" page="272" hidden="false" typeId="2a1f-7837-f0ef-be44" typeName="Wargear Item">
<characteristics>
<characteristic name="Description" typeId="347e-ee4a-764f-6be3">The Armour of Shades provides a 2+ Armour Save and on any turn in which Magistus Amon has moved or is within the bounds of a zone of Area Terrain it grants him the Shrouded (4+) special rule.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="4f23-2a5d-2675-f6d9" name="Shrouded (X)" hidden="false" targetId="10c3-fdb0-089f-ca65" type="rule">
<modifiers>
<modifier type="set" field="name" value="Shrouded (4+)"/>
</modifiers>
</infoLink>
</infoLinks>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="0c61-8c16-3993-e0ca" name="The Reliquary of Dust (Melee)" 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="06dc-8449-d4c5-36ed" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ad85-2b23-bcc8-d115" type="max"/>
</constraints>
<profiles>
<profile id="086d-719b-7c48-a666" name="The Reliquary of Dust (Melee)" publicationId="09c5-eeae-f398-b653" page="273" hidden="false" typeId="1a1a-e592-2849-a5c0" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="95ba-cda7-b831-6066">-</characteristic>
<characteristic name="Strength" typeId="24d9-b8e1-a355-2458">User</characteristic>
<characteristic name="AP" typeId="f7a6-e0d8-7973-cd8d">2</characteristic>
<characteristic name="Type" typeId="2f86-c8b4-b3b4-3ff9">Melee, Poisoned (4+), Reaping Blow (1), Master-crafted</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="7dc6-c059-58d3-3035" name="Master-crafted" hidden="false" targetId="6de0-55b0-bf21-48b9" type="rule"/>
<infoLink id="5c1c-ab0b-2092-d5b9" name="Reach (X)" hidden="false" targetId="19bf-62a2-5737-890b" type="rule">
<modifiers>
<modifier type="set" field="name" value="Reach (1)"/>
</modifiers>
</infoLink>
<infoLink id="79db-c3f5-a665-13d5" name="Poisoned (X)" hidden="false" targetId="e70e-23ea-3251-0edb" type="rule">
<modifiers>
<modifier type="set" field="name" value="Poisoned (4+)"/>
</modifiers>
</infoLink>
<infoLink id="6dad-75df-9b0e-ce2d" name="Reaping Blow (X)" hidden="false" targetId="bd8c-4f52-d682-1b40" type="rule">
<modifiers>
<modifier type="set" field="name" value="Reaping Blow (1)"/>
</modifiers>
</infoLink>
</infoLinks>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="4cf9-3e50-dbf3-a9b5" name="The Reliquary of Dust (Ranged)" 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="0f3a-07ee-5d4f-2fbc" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1320-590c-8df9-5913" type="max"/>
</constraints>
<profiles>
<profile id="46a3-ad1c-b17f-bdba" name="The Reliquary of Dust (Ranged)" publicationId="09c5-eeae-f398-b653" page="273" hidden="false" typeId="1a1a-e592-2849-a5c0" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="95ba-cda7-b831-6066">6"</characteristic>
<characteristic name="Strength" typeId="24d9-b8e1-a355-2458">1</characteristic>
<characteristic name="AP" typeId="f7a6-e0d8-7973-cd8d">-</characteristic>
<characteristic name="Type" typeId="2f86-c8b4-b3b4-3ff9">Assault 2D6, Poisoned (4+ ), Concussive ( 3), Rending (6+ )</characteristic>
</characteristics>
</profile>
<profile id="eae0-8532-e157-1cba" name="The Reliquary of Dust" hidden="false" typeId="2a1f-7837-f0ef-be44" typeName="Wargear Item">
<characteristics>
<characteristic name="Description" typeId="347e-ee4a-764f-6be3">The Reliquary of Dust may also be used to make a Shooting Attack once per battle, and instead of attacking normally, using the following profile:</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="38bf-6c40-928b-038b" name="Rending (X)" hidden="false" targetId="0ac9-fab7-aef3-de1d" type="rule">
<modifiers>
<modifier type="set" field="name" value="Rending (6+)"/>
</modifiers>
</infoLink>
<infoLink id="8167-8363-f9f5-b333" name="Poisoned (X)" hidden="false" targetId="e70e-23ea-3251-0edb" type="rule">
<modifiers>
<modifier type="set" field="name" value="Poisoned (4+)"/>
</modifiers>
</infoLink>
<infoLink id="0ea7-d9e7-0107-c51b" name="Concussive (X)" hidden="false" targetId="7ce5-1bfb-64e6-f826" type="rule">
<modifiers>
<modifier type="set" field="name" value="Concussive (1)"/>
</modifiers>
</infoLink>
</infoLinks>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="a0d2-4fa5-af4b-b0d6" name="Archaeotech Pistol" hidden="false" collective="false" import="true" targetId="c22a-ed4d-af68-bf00" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="22b1-7f6a-aced-00f3" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0de4-ee5f-7788-75ca" type="min"/>
</constraints>
</entryLink>
<entryLink id="1bf5-bd39-e794-640a" name="Frag Grenades" hidden="false" collective="false" import="true" targetId="cf9c-327b-3449-00d7" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="afc0-5c95-0977-8825" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e074-576c-14a3-31b7" type="max"/>
</constraints>
</entryLink>
<entryLink id="113e-7181-6c4c-d8b9" name="Iron Halo" hidden="false" collective="false" import="true" targetId="b081-bf3c-f43d-4bd5" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6f49-ebe6-3bd6-cc70" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c8ee-5406-0c0a-0754" type="min"/>
</constraints>
</entryLink>
<entryLink id="c568-699e-f0be-3e23" name="Krak Grenades" hidden="false" collective="false" import="true" targetId="99df-2421-acf7-a5ad" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="39f7-42a5-f028-d163" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e8d6-40e6-80fb-595b" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="fa49-9200-41b0-f286" name="Warlord" hidden="false" collective="false" import="true" targetId="0176-56a3-d590-b103" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4285-2c61-4385-b808" type="max"/>
</constraints>
<profiles>
<profile id="90f4-0e8c-9d18-b8a6" name="Lord of Hidden Paths" hidden="false" typeId="a0e6-a7b4-d55d-85b8" typeName="Warlord Trait">
<characteristics>
<characteristic name="Text" typeId="c68e-2cda-b67b-baca">If an army’s Warlord has this Trait, then all units with the Infiltrate and Scout special rules gain the Shrouded (5+) special rules from the start of the controlling player’s First turn until the beginning of the controlling player’s second turn. In addition, an army whose Warlord has this Trait may make an additional Reaction in the Movement phase</characteristic>
</characteristics>
</profile>
</profiles>
</entryLink>
<entryLink id="75c4-4e21-669b-f6d1" name="Retinue" hidden="false" collective="false" import="true" targetId="2dd0-7045-8ae5-f394" type="selectionEntryGroup"/>
<entryLink id="62f9-33a7-feca-7150" name="Master of the Legion" hidden="false" collective="false" import="true" targetId="0068-6b0a-0086-3d6b" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8e16-0076-5395-1b65" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="10fe-8ebf-6afa-9cc6" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="185.0"/>
</costs>
</selectionEntry>
<selectionEntry id="8baf-c9b9-b622-0272" name="Magnus the Red" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="3c05-64f5-09a0-b0f4" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="4d5e-5f65-a437-c43c" name="Legiones Astartes" hidden="false" targetId="11f2-472f-c1d1-9ae9" primary="false"/>
<categoryLink id="67c9-e105-040e-8447" name="Primarch:" hidden="false" targetId="ad5f-31db-8bc7-5c46" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="befe-4b3b-1f80-6c82" name="Magnus the Red" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8925-0724-4e93-87d7" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b6e3-af6d-6ee0-2eb2" type="min"/>
</constraints>
<profiles>
<profile id="d265-386d-4b86-c5a9" name="Magnus the Red" hidden="false" typeId="4bb2-cb95-e6c8-5a21" typeName="Unit">
<characteristics>
<characteristic name="Unit Type" typeId="ddd7-6f5c-a939-b69e">Primarch ( Unique, Psyker)</characteristic>
<characteristic name="Move" typeId="893e-2d76-8f04-44e5">8</characteristic>
<characteristic name="WS" typeId="cc42-7ed5-7092-5c84">7</characteristic>
<characteristic name="BS" typeId="74ae-c840-0036-d244">6</characteristic>
<characteristic name="S" typeId="e478-41d4-a092-48a8">6</characteristic>
<characteristic name="T" typeId="c32b-5fdd-3fbe-9b1f">6</characteristic>
<characteristic name="W" typeId="57ee-1126-32a9-5672">6</characteristic>
<characteristic name="I" typeId="62d3-22d7-2d49-52dc">6</characteristic>
<characteristic name="A" typeId="f111-2ce5-dd12-d6b0">6</characteristic>
<characteristic name="Ld" typeId="e8a6-1da9-d384-8727">10</characteristic>
<characteristic name="Save" typeId="e593-6b3c-f169-04f0">2+</characteristic>
</characteristics>
</profile>
</profiles>
<rules>
<rule id="2f79-90ba-0bc6-f931" name="The Eye of the Crimson King" publicationId="09c5-eeae-f398-b653" page="261" hidden="false">
<description>When selecting targets for his psychic powers, all models within range are assumed to be in line of sight (except those Embarked upon models with the Transport Sub-type or Buildings).</description>
</rule>
</rules>
<infoLinks>
<infoLink id="b470-e873-87a6-2d19" name="Adamantium Will (X+)" hidden="false" targetId="4380-44a5-f01a-d964" type="rule">
<modifiers>
<modifier type="set" field="name" value="Adamantium Will (3+)"/>
</modifiers>
</infoLink>
<infoLink id="a367-fc98-8eeb-7ca2" name="Deep Strike" hidden="false" targetId="f1e1-986f-c783-ca9e" type="rule"/>
<infoLink id="5e2b-8764-edf5-c751" name="Shrouded (X)" hidden="false" targetId="10c3-fdb0-089f-ca65" type="rule">
<modifiers>
<modifier type="set" field="name" value="Shrouded (5+)"/>
</modifiers>
</infoLink>
<infoLink id="a9cc-cab2-1be2-ab66" name="Legiones Astartes (Thousand Sons) " hidden="false" targetId="2377-1d73-44bc-fee2" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="50eb-bc1b-bf77-2e3b" name="Primarch:" hidden="false" targetId="ad5f-31db-8bc7-5c46" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="c9a8-ee8a-917c-cfdd" name="Arch-Sorcerer" page="" 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="2bf4-ca84-db1b-8b55" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="b5d2-6091-d01e-4ee3" type="max"/>
</constraints>
<rules>
<rule id="2258-e4b4-94ac-8973" name="Arch-Sorcerer" publicationId="09c5-eeae-f398-b653" page="261" hidden="false">
<description>Magnus the Red has access to all of the Core Psychic Disciplines as presented in the Core Psychic Discipline list. When making a Shooting Attack or attacking during an assault , Magnus may choose to use any one Psychic Weapon available from any Discipline regardless of which Psychic Powers he has used in a given turn. In addition to any other Psychic Power he has used , in each turn Magnus may use any one of the Minor Arcana provided by the Prosperine Arcana special rule, and may use a different Minor Arcana each turn (see page 255). When using a Minor Arcana power , Magnus automatically passes any Psychic checks required without any dice being rolled (this applies only to Minor Arcana powers).</description>
</rule>
</rules>
<selectionEntries>
<selectionEntry id="38bc-bf65-7699-f590" name="Cult Arcana" 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="f004-e157-89a8-9a61" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="76b0-aa9e-2f75-b570" type="max"/>
</constraints>
<entryLinks>
<entryLink id="e163-8c27-23db-60d6" name="Athanaen" hidden="false" collective="false" import="true" targetId="a06f-f3f7-ba92-365d" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1141-ac38-da04-8a13" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="467a-554f-bf41-01f3" type="max"/>
</constraints>
</entryLink>
<entryLink id="e515-a4b7-c933-3add" name="Corvidae" hidden="false" collective="false" import="true" targetId="f040-f723-e145-9e1f" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8e09-935e-e35a-e9d9" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="b500-0a9b-d681-bd1a" type="max"/>
</constraints>
</entryLink>
<entryLink id="f08d-af84-0184-d9b7" name="Pavoni" hidden="false" collective="false" import="true" targetId="5532-04aa-8302-2038" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0e90-8cc2-3082-c6f9" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="6649-dc40-73e9-e19f" type="max"/>
</constraints>
</entryLink>
<entryLink id="6453-32b7-968b-c17a" name="Pyrae" hidden="false" collective="false" import="true" targetId="78eb-adbb-1cc2-b002" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="17cc-f625-a6c3-19b5" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="d26e-c8f9-856f-4c7f" type="max"/>
</constraints>
</entryLink>
<entryLink id="34ad-d576-0bfa-07a3" name="Raptora" hidden="false" collective="false" import="true" targetId="1aa4-4557-f274-2ba1" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4251-42c9-b369-f57e" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="2062-a69b-b755-9e59" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="aaa6-be05-1b95-9692" name="Psychic powers" 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="316f-d6cb-47c3-af84" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="f8ba-0114-c3a5-10d5" type="max"/>
</constraints>
<infoLinks>
<infoLink id="d35c-c161-108f-7749" name="Aetheric Lightning" hidden="false" targetId="3d0c-e779-247f-0332" type="profile"/>