generated from BSData/TemplateDataRepo
-
Notifications
You must be signed in to change notification settings - Fork 103
/
Imperium - Adeptus Mechanicus.cat
7631 lines (7608 loc) · 548 KB
/
Imperium - Adeptus Mechanicus.cat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<catalogue xmlns="http://www.battlescribe.net/schema/catalogueSchema" id="77b9-2f66-3f9b-5cf3" name="Imperium - Adeptus Mechanicus" revision="52" battleScribeVersion="2.03" library="false" gameSystemId="sys-352e-adc2-7639-d6a9" gameSystemRevision="1" type="catalogue">
<categoryEntries>
<categoryEntry id="f826-1ad1-a542-2058" name="Archaeopter Fusilave" hidden="false"/>
<categoryEntry id="37b3-cded-c814-6e63" name="Archaeopter Stratoraptor" hidden="false"/>
<categoryEntry id="350e-af73-7e37-1ec0" name="Archaeopter Transvector" hidden="false"/>
<categoryEntry id="9106-4e44-7994-8859" name="Belisarius Cawl" hidden="false"/>
<categoryEntry id="439d-b5b7-5fcc-a665" name="Electro-Priests" hidden="false"/>
<categoryEntry id="ef9e-98c6-5b9f-37d8" name="Corpuscarii" hidden="false"/>
<categoryEntry id="6785-add8-89f-d960" name="Cybernetica Datasmith" hidden="false"/>
<categoryEntry id="c638-6530-b65b-5d0e" name="Fulgurite" hidden="false"/>
<categoryEntry id="d167-10dc-5abd-d01a" name="Ironstrider Ballistarii" hidden="false"/>
<categoryEntry id="fa9a-4fad-2efa-cf9b" name="Kastelan Robots" hidden="false"/>
<categoryEntry id="411c-24d0-e41-4af" name="Breachers" hidden="false"/>
<categoryEntry id="bc2c-60a6-104c-ddf7" name="Destroyers" hidden="false"/>
<categoryEntry id="c299-2d35-3b58-a63e" name="Onager Dunecrawler" hidden="false"/>
<categoryEntry id="f181-49f9-7de7-4e6" name="Pteraxii Skystalkers" hidden="false"/>
<categoryEntry id="fb11-aa41-617f-2adc" name="Pteraxii Sterylizors" hidden="false"/>
<categoryEntry id="2ca0-ee66-2659-8616" name="Serberys Raiders" hidden="false"/>
<categoryEntry id="2f2d-8608-4615-d4da" name="Serberys Sulphurhounds" hidden="false"/>
<categoryEntry id="8bed-149-735e-9e73" name="Servitors" hidden="false"/>
<categoryEntry id="a6e7-8605-af27-3b57" name="Sicarian Infiltrators" hidden="false"/>
<categoryEntry id="e659-53c-94b7-7428" name="Sicarian Ruststalkers" hidden="false"/>
<categoryEntry id="58c1-8e13-6d05-ee24" name="Marshal" hidden="false"/>
<categoryEntry id="bdec-fa84-45c0-24dc" name="Rangers" hidden="false"/>
<categoryEntry id="44d2-dd77-4da9-7f22" name="Vanguard" hidden="false"/>
<categoryEntry id="fa0f-f87-da7e-66f1" name="Skorpius Disintegrator" hidden="false"/>
<categoryEntry id="e00f-4d12-4115-718a" name="Skorpius Dunerider" hidden="false"/>
<categoryEntry id="c39d-5908-6bc1-8212" name="Dominus" hidden="false"/>
<categoryEntry id="c23-782d-e9c1-1da5" name="Enginseer" hidden="false"/>
<categoryEntry id="63f-669c-2b61-cb04" name="Manipulus" hidden="false"/>
<categoryEntry id="5441-b72-c2ad-f28a" name="Technoarcheologist" hidden="false"/>
<categoryEntry id="2a4e-9018-d675-74f1" name="Skitarii" hidden="false"/>
<categoryEntry id="59a9-b5cc-7c11-aaad" name="Tech-Priest" hidden="false"/>
<categoryEntry id="6fdf-6180-8f3c-a07" name="Kataphron" hidden="false"/>
<categoryEntry id="7069-de6a-26a0-9d26" name="Secutarii Peltasts" hidden="false"/>
<categoryEntry id="b6bd-96ba-9704-2166" name="Secutarii Hoplites" hidden="false"/>
<categoryEntry id="5f5c-48ec-136a-7c17" name="Terrax-pattern Termite" hidden="false"/>
<categoryEntry name="X-101" hidden="false" id="2565-ab00-5e76-8873"/>
<categoryEntry name="Sydonian" hidden="false" id="fe37-1124-2cfd-f11b"/>
<categoryEntry name="Dragoons with Radium Jezzails" hidden="false" id="30e5-b0cd-364f-7d9c"/>
<categoryEntry name="Dragoons with Taser Lances" hidden="false" id="4ebd-bec7-572d-1dfa"/>
<categoryEntry name="Cult Mechanicus" id="6d46-7883-e5d1-45ee" hidden="false"/>
<categoryEntry name="Legio Cybernetica" id="3b4e-5e61-ac14-93de" hidden="false"/>
</categoryEntries>
<entryLinks>
<entryLink id="9bc2-4d5f-5d27-ce7a" name="Archaeopter Fusilave" hidden="false" collective="false" import="true" targetId="7662-5fde-16f1-5267" type="selectionEntry"/>
<entryLink id="a7bd-fd4-f3c0-4f8a" name="Archaeopter Stratoraptor" hidden="false" collective="false" import="true" targetId="d54e-1007-26b5-6a79" type="selectionEntry"/>
<entryLink id="2500-71db-2a11-1c05" name="Archaeopter Transvector" hidden="false" collective="false" import="true" targetId="295-769-8893-2bb0" type="selectionEntry"/>
<entryLink id="cb05-4e43-6776-3c51" name="Belisarius Cawl" hidden="false" collective="false" import="true" targetId="1f1e-2989-4762-cf88" type="selectionEntry"/>
<entryLink id="7c95-8abd-2a3c-c26e" name="Corpuscarii Electro-Priests" hidden="false" collective="false" import="true" targetId="fd5a-f7a3-833c-85b" type="selectionEntry"/>
<entryLink id="8f5a-fde2-3ab4-85c2" name="Fulgurite Electro-Priests" hidden="false" collective="false" import="true" targetId="841-f339-8086-efe2" type="selectionEntry"/>
<entryLink id="ec2e-941e-4c80-ab09" name="Cybernetica Datasmith" hidden="false" collective="false" import="true" targetId="d59d-ef1-9ef8-4f44" type="selectionEntry"/>
<entryLink id="7156-2132-a326-b724" name="Ironstrider Ballistarii" hidden="false" collective="false" import="true" targetId="7efb-de37-79c4-cccb" type="selectionEntry"/>
<entryLink id="2c75-8088-5885-e44" name="Kastelan Robots" hidden="false" collective="false" import="true" targetId="bd6c-8683-8bc4-962d" type="selectionEntry"/>
<entryLink id="2624-cc0e-10af-ae30" name="Kataphron Breachers" hidden="false" collective="false" import="true" targetId="a46f-848-b87d-4484" type="selectionEntry"/>
<entryLink id="28b2-3bcc-3381-aa08" name="Kataphron Destroyers" hidden="false" collective="false" import="true" targetId="7bee-a476-2167-76e7" type="selectionEntry"/>
<entryLink id="8134-e206-584a-127b" name="Onager Dunecrawler" hidden="false" collective="false" import="true" targetId="ea05-4db7-9ee6-7a87" type="selectionEntry"/>
<entryLink id="9bfc-c4ed-8483-113e" name="Pteraxii Skystalkers" hidden="false" collective="false" import="true" targetId="b31e-5003-5b63-a305" type="selectionEntry"/>
<entryLink id="f262-e6fd-26d-9fee" name="Pteraxii Sterylizors" hidden="false" collective="false" import="true" targetId="958-a256-360-8620" type="selectionEntry"/>
<entryLink id="b93d-b9db-120f-5c9e" name="Serberys Raiders" hidden="false" collective="false" import="true" targetId="5797-adb8-930-e832" type="selectionEntry"/>
<entryLink id="da6d-fc9f-7e1b-c4f8" name="Serberys Sulphurhounds" hidden="false" collective="false" import="true" targetId="e775-4fe1-832b-95ca" type="selectionEntry"/>
<entryLink id="5258-8dfe-c45b-f4f1" name="Sicarian Infiltrators" hidden="false" collective="false" import="true" targetId="9b4-26b2-9e6d-a62d" type="selectionEntry">
<profiles>
<profile name="Voices in the Code" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="367f-5f53-33a7-ad1e">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">At the start of the Fight phase, each enemy unit within Engagement Range of one or more units with this ability must take a Battle-shock test.</characteristic>
</characteristics>
</profile>
</profiles>
</entryLink>
<entryLink id="68b3-c113-ba10-e744" name="Sicarian Ruststalkers" hidden="false" collective="false" import="true" targetId="8863-9784-8377-aa7a" type="selectionEntry"/>
<entryLink id="569d-5147-44f-b8a5" name="Skitarii Marshal" hidden="false" collective="false" import="true" targetId="b897-e4c6-fcb6-6538" type="selectionEntry"/>
<entryLink id="cb4c-b9a7-a9fd-b2de" name="Skitarii Rangers" hidden="false" collective="false" import="true" targetId="de59-f65c-181a-8509" type="selectionEntry"/>
<entryLink id="8c0d-1834-34a2-59aa" name="Skitarii Vanguard" hidden="false" collective="false" import="true" targetId="ba33-c21-bddc-ab0" type="selectionEntry"/>
<entryLink id="8560-45df-99ff-57d4" name="Skorpius Disintegrator" hidden="false" collective="false" import="true" targetId="3fcc-b6a1-399b-1a29" type="selectionEntry"/>
<entryLink id="b14b-a1bf-b27f-5c18" name="Skorpius Dunerider" hidden="false" collective="false" import="true" targetId="2b9c-3982-701d-f8fd" type="selectionEntry"/>
<entryLink id="a548-ba7d-175a-e8b2" name="Tech-Priest Dominus" hidden="false" collective="false" import="true" targetId="6424-ed86-9e15-3e14" type="selectionEntry"/>
<entryLink id="c0d0-119d-f647-49dc" name="Sydonian Dragoons (Taser Lance)" hidden="false" collective="false" import="true" targetId="3053-c0c1-aedd-b211" type="selectionEntry"/>
<entryLink id="875c-2e6-3e7d-76dd" name="Tech-Priest Enginseer" hidden="false" collective="false" import="true" targetId="c0e0-4d86-96d2-ec86" type="selectionEntry"/>
<entryLink id="6bf3-dd34-975d-d8f1" name="Tech-Priest Manipulus" hidden="false" collective="false" import="true" targetId="2d9b-610a-dc4d-15ae" type="selectionEntry"/>
<entryLink id="9027-13fe-73de-3c82" name="Technoarcheologist" hidden="false" collective="false" import="true" targetId="fa82-61cc-aa85-e94c" type="selectionEntry"/>
<entryLink id="bb85-e22e-6497-1054" name="Secutarii Hoplites [Legends]" hidden="false" collective="false" import="true" targetId="705b-2635-fcab-48f9" type="selectionEntry"/>
<entryLink id="803c-86c5-c47c-9172" name="Secutarii Peltasts [Legends]" hidden="false" collective="false" import="true" targetId="7774-a50b-cb1e-8372" type="selectionEntry"/>
<entryLink id="500c-9394-3b51-735a" name="Terrax-Pattern Termite [Legends]" hidden="false" collective="false" import="true" targetId="3639-75ba-cab2-c159" type="selectionEntry"/>
<entryLink import="true" name="Detachment" hidden="false" type="selectionEntry" id="2874-c86-3152-393" targetId="c82f-1b42-946-9c9a">
<categoryLinks>
<categoryLink targetId="4ac9-fd30-1e3d-b249" id="5d5e-ff5b-2b59-a749" primary="true" name="Configuration"/>
</categoryLinks>
</entryLink>
<entryLink import="true" name="Show/Hide Options" hidden="false" type="selectionEntry" id="3458-3cff-ef5f-a7c5" targetId="e8ef-836a-a9d1-901d">
<entryLinks>
<entryLink import="true" name="Show Agents of the Imperium" hidden="false" type="selectionEntry" id="9c5b-bd47-c34c-90c0" targetId="e08b-2448-5606-fefb"/>
<entryLink import="true" name="Show Imperial Knights" hidden="false" type="selectionEntry" id="825c-3524-48a1-9328" targetId="e82c-6f8c-2b97-a287"/>
<entryLink import="true" name="Show Titans" hidden="false" type="selectionEntry" id="d6cf-3f1f-46e1-43e2" targetId="f26b-79db-80e0-3a3b"/>
</entryLinks>
</entryLink>
<entryLink import="true" name="Sydonian Dragoons (Radium jezzail)" hidden="false" type="selectionEntry" id="155b-e47a-255b-2877" targetId="d99a-6563-8c08-23c"/>
<entryLink import="true" name="Sydonian Skatros" hidden="false" type="selectionEntry" id="71e5-42c0-9a4a-f97c" targetId="52e7-9347-3f16-9eec"/>
<entryLink import="true" name="Servitors [Legends]" hidden="false" id="e247-5e94-9767-87b" type="selectionEntry" targetId="2183-5b38-1726-2a11"/>
<entryLink import="true" name="X-101 [Legends]" hidden="false" id="2794-3a4e-88d9-1aa7" type="selectionEntry" targetId="a896-3e21-1319-c86"/>
</entryLinks>
<sharedSelectionEntries>
<selectionEntry id="7662-5fde-16f1-5267" name="Archaeopter Fusilave" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="5b74-a274-644c-a057" name="Archaeopter Fusilave" hidden="false" typeId="c547-1836-d8a-ff4f" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">20"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">9</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">3+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">10</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">7+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">0</characteristic>
</characteristics>
</profile>
<profile id="4da0-e504-738b-5c6b" name="Damaged: 1-3 wounds remaining" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">While this mdel has 1-3 wounds remaining, each time this model makes an attack, subtract 1 from the Hit roll.</characteristic>
</characteristics>
</profile>
<profile id="42dc-6183-5dd1-29cf" name="Bomb Rack" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">Each time this model finishes a Normal move, you can select one enemy unit it moved across and roll six D6: for each 4+, that unit suffers 1 mortal wound.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="1bbc-45d0-4dd5-0ff9" name="Hover" hidden="false" targetId="eec5-5f54-9c03-c305" type="rule"/>
<infoLink name="Deadly Demise" hidden="false" type="rule" id="fbc4-394-3cb4-11ae" targetId="b68a-5ded-65ac-98c">
<modifiers>
<modifier type="append" value="D3" field="name"/>
</modifiers>
</infoLink>
<infoLink name="Doctrina Imperatives" hidden="false" type="rule" id="ac08-1b62-4796-b572" targetId="7a21-a958-e47d-5c0d"/>
</infoLinks>
<categoryLinks>
<categoryLink id="e24c-c068-bc91-392" name="Archaeopter Fusilave" hidden="false" targetId="f826-1ad1-a542-2058" primary="false"/>
<categoryLink id="6a25-8b77-a9ac-5e2" name="Vehicle" hidden="false" targetId="dbd4-63-af05-998" primary="true"/>
<categoryLink id="b24f-48b-5f92-3bf8" name="Aircraft" hidden="false" targetId="63f1-e6e8-f6f6-a4f0" primary="false"/>
<categoryLink id="3881-6796-db6-8ee4" name="Fly" hidden="false" targetId="c619-2086-bbcf-69c9" primary="false"/>
<categoryLink id="97e1-48a7-9f13-4068" name="Imperium" hidden="false" targetId="aff3-d6a3-2a95-9dc" primary="false"/>
<categoryLink id="dcad-f6ed-dac6-4e4f" name="Faction: Adeptus Mechanicus" hidden="false" targetId="5418-f86b-6e76-c5a" primary="false"/>
<categoryLink id="6c3-d022-3ea5-14f0" name="Skitarii" hidden="false" targetId="2a4e-9018-d675-74f1" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="4512-7043-46cf-91c0" name="Replace command uplink" hidden="false" collective="false" import="true" defaultSelectionEntryId="008c-871d-ce11-2679">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5b29-91f7-cdee-5d98" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7744-835e-6429-bd6c" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="ed17-099b-da1f-60e9" name="Chaff Launcher" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="d2a1-8e6f-a969-19fb" name="Chaff Launcher" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">The bearer has the Smoke keyword.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="008c-871d-ce11-2679" name="Command Uplink" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="cf82-0b93-d441-d3cd" name="Command Uplink" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">Each time you select the bearer’s unit as the target of a Stratagem, roll one D6: on a 5+, you gain 1CP.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="160"/>
</costs>
<entryLinks>
<entryLink import="true" name="Armoured hull" hidden="false" type="selectionEntry" id="a34b-6a88-3768-3a37" targetId="eea3-949a-21d2-d33f"/>
<entryLink import="true" name="Cognis heavy stubber array" hidden="false" type="selectionEntry" id="66b0-cc6a-fae-50c8" targetId="5e69-8258-9ee5-3b6b"/>
</entryLinks>
<constraints>
<constraint type="max" value="3" field="selections" scope="force" shared="true" id="9c76-a080-072e-ce84" includeChildSelections="true"/>
</constraints>
</selectionEntry>
<selectionEntry id="d54e-1007-26b5-6a79" name="Archaeopter Stratoraptor" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="e922-4728-e5b7-539b" name="Archaeopter Stratoraptor" hidden="false" typeId="c547-1836-d8a-ff4f" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">20"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">9</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">3+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">10</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">7+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">0</characteristic>
</characteristics>
</profile>
<profile id="c50b-ea89-073c-68b5" name="Damaged: 1-3 wounds remaining" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">While this mdel has 1-3 wounds remaining, each time this model makes an attack, subtract 1 from the Hit roll.</characteristic>
</characteristics>
</profile>
<profile id="e589-6b4b-708c-0a93" name="Strafing Run" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">Each time this model makes a ranged attack that targets an enemy unit (excluding units that can Fly), add 1 to the Hit roll.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="2434-3570-84ad-257a" name="Hover" hidden="false" targetId="eec5-5f54-9c03-c305" type="rule"/>
<infoLink name="Deadly Demise" hidden="false" type="rule" id="714b-7475-8c7a-7195" targetId="b68a-5ded-65ac-98c">
<modifiers>
<modifier type="append" value="D3" field="name"/>
</modifiers>
</infoLink>
<infoLink name="Doctrina Imperatives" hidden="false" type="rule" id="6fb2-be00-f43a-8536" targetId="7a21-a958-e47d-5c0d"/>
</infoLinks>
<categoryLinks>
<categoryLink id="d74b-f1b1-d039-d30a" name="Archaeopter Stratoraptor" hidden="false" targetId="37b3-cded-c814-6e63" primary="false"/>
<categoryLink id="7fb7-494d-1904-25e8" name="Skitarii" hidden="false" targetId="2a4e-9018-d675-74f1" primary="false"/>
<categoryLink id="263d-bd87-6d72-63c6" name="Vehicle" hidden="false" targetId="dbd4-63-af05-998" primary="true"/>
<categoryLink id="7966-e1d5-26dc-9af" name="Aircraft" hidden="false" targetId="63f1-e6e8-f6f6-a4f0" primary="false"/>
<categoryLink id="6f26-eee9-1326-4daa" name="Fly" hidden="false" targetId="c619-2086-bbcf-69c9" primary="false"/>
<categoryLink id="c1d-a3a2-7283-7957" name="Imperium" hidden="false" targetId="aff3-d6a3-2a95-9dc" primary="false"/>
<categoryLink id="d4a4-750d-a35d-4577" name="Faction: Adeptus Mechanicus" hidden="false" targetId="5418-f86b-6e76-c5a" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="b80d-7b51-823a-0e08" name="Replace command uplink" hidden="false" collective="false" import="true" defaultSelectionEntryId="ee26-547b-15b5-367f">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="10b1-b4cb-84d7-5a5e" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7c1a-7f43-3763-a656" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="c63d-3d37-2a6e-1bfe" name="Chaff Launcher" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="bd10-f2a9-9e2e-b9cb" name="Chaff Launcher" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">The bearer has the Smoke keyword.�</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="ee26-547b-15b5-367f" name="Command Uplink" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="fd8a-c3c2-6f7e-6495" name="Command Uplink" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">Each time you select the bearer’s unit as the target of a Stratagem, roll one D6: on a 5+, you gain 1CP.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="185"/>
</costs>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Cognis heavy stubber" hidden="false" id="5f4f-99c8-1bac-711c">
<constraints>
<constraint type="min" value="2" field="selections" scope="parent" shared="true" id="4a81-a16f-275e-3f96-min"/>
<constraint type="max" value="2" field="selections" scope="parent" shared="true" id="4a81-a16f-275e-3f96-max"/>
</constraints>
<profiles>
<profile id="1586-8711-ca3e-63fe" name="Cognis heavy stubber" hidden="false" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">36"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">3</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">4+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">4</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">0</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">1</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Rapid Fire 3, Sustained Hits 1</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Sustained Hits" hidden="false" type="rule" id="525f-95a8-2acb-3fab" targetId="1897-c22c-9597-12b1"/>
<infoLink name="Rapid Fire" hidden="false" type="rule" id="3949-521e-2d8f-feee" targetId="c5c8-8b58-b8b6-7786"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Heavy phosphor blaster" hidden="false" id="c2ef-d725-c7b5-577">
<constraints>
<constraint type="min" value="2" field="selections" scope="parent" shared="true" id="63ab-d9f3-955b-6b6d-min"/>
<constraint type="max" value="2" field="selections" scope="parent" shared="true" id="63ab-d9f3-955b-6b6d-max"/>
</constraints>
<profiles>
<profile id="807c-1cd4-9bc6-7bfe" name="Heavy phosphor blaster" hidden="false" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">36"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">3</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">4+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">6</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">-1</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">2</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Ignores Cover</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Ignores Cover" hidden="false" type="rule" id="d171-bcf6-8776-95dc" targetId="4640-43e7-30b-215a"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Twin cognis lascannon" hidden="false" id="44e-ae99-4e59-39a1">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="abba-9c25-4b00-512d-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="abba-9c25-4b00-512d-max"/>
</constraints>
<profiles>
<profile id="7894-6024-5bb1-400a" name="Twin cognis lascannon" hidden="false" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">48"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">1</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">4+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">12</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">-3</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">D6+1</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Sustained hits 1, Twin-linked</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink import="true" name="Armoured hull" hidden="false" type="selectionEntry" id="c3fa-7553-d82e-bfa8" targetId="eea3-949a-21d2-d33f"/>
</entryLinks>
<constraints>
<constraint type="max" value="3" field="selections" scope="force" shared="true" id="e1cc-0302-eedc-92f3" includeChildSelections="true"/>
</constraints>
</selectionEntry>
<selectionEntry id="295-769-8893-2bb0" name="Archaeopter Transvector" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="e019-8505-d1b0-299c" name="Archaeopter Transvector" hidden="false" typeId="c547-1836-d8a-ff4f" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">20"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">9</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">3+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">10</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">7+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">0</characteristic>
</characteristics>
</profile>
<profile id="e844-34be-d352-500d" name="Damaged: 1-3 wounds remaining" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">While this mdel has 1-3 wounds remaining, each time this model makes an attack, subtract 1 from the Hit roll.</characteristic>
</characteristics>
</profile>
<profile id="5949-42f6-2d23-07f5" name="Aerial Deployment" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">If this model starts the game in Hover mode and in Strategic Reserves, it can be set up in the Reinforcements step of your first, second or third Movement phase, regardless of any mission rules.</characteristic>
</characteristics>
</profile>
<profile id="fdbf-0314-ebea-88b2" name="Transport" hidden="false" typeId="74f8-5443-9d6d-1f1e" typeName="Transport">
<characteristics>
<characteristic name="Capacity" typeId="30f2-be70-861d-1b84">This model has a transport capacity of 11 Skitarii Infantry or Tech-Priest Infantry models. It cannot transport Jump Pack or Kataphron models.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="bb35-e434-0286-7fac" name="Hover" hidden="false" targetId="eec5-5f54-9c03-c305" type="rule"/>
<infoLink id="309a-5df0-83fc-f26b" name="Deep Strike" hidden="false" targetId="7cb5-dd6b-dd87-ad3b" type="rule"/>
<infoLink name="Deadly Demise" hidden="false" type="rule" id="a49f-562a-913b-4cde" targetId="b68a-5ded-65ac-98c">
<modifiers>
<modifier type="append" value="D3" field="name"/>
</modifiers>
</infoLink>
<infoLink name="Doctrina Imperatives" hidden="false" type="rule" id="fa7d-7ce-4176-b241" targetId="7a21-a958-e47d-5c0d"/>
</infoLinks>
<categoryLinks>
<categoryLink id="7540-3b83-7e18-242c" name="Archaeopter Transvector" hidden="false" targetId="350e-af73-7e37-1ec0" primary="false"/>
<categoryLink id="f010-aa54-9473-d520" name="Faction: Adeptus Mechanicus" hidden="false" targetId="5418-f86b-6e76-c5a" primary="false"/>
<categoryLink id="3bdd-c72-586e-fbbc" name="Vehicle" hidden="false" targetId="dbd4-63-af05-998" primary="true"/>
<categoryLink id="f160-a4b0-aad1-b058" name="Aircraft" hidden="false" targetId="63f1-e6e8-f6f6-a4f0" primary="false"/>
<categoryLink id="512b-fb30-ba-e294" name="Fly" hidden="false" targetId="c619-2086-bbcf-69c9" primary="false"/>
<categoryLink id="e7a-c044-feb2-102f" name="Imperium" hidden="false" targetId="aff3-d6a3-2a95-9dc" primary="false"/>
<categoryLink id="70cf-fbf0-87a6-1ca4" name="Skitarii" hidden="false" targetId="2a4e-9018-d675-74f1" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="7a58-c918-3dbd-3dc0" name="Replace command uplink" hidden="false" collective="false" import="true" defaultSelectionEntryId="0ce7-c37e-ef38-4917">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8e63-2ea6-30e5-ca47" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ea6c-9379-92e2-4107" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="b262-4596-cdd3-aaf1" name="Chaff Launcher" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="a2db-732b-05dc-e2ff" name="Chaff Launcher" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">The bearer has the Smoke keyword.�</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="0ce7-c37e-ef38-4917" name="Command Uplink" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="d5a3-26f8-485d-eeed" name="Command Uplink" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">Each time you select the bearer’s unit as the target of a Stratagem, roll one D6: on a 5+, you gain 1CP.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="150"/>
</costs>
<entryLinks>
<entryLink import="true" name="Cognis heavy stubber array" hidden="false" type="selectionEntry" id="562b-78e8-ea0b-3ed3" targetId="5e69-8258-9ee5-3b6b"/>
<entryLink import="true" name="Armoured hull" hidden="false" type="selectionEntry" id="1732-1849-97cf-d8f8" targetId="eea3-949a-21d2-d33f"/>
</entryLinks>
<constraints>
<constraint type="max" value="3" field="selections" scope="force" shared="true" id="5674-7e6e-99b6-a33a" includeChildSelections="true"/>
</constraints>
</selectionEntry>
<selectionEntry id="1f1e-2989-4762-cf88" name="Belisarius Cawl" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="1f5d-20a5-f37c-7d5a" name="Belisarius Cawl" hidden="false" typeId="c547-1836-d8a-ff4f" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">8"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">8</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">2+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">10</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">6+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">3</characteristic>
</characteristics>
</profile>
<profile id="9e99-0aa1-2c11-33ca" name="Canticles of the Omnissiah" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">At the start of the battle round, select one of the abilities in the Canticles of the Omnissiah section. Until the start of the next battle round, this model has that ability.
Invocation of Machine Vengeance (Aura): While a friendly Adeptus Mechanicus unit is within 6" of this model, each time a model in that unit makes an attack, re-roll a Hit roll of 1.
Mantra of Discipline: This model has the Battleline keyword and has the following ability:
Binharic Courage (Aura): While a friendly Adeptus Mechanicus unit is within 6" of this model, each time you take a Battle-shock or Leadership test for that unit, add 1 to that test.’
Shroudpsalm (Aura): While a friendly Adeptus Mechanicus unit is within 6" of this model, each time a ranged attack targets that unit, that unit has the Benefit of cover against that attack.</characteristic>
</characteristics>
</profile>
<profile id="f172-384f-e1fa-d656" name="Mechanicus Bodyguard" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">While this model is within 3" of one or more other friendly Adeptus Mechanicus units, this model has the Lone Operative ability.</characteristic>
</characteristics>
</profile>
<profile id="26a7-711f-28f6-7044" name="Self-repair Mechanisms" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">At the start of your Command phase, this model regains up to D3 lost wounds.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="1295-a2e1-2416-88df" name="Invulnerable Save" hidden="false" targetId="e1b2-f5c3-ae98-8b11" type="profile"/>
<infoLink name="Doctrina Imperatives" id="26c9-c477-c655-d781" hidden="false" type="rule" targetId="7a21-a958-e47d-5c0d"/>
</infoLinks>
<categoryLinks>
<categoryLink id="518b-cef6-2da8-e455" name="Belisarius Cawl" hidden="false" targetId="9106-4e44-7994-8859" primary="false"/>
<categoryLink id="c67c-7e09-59d1-1392" name="Epic Hero" hidden="false" targetId="4f3a-f0f7-6647-348d" primary="true"/>
<categoryLink id="b6c7-a87e-ccb1-ea32" name="Monster" hidden="false" targetId="9693-cf84-fe69-37a9" primary="false"/>
<categoryLink id="a68e-3745-f64e-a8c7" name="Character" hidden="false" targetId="9cfd-1c32-585f-7d5c" primary="false"/>
<categoryLink id="c096-b40c-541a-340a" name="Tech-Priest" hidden="false" targetId="59a9-b5cc-7c11-aaad" primary="false"/>
<categoryLink id="33ff-444c-148a-a51d" name="Faction: Adeptus Mechanicus" hidden="false" targetId="5418-f86b-6e76-c5a" primary="false"/>
<categoryLink id="e19b-e53f-88b3-88f5" name="Imperium" hidden="false" targetId="aff3-d6a3-2a95-9dc" primary="false"/>
<categoryLink targetId="6d46-7883-e5d1-45ee" id="fee-c1a7-f4d4-c70d" primary="false" name="Cult Mechanicus"/>
</categoryLinks>
<entryLinks>
<entryLink id="c097-c2fe-be86-de31" name="Warlord" hidden="false" collective="false" import="true" targetId="0580-79ca-da98-77c3" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d669-cced-ab2c-12bf" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3442-5d8e-724f-8283" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="150"/>
</costs>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Arc scourge" hidden="false" id="2f59-b41c-83be-4efe">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="c07d-7998-218a-2450-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="c07d-7998-218a-2450-max"/>
</constraints>
<profiles>
<profile id="e4be-19e1-54b-d219" name="Arc Scourge" hidden="false" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">4</characteristic>
<characteristic name="WS" typeId="95d1-95f-45b4-11d6">2+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">5</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">-1</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">1</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">Anti-Vehicle 4+, Devastating Wounds, Extra Attacks</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Anti-" hidden="false" type="rule" id="a190-82e7-61ff-ab31" targetId="4111-82e3-9444-e942"/>
<infoLink name="Devastating Wounds" hidden="false" type="rule" id="7cbd-83ce-be3-fa03" targetId="be1e-ac8e-1e2c-3528"/>
<infoLink name="Extra Attacks" hidden="false" type="rule" id="e119-1453-b7c9-e403" targetId="115b-79dc-f723-d761"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Cawl's Omnissian axe" hidden="false" id="4858-7bde-a8d4-e7da">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="5137-11fb-fb88-d8dc-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="5137-11fb-fb88-d8dc-max"/>
</constraints>
<profiles>
<profile id="f04a-c6ee-6971-f7da" name="Cawl's Omnissian axe" hidden="false" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">4</characteristic>
<characteristic name="WS" typeId="95d1-95f-45b4-11d6">2+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">8</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">-2</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">2</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Mechadendrite hive" hidden="false" id="665-8af3-4b52-8ac6">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="6cf9-2d4-4124-4364-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="6cf9-2d4-4124-4364-max"/>
</constraints>
<profiles>
<profile id="7a81-a490-ee0-ffdd" name="Mechadendrite hive" hidden="false" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">2D6</characteristic>
<characteristic name="WS" typeId="95d1-95f-45b4-11d6">3+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">4</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">0</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">1</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">Extra Attacks</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Extra Attacks" hidden="false" type="rule" id="cb5e-5a6d-e6db-921" targetId="115b-79dc-f723-d761"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Solar atomiser" hidden="false" id="238d-d584-47ee-856d">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="8c10-c989-8d4-8672-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="8c10-c989-8d4-8672-max"/>
</constraints>
<profiles>
<profile id="2fd0-1925-e091-75ef" name="Solar atomiser" hidden="false" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">18"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">D3</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">2+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">14</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">-4</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">3</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Blast, Melta D3</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Blast" hidden="false" type="rule" id="1424-4ca9-fc04-71c3" targetId="6c1f-1cf7-ff25-c99e"/>
<infoLink name="Melta" hidden="false" type="rule" id="e23-9f6a-5100-774b" targetId="7cdb-fb99-44a9-8849"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="force" shared="true" id="de54-8761-ed73-6bb2" includeChildSelections="true"/>
</constraints>
</selectionEntry>
<selectionEntry id="fd5a-f7a3-833c-85b" name="Corpuscarii Electro-Priests" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="set" field="51b2-306e-1021-d207" value="130">
<conditions>
<condition field="selections" scope="fd5a-f7a3-833c-85b" value="5" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="11da-b8fd-db3e-38f3" name="Corpuscarii Electro-Priests" hidden="false" typeId="c547-1836-d8a-ff4f" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">6"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">3</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">7+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">1</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">7+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">1</characteristic>
</characteristics>
</profile>
<profile id="169a-e1ea-2174-3b30" name="Feel No Pain" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">5+</characteristic>
</characteristics>
</profile>
<profile id="03d0-228a-7b7f-9ba4" name="Electro-shock" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">In your Shooting phase, after this unit has shot, select one enemy unit (excluding Monsters and Vehicles) hit by one or more of those attacks. Until the end of your opponent’s next turn, that enemy unit is shocked. While a unit is shocked, subtract 2" from its Move characteristic and subtract 2 from Advance and Charge rolls made for it.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="8d21-7717-af43-ce33" name="Feel No Pain" hidden="false" targetId="9bf4-280f-bbe2-6fbb" type="rule"/>
<infoLink id="4d74-808f-32e2-e4a7" name="Invulnerable Save" hidden="false" targetId="8c24-fbe9-b191-175f" type="profile"/>
<infoLink name="Doctrina Imperatives" id="021a-ae09-d3af-8518" hidden="false" type="rule" targetId="7a21-a958-e47d-5c0d"/>
</infoLinks>
<categoryLinks>
<categoryLink id="284d-218a-1603-8cd2" name="Electro-Priests" hidden="false" targetId="439d-b5b7-5fcc-a665" primary="false"/>
<categoryLink id="9f6-6ee0-bf55-8212" name="Corpuscarii" hidden="false" targetId="ef9e-98c6-5b9f-37d8" primary="false"/>
<categoryLink id="3f80-df45-4f4d-56d9" name="Imperium" hidden="false" targetId="aff3-d6a3-2a95-9dc" primary="false"/>
<categoryLink id="5171-284a-6d48-44f3" name="Infantry" hidden="false" targetId="cf47-a0d7-7207-29dc" primary="true"/>
<categoryLink id="47fa-fb15-614b-5868" name="Faction: Adeptus Mechanicus" hidden="false" targetId="5418-f86b-6e76-c5a" primary="false"/>
<categoryLink targetId="6d46-7883-e5d1-45ee" id="71ff-92b8-d998-ad20" primary="false" name="Cult Mechanicus"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="879f-86c3-7e40-20f3" name="Corpuscarii Electro-Priests" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="5" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="97f8-5e72-c4f9-75f6" type="min"/>
<constraint field="selections" scope="parent" value="10" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3150-eaec-f1df-1c7a" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Electrostatic gauntlets" hidden="false" id="5e2e-e11c-e23c-d6b8" collective="true">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="608c-ec89-371c-c093-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="608c-ec89-371c-c093-max"/>
</constraints>
<profiles>
<profile id="a982-dfc5-1fe5-efbb" name="Electrostatic gauntlets" hidden="false" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">12"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">3</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">3+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">5</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">0</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">1</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Pistol, Sustained Hits 2</characteristic>
</characteristics>
</profile>
<profile id="2e4-cb5c-f33f-d486" name="Electrostatic gauntlets" hidden="false" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">3</characteristic>
<characteristic name="WS" typeId="95d1-95f-45b4-11d6">4+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">5</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">0</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">1</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">Sustained Hits 2</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Pistol" hidden="false" type="rule" id="a62e-9938-4ea7-eaf9" targetId="8bf7-8812-923d-29e4"/>
<infoLink name="Sustained Hits" hidden="false" type="rule" id="8f66-3f8c-a542-dd2" targetId="1897-c22c-9597-12b1"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="65"/>
<cost name="Crusade Points" typeId="b03b-c239-15a5-da55" value="0"/>
<cost name="Crusade: Battle Honours" typeId="75bb-ded1-c86d-bdf0" value="0"/>
<cost name="Crusade: Experience" typeId="a623-fe74-1d33-cddf" value="0"/>
<cost name="Crusade: Weapon Modifications" typeId="716d-91b7-d55a-1022" value="0"/>
</costs>
<constraints>
<constraint type="max" value="3" field="selections" scope="force" shared="true" id="559b-0874-e28c-dbbc" includeChildSelections="true"/>
</constraints>
</selectionEntry>
<selectionEntry id="841-f339-8086-efe2" name="Fulgurite Electro-Priests" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="set" field="51b2-306e-1021-d207" value="140">
<conditions>
<condition field="selections" scope="841-f339-8086-efe2" value="5" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="0d92-84dc-f7da-1aa0" name="Electro-Infusion" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">While a Character model is leading this unit, each time an attack targets this unit, subtract 1 from the Wound roll.</characteristic>
</characteristics>
</profile>
<profile id="547-98cb-c3d3-c4a3" name="Fulgurite Electro-Priests" hidden="false" typeId="c547-1836-d8a-ff4f" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">6"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">3</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">7+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">1</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">7+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">1</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="c024-c482-6e6f-ea65" name="Feel No Pain" hidden="false" targetId="9bf4-280f-bbe2-6fbb" type="rule">
<modifiers>
<modifier type="append" value="5+" field="name"/>
</modifiers>
</infoLink>
<infoLink id="360a-3951-b7ee-0247" name="Invulnerable Save" hidden="false" targetId="8c24-fbe9-b191-175f" type="profile"/>
<infoLink name="Doctrina Imperatives" id="7630-3256-6de7-ff86" hidden="false" type="rule" targetId="7a21-a958-e47d-5c0d"/>
</infoLinks>
<categoryLinks>
<categoryLink id="a951-c509-365-5eb1" name="Electro-Priests" hidden="false" targetId="439d-b5b7-5fcc-a665" primary="false"/>
<categoryLink id="fd04-502-cc57-6595" name="Fulgurite" hidden="false" targetId="c638-6530-b65b-5d0e" primary="false"/>
<categoryLink id="8172-187f-9d85-9507" name="Infantry" hidden="false" targetId="cf47-a0d7-7207-29dc" primary="true"/>
<categoryLink id="2a99-7799-7331-7ce6" name="Imperium" hidden="false" targetId="aff3-d6a3-2a95-9dc" primary="false"/>
<categoryLink id="53f1-cef9-15a4-c2cf" name="Faction: Adeptus Mechanicus" hidden="false" targetId="5418-f86b-6e76-c5a" primary="false"/>
<categoryLink targetId="6d46-7883-e5d1-45ee" id="a1a2-ad6a-ae70-712d" primary="false" name="Cult Mechanicus"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="6b7d-a39e-1175-d7a3" name="Fulgurite Electro-Priests" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="5" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c78b-9a4f-58d0-046b" type="min"/>
<constraint field="selections" scope="parent" value="10" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9c3e-8360-96ea-eb6a" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Electroleech stave" hidden="false" id="c9af-8921-46ec-f6ab" collective="true">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="6556-92df-3af4-ed22-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="6556-92df-3af4-ed22-max"/>
</constraints>
<profiles>
<profile id="49dc-3e02-f30e-7c16" name="Electroleech stave" hidden="false" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">2</characteristic>
<characteristic name="WS" typeId="95d1-95f-45b4-11d6">3+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">6</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">-1</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">2</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">Devastating Wounds</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Devastating Wounds" hidden="false" type="rule" id="96a-22eb-a002-d94" targetId="be1e-ac8e-1e2c-3528"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="70"/>
<cost name="Crusade Points" typeId="b03b-c239-15a5-da55" value="0"/>
<cost name="Crusade: Battle Honours" typeId="75bb-ded1-c86d-bdf0" value="0"/>
<cost name="Crusade: Experience" typeId="a623-fe74-1d33-cddf" value="0"/>
<cost name="Crusade: Weapon Modifications" typeId="716d-91b7-d55a-1022" value="0"/>
</costs>
<constraints>
<constraint type="max" value="3" field="selections" scope="force" shared="true" id="9758-1452-5411-ca4c" includeChildSelections="true"/>
</constraints>
</selectionEntry>
<selectionEntry id="7efb-de37-79c4-cccb" name="Ironstrider Ballistarii" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="7aaa-a10f-e7de-28f6" name="Ironstrider Ballistarii" hidden="false" typeId="c547-1836-d8a-ff4f" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">10"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">7</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">3+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">7</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">7+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">2</characteristic>
</characteristics>
</profile>
<profile id="73f8-f7d8-641f-90ca" name="Elevated Strider" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">This unit is eligible to shoot in a turn in which it Fell Back or Advanced, and you can re-roll Desperate Escape tests taken for models in this unit.</characteristic>
</characteristics>
</profile>
<profile id="0f3a-39ef-62b9-5b76" name="Broad Spectrum Data-tether" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">Each time you select this unit as the target of a Stratagem, roll one D6: on a 5+, you gain 1CP.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="2d86-57c5-938f-0469" name="Invulnerable Save" hidden="false" targetId="8c24-fbe9-b191-175f" type="profile"/>
<infoLink name="Deadly Demise" hidden="false" type="rule" id="3b94-fd16-b110-5f28" targetId="b68a-5ded-65ac-98c">
<modifiers>
<modifier type="append" value="1" field="name"/>
</modifiers>
</infoLink>
<infoLink name="Doctrina Imperatives" hidden="false" type="rule" id="fc3e-fe79-b9fe-20b9" targetId="7a21-a958-e47d-5c0d"/>
</infoLinks>
<categoryLinks>
<categoryLink id="5dbc-4833-2612-110" name="Ironstrider Ballistarii" hidden="false" targetId="d167-10dc-5abd-d01a" primary="false"/>
<categoryLink id="5c0b-dbf6-dd00-32c8" name="Vehicle" hidden="false" targetId="dbd4-63-af05-998" primary="true"/>
<categoryLink id="b000-47fe-dbcd-4398" name="Smoke" hidden="false" targetId="6df-937-16bc-8c1a" primary="false"/>
<categoryLink id="c005-330d-c4be-be85" name="Skitarii" hidden="false" targetId="2a4e-9018-d675-74f1" primary="false"/>
<categoryLink id="d8bb-1b1e-cafb-552a" name="Faction: Adeptus Mechanicus" hidden="false" targetId="5418-f86b-6e76-c5a" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="d70d-05b4-8e6a-36bc" name="Ironstrider Ballistarii" hidden="false" collective="false" import="true" defaultSelectionEntryId="2d5d-40b5-4ac8-cedc">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="7378-a8ed-ee9a-f8c6" type="min"/>
<constraint field="selections" scope="parent" value="3" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="8fbe-4e0a-6829-bb2c" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="2d5d-40b5-4ac8-cedc" name="Ironstrider Ballistarius (Twin cognis autocannon)" hidden="false" collective="false" import="true" type="model">
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="75"/>
<cost name="Crusade Points" typeId="b03b-c239-15a5-da55" value="0"/>
<cost name="Crusade: Battle Honours" typeId="75bb-ded1-c86d-bdf0" value="0"/>
<cost name="Crusade: Experience" typeId="a623-fe74-1d33-cddf" value="0"/>
<cost name="Crusade: Weapon Modifications" typeId="716d-91b7-d55a-1022" value="0"/>
</costs>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Twin cognis autocannon" hidden="false" id="5be8-d319-e2a9-8409" collective="true">
<profiles>
<profile id="b102-f53d-9159-72b4" name="Twin cognis autocannon" hidden="false" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">48"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">4</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">4+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">9</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">-1</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">3</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Sustained Hits 1</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Sustained Hits" hidden="false" type="rule" id="27bd-755c-71d6-3789" targetId="1897-c22c-9597-12b1"/>
</infoLinks>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="b40e-463f-170f-6069-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="b40e-463f-170f-6069-max"/>
</constraints>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink import="true" name="Ironstrider feet" hidden="false" type="selectionEntry" id="cdf4-a387-72a8-e469" targetId="a3ad-1621-c20a-7e3a"/>
</entryLinks>
<constraints>
<constraint type="max" value="3" field="selections" scope="parent" shared="true" id="bc15-5804-9e57-9273"/>
</constraints>
</selectionEntry>
<selectionEntry id="8fc1-9168-5137-2b5d" name="Ironstrider Ballistarius (Twin cognis lascannon)" hidden="false" collective="false" import="true" type="model">
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="75"/>
<cost name="Crusade Points" typeId="b03b-c239-15a5-da55" value="0"/>
<cost name="Crusade: Battle Honours" typeId="75bb-ded1-c86d-bdf0" value="0"/>
<cost name="Crusade: Experience" typeId="a623-fe74-1d33-cddf" value="0"/>
<cost name="Crusade: Weapon Modifications" typeId="716d-91b7-d55a-1022" value="0"/>
</costs>
<entryLinks>
<entryLink import="true" name="Ironstrider feet" hidden="false" type="selectionEntry" id="11fa-2496-6b8-905" targetId="a3ad-1621-c20a-7e3a"/>
</entryLinks>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Twin cognis lascannon" hidden="false" id="f09-36ce-d80d-1464" collective="true">
<profiles>
<profile id="cc50-54e8-9816-7a1c" name="Twin cognis lascannon" hidden="false" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">48"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">2</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">4+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">12</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">-3</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">D6+1</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Sustained Hits 1</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Sustained Hits" hidden="false" type="rule" id="4394-97cb-11d6-7f6a" targetId="1897-c22c-9597-12b1"/>
</infoLinks>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="caae-e06b-f880-7c9d-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="caae-e06b-f880-7c9d-max"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="3" field="selections" scope="parent" shared="true" id="4146-e807-bc8d-1578"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
<constraints>
<constraint type="max" value="3" field="selections" scope="force" shared="true" id="24e2-d64b-9fdf-2b1e" includeChildSelections="true"/>
</constraints>
</selectionEntry>
<selectionEntry id="bd6c-8683-8bc4-962d" name="Kastelan Robots" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="set" field="51b2-306e-1021-d207" value="360">
<conditions>
<condition field="selections" scope="bd6c-8683-8bc4-962d" value="2" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="3c29-c672-e526-581e" name="Kastelan Robot" hidden="false" typeId="c547-1836-d8a-ff4f" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">6"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">9</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">2+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">7</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">7+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">2</characteristic>
</characteristics>
</profile>
<profile id="6482-3035-fed5-27d0" name="Robotic Bodyguard" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">While a Cybernetica Datasmith model is leading this unit, that model has the Feel No Pain 4+ ability.</characteristic>
</characteristics>
</profile>
<profile id="e6fd-24cc-9af1-16b6" name="Repulsor Grid" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">Each time a ranged attack is allocated to a Kastelan Robot model in this unit, on an unmodified saving throw of 6, the attacking unit suffers 1 mortal wound after it has finished making its attacks.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="d2c7-7a7c-df19-1f37" name="Invulnerable Save" hidden="false" targetId="8c24-fbe9-b191-175f" type="profile"/>
<infoLink name="Deadly Demise" hidden="false" type="rule" id="82cc-59ce-ecab-8361" targetId="b68a-5ded-65ac-98c">
<modifiers>
<modifier type="append" value="1" field="name"/>
</modifiers>
</infoLink>
</infoLinks>
<categoryLinks>
<categoryLink id="ae73-8a7-dac0-996" name="Kastelan Robots" hidden="false" targetId="fa9a-4fad-2efa-cf9b" primary="false"/>
<categoryLink id="d569-f3fd-f5d5-e238" name="Faction: Adeptus Mechanicus" hidden="false" targetId="5418-f86b-6e76-c5a" primary="false"/>
<categoryLink id="60da-c3b5-f4f7-38f3" name="Imperium" hidden="false" targetId="aff3-d6a3-2a95-9dc" primary="false"/>
<categoryLink id="a160-aa80-6ac3-dbdf" name="Vehicle" hidden="false" targetId="dbd4-63-af05-998" primary="true"/>
<categoryLink id="3e79-b1c6-90d9-293" name="Walker" hidden="false" targetId="6dda-e157-334d-e93a" primary="false"/>
<categoryLink targetId="3b4e-5e61-ac14-93de" id="1e8d-b713-5724-39af" primary="false" name="Legio Cybernetica"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="20cf-5b7c-71d2-451d" name="Kastelan Robot" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="2" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="96c1-bc1f-f114-b54d" type="min"/>
<constraint field="selections" scope="parent" value="4" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="c7fd-b74-85fb-57f7" type="max"/>
</constraints>
<selectionEntryGroups>
<selectionEntryGroup id="81db-4e1c-f988-e0ff" name="Arm weapons" hidden="false" collective="false" import="true" defaultSelectionEntryId="d92d-2a5e-3dd9-f60f">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="accb-ee1f-b29d-5a8a" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="585c-6ecb-f382-f5aa" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="e1a8-c3ae-2547-1495" name="Twin Kastelan phosphor blaster and CCW" hidden="false" collective="false" import="true" type="upgrade">
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="0"/>
</costs>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Close combat weapon" hidden="false" id="57e4-b86b-61f6-c110">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="1d4c-d330-da67-98e4-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="1d4c-d330-da67-98e4-max"/>
</constraints>
<profiles>
<profile id="ed04-1c50-bb66-33aa" name="Close combat weapon" hidden="false" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">3</characteristic>
<characteristic name="WS" typeId="95d1-95f-45b4-11d6">4+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">6</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">0</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">1</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Twin Kastelan phosphor blaster" hidden="false" id="fce0-39e8-607b-6436">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="11db-5313-57fe-1648-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="11db-5313-57fe-1648-max"/>
</constraints>
<profiles>
<profile id="3fa6-e90c-4df4-9df8" name="Twin Kastelan phosphor blaster" hidden="false" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons">
<characteristics>