forked from BSData/wh40k-killteam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
2021 - Hierotek Circle.cat
1632 lines (1629 loc) · 128 KB
/
2021 - Hierotek Circle.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="df2d-5e44-2aee-ee72" name="Hierotek Circle" revision="6" battleScribeVersion="2.03" library="false" gameSystemId="3b7e-7dab-f79f-2e74" gameSystemRevision="6" xmlns="http://www.battlescribe.net/schema/catalogueSchema" type="catalogue">
<categoryEntries>
<categoryEntry id="39d9-136e-171f-bc56" name="HIEROTEK CIRCLE" hidden="false"/>
<categoryEntry id="607a-a5ee-346f-8aad" name="Necron" hidden="false"/>
<categoryEntry id="ebdb-a124-b5ab-14ed" name="<Dynasty>" hidden="false"/>
<categoryEntry id="a377-ad3e-4141-00f3" name="Cryptek" hidden="false"/>
<categoryEntry id="0391-5049-fa7e-7432" name="Chronomancer" hidden="false"/>
<categoryEntry id="6a21-4d55-304e-1b5f" name="Psychomancer" hidden="false"/>
<categoryEntry id="1931-8e07-ec4e-ecca" name="Technomancer" hidden="false"/>
<categoryEntry id="8d78-afa7-1375-f596" name="Plasmacyte" hidden="false"/>
<categoryEntry id="e482-e38d-7df3-98ea" name="Accelerator" hidden="false"/>
<categoryEntry id="f8ee-347a-4698-45c5" name="Reanimator" hidden="false"/>
<categoryEntry id="3a89-f4f1-b4ac-caa1" name="Apprentek" hidden="false"/>
<categoryEntry id="5164-e254-3d24-4966" name="Deathmark" hidden="false"/>
<categoryEntry id="aa0f-6d4d-a4a3-1a50" name="Immortal" hidden="false"/>
<categoryEntry id="44de-e3cb-d918-71d1" name="Despotek" hidden="false"/>
<categoryEntry id="ceb5-82d2-9789-e290" name="Guardian" hidden="false"/>
</categoryEntries>
<forceEntries>
<forceEntry id="2938-8212-c7a7-4524" name="Hierotek Circle Kill Team" hidden="false">
<categoryLinks>
<categoryLink id="255a-8d37-0488-2e9d" name="Configuration" hidden="false" targetId="fb89-efb1-54e4-59c5" primary="false"/>
<categoryLink id="507e-1f56-ad21-7d08" name="Reference" hidden="false" targetId="322e-38ea-bf3e-c785" primary="false"/>
<categoryLink id="2da9-758a-1182-c1e3" name="Leader" hidden="false" targetId="3198-c1ce-dfd0-fb4f" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9458-484f-6b99-32f4" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="daef-58e3-5a57-f992" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="cb8f-6e39-079e-2243" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="7" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cca3-2e05-e60d-e2fc" type="min"/>
<constraint field="selections" scope="parent" value="7" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2af7-9a68-07c4-30b6" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="dd3f-9eef-92e3-9e22" name="Accelerator" hidden="false" targetId="e482-e38d-7df3-98ea" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8e68-4fe3-dc92-6400" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="28d0-20a8-ccdc-7ec8" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="c443-c114-0f9c-d267" name="Reanimator" hidden="false" targetId="f8ee-347a-4698-45c5" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7dfc-3e82-d707-0c42" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d124-9b72-2120-7541" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="cc0f-4a38-88d1-a48b" name="Apprentek" hidden="false" targetId="3a89-f4f1-b4ac-caa1" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8c8f-bc15-b8b4-18a5" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="70f5-de7f-9c31-76f8" name="Despotek" hidden="false" targetId="44de-e3cb-d918-71d1" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9702-29fe-6ef3-05f9" type="max"/>
</constraints>
</categoryLink>
</categoryLinks>
</forceEntry>
</forceEntries>
<selectionEntries>
<selectionEntry id="1df6-7eac-ff7b-4711" name="Chronomancer" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="c487-7c0a-68c1-7e9d" name="Chronomancer" hidden="false" typeId="350c-2ddd-8a24-377b" typeName="Operative">
<characteristics>
<characteristic name="M" typeId="c36f-3952-a91d-5a06">3⬤</characteristic>
<characteristic name="APL" typeId="c84a-a042-6fe6-519b">3</characteristic>
<characteristic name="GA" typeId="7a85-5063-6d1a-2a0b">1</characteristic>
<characteristic name="DF" typeId="4a18-41c1-51f2-c88c">3</characteristic>
<characteristic name="SV" typeId="dd03-76d2-dda8-eca2">3+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">13</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="0d85-3391-65e0-59e3" name="Living Metal" hidden="false" targetId="634a-444e-85d8-6a71" type="rule"/>
<infoLink id="11f1-9a7c-6a47-4e16" name="Cryptek Actions" hidden="false" targetId="5004-f129-a0b3-0c3f" type="profile"/>
<infoLink id="3342-b030-44a1-bc89" name="Magnification Conduit (Cryptek)" hidden="false" targetId="ea45-37e4-a1cf-30dc" type="profile"/>
<infoLink id="4a35-c521-2362-bba3" name="Command (0AP)" hidden="false" targetId="f785-11b2-f622-4d22" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="0b68-2d3b-c82b-d8d8" name="Leader" hidden="false" targetId="3198-c1ce-dfd0-fb4f" primary="true"/>
<categoryLink id="a6e5-446a-7e8d-e344" name="HIEROTEK CIRCLE" hidden="false" targetId="39d9-136e-171f-bc56" primary="false"/>
<categoryLink id="7fa0-2d03-9744-82bd" name="Necron" hidden="false" targetId="607a-a5ee-346f-8aad" primary="false"/>
<categoryLink id="a11c-4fb2-300b-2902" name="<Dynasty>" hidden="false" targetId="ebdb-a124-b5ab-14ed" primary="false"/>
<categoryLink id="c684-5f2e-1d36-de2f" name="Fly" hidden="false" targetId="383e-c92a-c607-c7e1" primary="false"/>
<categoryLink id="cb55-ba8c-3fd8-2a7f" name="Cryptek" hidden="false" targetId="a377-ad3e-4141-00f3" primary="false"/>
<categoryLink id="a961-3af6-f2d5-e85e" name="Chronomancer" hidden="false" targetId="0391-5049-fa7e-7432" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="e27d-9635-be23-477e" name="Weapon" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6d94-0375-4728-5e6e" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3219-3bbb-ff6f-fc5d" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="bccd-dca8-be13-7c57" name="Aeonstave" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="d109-202d-071b-cbaa" name="⌖ Aeonstave" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">5</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">3+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">3/3</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Blast ⬤, Lethal 5+</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">Stun</characteristic>
</characteristics>
</profile>
<profile id="6954-3f9c-4801-c67c" name="⚔ Aeonstave" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">3</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">3+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">3/3</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Lethal 5+</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">Stun</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="69f0-9fc4-8f73-10a9" name="Blast x" hidden="false" targetId="d848-be09-6d6d-4708" type="rule"/>
<infoLink id="d9e8-cd14-1423-1a63" name="Lethal x" hidden="false" targetId="be29-25db-e215-b3b0" type="rule"/>
<infoLink id="db75-9ede-2742-ad89" name="Stun" hidden="false" targetId="a1e3-4e0b-f7c2-eb59" type="rule"/>
</infoLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="30ff-f59d-5770-5c25" name="Entropic lance" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="d930-e675-e35c-296e" name="⌖ Entropic lance" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">3+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">5/3</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">AP1</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">MW3</characteristic>
</characteristics>
</profile>
<profile id="0d52-320c-444c-f535" name="⚔ Entropic lance" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">3</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">3+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">3/6</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">-</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="eb4c-bb1d-ef33-5b87" name="MWx" hidden="false" targetId="0d4b-7a76-d266-bcc1" type="rule"/>
<infoLink id="121b-b6d7-8406-4662" name="APx" hidden="false" targetId="db98-339e-d0a2-e042" type="rule"/>
</infoLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
<selectionEntryGroup id="2ae3-a559-44b7-fe01" name="Cryptek Actions" hidden="false" collective="false" import="true">
<modifierGroups>
<modifierGroup>
<conditions>
<condition field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="284c-dd42-3a1b-ef7e" type="equalTo"/>
</conditions>
<modifiers>
<modifier type="increment" field="b4db-d265-2780-4e5f" value="1"/>
<modifier type="increment" field="b4db-d265-2780-4e5f" value="1"/>
</modifiers>
</modifierGroup>
</modifierGroups>
<constraints>
<constraint field="selections" scope="parent" value="2" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b4db-d265-2780-4e5f" type="max"/>
<constraint field="selections" scope="parent" value="2" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a1a2-2bb8-b618-0833" type="min"/>
</constraints>
<selectionEntries>
<selectionEntry id="40ca-3fa3-ee6f-6c45" name="Timesplinter" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="52f9-c3c4-ac49-6efe" type="max"/>
</constraints>
<profiles>
<profile id="fb6c-a0b1-aa4b-ebd1" name="Timesplinter (1AP)" hidden="false" typeId="17cd-eb4c-f9cd-36f2" typeName="Unique Actions">
<characteristics>
<characteristic name="Unique Action" typeId="8d9f-0a91-4133-bc4a">Cryptek action. Select one friendly HIEROTEK CIRCLE operative Visible to and within ⬟ of this operative. Until the start of this operative’s next activation, if it’s incapacitated, or if another friendly operative performs this action (whichever comes first), that operative has an invulnerable save equal to its unmodified Save characteristic.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="9ef5-1ca3-9d74-8c90" name="Countertemporal Nanomine" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d09e-c7d6-f114-8683" type="max"/>
</constraints>
<profiles>
<profile id="2112-1e32-ccb7-17fb" name="Countertemporal Nanomine (1AP)" hidden="false" typeId="17cd-eb4c-f9cd-36f2" typeName="Unique Actions">
<characteristics>
<characteristic name="Unique Action" typeId="8d9f-0a91-4133-bc4a">Cryptek action. Place one of your Countertemporal Nanomine tokens within ⬟ of this operative. Each time an enemy operative performs an action in which it moves, if it would move within ⬛ of that token, subtract ⬤ from the distance it can move during that action (to a minimum of 2⬤). At the start of this operative’s next activation, if it’s incapacitated, or if another friendly operative performs this action (whichever comes first), remove that token.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="1366-5604-680c-bfa4" name="Chronometron" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d5a6-6daa-ee7d-c841" type="max"/>
</constraints>
<profiles>
<profile id="d278-3270-2c9d-ddd4" name="Chronometron (1AP)" hidden="false" typeId="17cd-eb4c-f9cd-36f2" typeName="Unique Actions">
<characteristics>
<characteristic name="Unique Action" typeId="8d9f-0a91-4133-bc4a">Cryptek action. Select one friendly HIEROTEK CIRCLE operative Visible to and within ⬟ of this operative. Until the start of this operative’s next activation, if it’s incapacitated, or if another friendly operative performs this action (whichever comes first):
- Add ⬛ to that operative's Movement characteristic.
- Each time that operative would lose a wound, roll one D6: on a 5+. that wound is not lost.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="7abd-9179-dc80-514d" name="Equipment" hidden="false" collective="false" import="true" targetId="8ed4-2694-4144-20af" type="selectionEntryGroup"/>
<entryLink id="7d4f-12eb-6e68-d4ef" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="476e-aff8-90f8-5715" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
<entryLink id="0d2b-969a-1075-038b" name="Specialism" hidden="false" collective="false" import="true" targetId="5fc7-0109-a88e-9e8e" type="selectionEntryGroup"/>
<entryLink id="e5a1-b792-fed6-065a" name="Battle Honours - Marksman" hidden="false" collective="false" import="true" targetId="e84e-ae34-82a8-57b0" type="selectionEntryGroup">
<entryLinks>
<entryLink id="f5f9-0b58-a07e-5437" name="Cryptek 1 - Controlling" hidden="false" collective="false" import="true" targetId="cc6e-8caa-5302-eb5a" type="selectionEntry"/>
<entryLink id="0ae6-e703-64b9-f2c5" name="Cryptek 2 - Ingenious" hidden="false" collective="false" import="true" targetId="284c-dd42-3a1b-ef7e" type="selectionEntry"/>
<entryLink id="3c63-e24a-0fa6-6d40" name="Cryptek 3 - Collector" hidden="false" collective="false" import="true" targetId="f248-e5e1-b4a1-898a" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="dc3a-d717-eaa2-2a5b" name="Battle Honours - Staunch" hidden="false" collective="false" import="true" targetId="93ec-2874-675e-b46e" type="selectionEntryGroup">
<entryLinks>
<entryLink id="5c05-9820-85db-bc44" name="Cryptek 1 - Controlling" hidden="false" collective="false" import="true" targetId="cc6e-8caa-5302-eb5a" type="selectionEntry"/>
<entryLink id="c5ec-3a75-b067-2770" name="Cryptek 2 - Ingenious" hidden="false" collective="false" import="true" targetId="284c-dd42-3a1b-ef7e" type="selectionEntry"/>
<entryLink id="8859-f0db-7acb-7d91" name="Cryptek 3 - Collector" hidden="false" collective="false" import="true" targetId="f248-e5e1-b4a1-898a" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="0ef3-1711-1fdd-31ed" name="Battle Honours - Scout" hidden="false" collective="false" import="true" targetId="94bd-d409-fda3-9f9f" type="selectionEntryGroup">
<entryLinks>
<entryLink id="c42a-5175-d35c-e397" name="Cryptek 1 - Controlling" hidden="false" collective="false" import="true" targetId="cc6e-8caa-5302-eb5a" type="selectionEntry"/>
<entryLink id="a8bb-7022-68e9-3f63" name="Cryptek 2 - Ingenious" hidden="false" collective="false" import="true" targetId="284c-dd42-3a1b-ef7e" type="selectionEntry"/>
<entryLink id="2001-84f3-415c-02dc" name="Cryptek 3 - Collector" hidden="false" collective="false" import="true" targetId="f248-e5e1-b4a1-898a" type="selectionEntry"/>
</entryLinks>
</entryLink>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="5c26-4058-c06a-cc15" name="Psychomancer" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="59e1-ff62-75de-cb06" name="Psychomancer" hidden="false" typeId="350c-2ddd-8a24-377b" typeName="Operative">
<characteristics>
<characteristic name="M" typeId="c36f-3952-a91d-5a06">3⬤</characteristic>
<characteristic name="APL" typeId="c84a-a042-6fe6-519b">3</characteristic>
<characteristic name="GA" typeId="7a85-5063-6d1a-2a0b">1</characteristic>
<characteristic name="DF" typeId="4a18-41c1-51f2-c88c">3</characteristic>
<characteristic name="SV" typeId="dd03-76d2-dda8-eca2">3+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">13</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="4310-88bb-bb15-1901" name="Cryptek Actions" hidden="false" targetId="5004-f129-a0b3-0c3f" type="profile"/>
<infoLink id="6b45-09bb-be3d-69f4" name="Magnification Conduit (Cryptek)" hidden="false" targetId="ea45-37e4-a1cf-30dc" type="profile"/>
<infoLink id="caf1-aae2-8517-c930" name="Living Metal" hidden="false" targetId="634a-444e-85d8-6a71" type="rule"/>
<infoLink id="e6d0-d78e-7d87-d99a" name="Command (0AP)" hidden="false" targetId="f785-11b2-f622-4d22" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="a66e-16db-c919-50e8" name="Leader" hidden="false" targetId="3198-c1ce-dfd0-fb4f" primary="true"/>
<categoryLink id="0e35-3eaf-fc04-928e" name="HIEROTEK CIRCLE" hidden="false" targetId="39d9-136e-171f-bc56" primary="false"/>
<categoryLink id="5e2e-d382-7f92-eb52" name="Necron" hidden="false" targetId="607a-a5ee-346f-8aad" primary="false"/>
<categoryLink id="258c-1e4b-c19b-0565" name="<Dynasty>" hidden="false" targetId="ebdb-a124-b5ab-14ed" primary="false"/>
<categoryLink id="e072-573e-96d8-0827" name="Fly" hidden="false" targetId="383e-c92a-c607-c7e1" primary="false"/>
<categoryLink id="fece-f926-1faa-d8c5" name="Cryptek" hidden="false" targetId="a377-ad3e-4141-00f3" primary="false"/>
<categoryLink id="a6ce-1006-c44b-75b0" name="Psychomancer" hidden="false" targetId="6a21-4d55-304e-1b5f" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="d870-93e8-dbe4-62d0" name="Abyssal lance" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d14b-4e3d-78bb-63d7" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c4a4-4802-d4b0-d202" type="max"/>
</constraints>
<profiles>
<profile id="8827-7817-9c95-6d2f" name="⚔ Abyssal lance" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">3</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">3+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">2/3</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">-</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">Reap 3</characteristic>
</characteristics>
</profile>
<profile id="f1a6-88e2-d304-f794" name="⌖ Abyssal lance" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">5</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">3+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">2/2</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">AP2, Blast ⬤</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">Splash 1</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="776b-0da0-9992-ce80" name="APx" hidden="false" targetId="db98-339e-d0a2-e042" type="rule"/>
<infoLink id="2de1-660c-ca2d-d681" name="Splash x" hidden="false" targetId="eab8-73f5-feed-5924" type="rule"/>
<infoLink id="d29c-8032-a86a-b5e3" name="Blast x" hidden="false" targetId="d848-be09-6d6d-4708" type="rule"/>
<infoLink id="3dae-e9c7-c233-4e77" name="Reap x" hidden="false" targetId="bed1-0d23-de84-30a1" type="rule"/>
</infoLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="c506-bb33-1b46-fb9b" name="Cryptek Actions" hidden="false" collective="false" import="true">
<modifierGroups>
<modifierGroup>
<conditions>
<condition field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="284c-dd42-3a1b-ef7e" type="equalTo"/>
</conditions>
<modifiers>
<modifier type="increment" field="2817-877c-a56d-61dd" value="1"/>
<modifier type="increment" field="8439-0208-b6b0-0423" value="1"/>
</modifiers>
</modifierGroup>
</modifierGroups>
<constraints>
<constraint field="selections" scope="parent" value="2" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2817-877c-a56d-61dd" type="max"/>
<constraint field="selections" scope="parent" value="2" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8439-0208-b6b0-0423" type="min"/>
</constraints>
<selectionEntries>
<selectionEntry id="42d7-1558-1422-f913" name="Nightmare Shroud" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6db1-4aef-2c51-a271" type="max"/>
</constraints>
<profiles>
<profile id="f8fb-f4b8-72af-d440" name="Nightmare Shroud (1AP)" hidden="false" typeId="17cd-eb4c-f9cd-36f2" typeName="Unique Actions">
<characteristics>
<characteristic name="Unique Action" typeId="8d9f-0a91-4133-bc4a">Cryptek action. Until the start of this operative’s next activation, if it’s incapacitated, or if another friendly operative performs this action (whichever comes first), each time an enemy operative within ⬟ of this operative fights in combat or makes a shooting attack, in the Roll Attack Dice step of that combat or shooting attack, your opponent cannot re-roll their attack dice and cannot retain attack dice as critical hits (they must be retained as normal hits instead).</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="9ce2-33b5-b1d1-5ddc" name="Harbinger of Despair" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5848-eced-00bf-3696" type="max"/>
</constraints>
<profiles>
<profile id="f93c-2d23-603c-d436" name="Harbinger of Despair (1AP)" hidden="false" typeId="17cd-eb4c-f9cd-36f2" typeName="Unique Actions">
<characteristics>
<characteristic name="Unique Action" typeId="8d9f-0a91-4133-bc4a">Cryptek action. Select a point in the killzone Visible to this operative (treat that point as an intended target) that a token can be placed flat upon, e.g. the floor of the killzone or a Vantage Point. Place one of your Despair tokens on that point. Each time an enemy operative would perform a mission action or the Pick Up action while within ⬤ of that token, one additional action point must be subtracted for that enemy operative to perform that action. In addition, when determining control of an objective marker that token is within ⬤ of, treat enemy operatives' total APL as being 1 less. Note that this is not a modifier. At the start of this operative’s next activation, if it’s incapacitated, or if another friendly operative performs this action (whichever comes first), remove that token.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="2257-9cee-721b-0c73" name="Conjure Trauma" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d2c1-de0d-90c3-6707" type="max"/>
</constraints>
<profiles>
<profile id="da8a-f6e7-cb01-7276" name="Conjure Trauma (1AP)" hidden="false" typeId="17cd-eb4c-f9cd-36f2" typeName="Unique Actions">
<characteristics>
<characteristic name="Unique Action" typeId="8d9f-0a91-4133-bc4a">Cryptek action. Select one enemy operative Visible to this operative. Until the start of this operative’s next activation, if it’s incapacitated, or if another friendly operative performs this action (whichever comes first), that operative is treated as being injured, regardless of any rules that say it cannot be injured. In addition, roll one D6. If the result is higher than that enemy operative's APL, subtract 1 from that enemy operative's APL.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="7518-0f4d-22f5-70d9" name="Equipment" hidden="false" collective="false" import="true" targetId="8ed4-2694-4144-20af" type="selectionEntryGroup"/>
<entryLink id="a703-01db-adcd-34d3" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="a04c-2c84-dbf1-d96a" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
<entryLink id="17e7-8dd8-0a23-fe10" name="Specialism" hidden="false" collective="false" import="true" targetId="5fc7-0109-a88e-9e8e" type="selectionEntryGroup"/>
<entryLink id="f322-96df-ebe0-f9a1" name="Battle Honours - Marksman" hidden="false" collective="false" import="true" targetId="e84e-ae34-82a8-57b0" type="selectionEntryGroup">
<entryLinks>
<entryLink id="d816-ec4d-ec73-2308" name="Cryptek 1 - Controlling" hidden="false" collective="false" import="true" targetId="cc6e-8caa-5302-eb5a" type="selectionEntry"/>
<entryLink id="16c5-b682-662a-95bc" name="Cryptek 2 - Ingenious" hidden="false" collective="false" import="true" targetId="284c-dd42-3a1b-ef7e" type="selectionEntry"/>
<entryLink id="b3f3-3b54-4563-75a5" name="Cryptek 3 - Collector" hidden="false" collective="false" import="true" targetId="f248-e5e1-b4a1-898a" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="2d3f-4595-e91a-d34b" name="Battle Honours - Scout" hidden="false" collective="false" import="true" targetId="94bd-d409-fda3-9f9f" type="selectionEntryGroup">
<entryLinks>
<entryLink id="968f-bc7c-9ad1-2181" name="Cryptek 1 - Controlling" hidden="false" collective="false" import="true" targetId="cc6e-8caa-5302-eb5a" type="selectionEntry"/>
<entryLink id="dda6-1140-767c-27e3" name="Cryptek 2 - Ingenious" hidden="false" collective="false" import="true" targetId="284c-dd42-3a1b-ef7e" type="selectionEntry"/>
<entryLink id="36c2-2036-8d16-380a" name="Cryptek 3 - Collector" hidden="false" collective="false" import="true" targetId="f248-e5e1-b4a1-898a" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="2dfd-ec60-b5a7-6046" name="Battle Honours - Staunch" hidden="false" collective="false" import="true" targetId="93ec-2874-675e-b46e" type="selectionEntryGroup">
<entryLinks>
<entryLink id="7657-dce1-d1d7-8e88" name="Cryptek 1 - Controlling" hidden="false" collective="false" import="true" targetId="cc6e-8caa-5302-eb5a" type="selectionEntry"/>
<entryLink id="23ea-fa4b-3970-496d" name="Cryptek 2 - Ingenious" hidden="false" collective="false" import="true" targetId="284c-dd42-3a1b-ef7e" type="selectionEntry"/>
<entryLink id="2ef1-2964-9da6-eea3" name="Cryptek 3 - Collector" hidden="false" collective="false" import="true" targetId="f248-e5e1-b4a1-898a" type="selectionEntry"/>
</entryLinks>
</entryLink>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="5d3e-afed-9ff1-9762" name="Technomancer" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="1a1a-55ac-16f9-f28a" name="Technomancer" hidden="false" typeId="350c-2ddd-8a24-377b" typeName="Operative">
<characteristics>
<characteristic name="M" typeId="c36f-3952-a91d-5a06">3⬤</characteristic>
<characteristic name="APL" typeId="c84a-a042-6fe6-519b">3</characteristic>
<characteristic name="GA" typeId="7a85-5063-6d1a-2a0b">1</characteristic>
<characteristic name="DF" typeId="4a18-41c1-51f2-c88c">3</characteristic>
<characteristic name="SV" typeId="dd03-76d2-dda8-eca2">3+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">13</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="b38b-d22c-cf5a-c29e" name="Cryptek Actions" hidden="false" targetId="5004-f129-a0b3-0c3f" type="profile"/>
<infoLink id="e8ea-a630-6f90-6315" name="Magnification Conduit (Cryptek)" hidden="false" targetId="ea45-37e4-a1cf-30dc" type="profile"/>
<infoLink id="7944-4a5a-0893-c06e" name="Living Metal" hidden="false" targetId="634a-444e-85d8-6a71" type="rule"/>
<infoLink id="bd58-18cb-2029-c413" name="Command (0AP)" hidden="false" targetId="f785-11b2-f622-4d22" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="4d96-c808-d339-fb88" name="Leader" hidden="false" targetId="3198-c1ce-dfd0-fb4f" primary="true"/>
<categoryLink id="b563-69dd-2695-a2ba" name="HIEROTEK CIRCLE" hidden="false" targetId="39d9-136e-171f-bc56" primary="false"/>
<categoryLink id="793c-dcc1-08b9-a23a" name="Necron" hidden="false" targetId="607a-a5ee-346f-8aad" primary="false"/>
<categoryLink id="5716-d141-c347-402e" name="<Dynasty>" hidden="false" targetId="ebdb-a124-b5ab-14ed" primary="false"/>
<categoryLink id="5e3a-07c7-e7e0-10f1" name="Fly" hidden="false" targetId="383e-c92a-c607-c7e1" primary="false"/>
<categoryLink id="1fbd-ab56-2577-71fa" name="Cryptek" hidden="false" targetId="a377-ad3e-4141-00f3" primary="false"/>
<categoryLink id="c70b-0375-0db6-1034" name="Technomancer" hidden="false" targetId="1931-8e07-ec4e-ecca" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="3626-0e65-0d4e-a6e1" name="Staff of light" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2243-5410-866b-86b6" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d57e-b122-0614-a870" type="max"/>
</constraints>
<profiles>
<profile id="cecc-87fc-290d-e246" name="⚔ Staff of light" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">3</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">3+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">3/5</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Lethal 5+</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
<profile id="3c23-0a10-9641-2464" name="⌖ Staff of light" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">6</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">3+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">3/4</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">AP1</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="96ea-def0-0884-c4ea" name="APx" hidden="false" targetId="db98-339e-d0a2-e042" type="rule"/>
<infoLink id="b63d-cfa5-d720-1681" name="Lethal x" hidden="false" targetId="be29-25db-e215-b3b0" type="rule"/>
</infoLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="30c1-cb82-c167-43c8" name="Cryptek Actions" hidden="false" collective="false" import="true">
<modifierGroups>
<modifierGroup>
<conditions>
<condition field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="284c-dd42-3a1b-ef7e" type="equalTo"/>
</conditions>
<modifiers>
<modifier type="increment" field="0d07-7ce6-1582-057d" value="1"/>
<modifier type="increment" field="2e6d-a468-1d84-507c" value="1"/>
</modifiers>
</modifierGroup>
</modifierGroups>
<constraints>
<constraint field="selections" scope="parent" value="2" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2e6d-a468-1d84-507c" type="max"/>
<constraint field="selections" scope="parent" value="2" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0d07-7ce6-1582-057d" type="min"/>
</constraints>
<selectionEntries>
<selectionEntry id="be79-a4a5-3079-f6ba" name="Rites of Reanimation" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5f3f-02e1-2793-6690" type="max"/>
</constraints>
<profiles>
<profile id="c6ed-6369-19e4-2ccc" name="Rites of Reanimation" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">Once in this Turning Point, when another friendly HIEROTEK CIRCLE operative would be incapacitated for the first time during the battle, if it is Visible to and within ⬟ of this operative, this operative can use this ability. If it does so, that friendly HIEROTEK CIRCLE operative attempts reanimation. Subtract 1 from this operative's APL if you use this ability.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="13e9-76f9-8adf-9151" name="Nanoscarab Repair Swarm" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="267d-5e9b-3607-1be0" type="max"/>
</constraints>
<profiles>
<profile id="d1c8-c28d-ceaf-13d8" name="Nanoscarab Repair Swarm (1AP)" hidden="false" typeId="17cd-eb4c-f9cd-36f2" typeName="Unique Actions">
<characteristics>
<characteristic name="Unique Action" typeId="8d9f-0a91-4133-bc4a">Cryptek action. Until the start of this operative’s next activation, if it’s incapacitated, or if another friendly operative performs this action (whichever comes first), friendly HIEROTEK CIRCLE operatives cannot be injured. In addition, in the Ready Operatives step of the next Turning Point, friendly HIEROTEK OPERATIVES regain up to 1 additional lost wound as a result of the Living Metal ability and are reanimated with one additional wound remaining.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="0b9c-01e8-53af-8d77" name="Canoptek Repair" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fe9c-8c90-066c-291a" type="max"/>
</constraints>
<profiles>
<profile id="74aa-38a0-1d16-35db" name="Canoptek Repair (1AP)" hidden="false" typeId="17cd-eb4c-f9cd-36f2" typeName="Unique Actions">
<characteristics>
<characteristic name="Unique Action" typeId="8d9f-0a91-4133-bc4a">Cryptek action. Select one friendly HIEROTEK CIRCLE operative Visible to and within ⬛ of this operative. That friendly operative regains 2D3 lost wounds, or D3 lost wounds if it was successfully reanimated during this Turning Point.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="794a-a033-2c0e-33a1" name="Equipment" hidden="false" collective="false" import="true" targetId="8ed4-2694-4144-20af" type="selectionEntryGroup"/>
<entryLink id="57a5-737f-a230-08b1" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="38d8-d06a-8c54-9905" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
<entryLink id="d14a-871d-84e1-33df" name="Specialism" hidden="false" collective="false" import="true" targetId="5fc7-0109-a88e-9e8e" type="selectionEntryGroup"/>
<entryLink id="f9fb-8541-815a-9ceb" name="Battle Honours - Marksman" hidden="false" collective="false" import="true" targetId="e84e-ae34-82a8-57b0" type="selectionEntryGroup">
<entryLinks>
<entryLink id="5052-4de3-34f1-de99" name="Cryptek 1 - Controlling" hidden="false" collective="false" import="true" targetId="cc6e-8caa-5302-eb5a" type="selectionEntry"/>
<entryLink id="3f28-c13a-792c-e7b8" name="Cryptek 2 - Ingenious" hidden="false" collective="false" import="true" targetId="284c-dd42-3a1b-ef7e" type="selectionEntry"/>
<entryLink id="c9f8-f1f2-f005-4d5d" name="Cryptek 3 - Collector" hidden="false" collective="false" import="true" targetId="f248-e5e1-b4a1-898a" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="8cc8-8e1d-f85f-3ebb" name="Battle Honours - Scout" hidden="false" collective="false" import="true" targetId="94bd-d409-fda3-9f9f" type="selectionEntryGroup">
<entryLinks>
<entryLink id="d315-0680-79d3-8aa5" name="Cryptek 1 - Controlling" hidden="false" collective="false" import="true" targetId="cc6e-8caa-5302-eb5a" type="selectionEntry"/>
<entryLink id="750a-c486-f299-b4f6" name="Cryptek 2 - Ingenious" hidden="false" collective="false" import="true" targetId="284c-dd42-3a1b-ef7e" type="selectionEntry"/>
<entryLink id="c34e-1c2a-f4f5-bcd7" name="Cryptek 3 - Collector" hidden="false" collective="false" import="true" targetId="f248-e5e1-b4a1-898a" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="5e29-5c96-d503-27d6" name="Battle Honours - Staunch" hidden="false" collective="false" import="true" targetId="93ec-2874-675e-b46e" type="selectionEntryGroup">
<entryLinks>
<entryLink id="8fad-ddd9-08f9-53ac" name="Cryptek 1 - Controlling" hidden="false" collective="false" import="true" targetId="cc6e-8caa-5302-eb5a" type="selectionEntry"/>
<entryLink id="74d1-18f3-49cc-38ce" name="Cryptek 2 - Ingenious" hidden="false" collective="false" import="true" targetId="284c-dd42-3a1b-ef7e" type="selectionEntry"/>
<entryLink id="fef7-6ed7-6c31-1379" name="Cryptek 3 - Collector" hidden="false" collective="false" import="true" targetId="f248-e5e1-b4a1-898a" type="selectionEntry"/>
</entryLinks>
</entryLink>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="423f-ceb4-e015-15f0" name="Plasmacyte Reanimator" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="4073-0a8b-03db-51e2" name="Plasmacyte Reanimator" hidden="false" typeId="350c-2ddd-8a24-377b" typeName="Operative">
<characteristics>
<characteristic name="M" typeId="c36f-3952-a91d-5a06">3⬤</characteristic>
<characteristic name="APL" typeId="c84a-a042-6fe6-519b">2</characteristic>
<characteristic name="GA" typeId="7a85-5063-6d1a-2a0b">1</characteristic>
<characteristic name="DF" typeId="4a18-41c1-51f2-c88c">2</characteristic>
<characteristic name="SV" typeId="dd03-76d2-dda8-eca2">5+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">5</characteristic>
</characteristics>
</profile>
<profile id="26dd-68cb-2af8-5fa3" name="Reanimation Beam" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">Once per Turning Point, when another friendly HIEROTEK CIRCLE operative would be incapacitated for the first time during the battle, if it is within ⬟ of this operative, this operative can use this ability. If it does so, that friendly HIEROTEK CIRCLE operative attempts reanimation.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="f115-f157-1b1e-a540" name="Living Metal" hidden="false" targetId="634a-444e-85d8-6a71" type="rule"/>
<infoLink id="d7a7-19d7-d04b-9ae2" name="Scuttler" hidden="false" targetId="c5ff-0034-83a1-fbc1" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="d592-6fe8-c010-9d1c" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
<categoryLink id="53c2-00d6-0bda-8a23" name="HIEROTEK CIRCLE" hidden="false" targetId="39d9-136e-171f-bc56" primary="false"/>
<categoryLink id="5a30-d0f9-2a35-f379" name="Necron" hidden="false" targetId="607a-a5ee-346f-8aad" primary="false"/>
<categoryLink id="87c4-80bd-b8d2-3fca" name="<Dynasty>" hidden="false" targetId="ebdb-a124-b5ab-14ed" primary="false"/>
<categoryLink id="d4a6-e32d-1cf6-e074" name="Fly" hidden="false" targetId="383e-c92a-c607-c7e1" primary="false"/>
<categoryLink id="90af-8415-c6df-0fe5" name="Plasmacyte" hidden="false" targetId="8d78-afa7-1375-f596" primary="false"/>
<categoryLink id="dd77-459b-e1a4-093c" name="Reanimator" hidden="false" targetId="f8ee-347a-4698-45c5" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="9728-fb52-14fc-387f" name="Spark" hidden="false" collective="false" import="true" targetId="ea7b-f48d-00b8-c855" type="selectionEntry"/>
<entryLink id="7868-5b4b-b0bf-d4ae" name="Claws" hidden="false" collective="false" import="true" targetId="ece7-f4c5-78df-0d16" type="selectionEntry"/>
<entryLink id="c5c5-9b9e-0e47-fb44" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="47b7-f582-8dde-ecd8" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
<entryLink id="bbc8-7422-6057-d0b8" name="Specialism" hidden="false" collective="false" import="true" targetId="5fc7-0109-a88e-9e8e" type="selectionEntryGroup"/>
<entryLink id="e8aa-b5bc-134d-0153" name="Battle Honours - Scout" hidden="false" collective="false" import="true" targetId="94bd-d409-fda3-9f9f" type="selectionEntryGroup">
<entryLinks>
<entryLink id="4b5b-8463-c99c-eb2f" name="Hierotek 3 - Unrelenting" hidden="false" collective="false" import="true" targetId="ef0a-ef00-d71e-4d34" type="selectionEntry"/>
<entryLink id="04d6-e965-6c3f-55fa" name="Hierotek 2 - Revenant" hidden="false" collective="false" import="true" targetId="7c79-a325-295b-1058" type="selectionEntry"/>
<entryLink id="19d9-864d-7d84-ba77" name="Hierotek 1 - Enduring" hidden="false" collective="false" import="true" targetId="db95-5eb2-d14a-63c1" type="selectionEntry"/>
</entryLinks>
</entryLink>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="72a2-69ba-cff7-1fe3" name="Plasmacyte Accelerator" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="53e5-3850-b387-9b8f" name="Plasmacyte Accelerator" hidden="false" typeId="350c-2ddd-8a24-377b" typeName="Operative">
<characteristics>
<characteristic name="M" typeId="c36f-3952-a91d-5a06">3⬤</characteristic>
<characteristic name="APL" typeId="c84a-a042-6fe6-519b">2</characteristic>
<characteristic name="GA" typeId="7a85-5063-6d1a-2a0b">1</characteristic>
<characteristic name="DF" typeId="4a18-41c1-51f2-c88c">2</characteristic>
<characteristic name="SV" typeId="dd03-76d2-dda8-eca2">5+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">5</characteristic>
</characteristics>
</profile>
<profile id="00c3-3541-ef9b-c4ba" name="Accelerate (0AP)" hidden="false" typeId="17cd-eb4c-f9cd-36f2" typeName="Unique Actions">
<characteristics>
<characteristic name="Unique Action" typeId="8d9f-0a91-4133-bc4a">Select one friendly DEATHMARK or IMMORTAL operative Visible to and within ⬟ of this operative. Add 1 to its APL.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="a085-a167-66f5-0826" name="Living Metal" hidden="false" targetId="634a-444e-85d8-6a71" type="rule"/>
<infoLink id="c1b6-9746-64ab-24ca" name="Scuttler" hidden="false" targetId="c5ff-0034-83a1-fbc1" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="bba3-edbd-0cf9-fb53" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
<categoryLink id="2840-a938-8af6-294b" name="HIEROTEK CIRCLE" hidden="false" targetId="39d9-136e-171f-bc56" primary="false"/>
<categoryLink id="ab99-80db-4970-f417" name="Necron" hidden="false" targetId="607a-a5ee-346f-8aad" primary="false"/>
<categoryLink id="bff2-0bd2-1cc1-6cf6" name="<Dynasty>" hidden="false" targetId="ebdb-a124-b5ab-14ed" primary="false"/>
<categoryLink id="7a37-a2fd-581d-5bb2" name="Fly" hidden="false" targetId="383e-c92a-c607-c7e1" primary="false"/>
<categoryLink id="f6cc-93da-8ccc-0aea" name="Plasmacyte" hidden="false" targetId="8d78-afa7-1375-f596" primary="false"/>
<categoryLink id="6d79-a24e-5dca-5931" name="Accelerator" hidden="false" targetId="e482-e38d-7df3-98ea" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="8125-dfb7-c724-f798" name="Spark" hidden="false" collective="false" import="true" targetId="ea7b-f48d-00b8-c855" type="selectionEntry"/>
<entryLink id="696c-ba24-a131-1226" name="Claws" hidden="false" collective="false" import="true" targetId="ece7-f4c5-78df-0d16" type="selectionEntry"/>
<entryLink id="06d7-43f6-61f1-b189" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="1a8d-efa7-a65d-2158" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
<entryLink id="f302-0740-cee3-3807" name="Specialism" hidden="false" collective="false" import="true" targetId="5fc7-0109-a88e-9e8e" type="selectionEntryGroup"/>
<entryLink id="822c-0d04-b274-ae70" name="Battle Honours - Scout" hidden="false" collective="false" import="true" targetId="94bd-d409-fda3-9f9f" type="selectionEntryGroup">
<entryLinks>
<entryLink id="cacc-8275-ddd9-cfa2" name="Hierotek 3 - Unrelenting" hidden="false" collective="false" import="true" targetId="ef0a-ef00-d71e-4d34" type="selectionEntry"/>
<entryLink id="ccfc-3068-df4d-6606" name="Hierotek 2 - Revenant" hidden="false" collective="false" import="true" targetId="7c79-a325-295b-1058" type="selectionEntry"/>
<entryLink id="e24e-4782-84cc-1849" name="Hierotek 1 - Enduring" hidden="false" collective="false" import="true" targetId="db95-5eb2-d14a-63c1" type="selectionEntry"/>
</entryLinks>
</entryLink>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="c4a8-633b-4cf2-639c" name="Apprentek" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="2768-8b3e-22ce-fdf3" name="Apprentek" hidden="false" typeId="350c-2ddd-8a24-377b" typeName="Operative">
<characteristics>
<characteristic name="M" typeId="c36f-3952-a91d-5a06">3⬤</characteristic>
<characteristic name="APL" typeId="c84a-a042-6fe6-519b">3</characteristic>
<characteristic name="GA" typeId="7a85-5063-6d1a-2a0b">1</characteristic>
<characteristic name="DF" typeId="4a18-41c1-51f2-c88c">3</characteristic>
<characteristic name="SV" typeId="dd03-76d2-dda8-eca2">3+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">12</characteristic>
</characteristics>
</profile>
<profile id="dc1d-90ac-f30b-2453" name="Magnification Conduit (Apprentek)" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">Each time this operative makes a shooting attack if a friendly CRYPTEK operative has an Engage order and is Visible to this operative, in the Select Valid Target step of that shooting attack, you can treat that friendly CRYPTEK operative as the active operative for the purposes of determining Line of Sight. If you do so, in the Roll Attack Dice step of that shooting attack, you can re-roll any or all of your attack dice results of one result (e.g. results of 2).</characteristic>
</characteristics>
</profile>
<profile id="5b30-ace2-93b5-f9eb" name="Apprentek Assistance (1AP)" hidden="false" typeId="17cd-eb4c-f9cd-36f2" typeName="Unique Actions">
<characteristics>
<characteristic name="Unique Action" typeId="8d9f-0a91-4133-bc4a">Perform a free Cryptek action with this operative that a friendly CRYPTEK operative from your kill team has gained, but has not performed during this Turning Point (see your selected CRYPTEK operative's datacard). That Cryptek action cannot be performed by friendly operatives again during this Turning Point. This operative cannot perform this action while within Engagement Range of an enemy operative.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="dd9e-b20d-2565-7a10" name="Living Metal" hidden="false" targetId="634a-444e-85d8-6a71" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="5492-3248-f62e-21d0" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
<categoryLink id="d3df-1a36-58e6-92da" name="HIEROTEK CIRCLE" hidden="false" targetId="39d9-136e-171f-bc56" primary="false"/>
<categoryLink id="92c7-5cb5-1e52-d348" name="Necron" hidden="false" targetId="607a-a5ee-346f-8aad" primary="false"/>
<categoryLink id="5d60-ba58-8df1-f96e" name="<Dynasty>" hidden="false" targetId="ebdb-a124-b5ab-14ed" primary="false"/>
<categoryLink id="0274-b0f0-c6b6-e8bb" name="Apprentek" hidden="false" targetId="3a89-f4f1-b4ac-caa1" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="43d1-f621-9f8e-8470" name="Arcane conduit" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="df14-26c8-de80-38b6" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="522b-dce4-162c-ee5d" type="max"/>
</constraints>
<profiles>
<profile id="a36a-ee40-8dd0-0623" name="⌖ Arcane conduit" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">3+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">3/4</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">AP1</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
<profile id="b051-f084-ee7a-20d4" name="⚔ Arcane conduit" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">3</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">3+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">3/5</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">-</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="844b-36d0-faf5-bb47" name="APx" hidden="false" targetId="db98-339e-d0a2-e042" type="rule"/>
</infoLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="3bb5-386a-c6f1-552a" name="Equipment" hidden="false" collective="false" import="true" targetId="8ed4-2694-4144-20af" type="selectionEntryGroup"/>
<entryLink id="de21-2893-7425-ac2a" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="ff04-de56-8b82-1388" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
<entryLink id="c0b7-7a4b-8fff-7baf" name="Specialism" hidden="false" collective="false" import="true" targetId="5fc7-0109-a88e-9e8e" type="selectionEntryGroup"/>
<entryLink id="5261-0d4b-b360-bd98" name="Battle Honours - Marksman" hidden="false" collective="false" import="true" targetId="e84e-ae34-82a8-57b0" type="selectionEntryGroup">
<entryLinks>
<entryLink id="84c1-2ae0-5cb2-2862" name="Hierotek 3 - Unrelenting" hidden="false" collective="false" import="true" targetId="ef0a-ef00-d71e-4d34" type="selectionEntry"/>
<entryLink id="9885-12f9-4b53-8b93" name="Hierotek 2 - Revenant" hidden="false" collective="false" import="true" targetId="7c79-a325-295b-1058" type="selectionEntry"/>
<entryLink id="643b-8783-bc48-2b68" name="Hierotek 1 - Enduring" hidden="false" collective="false" import="true" targetId="db95-5eb2-d14a-63c1" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="2c59-977d-f053-fd38" name="Battle Honours - Staunch" hidden="false" collective="false" import="true" targetId="93ec-2874-675e-b46e" type="selectionEntryGroup">
<entryLinks>
<entryLink id="63a5-8626-836e-3a3a" name="Hierotek 3 - Unrelenting" hidden="false" collective="false" import="true" targetId="ef0a-ef00-d71e-4d34" type="selectionEntry"/>
<entryLink id="066a-9ae3-95d8-cb68" name="Hierotek 2 - Revenant" hidden="false" collective="false" import="true" targetId="7c79-a325-295b-1058" type="selectionEntry"/>
<entryLink id="0739-c6c3-7795-a59e" name="Hierotek 1 - Enduring" hidden="false" collective="false" import="true" targetId="db95-5eb2-d14a-63c1" type="selectionEntry"/>
</entryLinks>
</entryLink>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="aa0a-7d0d-00f6-9ccf" name="Deathmark" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="4ce3-bfe2-e288-d6e1" name="Deathmark" hidden="false" typeId="350c-2ddd-8a24-377b" typeName="Operative">
<characteristics>
<characteristic name="M" typeId="c36f-3952-a91d-5a06">2⬤</characteristic>
<characteristic name="APL" typeId="c84a-a042-6fe6-519b">2</characteristic>
<characteristic name="GA" typeId="7a85-5063-6d1a-2a0b">1</characteristic>
<characteristic name="DF" typeId="4a18-41c1-51f2-c88c">3</characteristic>
<characteristic name="SV" typeId="dd03-76d2-dda8-eca2">3+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">10</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="9491-2f29-af3d-988d" name="Living Metal" hidden="false" targetId="634a-444e-85d8-6a71" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="43c1-d337-8a9a-2f62" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
<categoryLink id="e718-ca07-210b-2923" name="HIEROTEK CIRCLE" hidden="false" targetId="39d9-136e-171f-bc56" primary="false"/>
<categoryLink id="587f-01d6-4642-f9e7" name="Necron" hidden="false" targetId="607a-a5ee-346f-8aad" primary="false"/>
<categoryLink id="52dc-3547-2719-8c6f" name="<Dynasty>" hidden="false" targetId="ebdb-a124-b5ab-14ed" primary="false"/>
<categoryLink id="6d64-2ade-7cab-ac52" name="Deathmark" hidden="false" targetId="5164-e254-3d24-4966" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="56de-96b5-2f99-6e77" name="Synaptic disintegrator" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7eea-2ea0-ca79-6d90" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="08fe-0022-741c-fe15" type="max"/>
</constraints>
<profiles>
<profile id="304c-379b-5617-6bc1" name="⌖ Synaptic disintegrator" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">2+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">4/4</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">AP1, Heavy</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">MW1</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="0f29-3e31-23d0-4c81" name="APx" hidden="false" targetId="db98-339e-d0a2-e042" type="rule"/>
<infoLink id="bb1c-b2db-9053-17ac" name="Heavy" hidden="false" targetId="1e77-6974-cf90-6008" type="rule"/>
<infoLink id="bcfe-9ede-4d95-b9e5" name="MWx" hidden="false" targetId="0d4b-7a76-d266-bcc1" type="rule"/>
</infoLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="23ad-40f5-8c92-4ecd" name="Fists" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1732-cc6e-f7a1-19be" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f0f7-9904-c9bf-cdd7" type="max"/>
</constraints>
<profiles>
<profile id="1c80-c967-9b33-ba2b" name="⚔ Fists" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">3</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">3+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">3/4</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">-</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="2eba-8626-9f42-594f" name="Equipment" hidden="false" collective="false" import="true" targetId="8ed4-2694-4144-20af" type="selectionEntryGroup"/>
<entryLink id="8afa-861b-55dc-70ce" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="470c-3f35-bfcb-e682" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
<entryLink id="3aa3-022a-c20c-ce1b" name="Specialism" hidden="false" collective="false" import="true" targetId="5fc7-0109-a88e-9e8e" type="selectionEntryGroup"/>
<entryLink id="b9e2-f4df-5db5-06ba" name="Battle Honours - Marksman" hidden="false" collective="false" import="true" targetId="e84e-ae34-82a8-57b0" type="selectionEntryGroup">
<entryLinks>
<entryLink id="66c8-907d-387d-1dd0" name="Hierotek 3 - Unrelenting" hidden="false" collective="false" import="true" targetId="ef0a-ef00-d71e-4d34" type="selectionEntry"/>
<entryLink id="4330-24c9-270f-ec65" name="Hierotek 2 - Revenant" hidden="false" collective="false" import="true" targetId="7c79-a325-295b-1058" type="selectionEntry"/>
<entryLink id="906a-63a2-562c-2348" name="Hierotek 1 - Enduring" hidden="false" collective="false" import="true" targetId="db95-5eb2-d14a-63c1" type="selectionEntry"/>
</entryLinks>
</entryLink>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="f950-d16a-6efc-e730" name="Immortal Despotek" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="13b9-cdf6-7c98-8796" name="Immortal Despotek" hidden="false" typeId="350c-2ddd-8a24-377b" typeName="Operative">
<characteristics>
<characteristic name="M" typeId="c36f-3952-a91d-5a06">2⬤</characteristic>
<characteristic name="APL" typeId="c84a-a042-6fe6-519b">2</characteristic>
<characteristic name="GA" typeId="7a85-5063-6d1a-2a0b">1</characteristic>
<characteristic name="DF" typeId="4a18-41c1-51f2-c88c">3</characteristic>
<characteristic name="SV" typeId="dd03-76d2-dda8-eca2">3+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">12</characteristic>
</characteristics>
</profile>
<profile id="bd4f-984e-17f8-826a" name="Demand (0AP)" hidden="false" typeId="17cd-eb4c-f9cd-36f2" typeName="Unique Actions">
<characteristics>
<characteristic name="Unique Action" typeId="8d9f-0a91-4133-bc4a">Select one friendly DEATHMARK or IMMORTAL operative Visible to and within ⬟ of this operative. Once during this Turning Point, when the selected friendky operative is fighting in combat, making a shooting attack or a shooting attack is being made against it, you can use the Command Re-roll Tactical Ploy without spending any Command points.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="fcfb-81e9-2f15-246e" name="Living Metal" hidden="false" targetId="634a-444e-85d8-6a71" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="3c9e-aef5-cec8-656f" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
<categoryLink id="6ddc-ab24-b5f4-1c87" name="HIEROTEK CIRCLE" hidden="false" targetId="39d9-136e-171f-bc56" primary="false"/>
<categoryLink id="0c2d-791f-29fa-fc03" name="Necron" hidden="false" targetId="607a-a5ee-346f-8aad" primary="false"/>
<categoryLink id="f9a4-5172-6dbe-13d0" name="<Dynasty>" hidden="false" targetId="ebdb-a124-b5ab-14ed" primary="false"/>
<categoryLink id="5020-6265-afc8-4897" name="Immortal" hidden="false" targetId="aa0f-6d4d-a4a3-1a50" primary="false"/>
<categoryLink id="d5ab-ce2d-9f2e-3b32" name="Despotek" hidden="false" targetId="44de-e3cb-d918-71d1" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="9291-0a89-1d0a-1e83" name="Weapon" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b9db-4e92-d515-ed3d" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8009-1bed-70da-798e" type="max"/>
</constraints>
<entryLinks>
<entryLink id="a1b9-5e5d-91d4-fc1c" name="Gauss blaster" hidden="false" collective="false" import="true" targetId="4fb7-6def-f7cc-808e" type="selectionEntry"/>
<entryLink id="de5f-a7a2-8374-3ff2" name="Tesla carbine" hidden="false" collective="false" import="true" targetId="4a5f-e486-22f1-8279" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="36be-d001-8efc-7530" name="Equipment" hidden="false" collective="false" import="true" targetId="8ed4-2694-4144-20af" type="selectionEntryGroup"/>
<entryLink id="51a6-8bfa-3d2e-e50b" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="0a2f-cf69-1d71-79fd" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
<entryLink id="f9ac-5a72-5051-f88c" name="Specialism" hidden="false" collective="false" import="true" targetId="5fc7-0109-a88e-9e8e" type="selectionEntryGroup"/>
<entryLink id="fdb9-66d6-dc41-c91e" name="Battle Honours - Marksman" hidden="false" collective="false" import="true" targetId="e84e-ae34-82a8-57b0" type="selectionEntryGroup">
<entryLinks>
<entryLink id="5fdd-0ae1-92ca-f519" name="Hierotek 3 - Unrelenting" hidden="false" collective="false" import="true" targetId="ef0a-ef00-d71e-4d34" type="selectionEntry"/>
<entryLink id="c5c2-3050-0ef5-3902" name="Hierotek 2 - Revenant" hidden="false" collective="false" import="true" targetId="7c79-a325-295b-1058" type="selectionEntry"/>
<entryLink id="5907-4ea9-5cd0-9035" name="Hierotek 1 - Enduring" hidden="false" collective="false" import="true" targetId="db95-5eb2-d14a-63c1" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="fdc8-aa52-1edf-1a7e" name="Battle Honours - Staunch" hidden="false" collective="false" import="true" targetId="93ec-2874-675e-b46e" type="selectionEntryGroup">
<entryLinks>
<entryLink id="2189-be70-7702-a483" name="Hierotek 3 - Unrelenting" hidden="false" collective="false" import="true" targetId="ef0a-ef00-d71e-4d34" type="selectionEntry"/>
<entryLink id="dfe0-0680-204b-1e75" name="Hierotek 2 - Revenant" hidden="false" collective="false" import="true" targetId="7c79-a325-295b-1058" type="selectionEntry"/>
<entryLink id="03e5-66c9-673e-eee5" name="Hierotek 1 - Enduring" hidden="false" collective="false" import="true" targetId="db95-5eb2-d14a-63c1" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="3a93-1968-092f-ca87" name="Bayonet" hidden="false" collective="false" import="true" targetId="a67c-07e9-e029-2d7a" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="4f08-3085-66f5-e629" name="Immortal Guardian" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="f9ee-e500-cb7a-f1b2" name="Immortal Guardian" hidden="false" typeId="350c-2ddd-8a24-377b" typeName="Operative">
<characteristics>
<characteristic name="M" typeId="c36f-3952-a91d-5a06">2⬤</characteristic>
<characteristic name="APL" typeId="c84a-a042-6fe6-519b">2</characteristic>
<characteristic name="GA" typeId="7a85-5063-6d1a-2a0b">1</characteristic>
<characteristic name="DF" typeId="4a18-41c1-51f2-c88c">3</characteristic>
<characteristic name="SV" typeId="dd03-76d2-dda8-eca2">3+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">10</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="8449-e898-2646-a3ce" name="Living Metal" hidden="false" targetId="634a-444e-85d8-6a71" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="0f26-cd82-82c4-c947" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
<categoryLink id="01dc-d237-1273-4bc0" name="HIEROTEK CIRCLE" hidden="false" targetId="39d9-136e-171f-bc56" primary="false"/>
<categoryLink id="23dc-bf44-506b-5c2b" name="Necron" hidden="false" targetId="607a-a5ee-346f-8aad" primary="false"/>
<categoryLink id="4c1d-90cd-8538-320b" name="<Dynasty>" hidden="false" targetId="ebdb-a124-b5ab-14ed" primary="false"/>
<categoryLink id="2ee8-2653-04ec-5761" name="Immortal" hidden="false" targetId="aa0f-6d4d-a4a3-1a50" primary="false"/>
<categoryLink id="135b-3b67-6d44-7fce" name="Guardian" hidden="false" targetId="ceb5-82d2-9789-e290" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="32ee-0627-894f-3b6b" name="Weapon" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2fec-ea22-ccb6-26b0" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0571-5879-d524-6be1" type="max"/>
</constraints>
<entryLinks>
<entryLink id="b725-5f66-e630-151d" name="Gauss blaster" hidden="false" collective="false" import="true" targetId="4fb7-6def-f7cc-808e" type="selectionEntry"/>
<entryLink id="bbb2-9bde-7ab2-11e7" name="Tesla carbine" hidden="false" collective="false" import="true" targetId="4a5f-e486-22f1-8279" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="cd6c-46ba-6fe0-ad3a" name="Bayonet" hidden="false" collective="false" import="true" targetId="a67c-07e9-e029-2d7a" type="selectionEntry"/>
<entryLink id="cc65-480e-34bd-c675" name="Equipment" hidden="false" collective="false" import="true" targetId="8ed4-2694-4144-20af" type="selectionEntryGroup"/>
<entryLink id="791c-0785-a4a6-b3ef" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="b9d9-3af6-93d5-f5e2" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
<entryLink id="058e-14e8-4b14-9dd7" name="Specialism" hidden="false" collective="false" import="true" targetId="5fc7-0109-a88e-9e8e" type="selectionEntryGroup"/>
<entryLink id="a4ac-b6fa-85d6-4eb7" name="Battle Honours - Marksman" hidden="false" collective="false" import="true" targetId="e84e-ae34-82a8-57b0" type="selectionEntryGroup">
<entryLinks>
<entryLink id="7402-3aca-1445-3699" name="Hierotek 3 - Unrelenting" hidden="false" collective="false" import="true" targetId="ef0a-ef00-d71e-4d34" type="selectionEntry"/>
<entryLink id="9e2e-076b-980e-ed79" name="Hierotek 2 - Revenant" hidden="false" collective="false" import="true" targetId="7c79-a325-295b-1058" type="selectionEntry"/>
<entryLink id="8158-9a90-dce9-dfb2" name="Hierotek 1 - Enduring" hidden="false" collective="false" import="true" targetId="db95-5eb2-d14a-63c1" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="4193-3853-68fd-f332" name="Battle Honours - Staunch" hidden="false" collective="false" import="true" targetId="93ec-2874-675e-b46e" type="selectionEntryGroup">
<entryLinks>
<entryLink id="0243-0977-b1c0-d1d7" name="Hierotek 3 - Unrelenting" hidden="false" collective="false" import="true" targetId="ef0a-ef00-d71e-4d34" type="selectionEntry"/>
<entryLink id="eab3-48d5-47bb-74b3" name="Hierotek 2 - Revenant" hidden="false" collective="false" import="true" targetId="7c79-a325-295b-1058" type="selectionEntry"/>
<entryLink id="be17-5483-75fe-58e4" name="Hierotek 1 - Enduring" hidden="false" collective="false" import="true" targetId="db95-5eb2-d14a-63c1" type="selectionEntry"/>
</entryLinks>
</entryLink>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<rules>
<rule id="494a-01d7-f284-f939" name="Reanimation Protocols" hidden="false">
<description>Certain rules can allow friendly HIEROTEK CIRCLE operatives to attempt reanimation (e.g. Reanimation Beam). The first time each friendly HIEROTEK CIRCLE operative is incapacitated, if it attempts reanimation, before removing that operative from the killzone, place one of your Reanimation tokens underneath the operative as close as possible to the centre of its base and leave its order token next to it. Note that the second time each friendly HIEROTEK CIRCLE operative is incapacitated, it cannot attempt reanimation.
In the Ready Operatives step of each Turning Point, before resolving the Living Metal ability, roll one D6 for each of your Reanimation tokens. On a 1-2, leave that Reanimation token in the killzone. On a 2+, an operative is successfully reanimated.
- Set up the operative that Reanimation token was placed for.
- It must be placed within ⬛ of that Reanimation token and not within Engagement Range of enemy operatives.
- It has D3+2 wounds remaining.
- Give it an order of your choice.
- Remove that Reanimation token.
In narrative play, operatives that are successfully reanimated are not treated as being incapacitated for the purposes of Casualty tests unless they are incapacitated again during that battle.</description>
</rule>
</rules>
<sharedSelectionEntries>
<selectionEntry id="ea7b-f48d-00b8-c855" name="Spark" hidden="false" collective="false" import="true" type="upgrade">
<constraints>