forked from BSData/wh40k-9e
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Imperium - Adeptus Mechanicus.cat
8800 lines (8778 loc) · 664 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 id="ebe8-544e-1fe8-fcde" name="Imperium - Adeptus Mechanicus" revision="108" battleScribeVersion="2.03" authorName="BSData Developers" authorContact="@Thairne" authorUrl="https://discord.gg/KqPVhds" library="false" gameSystemId="28ec-711c-d87f-3aeb" gameSystemRevision="154" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<publications>
<publication id="ebe8-544e-pubN65537" name="Codex: Adeptus Mechanicus"/>
<publication id="ebe8-544e-pubN67401" name="Index: Imperium 2"/>
<publication id="ebe8-544e-pubN79295" name="Forgeworld Datasheet"/>
<publication id="ebe8-544e-pubN79743" name="Warhammer 40,000 Rulebook"/>
<publication id="59a7-c568-3957-8381" name="Psychic Awakening: Engine War" publicationDate="06.06.2020"/>
</publications>
<profileTypes>
<profileType id="88a9-3700-776b-79d1" name="Explosion">
<characteristicTypes>
<characteristicType id="b044-79fe-269c-2d24" name="Dice Roll"/>
<characteristicType id="fc81-6c6b-ae23-7952" name="Distance"/>
<characteristicType id="7d5f-527b-0457-086c" name="Mortal Wounds"/>
</characteristicTypes>
</profileType>
<profileType id="7df1-74bd-09c9-492c" name="Warlord Trait">
<characteristicTypes>
<characteristicType id="696e-7a95-ff17-7c91" name="Description"/>
</characteristicTypes>
</profileType>
<profileType id="63a5-ad0e-43c1-d2f0" name="Forge World Dogma">
<characteristicTypes>
<characteristicType id="44d2-8832-413f-95fe" name="Description"/>
</characteristicTypes>
</profileType>
<profileType id="38d6-4910-d80d-b31d" name="Wound Track (Dunecrawler)">
<characteristicTypes>
<characteristicType id="aa5d-f961-3536-2202" name="Remaining W"/>
<characteristicType id="59dc-7432-b56a-2614" name="M"/>
<characteristicType id="94d9-32c5-ed83-8455" name="BS"/>
<characteristicType id="ef1b-e8e7-1521-2a03" name="A"/>
</characteristicTypes>
</profileType>
<profileType id="3f25-98ee-0925-acc8" name="Wound Track (Skorpius Dunerider)">
<characteristicTypes>
<characteristicType id="de05-245a-6f39-3e21" name="Remaining W"/>
<characteristicType id="8352-4fb0-e5fe-d860" name="M"/>
<characteristicType id="3b0f-62e9-2943-009a" name="BS"/>
<characteristicType id="c4a8-7e39-b1d6-a7fb" name="A"/>
</characteristicTypes>
</profileType>
<profileType id="b163-110e-a1ef-6d1c" name="Wound Track (Skorpius Disintegrator)">
<characteristicTypes>
<characteristicType id="d2af-67bc-6c4e-9be6" name="Remaining W"/>
<characteristicType id="5035-9385-c319-b0ff" name="M"/>
<characteristicType id="a0af-66e3-d075-81b8" name="BS"/>
<characteristicType id="ecc2-7bfc-35d7-b196" name="A"/>
</characteristicTypes>
</profileType>
<profileType id="935b-d61d-1d5d-01fd" name="Wound Track (Archaeopter)">
<characteristicTypes>
<characteristicType id="455b-831a-e238-cf92" name="Remaining W"/>
<characteristicType id="3d1a-30d4-63b1-10ea" name="M"/>
<characteristicType id="f5e9-0c36-3f98-fd4a" name="BS"/>
<characteristicType id="74cd-a1b5-8986-3f34" name="A"/>
</characteristicTypes>
</profileType>
</profileTypes>
<categoryEntries>
<categoryEntry id="cbfd-4970-f914-ac9a" name="Belisarius Cawl" hidden="false"/>
<categoryEntry id="6743-7925-6ec5-6b91" name="Tech-Priest" hidden="false"/>
<categoryEntry id="e4c1-ea70-18cd-6caf" name="Dominus" hidden="false"/>
<categoryEntry id="0775-0dfb-b8c2-f2b0" name="Enginseer" hidden="false"/>
<categoryEntry id="3966-1076-64dc-9148" name="Kataphron Breachers" hidden="false"/>
<categoryEntry id="cc3b-aa01-8d8c-2556" name="Kataphron Destroyers" hidden="false"/>
<categoryEntry id="9fb2-7ff0-3fc7-725f" name="Electro-Priests" hidden="false"/>
<categoryEntry id="4cf4-52eb-596c-6a8d" name="Fulgurite" hidden="false"/>
<categoryEntry id="3848-aa3f-847b-a48a" name="Corpuscarii" hidden="false"/>
<categoryEntry id="82c2-bcf2-c8fd-5a38" name="Kastelan Robots" hidden="false"/>
<categoryEntry id="679d-a5b2-5f40-8398" name="Cybernetica Datasmith" hidden="false"/>
<categoryEntry id="087d-6c35-17a2-b79c" name="Servitors" hidden="false"/>
<categoryEntry id="768d-d42c-e62a-fb21" name="Skitarii Rangers" hidden="false"/>
<categoryEntry id="f4e9-fdfc-d210-f161" name="Skitarii Vanguard" hidden="false"/>
<categoryEntry id="3ef1-101b-798e-840c" name="Sicarian Infiltrators" hidden="false"/>
<categoryEntry id="dcc4-65b7-b4a5-8611" name="Sicarian Ruststalkers" hidden="false"/>
<categoryEntry id="6138-457b-42b1-4fef" name="Ironstrider Balistarii" hidden="false"/>
<categoryEntry id="ab4e-7301-965d-a747" name="Sydonian Dragoons" hidden="false"/>
<categoryEntry id="0310-2aa0-62fc-d659" name="Onager Dunecrawler" hidden="false"/>
<categoryEntry id="dfde-d915-6e58-09af" name="Faction: <Forge World>" hidden="false"/>
<categoryEntry id="2293-bc6b-5261-a2c0" name="Faction: Mars" hidden="false"/>
<categoryEntry id="ca27-5069-1c2c-a28b" name="Faction: Adeptus Mechanicus" hidden="false"/>
<categoryEntry id="6bb8-fe7f-7918-bf8f" name="Faction: Cult Mechanicus" hidden="false"/>
<categoryEntry id="3c55-5bc9-3dc3-a3ff" name="Faction: Astra Militarum" hidden="false"/>
<categoryEntry id="cdee-83f1-5387-56cc" name="Faction: Skitarii" hidden="false"/>
<categoryEntry id="3ee7-025b-11e8-b1bd" name="Faction: Secutarii" hidden="false"/>
<categoryEntry id="638c-19da-89bd-1382" name="Secutarii Hoplites" hidden="false"/>
<categoryEntry id="d315-5b8c-394d-487d" name="Secutarii Peltasts" hidden="false"/>
<categoryEntry id="1d15-5b91-4246-9d78" name="Manipulus" hidden="false"/>
<categoryEntry id="4263-32a1-d24d-1ccb" name="Skorpius Dunerider" hidden="false"/>
<categoryEntry id="250e-03cd-96ec-e2ba" name="Skorpius Disintegrator" hidden="false"/>
<categoryEntry id="b01c-14bb-3f76-d636" name="X-101" hidden="false"/>
<categoryEntry id="f905-1c15-baa2-1cd8" name="Daedalosus" hidden="false"/>
<categoryEntry id="45b4-850d-452e-dfdc" name="Archaeopter" publicationId="59a7-c568-3957-8381" hidden="false"/>
<categoryEntry id="bf62-9bda-7479-a491" name="Archaeopter Stratoraptor" hidden="false"/>
<categoryEntry id="69dc-cdd1-d10d-6472" name="Archaeopter Transvector" hidden="false"/>
<categoryEntry id="b9f2-0ed8-7b91-eb58" name="Archaeopter Fusilave" hidden="false"/>
<categoryEntry id="8fdd-f2cf-07cf-791a" name="Serberys Raiders" hidden="false"/>
<categoryEntry id="cada-03ef-7171-154b" name="Pteraxxi Skystalkers" hidden="false"/>
<categoryEntry id="c223-3676-ffca-7c07" name="Pteraxii Sterylizors" hidden="false"/>
<categoryEntry id="0c96-23d9-a6e6-6add" name="Serberys Sulphurhounds" hidden="false"/>
</categoryEntries>
<entryLinks>
<entryLink id="447c-82b5-1aa0-190d" name="Belisarius Cawl" hidden="false" collective="false" import="true" targetId="37a6-acbc-d023-b0a5" type="selectionEntry"/>
<entryLink id="fb5a-2f31-b730-9b32" name="Tech-Priest Dominus" hidden="false" collective="false" import="true" targetId="0895-13ad-3ba1-0952" type="selectionEntry"/>
<entryLink id="277f-49b1-9257-87f6" name="Tech-Priest Enginseer" hidden="false" collective="false" import="true" targetId="1aaa-d901-e93c-78b5" type="selectionEntry"/>
<entryLink id="c4ed-cb92-9c78-344c" name="Kataphron Breachers" hidden="false" collective="false" import="true" targetId="462e-7d8f-4ff3-6330" type="selectionEntry"/>
<entryLink id="811d-2fc9-1dfb-1340" name="Kataphron Destroyers" hidden="false" collective="false" import="true" targetId="4d05-c01f-0921-f52e" type="selectionEntry"/>
<entryLink id="b595-0dfd-2e13-09ab" name="Fulgurite Electro-Priests" hidden="false" collective="false" import="true" targetId="2017-60f0-4bb4-c0bd" type="selectionEntry"/>
<entryLink id="aa38-5595-f8fb-7390" name="Corpuscarii Electro-Priests" hidden="false" collective="false" import="true" targetId="8be1-4ebb-3371-d572" type="selectionEntry"/>
<entryLink id="3a1c-d084-c4d7-e4a1" name="Kastelan Robots" hidden="false" collective="false" import="true" targetId="1922-eaab-6f88-d609" type="selectionEntry"/>
<entryLink id="fcec-22ea-2bb1-d303" name="Cybernetica Datasmith" hidden="false" collective="false" import="true" targetId="044c-451c-ed92-3ee2" type="selectionEntry"/>
<entryLink id="0bdb-39db-3241-30cf" name="Servitors" hidden="false" collective="false" import="true" targetId="8d79-d7a1-6eff-431c" type="selectionEntry"/>
<entryLink id="6e02-98e6-5e5d-6f85" name="Skitarii Rangers" hidden="false" collective="false" import="true" targetId="ba77-6fd9-7474-7095" type="selectionEntry"/>
<entryLink id="5d23-9c2d-45e9-1c7f" name="Skitarii Vanguards" hidden="false" collective="false" import="true" targetId="ed1e-bdea-6881-edd6" type="selectionEntry"/>
<entryLink id="b7b9-67ad-9517-679a" name="Sicarian Infiltrators" hidden="false" collective="false" import="true" targetId="606f-d3f0-0649-c4e8" type="selectionEntry"/>
<entryLink id="15db-edfb-487f-9588" name="Sicarian Ruststalkers" hidden="false" collective="false" import="true" targetId="321a-efc3-31ca-0865" type="selectionEntry"/>
<entryLink id="5283-ddea-b023-4d7a" name="Ironstrider Ballistarii" hidden="false" collective="false" import="true" targetId="bd87-5ad4-01bf-3025" type="selectionEntry"/>
<entryLink id="e1d9-5598-8460-54f7" name="Sydonian Dragoons" hidden="false" collective="false" import="true" targetId="cf61-f1a9-c753-5220" type="selectionEntry"/>
<entryLink id="61f5-e29b-7836-672b" name="Onager Dunecrawler" hidden="false" collective="false" import="true" targetId="9f66-b3b8-055d-ccfd" type="selectionEntry"/>
<entryLink id="4fdc-b9a7-3fe7-9e84" name="Forge World Choice" hidden="false" collective="false" import="true" targetId="0dbb-e7cd-4b8e-92aa" type="selectionEntry"/>
<entryLink id="362e-5743-7bb5-8ab5" name="Archeotech Specialist" hidden="false" collective="false" import="true" targetId="1e2c-1226-9ac6-458b" type="selectionEntry"/>
<entryLink id="63fa-410e-9635-70b2" name="Terrax-Pattern Termite Assault Drill" hidden="false" collective="false" import="true" targetId="732b-967e-1bca-5846" type="selectionEntry">
<categoryLinks>
<categoryLink id="d280-6fea-fba5-df95" name="New CategoryLink" hidden="false" targetId="1b66-3f5f-6705-079a" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="ea2b-43e6-5800-04f5" name="Secutarii Hoplites" hidden="false" collective="false" import="true" targetId="622d-d6fb-7fe4-2064" type="selectionEntry"/>
<entryLink id="9e64-5653-cda6-4cde" name="Secutarii Peltasts" hidden="false" collective="false" import="true" targetId="85b2-5806-11b0-0168" type="selectionEntry"/>
<entryLink id="7a0e-3a04-a7ee-57b7" name="[Reference] Warlord Traits (All)" hidden="false" collective="false" import="true" targetId="5c61-1217-fbe3-402f" type="selectionEntry">
<categoryLinks>
<categoryLink id="bdeb-fcc6-2345-6d7b" name="New CategoryLink" hidden="false" targetId="fcff-0f21-93e6-1ddc" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="5cd1-edf8-c52d-a69c" name="Stratagem: Field Commander" hidden="false" collective="false" import="true" targetId="d043-3847-e963-fb5d" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="77d0-58be-c16e-935d" type="equalTo"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="1208-66cc-c4f7-ef59" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</entryLink>
<entryLink id="77d0-58be-c16e-935d" name="Specialist Detachment: Cybernetica Cohort" hidden="false" collective="false" import="true" targetId="0c6f-9acd-7617-22c2" type="selectionEntry"/>
<entryLink id="1208-66cc-c4f7-ef59" name="Specialist Detachment: Servitor Maniple" hidden="false" collective="false" import="true" targetId="7ee8-356e-17e9-221f" type="selectionEntry"/>
<entryLink id="6a67-f113-53dc-e9be" name="Tech-Priest Manipulus" hidden="false" collective="false" import="true" targetId="708d-afbe-922d-8dde" type="selectionEntry"/>
<entryLink id="f4fb-9663-c072-3919" name="Skorpius Disintegrator" hidden="false" collective="false" import="true" targetId="ebe8-6709-9b5c-b018" type="selectionEntry"/>
<entryLink id="aed6-a600-3343-c780" name="Skorpius Dunerider" hidden="false" collective="false" import="true" targetId="0107-8a69-4db3-da01" type="selectionEntry"/>
<entryLink id="9066-3b93-07ef-5aca" name="X-101" hidden="false" collective="false" import="true" targetId="8eba-a5e8-344d-0e74" type="selectionEntry"/>
<entryLink id="4d4b-9ffd-deed-cbcb" name="Daedalosus" hidden="false" collective="false" import="true" targetId="c1ad-8ec3-4e41-3a40" type="selectionEntry"/>
<entryLink id="bceb-2fd8-bd33-6304" name="Operative Requisition Sanctioned" hidden="false" collective="false" import="true" targetId="0b7d-bfe1-b63e-ecb6" type="selectionEntry"/>
<entryLink id="da28-6348-1e73-6510" name="Archaeopter Fusilave" hidden="false" collective="false" import="true" targetId="c272-5e29-d0ea-0874" type="selectionEntry"/>
<entryLink id="333b-4139-7c0c-4bbb" name="Archaeopter Stratoraptor" hidden="false" collective="false" import="true" targetId="c683-736b-04d8-f2b5" type="selectionEntry"/>
<entryLink id="7356-6ff3-cd4a-c599" name="Archaeopter Transvector" hidden="false" collective="false" import="true" targetId="57fc-e1ef-1db9-de98" type="selectionEntry"/>
<entryLink id="e9c2-ec7b-1e02-d533" name="Serberys Raiders" hidden="false" collective="false" import="true" targetId="0b7b-1ed0-3629-81ac" type="selectionEntry"/>
<entryLink id="a36e-3467-d9cd-f47a" name="Pteraxii Skystalkers" hidden="false" collective="false" import="true" targetId="e0a4-e0d2-0e92-cd47" type="selectionEntry"/>
<entryLink id="b906-0217-f6c5-1259" name="Pteraxii Sterylizors" hidden="false" collective="false" import="true" targetId="3233-ff27-141a-9991" type="selectionEntry"/>
<entryLink id="197f-4131-fbb4-b555" name="Serberys Sulphurhounds" hidden="false" collective="false" import="true" targetId="20e0-2d7b-f2af-37bc" type="selectionEntry"/>
<entryLink id="fe55-4b03-2cc5-8a0d" name="List Stratagems" hidden="false" collective="false" import="true" targetId="8695-52d3-837c-c475" type="selectionEntry"/>
<entryLink id="df3e-e70c-0031-80c1" name="Lord Inquisitor Kyria Draxus" hidden="false" collective="false" import="true" targetId="132c-a00e-3b0b-5795" type="selectionEntry">
<categoryLinks>
<categoryLink id="38d5-61a5-c6f9-e6e8" name="New CategoryLink" hidden="false" targetId="ff36a6f3-19bf-4f48-8956-adacfd28fe74" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="27ff-37a2-ccb3-50fa" name="Ephrael Stern and Kyganil of the Bloody Tears" hidden="false" collective="false" import="true" targetId="7dca-e055-7a15-4bf3" type="selectionEntry">
<categoryLinks>
<categoryLink id="2e18-3f93-c641-7417" name="New CategoryLink" hidden="false" targetId="ff36a6f3-19bf-4f48-8956-adacfd28fe74" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
<infoLinks>
<infoLink id="3125-f7eb-49fb-d606" name="Soldiers of the Machine God" hidden="false" targetId="384e-363a-b497-ee6b" type="rule"/>
<infoLink id="6f73-cdf0-ecfd-0085" name="Canticle of the Omnissiah - Agripinaa: Verse of Vengeance" hidden="false" targetId="4bed-31bb-36ab-abb8" type="rule"/>
<infoLink id="f8d0-18db-74ea-e27c" name="Canticle of the Omnissiah - Graia: Mantra of Discipline" hidden="false" targetId="d6ed-d165-5449-4818" type="rule"/>
<infoLink id="a54c-df1d-4183-69cf" name="Canticle of the Omnissiah - Lucius: Luminescent Blessing" hidden="false" targetId="8e56-f74b-fc61-acea" type="rule"/>
<infoLink id="c451-e5f5-a60f-c65d" name="Canticle of the Omnissiah - Metalica: Tribute of Emphatic Veneraton" hidden="false" targetId="f3c4-0b09-e872-4458" type="rule"/>
<infoLink id="d0dc-dc13-8b7e-2486" name="Canticle of the Omnissiah - Ryza: Citation in Savagery" hidden="false" targetId="43fc-6e22-dfda-f578" type="rule"/>
<infoLink id="60e1-437b-7d8f-d5c6" name="Canticles of the Omnissiah - Mars: Panegyric Procession" hidden="false" targetId="1341-df13-3a13-9b91" type="rule"/>
<infoLink id="77a4-46ec-3a46-3886" name="Canticle of the Omnissiah - Stygies: Plea of the Veiled Hunter" hidden="false" targetId="43fc-6e22-dfda-f578" type="rule"/>
</infoLinks>
<sharedSelectionEntries>
<selectionEntry id="37a6-acbc-d023-b0a5" name="Belisarius Cawl" publicationId="ebe8-544e-pubN65537" page="74" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="0dbb-e7cd-4b8e-92aa" type="atLeast"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="bde4-e5f7-024d-78a4" type="lessThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9bde-fb39-131b-dd45" type="max"/>
</constraints>
<profiles>
<profile id="3245-72e3-02d5-dcfd" name="Belisarius Cawl" publicationId="ebe8-544e-pubN65537" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">6</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">2+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">2+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">5</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">6</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">8</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">4</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">9</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">2+</characteristic>
</characteristics>
</profile>
<profile id="513d-39e0-1961-cfe5" name="Archmagos" publicationId="ebe8-544e-pubN65537" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">Whilst Belisarius Cawl is on the battlefield, you can add or subtract 1 when rolling on the Canticles of the Omnissiah table.</characteristic>
</characteristics>
</profile>
<profile id="5db0-14b5-d2cf-3ae0" name="Self-repair Mechanisms" publicationId="ebe8-544e-pubN65537" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">At the beginning of each of your turns, Belisarius Cawl regains D3 lost wounds.</characteristic>
</characteristics>
</profile>
<profile id="07b5-79d7-1181-176d" name="Lord of Mars" publicationId="ebe8-544e-pubN65537" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">You can re-roll any hit rolls in the Shooting phase for friendly MARS units within 6"</characteristic>
</characteristics>
</profile>
<profile id="f59b-7342-e493-cf03" name="Master of Machines (Cawl)" publicationId="ebe8-544e-pubN65537" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">At the end of your Movement phase Belisarius Cawl can repair a single friendly IMPERIUM model within 3" (but not himself). The model being repaired regains 1 lost wound, unless it is an ADEPTUS MECHANICUS model, in which case it regains D3 lost wounds. A model may not be the target of the Master of Machines ability more than once per turn.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="a17a-59cf-ba26-0ba6" name="Canticles of the Omnissiah" hidden="false" targetId="ad49-5c00-b6ea-2ac7" type="rule"/>
<infoLink id="e05e-656a-e344-eddb" name="Refractor Field" hidden="false" targetId="ea42-0a85-6f73-d867" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="f14c-d46d-fc61-dab2" name="New CategoryLink" hidden="false" targetId="ef18-746a-369f-43a4" primary="false"/>
<categoryLink id="da75-0bb0-a2ed-d282" name="New CategoryLink" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="f4ca-5c96-bc11-588b" name="New CategoryLink" hidden="false" targetId="cbfd-4970-f914-ac9a" primary="false"/>
<categoryLink id="b8bf-9893-9b27-93e3" name="New CategoryLink" hidden="false" targetId="6743-7925-6ec5-6b91" primary="false"/>
<categoryLink id="1b11-89e0-e2f0-a67f" name="New CategoryLink" hidden="false" targetId="2293-bc6b-5261-a2c0" primary="false"/>
<categoryLink id="465d-4d5d-e256-10f8" name="New CategoryLink" hidden="false" targetId="6bb8-fe7f-7918-bf8f" primary="false"/>
<categoryLink id="7263-4599-af77-4583" name="New CategoryLink" hidden="false" targetId="ca27-5069-1c2c-a28b" primary="false"/>
<categoryLink id="4f72-0ace-b905-27d2" name="Faction: Imperium" hidden="false" targetId="84e2-9fa9-ebe6-1d18" primary="false"/>
<categoryLink id="5f97-fa17-eff2-0d6c" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="12e1-426d-165e-6d47" name="Omnissian Axe" hidden="false" collective="false" import="true" targetId="d97f-3755-f0cf-7e5f" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0dc1-b128-24ea-863a" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6df0-1135-3ef1-a141" type="min"/>
</constraints>
</entryLink>
<entryLink id="0c8e-5d8f-7a4b-482b" name="Warlord" hidden="false" collective="false" import="true" targetId="d4fa-d036-f5dd-f91d" type="selectionEntry"/>
<entryLink id="7e44-d845-7a1e-19b2" name="Mechadendrite Hive" hidden="false" collective="false" import="true" targetId="152c-20f3-0a85-463f" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4568-63d9-e669-3259" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="30b9-598d-db46-2445" type="min"/>
</constraints>
</entryLink>
<entryLink id="5908-92b5-b25b-c79b" name="Arc Scourge" hidden="false" collective="false" import="true" targetId="a440-19f4-950e-bad7" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0e56-42dd-944b-5b2b" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="60b8-c774-814a-66b9" type="min"/>
</constraints>
</entryLink>
<entryLink id="3e54-7278-6e9c-83e5" name="Solar Atomiser" hidden="false" collective="false" import="true" targetId="5af4-67dc-05c8-15d5" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4d53-508d-e450-fda0" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="82e9-5852-f69b-05c6" type="min"/>
</constraints>
</entryLink>
<entryLink id="8666-a23a-1137-3d98" name="Warlord Trait" hidden="false" collective="false" import="true" targetId="fd91-ec78-9e06-df45" type="selectionEntryGroup"/>
<entryLink id="04a8-9a17-0ea2-775a" name="Mechanicus Locum" hidden="false" collective="false" import="true" targetId="e742-aeea-0743-d8cf" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="200.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="10.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="0895-13ad-3ba1-0952" name="Tech-Priest Dominus" publicationId="ebe8-544e-pubN65537" page="74" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="98b9-3c6b-d02a-f8d1" name="Tech-Priest Dominus" publicationId="ebe8-544e-pubN65537" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">6"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">3+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">2+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">4</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">4</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">5</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">3</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">8</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">2+</characteristic>
</characteristics>
</profile>
<profile id="b005-21b2-f6b4-5387" name="Lord of the Machine Cult" publicationId="ebe8-544e-pubN65537" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">You can re-roll hit rolls of 1 in the Shooting phase for friendly <FORGE WORLD> units within 6"</characteristic>
</characteristics>
</profile>
<profile id="c0c4-a119-9fe4-401f" name="Masterwork Bionics" publicationId="ebe8-544e-pubN65537" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">At the beginning of each of your turns, this model regains D3 lost wounds.</characteristic>
</characteristics>
</profile>
<profile id="2969-1698-f489-c6dc" name="Master of Machines (Dominus)" publicationId="ebe8-544e-pubN65537" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">At the end of your Movement phase this model can repair a single friendly <FORGE WORLD> or QUESTOR MECHANICUS model within 3" (but not itself). If the model being repaired is a <FORGE WORLD> model, it regains D3 lost wounds; if it is a QUESTOR MECHANNICUS model, it regains 1 lost wound. A model may not be the target of the Master of Machines ability more than once per turn.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="3ed8-9fd5-bb75-5d65" name="Canticles of the Omnissiah" hidden="false" targetId="ad49-5c00-b6ea-2ac7" type="rule"/>
<infoLink id="cb5a-41d2-bba7-3a05" name="Refractor Field" hidden="false" targetId="ea42-0a85-6f73-d867" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="e4bf-978a-ea55-56b2" name="New CategoryLink" hidden="false" targetId="ef18-746a-369f-43a4" primary="false"/>
<categoryLink id="26d6-8dbf-ec3d-852e" name="New CategoryLink" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="1383-6867-6b5c-5eb1" name="New CategoryLink" hidden="false" targetId="6743-7925-6ec5-6b91" primary="false"/>
<categoryLink id="2858-120e-9e24-3530" name="New CategoryLink" hidden="false" targetId="e4c1-ea70-18cd-6caf" primary="false"/>
<categoryLink id="4acd-4f4b-39ec-a4cd" name="New CategoryLink" hidden="false" targetId="6bb8-fe7f-7918-bf8f" primary="false"/>
<categoryLink id="04b8-3900-119f-f7a1" name="New CategoryLink" hidden="false" targetId="ca27-5069-1c2c-a28b" primary="false"/>
<categoryLink id="6811-39ab-0a33-0c70" name="New CategoryLink" hidden="false" targetId="dfde-d915-6e58-09af" primary="false"/>
<categoryLink id="965e-45b9-6b91-e95d" name="Faction: Imperium" hidden="false" targetId="84e2-9fa9-ebe6-1d18" primary="false"/>
<categoryLink id="fa84-c8fe-a1a3-8846" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="abca-3294-da99-a835" name="Primary Weapon" hidden="false" collective="false" import="true" defaultSelectionEntryId="3cfb-b4d3-8b29-44bb">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="e6ca-c81e-bdba-e5bd" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d69d-fb50-96f5-4cea" type="max"/>
</constraints>
<entryLinks>
<entryLink id="3cfb-b4d3-8b29-44bb" name="Volkite Blaster" hidden="false" collective="false" import="true" targetId="0a8a-2f6d-2507-f330" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2c55-2c1a-74b8-f55f" type="max"/>
</constraints>
</entryLink>
<entryLink id="8dee-2d13-e0b0-103f" name="Eradication Ray" hidden="false" collective="false" import="true" targetId="344d-e45a-1dec-e0f2" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e675-2902-3bac-983a" type="max"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="285c-cca2-da43-6fb5" name="Sidearm" hidden="false" collective="false" import="true" defaultSelectionEntryId="405d-f5ed-acf4-4d41">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0330-6f7e-7dde-d72d" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="8cc0-899c-5b2b-a978" type="max"/>
</constraints>
<entryLinks>
<entryLink id="405d-f5ed-acf4-4d41" name="Macrostubber" hidden="false" collective="false" import="true" targetId="d590-f332-a5f8-210b" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="922c-daf9-2702-0c9c" type="max"/>
</constraints>
</entryLink>
<entryLink id="fe6b-fb6f-52f1-5303" name="Phosphor Serpenta" hidden="false" collective="false" import="true" targetId="1eff-f397-51b4-476b" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c93a-aa54-a01b-49a8" type="max"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="d3b1-149f-5735-61d1" name="Arcana Mechanicum" hidden="false" collective="false" import="true" targetId="231f-7ac6-90ea-0f52" type="selectionEntryGroup"/>
<entryLink id="1a59-e14a-b02c-b631" name="Warlord" hidden="false" collective="false" import="true" targetId="d4fa-d036-f5dd-f91d" type="selectionEntry"/>
<entryLink id="de1b-c75c-26a1-5ca7" name="Omnissian Axe" hidden="false" collective="false" import="true" targetId="d97f-3755-f0cf-7e5f" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d997-6356-a647-2579" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7641-a7a2-f951-c8ef" type="min"/>
</constraints>
</entryLink>
<entryLink id="23ec-e5a7-65b7-dcc3" name="Field Commander" hidden="true" collective="false" import="true" targetId="4056-c4ee-aac5-4564" type="selectionEntryGroup">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="d043-3847-e963-fb5d" type="equalTo"/>
<condition field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="d4fa-d036-f5dd-f91d" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</entryLink>
<entryLink id="8b96-f533-5435-83b0" name="Is a Custom Character" hidden="false" collective="false" import="true" targetId="43c4-8968-c599-ad5f" type="selectionEntry"/>
<entryLink id="9830-aa39-fce1-dbab" name="Custom Character Selections" hidden="false" collective="false" import="true" targetId="8774-e003-4a50-56c7" type="selectionEntryGroup"/>
<entryLink id="8361-ee72-267a-865d" name="Warlord Trait" hidden="false" collective="false" import="true" targetId="fd91-ec78-9e06-df45" type="selectionEntryGroup"/>
<entryLink id="8793-d41c-9dd5-51e2" name="Mechanicus Locum" hidden="false" collective="false" import="true" targetId="e742-aeea-0743-d8cf" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="75.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="5.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="1aaa-d901-e93c-78b5" name="Tech-Priest Enginseer" publicationId="ebe8-544e-pubN65537" page="75" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="d532-8f9c-e51c-c55f" name="Tech-Priest Enginseer" publicationId="ebe8-544e-pubN65537" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">6"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">4+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">4+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">4</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">4</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">4</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">2</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">8</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
<profile id="0ed9-2c1d-f7b3-e221" name="Master of Machines (Enginseer)" publicationId="ebe8-544e-pubN65537" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">At the end of your Movement phase this model can repair a single friendly <FORGE WORLD> VEHICLE, ASTRA MILITARUM VEHICLE or QUESTOR MECHANICUS model within 3". If the model being repaired is a <FORGE WORLD> or ASTRA MILITARUM model, it regains D3 lost wounds; if it is a QUESTOR MECHANICUS model, it regains 1 lost wound. A model may not be the target of the Master of Machines ability more than once per turn.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="40f1-bcc5-8f3e-d6cd" name="Bionics" hidden="false" targetId="d060-09ec-5fdb-2f06" type="profile"/>
<infoLink id="0446-3996-6b60-8528" name="Canticles of the Omnissiah" hidden="false" targetId="ad49-5c00-b6ea-2ac7" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="f56f-0583-b326-ae9e" name="New CategoryLink" hidden="false" targetId="6743-7925-6ec5-6b91" primary="false"/>
<categoryLink id="ea6c-62fd-fe83-05c7" name="New CategoryLink" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="0dec-df6b-cc57-cf81" name="New CategoryLink" hidden="false" targetId="0775-0dfb-b8c2-f2b0" primary="false"/>
<categoryLink id="1dc6-8e6e-b508-ec57" name="New CategoryLink" hidden="false" targetId="dfde-d915-6e58-09af" primary="false"/>
<categoryLink id="7187-c394-6a52-7c30" name="New CategoryLink" hidden="false" targetId="ca27-5069-1c2c-a28b" primary="false"/>
<categoryLink id="597a-ec80-54ad-f1a2" name="New CategoryLink" hidden="false" targetId="6bb8-fe7f-7918-bf8f" primary="false"/>
<categoryLink id="77f3-2ec1-3970-62bb" name="Character" hidden="false" targetId="ef18-746a-369f-43a4" primary="false"/>
<categoryLink id="e5f2-fb40-33df-ae66" name="Faction: Imperium" hidden="false" targetId="84e2-9fa9-ebe6-1d18" primary="false"/>
<categoryLink id="6146-3aa1-8550-2cd1" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="a337-6ae9-c966-611b" name="Servo-arm" hidden="false" collective="false" import="true" targetId="61ae-3901-0a79-4ec9" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3a40-01de-fe47-ca4d" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="06b8-9d4b-5b23-37fd" type="max"/>
</constraints>
</entryLink>
<entryLink id="46a4-1b37-1d4d-4829" name="Warlord" hidden="false" collective="false" import="true" targetId="d4fa-d036-f5dd-f91d" type="selectionEntry"/>
<entryLink id="35d4-4d5d-f6e3-f73f" name="Arcana Mechanicum" hidden="false" collective="false" import="true" targetId="231f-7ac6-90ea-0f52" type="selectionEntryGroup"/>
<entryLink id="ab4a-531c-00bc-0236" name="Omnissian Axe" hidden="false" collective="false" import="true" targetId="d97f-3755-f0cf-7e5f" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3528-156e-dcf6-e348" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ed20-2fb7-8b79-d589" type="max"/>
</constraints>
</entryLink>
<entryLink id="7731-bbf0-6f31-d704" name="Laspistol" hidden="false" collective="false" import="true" targetId="d500-dddf-7492-d5b1" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f468-c699-100a-b854" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="78d2-380d-1d24-513e" type="max"/>
</constraints>
</entryLink>
<entryLink id="3656-0ffe-28fe-f50b" name="Field Commander" hidden="true" collective="false" import="true" targetId="4056-c4ee-aac5-4564" type="selectionEntryGroup">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="d043-3847-e963-fb5d" type="equalTo"/>
<condition field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="d4fa-d036-f5dd-f91d" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</entryLink>
<entryLink id="7768-9497-9cc1-b76b" name="Is a Custom Character" hidden="false" collective="false" import="true" targetId="43c4-8968-c599-ad5f" type="selectionEntry"/>
<entryLink id="fa01-551a-3e40-e308" name="Custom Character Selections" hidden="false" collective="false" import="true" targetId="8774-e003-4a50-56c7" type="selectionEntryGroup"/>
<entryLink id="0c61-c3e6-74fc-2354" name="Warlord Trait" hidden="false" collective="false" import="true" targetId="fd91-ec78-9e06-df45" type="selectionEntryGroup"/>
<entryLink id="0fb5-d169-61cc-4ad0" name="Mechanicus Locum" hidden="false" collective="false" import="true" targetId="e742-aeea-0743-d8cf" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="35.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="2.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="d590-f332-a5f8-210b" name="Macrostubber" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="cbff-039c-28cb-7bc9" name="Macrostubber" publicationId="ebe8-544e-pubN65537" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">12"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Pistol 5</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">4</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">0</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">1</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="462e-7d8f-4ff3-6330" name="Kataphron Breachers" publicationId="ebe8-544e-pubN65537" page="76" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="increment" field="e356-c769-5920-6e14" value="5.0">
<conditions>
<condition field="selections" scope="462e-7d8f-4ff3-6330" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="model" type="greaterThan"/>
</conditions>
</modifier>
<modifier type="increment" field="e356-c769-5920-6e14" value="5.0">
<conditions>
<condition field="selections" scope="462e-7d8f-4ff3-6330" value="9.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="model" type="greaterThan"/>
</conditions>
</modifier>
<modifier type="increment" field="e356-c769-5920-6e14" value="5.0">
<conditions>
<condition field="selections" scope="462e-7d8f-4ff3-6330" value="6.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="model" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<infoLinks>
<infoLink id="3b78-5947-c815-9a58" name="Bionics" hidden="false" targetId="d060-09ec-5fdb-2f06" type="profile"/>
<infoLink id="0f96-1823-690f-88e1" name="Heavy Battle Servitor" hidden="false" targetId="9de8-33de-b0e0-352e" type="profile"/>
<infoLink id="d1fd-4229-33d9-c611" name="Canticles of the Omnissiah" hidden="false" targetId="ad49-5c00-b6ea-2ac7" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="a3da-ecbe-6212-d255" name="Faction: Imperium" hidden="false" targetId="84e2-9fa9-ebe6-1d18" primary="false"/>
<categoryLink id="6878-0c0f-f325-bf98" name="Faction: <Forge World>" hidden="false" targetId="dfde-d915-6e58-09af" primary="false"/>
<categoryLink id="b2a5-8415-8f91-4945" name="Faction: Adeptus Mechanicus" hidden="false" targetId="ca27-5069-1c2c-a28b" primary="false"/>
<categoryLink id="c4f7-f126-f47b-f7e3" name="Faction: Cult Mechanicus" hidden="false" targetId="6bb8-fe7f-7918-bf8f" primary="false"/>
<categoryLink id="5ebb-5de0-32e9-0c8e" name="Infantry" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="93d6-c7e1-c284-572a" name="Kataphron Breachers" hidden="false" targetId="3966-1076-64dc-9148" primary="false"/>
<categoryLink id="68e1-15b7-1928-5640" name="New CategoryLink" hidden="false" targetId="5d76b6f5-20ae-4d70-8f59-ade72a2add3a" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="5e15-df07-339a-11aa" name="Kataphron Breacher" hidden="false" collective="false" import="true" targetId="48ad-2df6-55b4-2e80" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="12.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="994e-b57e-397f-40ce" type="max"/>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1798-11b8-7b13-ef57" type="min"/>
</constraints>
</entryLink>
<entryLink id="c93f-91f3-4d63-a335" name="Has Battle Honours" hidden="false" collective="false" import="true" targetId="4763-757f-499f-d998" type="selectionEntry"/>
<entryLink id="1c71-2777-83fc-7343" name="Battle Honours" hidden="false" collective="false" import="true" targetId="5518-d0f5-a880-d71c" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="5.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="4d05-c01f-0921-f52e" name="Kataphron Destroyers" publicationId="ebe8-544e-pubN65537" page="77" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="set" field="e356-c769-5920-6e14" value="14.0">
<conditions>
<condition field="selections" scope="4d05-c01f-0921-f52e" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="model" type="greaterThan"/>
</conditions>
</modifier>
<modifier type="set" field="e356-c769-5920-6e14" value="21.0">
<conditions>
<condition field="selections" scope="4d05-c01f-0921-f52e" value="6.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="model" type="greaterThan"/>
</conditions>
</modifier>
<modifier type="set" field="e356-c769-5920-6e14" value="28.0">
<conditions>
<condition field="selections" scope="4d05-c01f-0921-f52e" value="9.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="model" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<infoLinks>
<infoLink id="dfef-e3d2-98cf-fa72" name="Bionics" hidden="false" targetId="d060-09ec-5fdb-2f06" type="profile"/>
<infoLink id="3d82-7fd3-273f-6b95" name="Heavy Battle Servitor" hidden="false" targetId="9de8-33de-b0e0-352e" type="profile"/>
<infoLink id="3ee4-da96-cf11-349d" name="Canticles of the Omnissiah" hidden="false" targetId="ad49-5c00-b6ea-2ac7" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="d8d8-c799-2f40-28c8" name="Faction: Imperium" hidden="false" targetId="84e2-9fa9-ebe6-1d18" primary="false"/>
<categoryLink id="5ddf-1b68-41d3-80dc" name="New CategoryLink" hidden="false" targetId="5d76b6f5-20ae-4d70-8f59-ade72a2add3a" primary="true"/>
<categoryLink id="7a5e-68b7-012b-6554" name="Faction: Cult Mechanicus" hidden="false" targetId="6bb8-fe7f-7918-bf8f" primary="false"/>
<categoryLink id="8feb-d9e5-e07e-33d9" name="Faction: Adeptus Mechanicus" hidden="false" targetId="ca27-5069-1c2c-a28b" primary="false"/>
<categoryLink id="fc91-1843-f88b-5acf" name="Faction: <Forge World>" hidden="false" targetId="dfde-d915-6e58-09af" primary="false"/>
<categoryLink id="b55f-d753-69f0-ef06" name="Infantry" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="d45f-a6c4-5b4c-d4e3" name="Kataphron Destroyers" hidden="false" targetId="cc3b-aa01-8d8c-2556" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="b148-9d89-af88-8913" name="Kataphron Destroyer" hidden="false" collective="false" import="true" targetId="5693-b5f3-c487-dbc3" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="12.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="dc8c-e897-5b31-6e55" type="max"/>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="27c5-97be-28f5-3f32" type="min"/>
</constraints>
</entryLink>
<entryLink id="1426-cfb0-b67d-34e5" name="Has Battle Honours" hidden="false" collective="false" import="true" targetId="4763-757f-499f-d998" type="selectionEntry"/>
<entryLink id="3c7f-9b71-6a57-7ed2" name="Battle Honours" hidden="false" collective="false" import="true" targetId="5518-d0f5-a880-d71c" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="7.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="2017-60f0-4bb4-c0bd" name="Fulgurite Electro-Priests" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="set" field="e356-c769-5920-6e14" value="8">
<conditions>
<condition field="selections" scope="2017-60f0-4bb4-c0bd" value="5.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="model" type="greaterThan"/>
</conditions>
</modifier>
<modifier type="set" field="e356-c769-5920-6e14" value="12">
<conditions>
<condition field="selections" scope="2017-60f0-4bb4-c0bd" value="10.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="model" type="greaterThan"/>
</conditions>
</modifier>
<modifier type="set" field="e356-c769-5920-6e14" value="16">
<conditions>
<condition field="selections" scope="2017-60f0-4bb4-c0bd" value="15.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="model" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="c47a-f0ad-c6e3-fdde" name="Siphoned Vigor" publicationId="ebe8-544e-pubN65537" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">If this unit wipes out an enemy unit in the Fight phase, their invulnerable save is increased to 3+ for the rest of the battle.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="2a42-cd42-4963-c1d3" name="Fanatical Devotion" hidden="false" targetId="4e54-00df-5980-5f86" type="profile"/>
<infoLink id="c5c1-9efb-8400-3d65" name="Voltagheist Field" hidden="false" targetId="fcc4-da6a-c4fa-5903" type="profile"/>
<infoLink id="c024-cf42-865d-3e06" name="Canticles of the Omnissiah" hidden="false" targetId="ad49-5c00-b6ea-2ac7" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="5355-7365-2c5b-cee4" name="New CategoryLink" hidden="false" targetId="dfde-d915-6e58-09af" primary="false"/>
<categoryLink id="657c-90ae-9975-2a88" name="New CategoryLink" hidden="false" targetId="ca27-5069-1c2c-a28b" primary="false"/>
<categoryLink id="8c8e-e2ea-c73f-1450" name="New CategoryLink" hidden="false" targetId="6bb8-fe7f-7918-bf8f" primary="false"/>
<categoryLink id="deac-702e-d471-ad94" name="Fulgurite" hidden="false" targetId="4cf4-52eb-596c-6a8d" primary="false"/>
<categoryLink id="62bc-03a9-ec2c-6e3e" name="Infantry" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="5791-b57d-a547-3b47" name="Electro-Priests" hidden="false" targetId="9fb2-7ff0-3fc7-725f" primary="false"/>
<categoryLink id="7eac-d711-8841-2b60" name="Faction: Imperium" hidden="false" targetId="84e2-9fa9-ebe6-1d18" primary="false"/>
<categoryLink id="e22a-8460-5f47-0edd" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="8bad-fc33-7691-e013" name="Fulgurite Electro-Priest" hidden="false" collective="false" import="true" targetId="f139-995b-491f-2175" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="5.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="a8f1-5f23-828e-fad3" type="min"/>
<constraint field="selections" scope="parent" value="20.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="2ba4-a94b-434d-6c9b" type="max"/>
</constraints>
</entryLink>
<entryLink id="6ded-f2c9-3f69-6f2a" name="Has Battle Honours" hidden="false" collective="false" import="true" targetId="4763-757f-499f-d998" type="selectionEntry"/>
<entryLink id="2ed6-242d-7944-477f" name="Battle Honours" hidden="false" collective="false" import="true" targetId="5518-d0f5-a880-d71c" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="4.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="8be1-4ebb-3371-d572" name="Corpuscarii Electro-Priests" publicationId="ebe8-544e-pubN65537" page="80" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="set" field="e356-c769-5920-6e14" value="6">
<conditions>
<condition field="selections" scope="8be1-4ebb-3371-d572" value="5.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="model" type="greaterThan"/>
</conditions>
</modifier>
<modifier type="set" field="e356-c769-5920-6e14" value="9">
<conditions>
<condition field="selections" scope="8be1-4ebb-3371-d572" value="10.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="model" type="greaterThan"/>
</conditions>
</modifier>
<modifier type="set" field="e356-c769-5920-6e14" value="12">
<conditions>
<condition field="selections" scope="8be1-4ebb-3371-d572" value="15.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="model" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<infoLinks>
<infoLink id="941c-6e4f-ebf6-3180" name="Fanatical Devotion" hidden="false" targetId="4e54-00df-5980-5f86" type="profile"/>
<infoLink id="88cf-f106-c04c-885f" name="Voltagheist Field" hidden="false" targetId="fcc4-da6a-c4fa-5903" type="profile"/>
<infoLink id="04e2-689d-355b-96e9" name="Canticles of the Omnissiah" hidden="false" targetId="ad49-5c00-b6ea-2ac7" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="c173-6510-d0f7-fb96" name="New CategoryLink" hidden="false" targetId="dfde-d915-6e58-09af" primary="false"/>
<categoryLink id="9110-9f93-1c36-fa5d" name="New CategoryLink" hidden="false" targetId="ca27-5069-1c2c-a28b" primary="false"/>
<categoryLink id="10ec-336a-b50e-8cb2" name="New CategoryLink" hidden="false" targetId="6bb8-fe7f-7918-bf8f" primary="false"/>
<categoryLink id="7412-25b1-fb62-cca3" name="Corpuscarii" hidden="false" targetId="3848-aa3f-847b-a48a" primary="false"/>
<categoryLink id="176a-c04c-1216-2ce0" name="Electro-Priests" hidden="false" targetId="9fb2-7ff0-3fc7-725f" primary="false"/>
<categoryLink id="a47a-c55d-26db-d375" name="Infantry" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="0d91-c825-d1d5-eabd" name="Faction: Imperium" hidden="false" targetId="84e2-9fa9-ebe6-1d18" primary="false"/>
<categoryLink id="90b1-0f91-9025-6608" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="ebcb-64f6-35a0-9027" name="Corpuscarii Electro-Priest" hidden="false" collective="false" import="true" targetId="d460-c5c9-3f24-4be6" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="20.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="78ca-cbb0-8bec-cd53" type="max"/>
<constraint field="selections" scope="parent" value="5.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="8d60-e3c0-094b-a711" type="min"/>
</constraints>
</entryLink>
<entryLink id="16d7-3bab-30e4-c23c" name="Has Battle Honours" hidden="false" collective="false" import="true" targetId="4763-757f-499f-d998" type="selectionEntry"/>
<entryLink id="de61-ebc1-d366-6ea1" name="Battle Honours" hidden="false" collective="false" import="true" targetId="5518-d0f5-a880-d71c" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="3.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="03b4-e381-be4d-2186" name="Heavy Phosphor Blaster" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="404d-3790-90d3-e57b" name="Heavy Phosphor Blaster" publicationId="ebe8-544e-pubN65537" hidden="true" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="ancestor" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="800c-8672-fd46-dc38" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">36"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Heavy 3</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">6</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-2</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">1</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">When resolving an attack made with this weapon, the target does not receive the benefit of cover. </characteristic>
</characteristics>
</profile>
<profile id="a1aa-33a3-6208-e66a" name="Heavy Phosphor Blaster" publicationId="ebe8-544e-pubN65537" hidden="true" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="ancestor" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="c683-736b-04d8-f2b5" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">36"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Heavy 3</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">6</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-2</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">1</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">Units attacked by this weapon do not gain any bonus to their saving throws for being in cover.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name="pts" typeId="points" value="15.0"/>
</costs>
</selectionEntry>
<selectionEntry id="1922-eaab-6f88-d609" name="Kastelan Robots" publicationId="ebe8-544e-pubN65537" page="82" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="increment" field="e356-c769-5920-6e14" value="12.0">
<conditions>
<condition field="selections" scope="1922-eaab-6f88-d609" value="4.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="model" type="greaterThan"/>
</conditions>
</modifier>
<modifier type="increment" field="e356-c769-5920-6e14" value="12.0">
<conditions>
<condition field="selections" scope="1922-eaab-6f88-d609" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="model" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="f847-eec4-b8b8-1cfb" name="Battle Protocols" publicationId="ebe8-544e-pubN65537" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">When this unit is set up, the Aegis Protocol (see below) is in effect. You can attempt to change the unit’s battle protocol at the start of each of your Movement phases if there is a friendly <FORGEWORLD> Cybernetica Datasmith within 6". To do so, roll a D6; on a 2+ the attempt is successful and you can select any one of the three battle protocols to take effect from the start of the next battle round. Otherwise, the attempt fails and the unit’s current protocol remains in effect.</characteristic>
</characteristics>
</profile>
<profile id="a1e3-941c-7235-5f5c" name="Repulsor Grid" publicationId="ebe8-544e-pubN65537" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">All models in this unit have a 5+ invulnerable save against shooting attacks. In addition, each time you roll a 6 (after re-rolls, but before modifiers) for a repulsor grid’s invulnerable saving throw, the unit that made that attack suffers a mortal wound.</characteristic>
</characteristics>
</profile>
<profile id="7a01-c204-b1cf-4ab5" name="Battle Protocols: Protector" publicationId="ebe8-544e-pubN65537" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">Whilst this battle protocol is in effect, this unit cannot move or charge, but you can double the number of shots it makes with each of its ranged weapons – i.e., the heavy phosphor blaster’s Type becomes Heavy 6 and the incendine combustor’s Type becomes Heavy 2D6.</characteristic>
</characteristics>
</profile>
<profile id="c5a9-c7bd-25ce-8013" name="Battle Protocols: Conqueror" publicationId="ebe8-544e-pubN65537" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">Whilst this battle protocol is in effect, this unit cannot shoot, but it can fight twice in each Fight phase instead of only once.</characteristic>
</characteristics>
</profile>
<profile id="ec05-6187-5619-7930" name="Battle Protocols: Aegis" publicationId="ebe8-544e-pubN65537" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">Whilst this battle protocol is in effect, you can add 1 to any armour and invulnerable saving throws you make for models in the unit.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="ed41-48d6-df8c-10e1" name="Explodes (Kastelan)" hidden="false" targetId="00d1-0722-554a-b4c9" type="profile"/>
<infoLink id="b328-27c4-2dd6-1342" name="Canticles of the Omnissiah" hidden="false" targetId="ad49-5c00-b6ea-2ac7" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="1715-67bf-dd03-f2ab" name="New CategoryLink" hidden="false" targetId="dfde-d915-6e58-09af" primary="false"/>
<categoryLink id="e144-25c2-158f-c5b2" name="New CategoryLink" hidden="false" targetId="ca27-5069-1c2c-a28b" primary="false"/>
<categoryLink id="d8f6-5c35-ff6f-f30e" name="New CategoryLink" hidden="false" targetId="6bb8-fe7f-7918-bf8f" primary="false"/>
<categoryLink id="4847-776e-5137-d078" name="Kastelan Robots" hidden="false" targetId="82c2-bcf2-c8fd-5a38" primary="false"/>
<categoryLink id="1b77-ee61-312c-e3d8" name="Vehicle" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
<categoryLink id="106b-f571-25e6-fe53" name="Faction: Imperium" hidden="false" targetId="84e2-9fa9-ebe6-1d18" primary="false"/>
<categoryLink id="a4c7-d095-36e5-37cb" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="21e7-1513-d95b-04e2" name="Kastelan Robot" hidden="false" collective="false" import="true" targetId="800c-8672-fd46-dc38" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="6.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6882-4150-7d26-916c" type="max"/>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="6213-dc6d-5750-7f7d" type="min"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="12.0"/>
</costs>
</selectionEntry>
<selectionEntry id="044c-451c-ed92-3ee2" name="Cybernetica Datasmith" publicationId="ebe8-544e-pubN65537" page="78" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="c7e4-8754-6efd-53d0" name="Cybernetica Datasmith" publicationId="ebe8-544e-pubN65537" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">6"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">3+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">3+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">4</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">4</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">4</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">2</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">8</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">2+</characteristic>
</characteristics>
</profile>
<profile id="4e03-56c7-3cd6-2439" name="Master of Machines (Datasmith)" publicationId="ebe8-544e-pubN65537" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">At the end of your Movement phase this model can repair a single friendly Kastelan Robot within 3". That model regains D3 lost wounds. A model may not be the target of the Master of Machines ability more than once per turn.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="7be6-a2bc-8798-b59a" name="Canticles of the Omnissiah" hidden="false" targetId="ad49-5c00-b6ea-2ac7" type="rule"/>
<infoLink id="a111-3abc-eabf-2ec8" name="Refractor Field" hidden="false" targetId="ea42-0a85-6f73-d867" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="a1d3-66d3-4e12-5884" name="New CategoryLink" hidden="false" targetId="ef18-746a-369f-43a4" primary="false"/>
<categoryLink id="48f4-dbdc-71e3-776e" name="New CategoryLink" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="fb04-8337-6866-ef4b" name="New CategoryLink" hidden="false" targetId="679d-a5b2-5f40-8398" primary="false"/>
<categoryLink id="788d-7c5b-fc01-f6f1" name="New CategoryLink" hidden="false" targetId="6743-7925-6ec5-6b91" primary="false"/>
<categoryLink id="d4b9-9d84-2df1-74b2" name="New CategoryLink" hidden="false" targetId="dfde-d915-6e58-09af" primary="false"/>
<categoryLink id="c119-c792-9903-b8e7" name="New CategoryLink" hidden="false" targetId="ca27-5069-1c2c-a28b" primary="false"/>
<categoryLink id="c5dd-f9c6-96d8-ba3e" name="New CategoryLink" hidden="false" targetId="6bb8-fe7f-7918-bf8f" primary="false"/>
<categoryLink id="4d4c-7d55-7ac2-7306" name="Faction: Imperium" hidden="false" targetId="84e2-9fa9-ebe6-1d18" primary="false"/>
<categoryLink id="e81c-4768-1b8b-d31c" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="42f7-bf0b-37bd-24cf" name="Arcana Mechanicum" hidden="false" collective="false" import="true" targetId="231f-7ac6-90ea-0f52" type="selectionEntryGroup"/>
<entryLink id="46ff-c914-2f67-c596" name="Warlord" hidden="false" collective="false" import="true" targetId="d4fa-d036-f5dd-f91d" type="selectionEntry"/>
<entryLink id="9bb4-1488-a182-7483" name="Power fist" hidden="false" collective="false" import="true" targetId="f122-3720-fa32-4215" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1b9e-1a21-fb7e-44de" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4c66-cf7e-7435-bf67" type="max"/>
</constraints>
</entryLink>
<entryLink id="0354-fc16-3d41-6fc6" name="Gamma Pistol" hidden="false" collective="false" import="true" targetId="c1a5-09cf-2c52-0e0a" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1108-98eb-094b-ea57" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2e3c-7a3b-2396-c284" type="max"/>
</constraints>
</entryLink>
<entryLink id="906b-9ff9-d0e9-5f60" name="Field Commander" hidden="true" collective="false" import="true" targetId="4056-c4ee-aac5-4564" type="selectionEntryGroup">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="d043-3847-e963-fb5d" type="equalTo"/>
<condition field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="d4fa-d036-f5dd-f91d" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</entryLink>
<entryLink id="cadc-502a-697c-c7f1" name="Is a Custom Character" hidden="false" collective="false" import="true" targetId="43c4-8968-c599-ad5f" type="selectionEntry"/>
<entryLink id="d32b-29f8-1fe1-d367" name="Custom Character Selections" hidden="false" collective="false" import="true" targetId="8774-e003-4a50-56c7" type="selectionEntryGroup"/>
<entryLink id="5389-0c78-c9c6-76c3" name="Warlord Trait" hidden="false" collective="false" import="true" targetId="fd91-ec78-9e06-df45" type="selectionEntryGroup"/>
<entryLink id="3c48-3592-cdb8-4036" name="Mechanicus Locum" hidden="false" collective="false" import="true" targetId="e742-aeea-0743-d8cf" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="25.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="3.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="8d79-d7a1-6eff-431c" name="Servitors" publicationId="ebe8-544e-pubN65537" page="77" hidden="false" collective="false" import="true" type="unit">
<infoLinks>
<infoLink id="2cc8-7a35-5e84-61d7" name="Canticles of the Omnissiah" hidden="false" targetId="ad49-5c00-b6ea-2ac7" type="rule"/>
<infoLink id="623a-3d85-8268-f605" name="Mindlock" hidden="false" targetId="acad-f31b-7808-11c2" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="0921-c42f-3fab-1680" name="New CategoryLink" hidden="false" targetId="dfde-d915-6e58-09af" primary="false"/>
<categoryLink id="4f44-260e-60e1-b8f0" name="New CategoryLink" hidden="false" targetId="ca27-5069-1c2c-a28b" primary="false"/>
<categoryLink id="950c-b4c5-d67b-9ac9" name="Infantry" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="d816-6ecc-6d4d-35e3" name="Servitors" hidden="false" targetId="087d-6c35-17a2-b79c" primary="false"/>
<categoryLink id="e6ae-c8db-0eaf-3d2e" name="Faction: Imperium" hidden="false" targetId="84e2-9fa9-ebe6-1d18" primary="false"/>
<categoryLink id="0a6e-64fe-0462-8a44" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="0e84-7269-917d-a886" name="Servitor Selections" hidden="false" collective="false" import="true" defaultSelectionEntryId="2f3b-48e5-9ebd-ab8a">
<constraints>
<constraint field="selections" scope="parent" value="4.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="0f58-9bfd-82d7-8bfd" type="max"/>
<constraint field="selections" scope="parent" value="4.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="07cd-ee98-0fc4-bcec" type="min"/>
</constraints>
<entryLinks>
<entryLink id="2f3b-48e5-9ebd-ab8a" name="Servitor (Servo arm)" hidden="false" collective="false" import="true" targetId="4b78-c251-558a-dcd0" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="4.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="45a3-c81b-e09a-28d0" type="max"/>
</constraints>
</entryLink>
<entryLink id="4fac-4c4e-b02f-6613" name="Servitor (Plasma Cannon)" hidden="false" collective="false" import="true" targetId="994a-d366-4cdf-27fb" type="selectionEntry">
<modifiers>
<modifier type="decrement" field="b57b-f9d7-bf8c-7d9e" value="1">
<repeats>
<repeat field="selections" scope="8d79-d7a1-6eff-431c" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="2047-6917-9ec2-6026" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="b57b-f9d7-bf8c-7d9e" value="1">
<repeats>
<repeat field="selections" scope="8d79-d7a1-6eff-431c" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="4526-a1d2-ac13-1eb4" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b57b-f9d7-bf8c-7d9e" type="max"/>
</constraints>
</entryLink>
<entryLink id="2f2d-507c-deaf-b9bc" name="Servitor (Heavy Bolter)" hidden="false" collective="false" import="true" targetId="4526-a1d2-ac13-1eb4" type="selectionEntry">
<modifiers>
<modifier type="decrement" field="6e45-baf7-a332-5dfc" value="1">
<repeats>
<repeat field="selections" scope="8d79-d7a1-6eff-431c" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="994a-d366-4cdf-27fb" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="6e45-baf7-a332-5dfc" value="1">
<repeats>
<repeat field="selections" scope="8d79-d7a1-6eff-431c" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="2047-6917-9ec2-6026" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6e45-baf7-a332-5dfc" type="max"/>
</constraints>
</entryLink>
<entryLink id="8cab-eaa3-51c1-a4ec" name="Servitor (Multi-Melta)" hidden="false" collective="false" import="true" targetId="2047-6917-9ec2-6026" type="selectionEntry">
<modifiers>
<modifier type="decrement" field="685d-eff4-946c-9323" value="1">
<repeats>
<repeat field="selections" scope="8d79-d7a1-6eff-431c" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="994a-d366-4cdf-27fb" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="685d-eff4-946c-9323" value="1">
<repeats>
<repeat field="selections" scope="8d79-d7a1-6eff-431c" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="4526-a1d2-ac13-1eb4" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="685d-eff4-946c-9323" type="max"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="fb5d-93c5-f307-4dcf" name="Has Battle Honours" hidden="false" collective="false" import="true" targetId="4763-757f-499f-d998" type="selectionEntry"/>
<entryLink id="08b5-6820-11c7-9274" name="Battle Honours" hidden="false" collective="false" import="true" targetId="5518-d0f5-a880-d71c" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="2.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="ba77-6fd9-7474-7095" name="Skitarii Rangers" publicationId="ebe8-544e-pubN65537" page="75" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="increment" field="e356-c769-5920-6e14" value="2.0">
<conditions>
<condition field="selections" scope="ba77-6fd9-7474-7095" value="6.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<infoLinks>
<infoLink id="6c9b-ba19-9123-406b" name="Bionics" hidden="false" targetId="d060-09ec-5fdb-2f06" type="profile"/>
<infoLink id="1860-3837-7cf4-ece2" name="Canticles of the Omnissiah" hidden="false" targetId="ad49-5c00-b6ea-2ac7" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="4e40-c883-62f5-3758" name="New CategoryLink" hidden="false" targetId="5d76b6f5-20ae-4d70-8f59-ade72a2add3a" primary="true"/>
<categoryLink id="8e30-9520-5357-b5f3" name="New CategoryLink" hidden="false" targetId="dfde-d915-6e58-09af" primary="false"/>
<categoryLink id="1c15-7904-8f0c-1d23" name="New CategoryLink" hidden="false" targetId="ca27-5069-1c2c-a28b" primary="false"/>
<categoryLink id="5e5b-faec-1969-eab0" name="New CategoryLink" hidden="false" targetId="cdee-83f1-5387-56cc" primary="false"/>