forked from BSData/wh40k-9e
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Necrons.cat
8895 lines (8893 loc) · 699 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 id="61c6-c8c5-a304-ff5f" name="Necrons" revision="73" battleScribeVersion="2.03" authorName="BSData Developers" authorContact="@Dr. Toboggan" authorUrl="https://discord.gg/KqPVhds" library="false" gameSystemId="28ec-711c-d87f-3aeb" gameSystemRevision="149" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<publications>
<publication id="61c6-c8c5-pubN65537" name="Codex: Necrons" shortName="Necrons" publisher="Codex: Necrons" publicationDate="March 2018" publisherUrl="https://www.games-workshop.com/en-US/Codex-Necrons-2018-ENG"/>
<publication id="61c6-c8c5-pubN106894" name="Seraptek Construct Datasheet" shortName="FW Datasheet" publisher="Forgeworld Website" publisherUrl="https://www.forgeworld.co.uk/resources/PDF/Downloads/Forgeworld_Necron_Seraptek_Datasheet.pdf"/>
<publication id="0987-4bdd-dd58-d32b" name="Edge of Silence" shortName="Indomitus" publisher="Edge of Silence" publicationDate="July 2020" publisherUrl="https://www.games-workshop.com/en-US/Indomitus-EN-US-2020-Promo"/>
</publications>
<profileTypes>
<profileType id="d7eb-6b4b-fb4b-26fb" name="Wound Track (Gauss Pylon)">
<characteristicTypes>
<characteristicType id="1472-9d19-bfb3-425c" name="Remaining W"/>
<characteristicType id="271b-11d2-3014-1c4b" name="BS"/>
<characteristicType id="6525-37fa-bd68-7f67" name="Tesla Arc Shots"/>
</characteristicTypes>
</profileType>
<profileType id="9b74-b72b-d6bc-194a" name="Wound Track (M/BS/A)">
<characteristicTypes>
<characteristicType id="7b4c-c6b9-4725-d7e2" name="Remaining W"/>
<characteristicType id="51f5-7e11-746d-e649" name="M"/>
<characteristicType id="aea4-93ca-2bcf-f3cb" name="BS"/>
<characteristicType id="919e-ec33-44ab-5051" name="A"/>
</characteristicTypes>
</profileType>
<profileType id="7c4c-335c-5534-07fe" name="Wound Track (Vault)">
<characteristicTypes>
<characteristicType id="dc1b-4042-e901-b636" name="Remaining W"/>
<characteristicType id="3807-4d6b-aff9-f032" name="M"/>
<characteristicType id="657c-d5ac-5b6a-cd4a" name="BS"/>
<characteristicType id="1929-ba50-9d3a-de2a" name="Powers of the C'tan"/>
</characteristicTypes>
</profileType>
<profileType id="4ec1-d4cb-eecc-b265" name="Wound Track (Obelisk)">
<characteristicTypes>
<characteristicType id="6bf4-7be2-c662-019e" name="Remaining W"/>
<characteristicType id="85e0-b0b9-0156-815d" name="M"/>
<characteristicType id="877b-231c-925d-8f74" name="BS"/>
<characteristicType id="3e9d-436c-c9e3-4c42" name="Gravity Pulse Range"/>
</characteristicTypes>
</profileType>
<profileType id="4ef8-90f4-8b5a-2352" name="Wound Track (Monolith)">
<characteristicTypes>
<characteristicType id="e69c-8f46-015d-58a6" name="Remaining W"/>
<characteristicType id="fd7c-469c-f16a-61a7" name="M"/>
<characteristicType id="5ea3-6edf-c811-3d4f" name="BS"/>
<characteristicType id="5b3c-e43b-dde3-9a6f" name="Portal of Exile"/>
</characteristicTypes>
</profileType>
<profileType id="57ee-d739-8ae4-f2f8" name="Wound Track (M/WS/BS)">
<characteristicTypes>
<characteristicType id="e56f-250a-9360-80df" name="Remaining W"/>
<characteristicType id="f96b-e4e5-0ae2-cb15" name="M"/>
<characteristicType id="33f7-1c93-f724-c7f2" name="WS"/>
<characteristicType id="6f51-3823-db8d-8c04" name="BS"/>
</characteristicTypes>
</profileType>
<profileType id="0bb9-43c2-e91f-436e" name="Warlord Trait">
<characteristicTypes>
<characteristicType id="4640-d4a2-28b2-5d68" name="Description"/>
</characteristicTypes>
</profileType>
<profileType id="e31c-30b0-b621-edf7" name="Dynastic Code">
<characteristicTypes>
<characteristicType id="b1f8-a131-2cef-6c8b" name="Description"/>
</characteristicTypes>
</profileType>
<profileType id="1c4c-8a58-c471-95e3" name="Explosion">
<characteristicTypes>
<characteristicType id="b7f3-3402-2a25-e471" name="Dice Roll"/>
<characteristicType id="8d02-35aa-f965-f087" name="Distance"/>
<characteristicType id="c9af-8cce-c37c-7792" name="Mortal Wounds"/>
</characteristicTypes>
</profileType>
<profileType id="23e3-de60-a404-5b0a" name="Fractured Personality">
<characteristicTypes>
<characteristicType id="b71e-9982-5859-07cc" name="Description"/>
</characteristicTypes>
</profileType>
<profileType id="b81b-2c69-dd4a-ec88" name="Power of the C'tan">
<characteristicTypes>
<characteristicType id="28ff-2e8c-9c20-9e56" name="Description"/>
</characteristicTypes>
</profileType>
<profileType id="bacf-b76e-8bbc-ac56" name="Explosion (Details)">
<characteristicTypes>
<characteristicType id="777d-ff51-151a-ef48" name="Dice Roll"/>
<characteristicType id="bc6d-f8da-085e-a200" name="Distance"/>
<characteristicType id="ee72-ce4a-32f0-f022" name="Mortal Wounds"/>
<characteristicType id="0a95-0e2d-f77d-27a1" name="Details"/>
</characteristicTypes>
</profileType>
<profileType id="268c-f8fa-78cd-af4d" name="Mechanical Augmentation">
<characteristicTypes>
<characteristicType id="604c-d952-fd04-565e" name="Augmentation"/>
</characteristicTypes>
</profileType>
</profileTypes>
<categoryEntries>
<categoryEntry id="876e-ea78-1fdf-f250" name="Faction: Necrons" hidden="false"/>
<categoryEntry id="f9fc-440b-8d07-a569" name="Faction: C'tan Shards" hidden="false"/>
<categoryEntry id="6a37-4c9f-a323-a8f2" name="Faction: <Dynasty>" hidden="false"/>
<categoryEntry id="23c9-73a1-47bb-2416" name="Tesseract Vault" hidden="false"/>
<categoryEntry id="96fd-04aa-fb4f-67e6" name="Faction: Sautekh" hidden="false"/>
<categoryEntry id="bf50-0bdf-8343-790c" name="Overlord" hidden="false"/>
<categoryEntry id="b528-ce92-37a5-48c3" name="Imotekh the Stormlord" hidden="false"/>
<categoryEntry id="53e6-5760-f9fa-6f21" name="Lord" hidden="false"/>
<categoryEntry id="3fd5-c8ca-a541-2143" name="Immortals" hidden="false"/>
<categoryEntry id="c9db-16b2-d65f-708b" name="Necron Warriors" hidden="false"/>
<categoryEntry id="092a-b667-f7aa-1b33" name="Cryptek" hidden="false"/>
<categoryEntry id="6444-7bcd-7b0a-04a1" name="Destroyer Lord" hidden="false"/>
<categoryEntry id="ba9c-8732-0227-a34f" name="Illuminor Szeras" hidden="false"/>
<categoryEntry id="96db-707b-e943-2a4f" name="Orikan the Diviner" hidden="false"/>
<categoryEntry id="300b-ba13-d54d-13b6" name="Anrakyr the Traveller" hidden="false"/>
<categoryEntry id="7463-1ce1-a99a-f207" name="Catacomb Command Barge" hidden="false"/>
<categoryEntry id="8c2a-4a67-8c88-e49d" name="Faction: Nihilakh" hidden="false"/>
<categoryEntry id="0f8c-e3a2-97d4-834f" name="Trazyn the Infinite" hidden="false"/>
<categoryEntry id="9ce0-c463-70f3-066b" name="Lychguard" hidden="false"/>
<categoryEntry id="a026-7f15-cdd3-6bbe" name="Deathmarks" hidden="false"/>
<categoryEntry id="b8dc-c00a-7d30-f4ce" name="Flayed Ones" hidden="false"/>
<categoryEntry id="4ce7-0062-6d1e-3ed5" name="Triarch Praetorians" hidden="false"/>
<categoryEntry id="0e77-62f0-0939-5fe1" name="Triarch Stalker" hidden="false"/>
<categoryEntry id="dba2-2811-320e-76e3" name="C'tan Shard of the Nightbringer" hidden="false"/>
<categoryEntry id="c162-ebed-b2fe-5ba1" name="C'tan Shard of the Deceiver" hidden="false"/>
<categoryEntry id="accb-e3d8-1193-10cc" name="Faction: Canoptek" hidden="false"/>
<categoryEntry id="950a-c726-9305-1329" name="Doom Scythe" hidden="false"/>
<categoryEntry id="8b18-acb2-80da-fdc8" name="Night Scythe" hidden="false"/>
<categoryEntry id="09aa-4c24-ce5c-7276" name="Ghost Ark" hidden="false"/>
<categoryEntry id="447e-178b-ec5a-0f87" name="Canoptek Wraiths" hidden="false"/>
<categoryEntry id="c276-12d8-a188-16a2" name="Canoptek Scarab Swarms" hidden="false"/>
<categoryEntry id="b606-2a05-51fe-7432" name="Canoptek Spyders" hidden="false"/>
<categoryEntry id="c35b-bfb6-1254-19d5" name="Heavy Destroyers" hidden="false"/>
<categoryEntry id="f018-ec28-e87f-314d" name="Destoyers" hidden="false"/>
<categoryEntry id="9536-4257-909e-fd69" name="Doomsday Ark" hidden="false"/>
<categoryEntry id="5d3c-3efe-3c1d-4d6d" name="Monolith" hidden="false"/>
<categoryEntry id="a78e-c548-f087-09f8" name="Annihilation Barge" hidden="false"/>
<categoryEntry id="6180-3770-2f4c-8239" name="Transcendent C'tan" hidden="false"/>
<categoryEntry id="5720-f8f0-52a0-fa4d" name="Obelisk" hidden="false"/>
<categoryEntry id="3366-2fdb-9b81-bd2d" name="Vargard Obyron" hidden="false"/>
<categoryEntry id="4864-a153-7a4d-9afe" name="Nemesor Zahndrekh" hidden="false"/>
<categoryEntry id="c0ef-6b06-22f9-220b" name="Tomb Blades" hidden="false"/>
<categoryEntry id="3f79-f5aa-7fb9-02e7" name="Canoptek Tomb Stalker" hidden="false"/>
<categoryEntry id="50f1-273a-89bc-a4de" name="Canoptek Acanthrites" hidden="false"/>
<categoryEntry id="ea34-00a7-7652-9c98" name="Canoptek Tomb Sentinel" hidden="false"/>
<categoryEntry id="bf20-ec46-add4-8d01" name="Night Shroud" hidden="false"/>
<categoryEntry id="66c2-2e0c-673e-123e" name="Sentry Pylon" hidden="false"/>
<categoryEntry id="2f1c-ff3a-7cf2-6c7e" name="Tomb Citadel" hidden="false"/>
<categoryEntry id="f4e0-efb1-fa3a-791b" name="Tesseract Ark" hidden="false"/>
<categoryEntry id="8b85-45ba-9d31-941c" name="Kutlakh the World Killer" hidden="false"/>
<categoryEntry id="103f-3881-2cc4-d70d" name="Toholk the Blinded" hidden="false"/>
<categoryEntry id="ae08-6e39-a9c5-337f" name="Faction: Maynarkh" hidden="false"/>
<categoryEntry id="b635-fc27-9a9f-3058" name="Gauss Pylon" hidden="false"/>
<categoryEntry id="073a-c2ed-a2ee-5b7d" name="Seraptek Heavy Construct" hidden="false"/>
<categoryEntry id="60f3-194a-d96a-689c" name="Noble" hidden="false"/>
<categoryEntry id="4de5-4c24-8b82-ebeb" name="Skorpekh Lord" hidden="false"/>
<categoryEntry id="a6d1-ecdc-5d74-f1d7" name="Royal Warden" hidden="false"/>
<categoryEntry id="4aa1-01cf-3c41-def2" name="Cryptothralls" hidden="false"/>
<categoryEntry id="54ce-e09b-c455-df42" name="Canoptek Reanimator" hidden="false"/>
<categoryEntry id="f12f-70f2-ca15-de86" name="Plasmacyte" hidden="false"/>
<categoryEntry id="d4f8-74ea-220c-41f6" name="Skorpekh Destroyers" hidden="false"/>
<categoryEntry id="a0b3-197b-c4c9-794e" name="Plasmancer" hidden="false"/>
<categoryEntry id="0ad7-1f84-c52c-ff8c" name="Faction: Destroyer Cult" hidden="false"/>
<categoryEntry id="9153-be58-d0b5-3ab7" name="Warriors" publicationId="61c6-c8c5-pubN65537" hidden="false"/>
</categoryEntries>
<entryLinks>
<entryLink id="a6c0-b8f6-cc69-a5fc" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" collective="false" import="true" targetId="ea9b-4e8a-12f5-273c" type="selectionEntry">
<categoryLinks>
<categoryLink id="dc8e-f838-8829-6b22" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="7e71-afcb-4c6f-1318" name="Overlord" publicationId="61c6-c8c5-pubN65537" hidden="false" collective="false" import="true" targetId="0633-49e2-08b0-583e" type="selectionEntry">
<categoryLinks>
<categoryLink id="e42f-8b5a-e11c-9f90" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="7ac2-764c-ac81-95ba" name="Vargard Obyron" publicationId="61c6-c8c5-pubN65537" hidden="false" collective="false" import="true" targetId="6f14-943d-c02e-c562" type="selectionEntry">
<categoryLinks>
<categoryLink id="6cec-f533-5b54-cf70" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="ff6c-eebe-e577-beb2" name="Necron Warriors (Codex)" publicationId="61c6-c8c5-pubN65537" hidden="false" collective="false" import="true" targetId="12ec-e22a-a06b-c611" type="selectionEntry">
<categoryLinks>
<categoryLink id="80a8-0eca-f968-eb5e" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" targetId="5d76b6f5-20ae-4d70-8f59-ade72a2add3a" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="1a16-6156-8755-2d2d" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" collective="false" import="true" targetId="7b8e-775e-8a0f-4455" type="selectionEntry">
<categoryLinks>
<categoryLink id="0873-36c7-0f8d-c6f7" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" targetId="5d76b6f5-20ae-4d70-8f59-ade72a2add3a" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="ede8-5449-706a-3b2e" name="Obelisk" publicationId="61c6-c8c5-pubN65537" hidden="false" collective="false" import="true" targetId="cc7e-cf76-2672-4cb3" type="selectionEntry">
<categoryLinks>
<categoryLink id="21c1-4846-cdfa-c230" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" targetId="c888f08a-6cea-4a01-8126-d374a9231554" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="9301-fe25-445a-7597" name="Annihilation Barge" publicationId="61c6-c8c5-pubN65537" hidden="false" collective="false" import="true" targetId="5cb8-4a5a-700e-9ed5" type="selectionEntry">
<categoryLinks>
<categoryLink id="d435-683e-7b12-200c" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="7698-fd7d-4e23-2296" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" collective="false" import="true" targetId="e151-00eb-70a6-86b4" type="selectionEntry">
<categoryLinks>
<categoryLink id="bbcd-2d05-ba60-c092" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" targetId="c888f08a-6cea-4a01-8126-d374a9231554" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="1efc-4690-e665-2008" name="Doomsday Ark" publicationId="61c6-c8c5-pubN65537" hidden="false" collective="false" import="true" targetId="8e23-1b9d-1c2e-3e22" type="selectionEntry">
<categoryLinks>
<categoryLink id="cfcf-f5ce-e33d-f220" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="bc4f-87a3-0239-8078" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" collective="false" import="true" targetId="3281-7138-816a-c352" type="selectionEntry">
<categoryLinks>
<categoryLink id="8fa3-808d-69f4-8d47" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="7b50-e0e6-8f01-2c73" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" collective="false" import="true" targetId="77c2-dc9f-6ea0-87e4" type="selectionEntry">
<categoryLinks>
<categoryLink id="e074-3f9d-445e-b3bc" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="4ccd-9b8e-ab98-1790" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" collective="false" import="true" targetId="0c81-a7d9-3e6a-1382" type="selectionEntry">
<categoryLinks>
<categoryLink id="8f45-f286-8a1e-055f" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="52cd-1d32-8d8f-fd43" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" collective="false" import="true" targetId="020f-7722-666a-dcef" type="selectionEntry">
<categoryLinks>
<categoryLink id="364c-293f-f4c3-2d32" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="62e9-b81a-964e-6c01" name="Canoptek Scarabs" publicationId="61c6-c8c5-pubN65537" hidden="false" collective="false" import="true" targetId="639d-ef1c-b19a-8e55" type="selectionEntry">
<categoryLinks>
<categoryLink id="fa0d-65ff-cc78-68a5" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" targetId="c274d0b0-5866-44bc-9810-91c136ae7438" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="8783-1c48-e196-a647" name="Destroyers" publicationId="61c6-c8c5-pubN65537" hidden="false" collective="false" import="true" targetId="ced3-4ec4-60ec-b671" type="selectionEntry">
<categoryLinks>
<categoryLink id="c518-7787-eaeb-d68d" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" targetId="c274d0b0-5866-44bc-9810-91c136ae7438" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="21ef-3001-d437-6cde" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" collective="false" import="true" targetId="86e5-0d3d-cacc-2c2c" type="selectionEntry">
<categoryLinks>
<categoryLink id="8281-2659-b671-2dc3" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" targetId="c274d0b0-5866-44bc-9810-91c136ae7438" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="cdbb-57fe-7a05-0914" name="Canoptek Wraiths" publicationId="61c6-c8c5-pubN65537" hidden="false" collective="false" import="true" targetId="2ca1-0513-62e6-1e27" type="selectionEntry">
<categoryLinks>
<categoryLink id="f97e-649f-8386-b2c9" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" targetId="c274d0b0-5866-44bc-9810-91c136ae7438" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="2ba8-60a4-9264-58c4" name="Night Scythe" publicationId="61c6-c8c5-pubN65537" hidden="false" collective="false" import="true" targetId="2400-5523-7510-a2b6" type="selectionEntry">
<categoryLinks>
<categoryLink id="16ca-adae-9f26-22ea" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" targetId="e888-1504-aa61-95ff" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="4909-4acb-02fa-3167" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" collective="false" import="true" targetId="3e0e-abf2-af4a-3a0b" type="selectionEntry">
<categoryLinks>
<categoryLink id="a2a5-2771-60b1-d2b2" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" targetId="e888-1504-aa61-95ff" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="6e97-37fd-085b-2a8f" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" collective="false" import="true" targetId="9cc2-e8ba-eea4-a6db" type="selectionEntry">
<categoryLinks>
<categoryLink id="9ca7-6521-0640-6cb3" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" targetId="1b66-3f5f-6705-079a" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="bff2-9347-e4c1-c374" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" collective="false" import="true" targetId="d056-a895-41b3-fe0f" type="selectionEntry">
<categoryLinks>
<categoryLink id="b8b4-601d-cab2-94fc" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="3b57-5ce5-fd1e-e287" name="C'tan Shard of the Deceiver" publicationId="61c6-c8c5-pubN65537" hidden="false" collective="false" import="true" targetId="561d-83f5-ee13-fdfc" type="selectionEntry">
<categoryLinks>
<categoryLink id="c2bc-58c0-98cf-34ae" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="5744-307f-4d21-e12a" name="C'tan Shard of the Nightbringer" publicationId="61c6-c8c5-pubN65537" hidden="false" collective="false" import="true" targetId="1d78-a116-94c1-2631" type="selectionEntry">
<categoryLinks>
<categoryLink id="0133-d68a-fb3d-588f" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="b220-36b0-daf6-b0fe" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" collective="false" import="true" targetId="8bc0-df6f-0e3f-7410" type="selectionEntry">
<categoryLinks>
<categoryLink id="0846-ebff-6d35-5ca2" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="3321-873b-cba7-c44a" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" collective="false" import="true" targetId="96eb-eb3c-9a92-930f" type="selectionEntry">
<categoryLinks>
<categoryLink id="7623-c0fc-02f5-9549" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="eed6-d988-917d-d4cf" name="Deathmarks" publicationId="61c6-c8c5-pubN65537" hidden="false" collective="false" import="true" targetId="044b-987c-b28c-244f" type="selectionEntry">
<categoryLinks>
<categoryLink id="f4a5-1af2-b3f8-294a" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="2d82-9f81-affa-770b" name="Lychguard" publicationId="61c6-c8c5-pubN65537" hidden="false" collective="false" import="true" targetId="6299-dc56-da5d-5b0f" type="selectionEntry">
<categoryLinks>
<categoryLink id="ee88-ffbe-7126-34ac" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="c2e3-32a9-23f5-72f6" name="Anrakyr the Traveller" publicationId="61c6-c8c5-pubN65537" hidden="false" collective="false" import="true" targetId="7fab-f8ff-90cc-2858" type="selectionEntry">
<categoryLinks>
<categoryLink id="3fcb-56cf-f2d1-1df5" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="7018-4073-21a8-6b58" name="Catacomb Command Barge" publicationId="61c6-c8c5-pubN65537" hidden="false" collective="false" import="true" targetId="5333-92ea-fc60-0253" type="selectionEntry">
<categoryLinks>
<categoryLink id="1b47-1d63-e407-75ce" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="313c-db53-3202-089f" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" collective="false" import="true" targetId="00c8-26f8-e8b4-b58c" type="selectionEntry">
<categoryLinks>
<categoryLink id="0f2e-2f96-155d-69fd" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="e24c-a712-f25f-083c" name="Orikan the Diviner" publicationId="61c6-c8c5-pubN65537" hidden="false" collective="false" import="true" targetId="de91-4514-2040-fe63" type="selectionEntry">
<categoryLinks>
<categoryLink id="82d2-59b8-fb47-c606" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="05d4-25cb-99f7-e683" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" collective="false" import="true" targetId="2b74-5621-5b41-730f" type="selectionEntry">
<categoryLinks>
<categoryLink id="5e52-72ef-3e60-6bec" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="862e-bc17-c08d-ec21" name="Plasmancer" publicationId="61c6-c8c5-pubN65537" hidden="false" collective="false" import="true" targetId="e5d8-d5a6-55bf-e6fa" type="selectionEntry">
<categoryLinks>
<categoryLink id="3f03-a749-c05d-36e0" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="e049-7c54-0241-a3a7" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" collective="false" import="true" targetId="4d88-448b-d4cd-feb0" type="selectionEntry">
<categoryLinks>
<categoryLink id="55cb-e4d9-5c98-e8e8" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="4545-2a14-0483-1ec3" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" collective="false" import="true" targetId="e6de-4de0-e695-be74" type="selectionEntry">
<categoryLinks>
<categoryLink id="cebc-9475-d769-1bd0" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="e661-3017-108c-fe24" name="Destroyer Lord" publicationId="61c6-c8c5-pubN65537" hidden="false" collective="false" import="true" targetId="2bb9-8708-45fb-e5f1" type="selectionEntry">
<categoryLinks>
<categoryLink id="6ba7-642e-e3b9-2cdc" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="779d-6b0c-bd05-ff15" name="(FW) Tesseract Ark" hidden="false" collective="false" import="true" targetId="4a66-b1ac-dd95-09e8" type="selectionEntry">
<categoryLinks>
<categoryLink id="1506-80dc-8c86-699e" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="9944-96b4-0d87-42c3" name="(FW) Tomb Citadel" hidden="false" collective="false" import="true" targetId="81a5-c41a-bd50-7ac1" type="selectionEntry">
<categoryLinks>
<categoryLink id="742d-f77c-0f56-d899" name="New CategoryLink" hidden="false" targetId="d713cda3-5d0f-40d8-b621-69233263ec2a" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="bace-93fc-0ac1-9a21" name="Canoptek Tomb Stalker" hidden="false" collective="false" import="true" targetId="5a06-48ea-87a1-7a42" type="selectionEntry">
<categoryLinks>
<categoryLink id="6a51-3e50-6894-4f03" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="58f0-83aa-3fd9-e5a4" name="(FW) Canoptek Tomb Sentinel" hidden="false" collective="false" import="true" targetId="f821-cc14-9ff6-8a92" type="selectionEntry">
<categoryLinks>
<categoryLink id="694b-5a56-669f-c4df" name="New CategoryLink" hidden="false" targetId="c274d0b0-5866-44bc-9810-91c136ae7438" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="22f3-b6b5-8a06-9ba1" name="Canoptek Acanthrites" hidden="false" collective="false" import="true" targetId="6315-999a-c664-5f14" type="selectionEntry">
<categoryLinks>
<categoryLink id="251f-f62f-d507-0b41" name="New CategoryLink" hidden="false" targetId="c274d0b0-5866-44bc-9810-91c136ae7438" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="35d7-b322-5337-fa1b" name="Night Shroud" hidden="false" collective="false" import="true" targetId="e90a-0682-0e25-a166" type="selectionEntry">
<categoryLinks>
<categoryLink id="229f-a5cd-5237-6da1" name="New CategoryLink" hidden="false" targetId="e888-1504-aa61-95ff" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="e4f4-279f-e964-7a8a" name="Sentry Pylon" hidden="false" collective="false" import="true" targetId="20bc-e403-d208-75e2" type="selectionEntry">
<categoryLinks>
<categoryLink id="2d45-00c6-0e5e-fa66" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="66a9-c2ef-430a-b209" name="(FW) Toholk the Blinded" hidden="false" collective="false" import="true" targetId="f40d-d7dc-c067-37bf" type="selectionEntry">
<categoryLinks>
<categoryLink id="85ce-10d6-5233-696c" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="6553-e4a2-a3bc-7e40" name="(FW) Kutlakh the World Killer" hidden="false" collective="false" import="true" targetId="1abe-ecae-897e-5f4d" type="selectionEntry">
<categoryLinks>
<categoryLink id="cee0-2e99-d342-5e63" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="1267-ff5f-5966-7ed8" name="(FW) Gauss Pylon" hidden="false" collective="false" import="true" targetId="d3ca-ba96-c311-27f2" type="selectionEntry">
<categoryLinks>
<categoryLink id="e2fa-7d8c-8653-e9b1" name="New CategoryLink" hidden="false" targetId="c888f08a-6cea-4a01-8126-d374a9231554" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="88cf-0268-d881-3228" name="Dynastic Code" hidden="false" collective="false" import="true" targetId="414b-8673-944b-f0c9" type="selectionEntry">
<categoryLinks>
<categoryLink id="7f78-ffe3-a08d-a013" name="New CategoryLink" hidden="false" targetId="fcff-0f21-93e6-1ddc" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="64e0-a1f9-bc87-8bab" name="Dynastic Heirlooms" hidden="false" collective="false" import="true" targetId="7eda-575b-b0da-408e" type="selectionEntry">
<categoryLinks>
<categoryLink id="3299-eeca-1ed7-9472" name="New CategoryLink" hidden="false" targetId="c845-c72c-6afe-3fc2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="500e-d0e1-2955-a9ae" name="[Reference] Powers of the C'tan (All)" hidden="false" collective="false" import="true" targetId="c5f8-6313-c05c-dfef" type="selectionEntry">
<categoryLinks>
<categoryLink id="c278-29d8-4d5f-dc23" name="New CategoryLink" hidden="false" targetId="fcff-0f21-93e6-1ddc" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="f521-9c3d-af74-5963" name="Warlord Traits (All)" hidden="false" collective="false" import="true" targetId="6a58-7b60-39f0-eeb8" type="selectionEntry">
<categoryLinks>
<categoryLink id="ad4e-a636-0500-0378" name="New CategoryLink" hidden="false" targetId="fcff-0f21-93e6-1ddc" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="2ece-adf6-a8e9-8ce6" name="Fractured Personalities (All)" hidden="false" collective="false" import="true" targetId="5841-64f7-b88d-7840" type="selectionEntry">
<categoryLinks>
<categoryLink id="8096-3857-af44-8921" name="New CategoryLink" hidden="false" targetId="fcff-0f21-93e6-1ddc" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="563e-478b-6824-f895" name="Seraptek Heavy Construct" hidden="false" collective="false" import="true" targetId="addf-105f-fd1b-c1fa" type="selectionEntry">
<categoryLinks>
<categoryLink id="aacb-3f23-07c9-303b" name="New CategoryLink" hidden="false" targetId="c888f08a-6cea-4a01-8126-d374a9231554" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="3b40-d504-de27-b9e7" name="Skorpekh Lord" publicationId="61c6-c8c5-pubN65537" hidden="false" collective="false" import="true" targetId="1a69-3fb7-b76d-3d42" type="selectionEntry">
<categoryLinks>
<categoryLink id="2b35-e763-cf7e-35d6" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="6e68-9c58-43f0-75f4" name="Cryptek" publicationId="61c6-c8c5-pubN65537" hidden="false" collective="false" import="true" targetId="af10-4dec-3975-3ba0" type="selectionEntry">
<categoryLinks>
<categoryLink id="b559-1078-417d-c86c" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="6529-0bfb-c930-bf60" name="Canoptek Reanimator" publicationId="61c6-c8c5-pubN65537" hidden="false" collective="false" import="true" targetId="9bd5-36e7-0f86-0a15" type="selectionEntry">
<categoryLinks>
<categoryLink id="15f7-7ff5-ada5-2334" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="ba2f-c971-5074-af80" name="Skorpekh Destroyers" publicationId="61c6-c8c5-pubN65537" hidden="false" collective="false" import="true" targetId="d299-f0d3-9a93-5bbc" type="selectionEntry">
<categoryLinks>
<categoryLink id="4154-f713-4593-138b" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="3ca5-a7bb-43d2-b5ab" name="Cryptothralls" publicationId="61c6-c8c5-pubN65537" hidden="false" collective="false" import="true" targetId="b1fa-bf34-e03a-851e" type="selectionEntry">
<modifierGroups>
<modifierGroup>
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="44da-9aaf-181b-5ece" type="instanceOf"/>
</conditions>
<modifiers>
<modifier type="remove" field="category" value="ff36a6f3-19bf-4f48-8956-adacfd28fe74"/>
<modifier type="set-primary" field="category" value="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2"/>
</modifiers>
</modifierGroup>
</modifierGroups>
<categoryLinks>
<categoryLink id="2438-b248-59c4-be2e" name="New CategoryLink" hidden="false" targetId="ff36a6f3-19bf-4f48-8956-adacfd28fe74" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="40a6-93d6-6988-eefd" name="Royal Warden" publicationId="61c6-c8c5-pubN65537" hidden="false" collective="false" import="true" targetId="c2d7-4738-28d5-fd04" type="selectionEntry">
<categoryLinks>
<categoryLink id="06d8-0e0e-0760-7b63" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="da89-5bce-d0b5-bf7c" name="Overlord (Indomitus)" publicationId="61c6-c8c5-pubN65537" hidden="false" collective="false" import="true" targetId="be8b-e83a-4850-3085" type="selectionEntry">
<categoryLinks>
<categoryLink id="f6c6-49d4-3fa4-bdb5" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="05ea-09b6-bd88-84f3" name="Necron Warriors (Indomitus)" publicationId="61c6-c8c5-pubN65537" hidden="false" collective="false" import="true" targetId="e0dd-9cd5-7551-be92" type="selectionEntry">
<categoryLinks>
<categoryLink id="7b7e-4836-ec73-6dbd" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" targetId="5d76b6f5-20ae-4d70-8f59-ade72a2add3a" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="2608-5937-231a-471e" name="Canoptek Scarab Swarms (Indomitus)" publicationId="61c6-c8c5-pubN65537" hidden="false" collective="false" import="true" targetId="544d-10ba-7176-4360" type="selectionEntry">
<categoryLinks>
<categoryLink id="66b6-5edb-d39f-cbd5" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" targetId="c274d0b0-5866-44bc-9810-91c136ae7438" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
<sharedSelectionEntries>
<selectionEntry id="e151-00eb-70a6-86b4" name="Tesseract Vault" publicationId="61c6-c8c5-pubN65537" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="387c-8e4c-e076-e088" name="Tesseract Vault" publicationId="61c6-c8c5-pubN65537" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">*</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">6+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">*</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">8</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">7</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">28</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">3</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">10</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
<profile id="4aa6-7472-a532-e277" name="Powers of the C'tan (Vault)" publicationId="61c6-c8c5-pubN65537" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">This model knows four Powers of the C'tan. It can use a number of different Powers of the C’tan equal to the number in the damage table above at the end of each of your Movement phases.</characteristic>
</characteristics>
</profile>
<profile id="67e4-e6c3-f708-4798" name="Vengeance of the Enchained" publicationId="61c6-c8c5-pubN65537" hidden="false" typeId="1c4c-8a58-c471-95e3" typeName="Explosion">
<characteristics>
<characteristic name="Dice Roll" typeId="b7f3-3402-2a25-e471">4+</characteristic>
<characteristic name="Distance" typeId="8d02-35aa-f965-f087">2D6"</characteristic>
<characteristic name="Mortal Wounds" typeId="c9af-8cce-c37c-7792">D6</characteristic>
</characteristics>
</profile>
<profile id="acd3-bef9-62f5-1edf" name="Tesseract Vault Track 1" publicationId="61c6-c8c5-pubN65537" hidden="false" typeId="7c4c-335c-5534-07fe" typeName="Wound Track (Vault)">
<characteristics>
<characteristic name="Remaining W" typeId="dc1b-4042-e901-b636">15-28+</characteristic>
<characteristic name="M" typeId="3807-4d6b-aff9-f032">8"</characteristic>
<characteristic name="BS" typeId="657c-d5ac-5b6a-cd4a">3+</characteristic>
<characteristic name="Powers of the C'tan" typeId="1929-ba50-9d3a-de2a">3</characteristic>
</characteristics>
</profile>
<profile id="2528-95f1-108e-cd52" name="Tesseract Vault Track 2" publicationId="61c6-c8c5-pubN65537" hidden="false" typeId="7c4c-335c-5534-07fe" typeName="Wound Track (Vault)">
<characteristics>
<characteristic name="Remaining W" typeId="dc1b-4042-e901-b636">8-14</characteristic>
<characteristic name="M" typeId="3807-4d6b-aff9-f032">6"</characteristic>
<characteristic name="BS" typeId="657c-d5ac-5b6a-cd4a">4+</characteristic>
<characteristic name="Powers of the C'tan" typeId="1929-ba50-9d3a-de2a">2</characteristic>
</characteristics>
</profile>
<profile id="861f-c978-0da2-18ad" name="Tesseract Vault Track 3" publicationId="61c6-c8c5-pubN65537" hidden="false" typeId="7c4c-335c-5534-07fe" typeName="Wound Track (Vault)">
<characteristics>
<characteristic name="Remaining W" typeId="dc1b-4042-e901-b636">1-7</characteristic>
<characteristic name="M" typeId="3807-4d6b-aff9-f032">4"</characteristic>
<characteristic name="BS" typeId="657c-d5ac-5b6a-cd4a">5+</characteristic>
<characteristic name="Powers of the C'tan" typeId="1929-ba50-9d3a-de2a">1</characteristic>
</characteristics>
</profile>
<profile id="c784-8d01-4ddd-3e56" name="Transtemporal Force Field" publicationId="61c6-c8c5-pubN65537" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">This model has a 4+ invulnerable save.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="7504-327b-c5bb-c35e" name="Living Metal" publicationId="61c6-c8c5-pubN65537" hidden="false" targetId="601f-ad02-3e1f-fcc4" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="b243-f93c-c0f8-6f99" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" targetId="6a37-4c9f-a323-a8f2" primary="false"/>
<categoryLink id="3a70-8364-0a4d-5b43" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" targetId="f9fc-440b-8d07-a569" primary="false"/>
<categoryLink id="a8e6-5eb3-e4b2-2d51" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" targetId="876e-ea78-1fdf-f250" primary="false"/>
<categoryLink id="4c67-1b6c-8917-c98e" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" targetId="3117-16d8-fcef-4f56" primary="false"/>
<categoryLink id="52d7-d813-1ea0-d435" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" targetId="23c9-73a1-47bb-2416" primary="false"/>
<categoryLink id="728d-b913-498e-b365" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" targetId="bdda-36f0-4f32-1639" primary="false"/>
<categoryLink id="836d-09b8-5696-a01d" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="94ca-1753-849b-84dc" name="Tesla Sphere" publicationId="61c6-c8c5-pubN65537" hidden="false" collective="false" import="true" targetId="7f44-2a1f-a127-3e29" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="4.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3721-bad1-9f8d-2adb" type="max"/>
<constraint field="selections" scope="parent" value="4.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d9fa-20bb-a116-4300" type="min"/>
</constraints>
</entryLink>
<entryLink id="6744-11ec-d0ce-ddbc" name="Powers of the C'tan" publicationId="61c6-c8c5-pubN65537" hidden="false" collective="false" import="true" targetId="9b2f-f008-3b57-fc1c" type="selectionEntryGroup"/>
<entryLink id="67e8-2075-fab4-29ec" name="Has Battle Honours" hidden="false" collective="false" import="true" targetId="4763-757f-499f-d998" type="selectionEntry"/>
<entryLink id="a090-a03a-34bc-8b4e" name="Battle Honours" hidden="false" collective="false" import="true" targetId="5518-d0f5-a880-d71c" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="28.0"/>
<cost name="pts" typeId="points" value="550.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="ea9b-4e8a-12f5-273c" name="Imotekh the Stormlord" publicationId="61c6-c8c5-pubN65537" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="414b-8673-944b-f0c9" type="atLeast"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="f6ea-beff-a150-f095" type="lessThan"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="8266-5d5d-6245-cf9e" type="lessThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="set" field="2d3b-b544-ad49-fb75" value="1">
<conditions>
<condition field="selections" scope="ea9b-4e8a-12f5-273c" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="8056-ce75-9ad4-f269" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9bcb-660e-cf31-5e05" type="max"/>
</constraints>
<profiles>
<profile id="3e80-fb98-2d74-6ab2" name="Imotekh the Stormlord" publicationId="61c6-c8c5-pubN65537" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">5"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">2+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">2+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">5</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">5</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">6</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">3</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">10</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">2+</characteristic>
</characteristics>
</profile>
<profile id="0596-131a-3fa6-eb70" name="Bloodswarm Nanoscarabs" publicationId="61c6-c8c5-pubN65537" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">You can re-roll hit rolls of 1 for friendly units of SAUTEKH Flayed Ones that are within 12" of Imotekh the Stormlord.</characteristic>
</characteristics>
</profile>
<profile id="11e5-4ca1-fc75-c4f3" name="Lord of the Storm" publicationId="61c6-c8c5-pubN65537" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">Once per battle in your Shooting phase, Imotekh can call the storm: when he does so pick an enemy unit within 48" of Imotekh, other than a CHARACTER, and roll a D6. On a 2+ that unit suffers that many mortal wounds. Then roll a D6 for each enemy unit within 6" of that unit; on a 6 the unit being rolled for suffers D3 mortal wounds.</characteristic>
</characteristics>
</profile>
<profile id="e357-2a5e-a786-a091" name="My Will Be Done (Imotekh)" publicationId="61c6-c8c5-pubN65537" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">At the beginning of your turn, choose a friendly NECRONS INFANTRY unit within 6" of Imotekh the Stormlord. Add 1 to Advance, Charge, and Hit rolls for that unit until the beginning of your next turn. A unit can only be chosen as the target of this ability once in each turn.</characteristic>
</characteristics>
</profile>
<profile id="ffea-19e9-cd18-0697" name="Undying" publicationId="61c6-c8c5-pubN65537" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">Imotekh the Stormlord regains D3 lost wounds at the beginning of your turn, rather than 1, from his Living Metal ability.</characteristic>
</characteristics>
</profile>
<profile id="0ddf-360e-a931-f4b6" name="Grand Strategist" publicationId="61c6-c8c5-pubN65537" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<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="8056-ce75-9ad4-f269" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">If your army is Battle-forged, you receive 1 additional Command Point if Imotekh the Stormlord is your Warlord.</characteristic>
</characteristics>
</profile>
<profile id="5d30-6e84-6148-3610" name="Phaeron of the Sautekh Dynasty" publicationId="61c6-c8c5-pubN65537" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">Imhotekh the Stormlord can use his My Will Be Done ability twice a turn, but only if you choose friendly SAUTEKH INFANTRY units to be affected by it both times.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="cafe-6f7d-e95d-bf65" name="Living Metal" publicationId="61c6-c8c5-pubN65537" hidden="false" targetId="601f-ad02-3e1f-fcc4" type="rule"/>
<infoLink id="960a-026b-330e-2e39" name="Phase Shifter" publicationId="61c6-c8c5-pubN65537" hidden="false" targetId="e779-9e29-3400-0b2d" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="5a37-9a71-f242-cf51" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" targetId="876e-ea78-1fdf-f250" primary="false"/>
<categoryLink id="2119-dbb4-04d7-151a" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" targetId="ef18-746a-369f-43a4" primary="false"/>
<categoryLink id="2093-0eaa-0dfe-84a3" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="cca7-7759-104d-a58c" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" targetId="96fd-04aa-fb4f-67e6" primary="false"/>
<categoryLink id="0d48-d154-034e-8083" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" targetId="bf50-0bdf-8343-790c" primary="false"/>
<categoryLink id="d7f3-768c-1632-9ed8" name="" publicationId="61c6-c8c5-pubN65537" hidden="false" targetId="b528-ce92-37a5-48c3" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="cf02-3cae-ee00-06bb" name="Gauntlet of Fire" publicationId="61c6-c8c5-pubN65537" hidden="false" collective="false" import="true" targetId="2487-2ae4-14ba-b535" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="25ff-1365-75bf-a081" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f3bb-9fb5-b5a7-6f70" type="min"/>
</constraints>
</entryLink>
<entryLink id="9ddc-2253-441c-ffdd" name="Staff of the Destroyer" publicationId="61c6-c8c5-pubN65537" hidden="false" collective="false" import="true" targetId="4ce4-78db-10c4-f5d8" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="027e-c044-ac79-d2bb" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d5be-d7c9-7520-e88c" type="min"/>
</constraints>
</entryLink>
<entryLink id="d4bc-5c63-9182-ef69" name="Warlord" hidden="false" collective="false" import="true" targetId="8056-ce75-9ad4-f269" type="selectionEntry"/>
<entryLink id="dc42-62e7-658e-4459" name="Warlord Trait" hidden="false" collective="false" import="true" targetId="b2fe-266b-aa72-ef6d" type="selectionEntryGroup">
<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="8056-ce75-9ad4-f269" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
</entryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="8.0"/>
<cost name="pts" typeId="points" value="150.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="7f44-2a1f-a127-3e29" name="Tesla Sphere" publicationId="61c6-c8c5-pubN65537" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="075b-91a5-6752-4b9c" name="Tesla Sphere" publicationId="61c6-c8c5-pubN65537" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">24"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Assault 5</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">7</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">0</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">1</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">Each hit roll of 6+ with this weapon causes 3 hits instead of 1.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="db75-f4e0-3df1-7701" name="Warscythe" publicationId="61c6-c8c5-pubN65537" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="867c-cbb8-1e60-46cc" name="Warscythe" publicationId="61c6-c8c5-pubN65537" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">Melee</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Melee</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">+2</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-4</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">2</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="9862-c770-a8f6-af1a" name="Hyperphase Sword" publicationId="61c6-c8c5-pubN65537" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="a495-8d7e-4e23-52d8" name="Hyperphase Sword" publicationId="61c6-c8c5-pubN65537" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">Melee</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Melee</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">+1</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-3</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">1</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="73f8-2829-a5cd-ece4" name="Gauss Flayer Array" publicationId="61c6-c8c5-pubN65537" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="ce78-c9fb-0361-3cb7" name="Gauss Flayer Array" publicationId="61c6-c8c5-pubN65537" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">24"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Rapid Fire 5</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">4</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-1</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">1</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="3d35-ef91-9949-0e39" name="Death Ray" publicationId="61c6-c8c5-pubN65537" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="7766-7f77-1e21-c983" name="Death Ray" publicationId="61c6-c8c5-pubN65537" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">24"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Heavy D3</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">10</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-4</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">D6</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">Blast</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="8884-f112-ee4a-7e01" name="Doomsday Cannon" publicationId="61c6-c8c5-pubN65537" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="c1e1-7367-c08c-b476" name="Doomsday Cannon (Low Power)" publicationId="61c6-c8c5-pubN65537" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">36"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Heavy D6</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">8</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-2</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">D3</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">Blast</characteristic>
</characteristics>
</profile>
<profile id="c3fc-2a74-b4a8-aa73" name="Doomsday Cannon (High Power)" publicationId="61c6-c8c5-pubN65537" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">72"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Heavy D6</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">10</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-5</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">D6</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">Blast. A model can only fire the doomsday cannon at high power if it remained stationary in its preceding Movement phase.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="25b2-ab10-80c4-63bc" name="Eldritch Lance" publicationId="85df-1155-c986-4d71" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="a869-8fab-0289-6910" name="Eldritch Lance (Shooting)" publicationId="85df-1155-c986-4d71" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">18"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Assault D3</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">8</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-4</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">D6</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">-</characteristic>
</characteristics>
</profile>
<profile id="50f7-c36f-0507-e7b5" name="Eldritch Lance (Melee)" publicationId="85df-1155-c986-4d71" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">Melee</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Melee</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">+1</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-3</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">2</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="2487-2ae4-14ba-b535" name="Gauntlet of Fire" publicationId="61c6-c8c5-pubN65537" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="79b2-0c87-7bf3-8838" name="Gauntlet of Fire" publicationId="61c6-c8c5-pubN65537" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">8"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Assault D6</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">4</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">0</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">1</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">This weapon automatically hits its target.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="f8ac-cd96-8f08-c74b" name="Gauss Blaster" publicationId="61c6-c8c5-pubN65537" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="5a90-301c-26ea-0bea" name="Gauss Blaster" publicationId="61c6-c8c5-pubN65537" hidden="false" targetId="e837-8e96-6423-5d20" type="profile"/>
</infoLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="086d-232b-8a91-8eec" name="Gauss Flayer" publicationId="0987-4bdd-dd58-d32b" hidden="false" collective="true" import="true" type="upgrade">
<profiles>
<profile id="2931-b153-3c88-f9ea" name="Gauss Flayer" publicationId="0987-4bdd-dd58-d32b" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">24"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Rapid Fire 1</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">4</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-1</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">1</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="1329-c753-0e88-7cfd" name="Gauss Flux Arc" publicationId="61c6-c8c5-pubN65537" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="8026-455c-b210-be7d" name="Gauss Flux Arc" publicationId="61c6-c8c5-pubN65537" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">24"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Heavy 3</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">5</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-2</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">1</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="0989-cd62-df0e-b30b" name="Gaze of Death" publicationId="61c6-c8c5-pubN65537" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="55b0-ccb9-d28b-a83e" name="Gaze of Death" publicationId="61c6-c8c5-pubN65537" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">12"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Assault D6</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">*</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-4</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">D3</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">This weapon wounds on a 2+, unless it is targeting a VEHICLE, in which case it wounds on a 6+.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="ddb4-4f46-c139-d63d" name="Heat Ray" publicationId="61c6-c8c5-pubN65537" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="19d3-f2b1-db83-b654" name="Heat Ray (Dispersed)" publicationId="61c6-c8c5-pubN65537" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">8"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Heavy 2D6</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">5</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-1</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">1</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">When you use this profile, this weapon automatically hits its target.</characteristic>
</characteristics>
</profile>
<profile id="454d-2d77-073e-c291" name="Heat Ray (Focused)" publicationId="61c6-c8c5-pubN65537" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">24"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Heavy 2</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">8</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-4</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">D6</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">When you use this profile, if the target is within half range, roll two dice when inflicting damage with it and discard the lowest result.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="30.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="28cf-dd64-1b2a-c52d" name="Heavy Gauss Cannon" publicationId="61c6-c8c5-pubN65537" hidden="false" collective="true" import="true" type="upgrade">
<profiles>
<profile id="df34-6e37-b0b9-6484" name="Heavy Gauss Cannon" publicationId="61c6-c8c5-pubN65537" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">36"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Heavy 1</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">9</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-4</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">D6</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="26ad-bf23-16f5-7f91" name="Particle Beamer" publicationId="61c6-c8c5-pubN65537" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="points" value="0.0">
<conditions>
<condition field="selections" scope="ancestor" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="4a66-b1ac-dd95-09e8" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="af18-31d6-859d-6155" name="Particle Beamer" publicationId="61c6-c8c5-pubN65537" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">24"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Assault 3</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">6</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">0</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">1</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="10.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="8ca8-2b54-4f76-fa76" name="Particle Caster" publicationId="61c6-c8c5-pubN65537" hidden="false" collective="true" import="true" type="upgrade">
<profiles>
<profile id="ab61-2b68-bb0f-4484" name="Particle Caster" publicationId="61c6-c8c5-pubN65537" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>