generated from BSData/TemplateDataRepo
-
Notifications
You must be signed in to change notification settings - Fork 94
/
Necrons.cat
7733 lines (7733 loc) · 539 KB
/
Necrons.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" library="false" id="b654-a18a-ea1-3bf2" name="Xenos - Necrons" gameSystemId="sys-352e-adc2-7639-d6a9" gameSystemRevision="1" revision="51" battleScribeVersion="2.03" type="catalogue">
<sharedSelectionEntryGroups>
<selectionEntryGroup name="Enhancements" hidden="false" id="9574-b5d1-8b0a-d95d">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="f005-e830-ab0b-ac6f"/>
<constraint type="max" value="3" field="selections" scope="force" shared="true" id="946-bfa0-af93-2909" includeChildSelections="true"/>
</constraints>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Veil of Darkness" hidden="false" id="a562-e37c-3a4d-d152">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="722-5683-4ff-da16"/>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="d044-31b5-c11a-2504" includeChildSelections="true"/>
</constraints>
<profiles>
<profile name="Veil of Darkness" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="134a-950c-df71-1a76">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">NECRONS model only. Once per battle, at the end of your opponent’s turn, if the bearer’s unit is not within Engagement Range of one or more enemy units, the bearer can use this Enhancement. If it does, remove that unit from the battlefield. Then, in the Reinforcements step of your next Movement phase, set up that unit anywhere on the battlefield that is more than 9" horizontally away from all enemy models.</characteristic>
</characteristics>
</profile>
</profiles>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="force" childId="9ebf-2bbd-6059-1d40" shared="true" id="ea09-5dbc-6fb2-3ae8" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="20"/>
</costs>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Nether-realm Casket" hidden="false" id="76a0-7f0a-49e7-992a">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="722-5683-4ff-da16"/>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="f2e6-938b-9ff0-37c7" includeChildSelections="true"/>
</constraints>
<profiles>
<profile name="Nether-realm Casket" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="471d-7d60-1f1d-f7e1">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">NECRONS model only. While the bearer is leading a unit, models in that unit have the Stealth ability.</characteristic>
</characteristics>
</profile>
</profiles>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="force" childId="9ebf-2bbd-6059-1d40" shared="true" id="26bf-78ff-9687-8eaa" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="20"/>
</costs>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Phasal Subjugator" hidden="false" id="a89b-612a-b6f-40ee">
<profiles>
<profile name="Phasal Subjugator (Aura)" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="32de-35c9-8e2f-72">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">NECRONS model only. While a friendly NECRONS unit (excluding CHARACTER units) is within 6" of the bearer, each time a model in that unit makes an attack, add 1 to the hit roll.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="722-5683-4ff-da16"/>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="2882-519c-78d-8969" includeChildSelections="true"/>
</constraints>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="force" childId="9ebf-2bbd-6059-1d40" shared="true" id="7642-221b-9b58-7b7d" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="35"/>
</costs>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Dimensional Overseer" hidden="false" id="d191-f492-ef11-6c9d">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="722-5683-4ff-da16"/>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="5c7c-8a55-a4c8-6127" includeChildSelections="true"/>
</constraints>
<profiles>
<profile name="Dimensional Overseer" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="d2be-fc47-cd4e-92a4">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">NECRONS model only. While the bearer is on the battlefield or in Strategic Reserves, add 1 to the number of units from your army that you can select for the Hyperphasing rule.</characteristic>
</characteristics>
</profile>
</profiles>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="force" childId="8861-5385-8fd1-dfee" shared="true" id="6bef-2179-d2ba-6f53" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="25"/>
</costs>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Eternal Madness" hidden="false" id="cb96-5b69-ad55-31ce">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="force" childId="6493-9079-727d-d95f" shared="true" id="862c-50a1-deb0-a9d4" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile name="Eternal Madness" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="90c3-4762-cc9b-34dc">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">NECRONS model only. In the Fight phase, each time a model in the bearer's unit is destroyed, if that model had not fought this phase, roll one D6. On a 4+, do not remove the destroyed model from play; it can fight after the attacking model's unit has finished making its attacks, and is then removed from play.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="1cea-848-c096-faa3"/>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="db6a-fb2b-438e-d02d" includeChildSelections="true"/>
</constraints>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="25"/>
</costs>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Ingrained Superiority" hidden="false" id="8923-bbd7-b53b-71c6">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="force" childId="6493-9079-727d-d95f" shared="true" id="721e-90d0-fa9e-a2a6" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile name="Ingrained Superiority" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="572a-806f-52a7-36e6">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">NECRONS model only. Each time a model in the bearer's unit makes an attack, on a Critical Wound, improve the Armour Penetration characteristic of that attack by 1.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="2f32-1d31-cfd2-ca1"/>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="652a-7e75-2a2f-8a4a" includeChildSelections="true"/>
</constraints>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="10"/>
</costs>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Soulless Reaper" hidden="false" id="90ad-322-9cab-ceed">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="force" childId="6493-9079-727d-d95f" shared="true" id="e70c-8f32-2a92-3186" includeChildSelections="true"/>
<condition type="notInstanceOf" value="1" field="selections" scope="ancestor" childId="b43e-b010-7d4a-3302" shared="true" id="ff28-a668-5dc9-3a14" includeChildSelections="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<profiles>
<profile name="Soulless Reaper" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="a148-5cca-37f2-764a">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">DESTROYER CULT model only. Each time an enemy unit within Engagement Range of the bearer's unit is selected to Fall Back, roll one D6. On a 3+, that unit cannot Fall Back and must Remain Stationary.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="9f02-92e6-c24c-b00"/>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="12d9-952a-243e-dece" includeChildSelections="true"/>
</constraints>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="20"/>
</costs>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Eldritch Nightmare" hidden="false" id="6f24-8659-cef-d28d">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="force" childId="6493-9079-727d-d95f" shared="true" id="743c-109b-1fc2-b2d6" includeChildSelections="true"/>
<condition type="notInstanceOf" value="1" field="selections" scope="ancestor" childId="b43e-b010-7d4a-3302" shared="true" id="86e4-4d7a-c0f5-478d" includeChildSelections="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<profiles>
<profile name="Eldritch Nightmare" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="9553-37b3-1dfc-fef5">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">DESTROYER CULT model only. At the start of the Fight phase, each enemy unit within Engagement Range of the bearer must take a Battle-shock test.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="ecd8-4b79-6ac6-613c"/>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="43a6-c20a-d68a-117f" includeChildSelections="true"/>
</constraints>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="15"/>
</costs>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Dimensional Sanctum" hidden="false" id="8894-c0fc-28c4-1bb4">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="force" childId="aed9-cb3b-1d0c-f87d" shared="true" id="c399-4717-5611-3d83" includeChildSelections="true"/>
<condition type="notInstanceOf" value="1" field="selections" scope="ancestor" childId="a98a-4cc0-5f02-e078" shared="true" id="8617-cec4-2a81-8a21" includeChildSelections="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<profiles>
<profile name="Dimensional Sanctum" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="6012-9e87-6e69-8a7b">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">CRYPTEK model only. Models in the bearer's unit have the Infiltrators ability.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="745d-252c-e525-26fa"/>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="d51e-1b99-356b-8a94" includeChildSelections="true"/>
</constraints>
<infoLinks>
<infoLink name="Infiltrators" hidden="false" type="rule" id="68dd-26fc-4f03-5d91" targetId="c05d-f4c3-f091-4938"/>
</infoLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="20"/>
</costs>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Hyperphasic Fulcrum" hidden="false" id="23b2-9675-34d6-b505">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="force" childId="aed9-cb3b-1d0c-f87d" shared="true" id="43f0-c959-3da-5dc3" includeChildSelections="true"/>
<condition type="notInstanceOf" value="1" field="selections" scope="ancestor" childId="a98a-4cc0-5f02-e078" shared="true" id="8844-4cbc-ad62-3231" includeChildSelections="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<profiles>
<profile name="Hyperphasic Fulcrum" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="aba5-2733-6f8-21c3">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">CRYPTEK model only. While the bearer is leading a unit, if that unit is wholly within your army's Power Matrix, each time a model in that unit makes an attack, re-roll a Wound roll of 1.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="9f14-de71-3aab-aab5"/>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="b5d8-30b4-daf8-c473" includeChildSelections="true"/>
</constraints>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="15"/>
</costs>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Autodivinator" hidden="false" id="a894-7fcb-6cf-6809">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="force" childId="aed9-cb3b-1d0c-f87d" shared="true" id="17d7-48cf-3f18-436d" includeChildSelections="true"/>
<condition type="notInstanceOf" value="1" field="selections" scope="ancestor" childId="a98a-4cc0-5f02-e078" shared="true" id="ffb6-cb09-d871-7eee" includeChildSelections="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<profiles>
<profile name="Autodivinator" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="58c9-70f7-6e21-8031">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">CRYPTEK model only. Each time your opponent gains a CP as a result of an ability, roll one D6: on a 2+, you also gain 1CP.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="5d14-fd26-8f5b-ef0d"/>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="4351-d004-52b0-2d8e" includeChildSelections="true"/>
</constraints>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="15"/>
</costs>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Metalodermal Tesla Weave" hidden="false" id="481d-a059-d2fd-600d">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="force" childId="aed9-cb3b-1d0c-f87d" shared="true" id="46d8-462b-2c4b-7f85" includeChildSelections="true"/>
<condition type="notInstanceOf" value="1" field="selections" scope="ancestor" childId="a98a-4cc0-5f02-e078" shared="true" id="ffc9-c45c-664f-6c9c" includeChildSelections="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<profiles>
<profile name="Metalodermal Tesla Weave" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="3899-6b21-3566-a998">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">CRYPTEK model only. Once per phase, when an enemy unit selects the bearer's unit as a target of a charge, roll one D6: on a 2-5, that enemy unit suffers D3 mortal wounds, on a 6, that enemy unit suffers 3 mortal wounds.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="3388-ad70-8667-63bc"/>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="21ef-e522-b1ea-1414" includeChildSelections="true"/>
</constraints>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="10"/>
</costs>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Honourable Combatant" hidden="false" id="adf7-e842-41e1-6994">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="force" childId="163f-63bd-f2e1-5e7" shared="true" id="32cf-caff-25f0-57d5" includeChildSelections="true"/>
<condition type="notInstanceOf" value="1" field="selections" scope="ancestor" childId="2324-ba16-58e4-df2e" shared="true" id="9330-8f6d-a942-50fd" includeChildSelections="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<profiles>
<profile name="Honourable Combatant" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="2695-8fb-ef38-9535">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">OVERLORD model only. Each time the bearer's unit destroys an enemy CHARACTER unit, your opponent loses 1CP if they have any.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="880-e26-546-cbd7"/>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="8bc4-7c63-2715-e0d0" includeChildSelections="true"/>
</constraints>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="10"/>
</costs>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Unflinching Will" hidden="false" id="2339-9780-e93d-943b">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="force" childId="163f-63bd-f2e1-5e7" shared="true" id="f36d-58ec-8867-7b65" includeChildSelections="true"/>
<condition type="notInstanceOf" value="1" field="selections" scope="ancestor" childId="2324-ba16-58e4-df2e" shared="true" id="b688-c1f1-e918-3080" includeChildSelections="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<profiles>
<profile name="Unflinching Will" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="2cac-9b4b-a8d4-7b76">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">OVERLORD model only. The bearer's melee weapons have the [PRECISION] and [ANTI-INFANTRY 5+] abilities.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="a49-e4f6-aaba-56d9"/>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="314-116f-5a35-2d10" includeChildSelections="true"/>
</constraints>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="20"/>
</costs>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Warrior Noble" hidden="false" id="4abc-8ef7-8689-80d7">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="force" childId="163f-63bd-f2e1-5e7" shared="true" id="6dde-e208-d9e9-e462" includeChildSelections="true"/>
<condition type="notInstanceOf" value="1" field="selections" scope="ancestor" childId="2324-ba16-58e4-df2e" shared="true" id="5344-6033-a6c9-5cf8" includeChildSelections="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<profiles>
<profile name="Warrior Noble" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="4d66-d140-3901-6bf">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">OVERLORD model only. Each time a melee attack targets the bearer's unit, subtract 1 from the Hit roll.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="414e-e5a8-2572-8cda"/>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="19bc-6d88-a4ba-b8f9" includeChildSelections="true"/>
</constraints>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="15"/>
</costs>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Eternal Conqueror" hidden="false" id="f607-55be-a68b-a452">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="force" childId="163f-63bd-f2e1-5e7" shared="true" id="631a-c3b7-7a6d-563e" includeChildSelections="true"/>
<condition type="notInstanceOf" value="1" field="selections" scope="ancestor" childId="2324-ba16-58e4-df2e" shared="true" id="493e-d1fb-22e8-c721" includeChildSelections="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<profiles>
<profile name="Eternal Conqueror" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="7a4d-f2b7-34a5-8d8d">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">OVERLORD model only. Each time a model in the bearer's unit makes an attack that targets an enemy unit within range of an objective marker, you can re-roll the Hit roll.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="2e98-f655-8557-4347"/>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="3390-c427-d89f-daeb" includeChildSelections="true"/>
</constraints>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="25"/>
</costs>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Enaegic Dermal Bond" hidden="false" id="3cc5-4b3-9380-981a">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="c86c-1d64-a1b5-70c"/>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="2ea8-2905-2b82-301d" includeChildSelections="true"/>
</constraints>
<profiles>
<profile name="Enaegic Dermal Bond" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="1f5-2b97-2b2c-60dc">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">NECRONS model only. The bearer has the Feel No Pain 4+ ability.</characteristic>
</characteristics>
</profile>
</profiles>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="force" childId="9ebf-2bbd-6059-1d40" shared="true" id="ef65-bcc5-bdea-9f31" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="15"/>
</costs>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Arisen Tyrant" hidden="false" id="11d5-61c1-bc4a-d9ca">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="8389-d4af-e732-b495"/>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="2a79-e63e-f055-39c2" includeChildSelections="true"/>
</constraints>
<profiles>
<profile name="Arisen Tyrant" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="65b7-8f59-2648-ae5f">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">NECRONS model only. Each time a model in the bearer's unit makes an attack, re-roll a Hit roll of 1. If the bearer's unit was set up on the battlefield this turn, you can re-roll the Hit roll instead.</characteristic>
</characteristics>
</profile>
</profiles>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="force" childId="8861-5385-8fd1-dfee" shared="true" id="9980-1fa6-14d5-f223" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="25"/>
</costs>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Hyperspatial Transfer Node" hidden="false" id="e294-31a1-a398-8695">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="54cf-1244-744c-1982"/>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="89b1-470a-76ce-aa8a" includeChildSelections="true"/>
</constraints>
<profiles>
<profile name="Hyperspatial Transfer Node" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="e845-c3a1-38e0-bfb9">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">NECRONS model only. Each time the bearer's unit Advances, do not make an Advance roll for it. Instead, until the end of the phase, add 6" to the Move characteristic of models in the bearer's unit.</characteristic>
</characteristics>
</profile>
</profiles>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="force" childId="8861-5385-8fd1-dfee" shared="true" id="bba3-9d47-5efa-91f8" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="15"/>
</costs>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Osteoclave Fulcrum" hidden="false" id="ebd8-d7a3-52cf-4a4b">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="acc0-7b77-e3aa-a17a"/>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="954b-8c69-9f9f-3040" includeChildSelections="true"/>
</constraints>
<profiles>
<profile name="Osteoclave Fulcrum" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="b2e-c6a4-6252-9699">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">NECRONS model only. Models in the bearer's unit have the Deep Strike ability.</characteristic>
</characteristics>
</profile>
</profiles>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="force" childId="8861-5385-8fd1-dfee" shared="true" id="39fa-5961-bc70-c402" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="20"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</sharedSelectionEntryGroups>
<sharedSelectionEntries>
<selectionEntry type="upgrade" import="true" name="Detachment Choice" hidden="false" id="82f1-b597-7b06-8ba2">
<constraints>
<constraint type="min" value="1" field="selections" scope="force" shared="true" id="d51c-1abc-a957-b155"/>
<constraint type="max" value="1" field="selections" scope="force" shared="true" id="fdf6-17ff-dec9-286b"/>
</constraints>
<selectionEntryGroups>
<selectionEntryGroup name="Detachment" hidden="false" id="aa9c-b6d6-f78-12ac">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="5807-8909-f15b-dd04"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="57c7-9dcf-afa-964e"/>
</constraints>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Awakened Dynasty" hidden="false" id="9ebf-2bbd-6059-1d40">
<infoLinks>
<infoLink name="Command Protocols" id="65f0-9dce-339d-522c" hidden="false" type="rule" targetId="388f-814a-df25-c988"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Annihilation Legion" hidden="false" id="6493-9079-727d-d95f">
<infoLinks>
<infoLink name="Annihilation Protocol" id="8930-4ee1-a7c8-4a16" hidden="false" type="rule" targetId="cb2f-c68b-f66e-93ae"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Canoptek Court" hidden="false" id="aed9-cb3b-1d0c-f87d">
<infoLinks>
<infoLink name="Power Matrix" id="2de7-4f86-7ebd-83af" hidden="false" type="rule" targetId="5aff-abb1-f06d-23a5"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Obeisance Phalanx" hidden="false" id="163f-63bd-f2e1-5e7">
<infoLinks>
<infoLink name="Worthy Foes" id="9416-7b19-71f3-8570" hidden="false" type="rule" targetId="a0f8-2836-4418-50a4"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Hypercrypt Legion" hidden="false" id="8861-5385-8fd1-dfee">
<infoLinks>
<infoLink name="Hyperphasing" id="3287-c51b-f223-8e2d" hidden="false" type="rule" targetId="bf08-bb20-d69d-1063"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<categoryLinks>
<categoryLink targetId="4ac9-fd30-1e3d-b249" id="cbf9-d740-dd4d-e9d5" primary="true" name="Configuration"/>
</categoryLinks>
</selectionEntry>
<selectionEntry type="model" import="true" name="Orikan the Diviner" hidden="false" id="ba86-eaad-5396-fc07">
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="80"/>
</costs>
<categoryLinks>
<categoryLink targetId="ee0-cf31-4fb5-6b26" id="aa55-1000-425d-d6ca" primary="false" name="Faction: Necrons"/>
<categoryLink targetId="cf47-a0d7-7207-29dc" id="b9a9-cb0e-bc64-ba82" primary="false" name="Infantry"/>
<categoryLink targetId="9cfd-1c32-585f-7d5c" id="9255-22ca-b81e-a8fd" primary="false" name="Character"/>
<categoryLink targetId="4f3a-f0f7-6647-348d" id="e7dd-13ec-5ac0-b1f1" primary="true" name="Epic Hero"/>
<categoryLink targetId="a98a-4cc0-5f02-e078" id="74fd-cdfa-c587-6e44" primary="false" name="Cryptek"/>
<categoryLink targetId="1ea8-946a-4ac8-a74f" id="7e6-d242-b28f-29e0" primary="false" name="Chronomancer"/>
<categoryLink targetId="a280-24f4-5aa1-5e02" id="94cf-34d7-a64f-4a57" primary="false" name="Orikan the Diviner"/>
</categoryLinks>
<profiles>
<profile name="Orikan the Diviner" typeId="c547-1836-d8a-ff4f" typeName="Unit" hidden="false" id="ca62-cc3a-b9a2-9c50">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">5"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">4</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">4+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">4</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">6+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">1</characteristic>
</characteristics>
</profile>
<profile name="Master Chronomancer" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="4c02-411-e9be-6773">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">While this model is leading a unit, models in that unit have a 4+ invulnerable save.</characteristic>
</characteristics>
</profile>
<profile name="Invulnerable Save" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="f817-4f10-91dd-cf9d">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">This model has a 4+ invulnerable save.</characteristic>
</characteristics>
</profile>
<profile name="The Stars Are Right" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="7003-283b-1b84-c602">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">Once per battle, at the start of the Fight phase, this model can use this ability. If it does, until the end of the phase, triple the Attacks and Strength characteristics of this model’s Staff of Tomorrow and every successful Wound roll made for this model’s attacks scores a Critical Wound.</characteristic>
</characteristics>
</profile>
<profile name="Leader" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="b567-98ec-597b-f8c9">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">This model can be attached to the following units:
■ IMMORTALS
■ NECRON WARRIORS
You can attach this model to one of the above units even if one ROYAL WARDEN or NOBLE model has already been attached to it. If you do, and that Bodyguard unit is destroyed, the Leader units attached to it become separate units, with their original Starting Strengths.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Staff of Tomorrow" hidden="false" id="ecf2-4048-b392-2e54">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="a650-a202-a5b-9d8d"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="b12d-d2b-44c6-70da"/>
</constraints>
<profiles>
<profile name="Staff of Tomorrow" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons" hidden="false" id="e091-87a3-25fd-3d92">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">2</characteristic>
<characteristic name="WS" typeId="95d1-95f-45b4-11d6">3+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">4</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">-3</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">D3</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">Devastating Wounds</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Devastating Wounds" hidden="false" type="rule" id="508d-9550-eef0-3e99" targetId="be1e-ac8e-1e2c-3528"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
<infoLinks>
<infoLink name="Reanimation Protocols" hidden="false" type="rule" id="a2eb-ec88-c167-dfea" targetId="a511-d9ca-17d0-42c5"/>
<infoLink name="Detachment Rules" hidden="false" type="infoGroup" id="5149-4178-cb7b-43ca" targetId="4ee-d749-4ddc-323d"/>
<infoLink name="Leader" hidden="false" type="rule" id="3eea-760e-c363-483e" targetId="b4dd-3e1f-41cb-218f"/>
</infoLinks>
<entryLinks>
<entryLink import="true" name="Warlord" hidden="false" type="selectionEntry" id="58c3-e7aa-889e-4187" targetId="2c98-86cf-889-2293"/>
</entryLinks>
</selectionEntry>
<selectionEntry type="model" import="true" name="Imotekh the Stormlord" hidden="false" id="49fd-a80d-8cc0-c76b">
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="100"/>
</costs>
<categoryLinks>
<categoryLink targetId="ee0-cf31-4fb5-6b26" id="1c9a-1fa6-7f-3efe" primary="false" name="Faction: Necrons"/>
<categoryLink targetId="cf47-a0d7-7207-29dc" id="f8bd-6cf1-8970-32c9" primary="false" name="Infantry"/>
<categoryLink targetId="9cfd-1c32-585f-7d5c" id="7d9-61e0-7141-32a6" primary="false" name="Character"/>
<categoryLink targetId="4f3a-f0f7-6647-348d" id="957a-dd0a-23be-569b" primary="true" name="Epic Hero"/>
<categoryLink targetId="b473-c92b-6882-86b0" id="598c-a64d-253b-12e0" primary="false" name="Noble"/>
<categoryLink targetId="b324-83ae-dd58-8f7c" id="d7dd-22fc-7e88-36a5" primary="false" name="Imotekh the Stormlord"/>
</categoryLinks>
<infoLinks>
<infoLink name="Reanimation Protocols" hidden="false" type="rule" id="7f82-50f6-ef12-62a7" targetId="a511-d9ca-17d0-42c5"/>
<infoLink name="Leader" hidden="false" type="rule" id="9ce4-7376-83f8-cfb8" targetId="b4dd-3e1f-41cb-218f"/>
<infoLink name="Detachment Rules" hidden="false" type="infoGroup" id="4fca-8136-8318-9f9e" targetId="4ee-d749-4ddc-323d"/>
</infoLinks>
<profiles>
<profile name="Invulnerable Save" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="1a66-1b2-dfd6-b5b4">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">This model has a 4+ invulnerable save.</characteristic>
</characteristics>
</profile>
<profile name="Leader" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="1ac3-6f6-b9a4-2496">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">This model can be attached to the following units:
■ IMMORTALS
■ LYCHGUARD
■ NECRON WARRIORS</characteristic>
</characteristics>
</profile>
<profile name="Grand Strategist" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="2547-8479-5963-9153">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">At the start of your Command phase, if this model is on the battlefield, you gain 1CP.</characteristic>
</characteristics>
</profile>
<profile name="Lord of the Storm" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="608f-b219-23b8-5568">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">Once per battle, at the end of your Command phase, this model can use this ability. If it does, roll one D6 for each enemy unit within 12" of this model: on a 2-5, that enemy unit suffers D3 mortal wounds; on a 6, that enemy unit suffers D3+3 mortal wounds.</characteristic>
</characteristics>
</profile>
<profile name="Imotekh the Stormlord" typeId="c547-1836-d8a-ff4f" typeName="Unit" hidden="false" id="2421-336c-d2d0-fef5">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">5"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">5</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">2+</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>
</profiles>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Gauntlet of Fire" hidden="false" id="e135-2748-1287-ec58">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="74f0-ff77-8909-94eb"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="9361-b87b-1303-5233"/>
</constraints>
<profiles>
<profile name="Gauntlet of Fire" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" hidden="false" id="8c94-1bc5-8234-bdfd">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">12"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">D6</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">N/A</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">5</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">Ignores Cover, Torrent</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Ignores Cover" hidden="false" type="rule" id="a761-40f8-2692-a12e" targetId="4640-43e7-30b-215a"/>
<infoLink name="Torrent" hidden="false" type="rule" id="6e37-f4ee-d7cd-4436" targetId="5edf-d619-23e0-9b56"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Staff of the Destroyer" hidden="false" id="579e-7f68-433b-7072">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="7cf3-5553-bd63-f11b"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="6ef7-a7f3-9e1c-29f6"/>
</constraints>
<profiles>
<profile name="Staff of the Destroyer" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" hidden="false" id="890c-f3c2-7836-3de9">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">18"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">3</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">-3</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">2</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">-</characteristic>
</characteristics>
</profile>
<profile name="Staff of the Destroyer" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons" hidden="false" id="aaa7-fb9-a561-3732">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">4</characteristic>
<characteristic name="WS" typeId="95d1-95f-45b4-11d6">2+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">6</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">-3</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">2</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">Devastating Wounds</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Devastating Wounds" hidden="false" type="rule" id="e21-ef1d-f459-980f" targetId="be1e-ac8e-1e2c-3528"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink import="true" name="Warlord" hidden="false" type="selectionEntry" id="8490-3933-af8d-e29b" targetId="2c98-86cf-889-2293"/>
</entryLinks>
</selectionEntry>
<selectionEntry type="model" import="true" name="Anrakyr the Traveller [Legends]" hidden="false" id="43b5-f4f9-f7c6-327a">
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="95"/>
</costs>
<categoryLinks>
<categoryLink targetId="ee0-cf31-4fb5-6b26" id="8fd8-729e-c116-5d92" primary="false" name="Faction: Necrons"/>
<categoryLink targetId="cf47-a0d7-7207-29dc" id="3a27-daf6-1fff-1e29" primary="false" name="Infantry"/>
<categoryLink targetId="9cfd-1c32-585f-7d5c" id="3c22-1ea7-fef3-5983" primary="false" name="Character"/>
<categoryLink targetId="4f3a-f0f7-6647-348d" id="3929-986f-5360-8432" primary="true" name="Epic Hero"/>
<categoryLink targetId="b473-c92b-6882-86b0" id="a190-c499-b7b6-741c" primary="false" name="Noble"/>
<categoryLink targetId="b8ad-2a93-ce18-9e25" id="5fcb-7c90-5e4b-ab61" primary="false" name="Anrakyr the Traveller"/>
</categoryLinks>
<profiles>
<profile name="Anrakyr the Traveller" typeId="c547-1836-d8a-ff4f" typeName="Unit" hidden="false" id="2b79-e1-d7d7-6a8">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">5"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">5</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">2+</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 name="Leader" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="99f0-b4b4-4c25-a7a8">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">This model can be attached to the following units:
■ IMMORTALS</characteristic>
</characteristics>
</profile>
<profile name="Invulnerable Save" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="5ca8-661e-aaef-e4f0">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">This model has a 4+ invulnerable save.</characteristic>
</characteristics>
</profile>
<profile name="Lord of the Pyrrhian Eternals" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="6809-73fc-986d-8110">
<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 name="Mind in the Machine" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="db0b-31e9-f3d7-bc67">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">At the start of your opponent’s Shooting phase, select one enemy VEHICLE unit within 12" of and visible to this model. That unit must take a Leadership test. If that test is passed, until the end of the phase, each time a model in that unit makes an attack, subtract 1 from the Hit roll; if that test is failed, that unit is not eligible to shoot this phase.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Detachment Rules" hidden="false" type="infoGroup" id="8d5c-a9a2-4ce9-83dc" targetId="4ee-d749-4ddc-323d"/>
<infoLink name="Leader" hidden="false" type="rule" id="8ae6-d8cd-2a75-8ac7" targetId="b4dd-3e1f-41cb-218f"/>
<infoLink name="Reanimation Protocols" hidden="false" type="rule" id="94c3-afe9-cceb-edb1" targetId="a511-d9ca-17d0-42c5"/>
</infoLinks>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Warscythe" hidden="false" id="285c-c5dd-fc73-9b8c">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="7fd3-4b4e-2ee0-902a"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="5195-c374-63e-eda4"/>
</constraints>
<profiles>
<profile name="Warscythe" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons" hidden="false" id="ae99-7af1-cbee-d26a">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">4</characteristic>
<characteristic name="WS" typeId="95d1-95f-45b4-11d6">2+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">8</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">-3</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">2</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">Devastating Wounds</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Devastating Wounds" hidden="false" type="rule" id="93aa-962d-f7ba-d9af" targetId="be1e-ac8e-1e2c-3528"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink import="true" name="Warlord" hidden="false" type="selectionEntry" id="9503-4777-18e5-e109" targetId="2c98-86cf-889-2293"/>
<entryLink import="true" name="Tachyon arrow" hidden="false" type="selectionEntry" id="975-28e7-e4fb-819" targetId="6920-cba8-a495-6d1e">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="3ddb-45fe-b9f7-8121"/>
</constraints>
</entryLink>
</entryLinks>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="force" childId="9ed-cbf4-bfe5-90bf" shared="true" id="a362-dc04-370-40b" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
</selectionEntry>
<selectionEntry type="model" import="true" name="Varguard Obyron [Legends]" hidden="false" id="b5c3-317e-df69-53bb">
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="85"/>
</costs>
<categoryLinks>
<categoryLink targetId="ee0-cf31-4fb5-6b26" id="4bcb-ceac-5d51-444b" primary="false" name="Faction: Necrons"/>
<categoryLink targetId="cf47-a0d7-7207-29dc" id="fb1c-7e3c-e35f-66ed" primary="false" name="Infantry"/>
<categoryLink targetId="9cfd-1c32-585f-7d5c" id="ca8b-521b-b5ab-e85d" primary="false" name="Character"/>
<categoryLink targetId="4f3a-f0f7-6647-348d" id="4118-a3a5-18f7-c7b0" primary="true" name="Epic Hero"/>
<categoryLink targetId="3311-d741-5a07-847d" id="a1fc-f577-8886-479" primary="false" name="Varguard Obyron"/>
</categoryLinks>
<profiles>
<profile name="Varguard Obyron" typeId="c547-1836-d8a-ff4f" typeName="Unit" hidden="false" id="e7a3-2c53-d4bd-7828">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">5"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">5</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">2+</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 name="Leader" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="6c1-e306-7422-f026">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">This model can be attached to the following units:
■ IMMORTALS
■ LYCHGUARD
■ NECRON WARRIORS
You can attach this model to one of the above units even if NEMESOR ZAHNDREKH has already been attached to it. If it is, and that Bodyguard unit is destroyed, the Leader units attached to it become separate units, with their original Starting Strengths.</characteristic>
</characteristics>
</profile>
<profile name="Ghostwalk Mantle" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="d6ff-586b-5829-295b">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">While this model is leading a unit, models in that unit have the Fights First ability.</characteristic>
</characteristics>
</profile>
<profile name="The Vargard’s Duty" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="bcff-d655-2af7-c51a">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">While this model is in the same unit as NEMESOR ZAHNDREKH, CHARACTER models in that unit have the Feel No Pain 4+ ability.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Leader" hidden="false" type="rule" id="e908-46c5-8c77-affd" targetId="b4dd-3e1f-41cb-218f"/>
<infoLink name="Detachment Rules" hidden="false" type="infoGroup" id="f0c9-2112-81f4-beb5" targetId="4ee-d749-4ddc-323d"/>
<infoLink name="Reanimation Protocols" hidden="false" type="rule" id="aa8e-c767-232e-b639" targetId="a511-d9ca-17d0-42c5"/>
</infoLinks>
<entryLinks>
<entryLink import="true" name="Warlord" hidden="false" type="selectionEntry" id="f531-743c-bd45-7718" targetId="2c98-86cf-889-2293"/>
</entryLinks>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Warscythe" hidden="false" id="6df4-7391-9a38-a764">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="2af7-441d-2862-ddb8"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="af57-e66e-1014-e791"/>
</constraints>
<profiles>
<profile name="Warscythe" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons" hidden="false" id="21e4-9b9-8775-a564">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">4</characteristic>
<characteristic name="WS" typeId="95d1-95f-45b4-11d6">2+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">8</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">-3</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">2</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">Devastating Wounds, Precision</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Devastating Wounds" hidden="false" type="rule" id="20cc-2415-38c9-a4d1" targetId="be1e-ac8e-1e2c-3528"/>
<infoLink name="Precision" hidden="false" type="rule" id="ff6a-4aed-4c89-29e8" targetId="9143-31ae-e0a6-6007"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="force" childId="9ed-cbf4-bfe5-90bf" shared="true" id="a3d9-df3c-8d3d-f565" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
</selectionEntry>
<selectionEntry type="model" import="true" name="Illuminor Szeras" hidden="false" id="d977-6a26-bc03-4722">
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="175"/>
</costs>
<categoryLinks>
<categoryLink targetId="ee0-cf31-4fb5-6b26" id="9ea0-5396-91e-8751" primary="false" name="Faction: Necrons"/>
<categoryLink targetId="cf47-a0d7-7207-29dc" id="b0a0-fe37-46a7-3077" primary="false" name="Infantry"/>
<categoryLink targetId="9cfd-1c32-585f-7d5c" id="334f-6d4a-140d-2ac1" primary="false" name="Character"/>
<categoryLink targetId="4f3a-f0f7-6647-348d" id="8aec-ea64-2800-2726" primary="true" name="Epic Hero"/>
<categoryLink targetId="a98a-4cc0-5f02-e078" id="c250-8b05-be12-42" primary="false" name="Cryptek"/>
<categoryLink targetId="f28-52c9-55c-7915" id="be88-924d-84cc-5d7b" primary="false" name="Illuminor Szeras"/>
</categoryLinks>
<infoLinks>
<infoLink name="Detachment Rules" hidden="false" type="infoGroup" id="3ad0-be92-613b-e0da" targetId="4ee-d749-4ddc-323d"/>
<infoLink name="Reanimation Protocols" hidden="false" type="rule" id="1270-d01b-f657-db0" targetId="a511-d9ca-17d0-42c5"/>
<infoLink name="Feel No Pain" hidden="false" type="rule" id="9129-fb81-c4f-d42c" targetId="9bf4-280f-bbe2-6fbb">
<modifiers>
<modifier type="append" value="4+" field="name"/>
</modifiers>
</infoLink>
</infoLinks>
<profiles>
<profile name="Invulnerable Save" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="f88e-2214-effd-21cb">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">This model has a 4+ invulnerable save.</characteristic>
</characteristics>
</profile>
<profile name="Illuminor" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="9eba-43aa-5b0b-38e7">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">While this model is within 3" of one or more other friendly NECRONS units, this model has the Lone Operative ability.</characteristic>
</characteristics>
</profile>
<profile name="Mechanical Augmentation (Aura)" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="42e3-ad7-3b46-8fa8">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">While a friendly NECRONS BATTLELINE unit is within 3" of this model, each time a model in that unit makes an attack, improve the Armour Penetration characteristic of that attack by 1, and each time an attack targets that unit, worsen the Armour Penetration characteristic of that attack by 1.</characteristic>
</characteristics>
</profile>
<profile name="Atomic Energy Manipulator" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="4164-8dc9-421-f281">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">At the end of the Fight phase, if this model destroyed one or more models this phase, until the end of the battle, add 3" to the range of its Mechanical Augmentation ability (to a maximum of 12").</characteristic>
</characteristics>
</profile>
<profile name="Illuminor Szeras" typeId="c547-1836-d8a-ff4f" typeName="Unit" hidden="false" id="b58-b800-d98e-9e43">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">8"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">8</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">2+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">9</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">6+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">3</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Eldritch lance" hidden="false" id="3eab-3cdf-4bf9-f5db">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="7180-73d9-a0b-af56"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="7876-f757-bd86-91c8"/>
</constraints>
<profiles>
<profile name="Eldritch lance" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" hidden="false" id="c780-9e28-a20b-bca5">
<characteristics>