This repository has been archived by the owner on Oct 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 452
/
Imperium - Adeptus Mechanicus.cat
10442 lines (10405 loc) · 783 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="202" battleScribeVersion="2.03" authorName="BSData Developers" authorContact="@Thairne" authorUrl="https://www.bsdata.net/contact" library="false" gameSystemId="28ec-711c-d87f-3aeb" gameSystemRevision="248" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<publications>
<publication id="ebe8-544e-pubN65537" name="Codex: Adeptus Mechanicus"/>
<publication id="ebe8-544e-pubN79295" name="Forgeworld Datasheet"/>
<publication id="be1d-0538-0fe3-bcc0" name="Warzone Charadon - Book of Rust"/>
<publication id="3f19-35c9-a398-5a66" name="Warzone Charadon - Book of Fire"/>
</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>
</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="Tech-Priest Dominus" hidden="false"/>
<categoryEntry id="0775-0dfb-b8c2-f2b0" name="Tech-Priest 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="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="Tech-Priest 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="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"/>
<categoryEntry id="21a4-e229-0433-5454" name="Mechanicus Defence Cohort" hidden="false"/>
<categoryEntry id="f4aa-404e-0867-8f88" name="Extremis Sentinel" hidden="false"/>
<categoryEntry id="2acd-5989-56ac-69b4" name="Skitarii Marshal" hidden="false"/>
<categoryEntry id="6511-1923-6cd1-231e" name="Doctrina Assembler" hidden="false"/>
<categoryEntry id="47a7-4c84-0b86-684a" name="Technoarcheologist" hidden="false"/>
<categoryEntry id="613c-50b6-79c4-b61a" name="Data-Tether" hidden="false"/>
<categoryEntry id="30ba-4cc5-24da-cca1" name="Kataphron Servitors" hidden="false"/>
<categoryEntry id="477f-ceeb-7a23-8449" name="Archaeopter Engine" hidden="false"/>
<categoryEntry id="34f0-c38d-c3db-7d6c" name="TV Enable" hidden="false"/>
<categoryEntry id="2a9c-76d4-5097-66db" name="Skorpius Engine" hidden="false"/>
<categoryEntry id="4f09-de91-69e0-097e" name="Sicarian" hidden="false"/>
<categoryEntry id="435e-54b0-0d08-0a51" name="Serberys" hidden="false"/>
<categoryEntry id="eb4e-e01a-e66d-548e" name="Pteraxii" hidden="false"/>
<categoryEntry id="80a2-7b69-17e8-b4f0" name="Arc Grenades" hidden="false"/>
<categoryEntry id="1b89-8856-96b8-9dce" name="Ironstrider Engine" hidden="false"/>
<categoryEntry id="5eae-b811-fd13-2154" name="Smokescreen" hidden="false"/>
<categoryEntry id="ad5e-c5a6-d40a-5c5f" name="Skitarii Veteran Cohort" hidden="false"/>
<categoryEntry id="afe2-4976-d1b1-2ebc" name="Veterans" 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">
<modifiers>
<modifier type="add" field="category" value="21a4-e229-0433-5454">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="38ee-6dae-3cb1-7f84" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="191f-7597-e924-77a1" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="fb5a-2f31-b730-9b32" name="Tech-Priest Dominus" hidden="false" collective="false" import="true" targetId="0895-13ad-3ba1-0952" type="selectionEntry">
<modifiers>
<modifier type="add" field="category" value="21a4-e229-0433-5454">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="38ee-6dae-3cb1-7f84" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="277f-49b1-9257-87f6" name="Tech-Priest Enginseer" hidden="false" collective="false" import="true" targetId="1aaa-d901-e93c-78b5" type="selectionEntry">
<modifiers>
<modifier type="add" field="category" value="21a4-e229-0433-5454">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="38ee-6dae-3cb1-7f84" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="8a37-152d-bbaa-8b03" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="c4ed-cb92-9c78-344c" name="Kataphron Breachers" hidden="false" collective="false" import="true" targetId="462e-7d8f-4ff3-6330" type="selectionEntry">
<modifierGroups>
<modifierGroup>
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="38ee-6dae-3cb1-7f84" type="atLeast"/>
</conditions>
<modifiers>
<modifier type="add" field="category" value="f4aa-404e-0867-8f88"/>
<modifier type="add" field="category" value="21a4-e229-0433-5454"/>
</modifiers>
</modifierGroup>
</modifierGroups>
<categoryLinks>
<categoryLink id="8bdb-f5d6-7a23-1cda" name="Core" hidden="false" targetId="08f1-d244-eb44-7e01" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="811d-2fc9-1dfb-1340" name="Kataphron Destroyers" hidden="false" collective="false" import="true" targetId="4d05-c01f-0921-f52e" type="selectionEntry">
<modifierGroups>
<modifierGroup>
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="38ee-6dae-3cb1-7f84" type="atLeast"/>
</conditions>
<modifiers>
<modifier type="add" field="category" value="f4aa-404e-0867-8f88"/>
<modifier type="add" field="category" value="21a4-e229-0433-5454"/>
</modifiers>
</modifierGroup>
</modifierGroups>
<categoryLinks>
<categoryLink id="5796-e8ca-bb28-1695" name="Core" hidden="false" targetId="08f1-d244-eb44-7e01" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="b595-0dfd-2e13-09ab" name="Fulgurite Electro-Priests" hidden="false" collective="false" import="true" targetId="2017-60f0-4bb4-c0bd" type="selectionEntry">
<modifiers>
<modifier type="add" field="category" value="21a4-e229-0433-5454">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="38ee-6dae-3cb1-7f84" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="aa38-5595-f8fb-7390" name="Corpuscarii Electro-Priests" hidden="false" collective="false" import="true" targetId="8be1-4ebb-3371-d572" type="selectionEntry">
<modifiers>
<modifier type="add" field="category" value="21a4-e229-0433-5454">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="38ee-6dae-3cb1-7f84" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="3a1c-d084-c4d7-e4a1" name="Kastelan Robots" hidden="false" collective="false" import="true" targetId="1922-eaab-6f88-d609" type="selectionEntry">
<modifierGroups>
<modifierGroup>
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="38ee-6dae-3cb1-7f84" type="atLeast"/>
</conditions>
<modifiers>
<modifier type="add" field="category" value="f4aa-404e-0867-8f88"/>
<modifier type="add" field="category" value="21a4-e229-0433-5454"/>
</modifiers>
</modifierGroup>
</modifierGroups>
</entryLink>
<entryLink id="fcec-22ea-2bb1-d303" name="Cybernetica Datasmith" hidden="false" collective="false" import="true" targetId="044c-451c-ed92-3ee2" type="selectionEntry">
<modifiers>
<modifier type="add" field="category" value="21a4-e229-0433-5454">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="38ee-6dae-3cb1-7f84" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="4e47-3df5-a326-d290" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="0bdb-39db-3241-30cf" name="Servitors" hidden="false" collective="false" import="true" targetId="8d79-d7a1-6eff-431c" type="selectionEntry">
<modifierGroups>
<modifierGroup>
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="38ee-6dae-3cb1-7f84" type="atLeast"/>
</conditions>
<modifiers>
<modifier type="add" field="category" value="f4aa-404e-0867-8f88"/>
<modifier type="add" field="category" value="21a4-e229-0433-5454"/>
</modifiers>
</modifierGroup>
</modifierGroups>
<categoryLinks>
<categoryLink id="b65c-450e-28cb-d79b" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="6e02-98e6-5e5d-6f85" name="Skitarii Rangers" hidden="false" collective="false" import="true" targetId="ba77-6fd9-7474-7095" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="38ee-6dae-3cb1-7f84" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="5d23-9c2d-45e9-1c7f" name="Skitarii Vanguards" hidden="false" collective="false" import="true" targetId="ed1e-bdea-6881-edd6" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="38ee-6dae-3cb1-7f84" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="b7b9-67ad-9517-679a" name="Sicarian Infiltrators" hidden="false" collective="false" import="true" targetId="606f-d3f0-0649-c4e8" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="38ee-6dae-3cb1-7f84" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="15db-edfb-487f-9588" name="Sicarian Ruststalkers" hidden="false" collective="false" import="true" targetId="321a-efc3-31ca-0865" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="38ee-6dae-3cb1-7f84" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="5283-ddea-b023-4d7a" name="Ironstrider Ballistarii" hidden="false" collective="false" import="true" targetId="bd87-5ad4-01bf-3025" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="38ee-6dae-3cb1-7f84" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="1db9-5f7b-23f3-0786" name="Core" hidden="false" targetId="08f1-d244-eb44-7e01" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="e1d9-5598-8460-54f7" name="Sydonian Dragoons" hidden="false" collective="false" import="true" targetId="cf61-f1a9-c753-5220" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="38ee-6dae-3cb1-7f84" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="18e9-4087-38e6-f038" name="Core" hidden="false" targetId="08f1-d244-eb44-7e01" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="61f5-e29b-7836-672b" name="Onager Dunecrawler" hidden="false" collective="false" import="true" targetId="9f66-b3b8-055d-ccfd" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="38ee-6dae-3cb1-7f84" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<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="63fa-410e-9635-70b2" name="Terrax-Pattern Termite" hidden="false" collective="false" import="true" targetId="732b-967e-1bca-5846" type="selectionEntry">
<modifiers>
<modifier type="add" field="category" value="cdee-83f1-5387-56cc"/>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="38ee-6dae-3cb1-7f84" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<infoLinks>
<infoLink id="b2fa-3ebf-d2ab-41ed" name="Doctrina Imperatives" hidden="false" targetId="36ba-2b6e-86fe-943b" type="rule"/>
</infoLinks>
<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">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="38ee-6dae-3cb1-7f84" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="9e64-5653-cda6-4cde" name="Secutarii Peltasts" hidden="false" collective="false" import="true" targetId="85b2-5806-11b0-0168" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="38ee-6dae-3cb1-7f84" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<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="6a67-f113-53dc-e9be" name="Tech-Priest Manipulus" hidden="false" collective="false" import="true" targetId="708d-afbe-922d-8dde" type="selectionEntry">
<modifiers>
<modifier type="add" field="category" value="21a4-e229-0433-5454">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="38ee-6dae-3cb1-7f84" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="f4fb-9663-c072-3919" name="Skorpius Disintegrator" hidden="false" collective="false" import="true" targetId="ebe8-6709-9b5c-b018" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="38ee-6dae-3cb1-7f84" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="aed6-a600-3343-c780" name="Skorpius Dunerider" hidden="false" collective="false" import="true" targetId="0107-8a69-4db3-da01" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="38ee-6dae-3cb1-7f84" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="9066-3b93-07ef-5aca" name="X-101" hidden="false" collective="false" import="true" targetId="8eba-a5e8-344d-0e74" type="selectionEntry">
<modifiers>
<modifier type="add" field="category" value="21a4-e229-0433-5454">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="38ee-6dae-3cb1-7f84" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="bceb-2fd8-bd33-6304" name="Stratagem: Shadow Assignment" 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">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="38ee-6dae-3cb1-7f84" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="333b-4139-7c0c-4bbb" name="Archaeopter Stratoraptor" hidden="false" collective="false" import="true" targetId="c683-736b-04d8-f2b5" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="38ee-6dae-3cb1-7f84" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="7356-6ff3-cd4a-c599" name="Archaeopter Transvector" hidden="false" collective="false" import="true" targetId="57fc-e1ef-1db9-de98" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="69dc-cdd1-d10d-6472" type="equalTo"/>
</conditions>
</modifier>
<modifier type="increment" field="ddf6-44cf-dcd6-49c6" value="1.0">
<repeats>
<repeat field="selections" scope="force" value="1.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="true" childId="34f0-c38d-c3db-7d6c" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="force" value="0.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="true" id="ddf6-44cf-dcd6-49c6" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="331b-d03e-448f-1a1b" name="New CategoryLink" hidden="false" targetId="ff36a6f3-19bf-4f48-8956-adacfd28fe74" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="e9c2-ec7b-1e02-d533" name="Serberys Raiders" hidden="false" collective="false" import="true" targetId="0b7b-1ed0-3629-81ac" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="38ee-6dae-3cb1-7f84" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="a36e-3467-d9cd-f47a" name="Pteraxii Skystalkers" hidden="false" collective="false" import="true" targetId="e0a4-e0d2-0e92-cd47" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="38ee-6dae-3cb1-7f84" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="b906-0217-f6c5-1259" name="Pteraxii Sterylizors" hidden="false" collective="false" import="true" targetId="3233-ff27-141a-9991" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="38ee-6dae-3cb1-7f84" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="197f-4131-fbb4-b555" name="Serberys Sulphurhounds" hidden="false" collective="false" import="true" targetId="20e0-2d7b-f2af-37bc" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="38ee-6dae-3cb1-7f84" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="fe55-4b03-2cc5-8a0d" name="List Stratagems" hidden="false" collective="false" import="true" targetId="8695-52d3-837c-c475" type="selectionEntry"/>
<entryLink id="e1c2-8810-5302-aac3" name="Army of Renown - Mechanicus Defence Cohort" hidden="false" collective="false" import="true" targetId="38ee-6dae-3cb1-7f84" type="selectionEntry"/>
<entryLink id="ca80-7317-3d89-af8d" name="Skitarii Marshal" hidden="false" collective="false" import="true" targetId="4936-c7d9-d0e0-c23b" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="38ee-6dae-3cb1-7f84" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="04e3-4baf-83d6-a492" name="Technoarchaeologist" hidden="false" collective="false" import="true" targetId="e9a6-2bda-7401-94e0" type="selectionEntry">
<categoryLinks>
<categoryLink id="28cf-991c-8f28-5fb4" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="93fc-eab7-0b92-13db" name="Brotherhood of the Cog" hidden="false" collective="false" import="true" targetId="09bf-445f-38fb-078e" type="selectionEntry"/>
<entryLink id="c046-77ce-5f05-8ba8" name="Archaeopter Transvector" hidden="false" collective="false" import="true" targetId="57fc-e1ef-1db9-de98" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="38ee-6dae-3cb1-7f84" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="a1d9-b30c-fe52-b3ff" name="New CategoryLink" hidden="false" targetId="e888-1504-aa61-95ff" primary="true"/>
<categoryLink id="bc75-0b0a-d230-f772" name="TV Enable" hidden="false" targetId="34f0-c38d-c3db-7d6c" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="e896-8299-555b-ca83" name="Servitors" hidden="false" collective="false" import="true" targetId="8d79-d7a1-6eff-431c" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="6743-7925-6ec5-6b91" type="equalTo"/>
</conditions>
</modifier>
<modifier type="increment" field="c2ff-1888-b358-c068" value="1.0">
<repeats>
<repeat field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="6743-7925-6ec5-6b91" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<modifierGroups>
<modifierGroup>
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="38ee-6dae-3cb1-7f84" type="atLeast"/>
</conditions>
<modifiers>
<modifier type="add" field="category" value="f4aa-404e-0867-8f88"/>
<modifier type="add" field="category" value="21a4-e229-0433-5454"/>
</modifiers>
</modifierGroup>
</modifierGroups>
<constraints>
<constraint field="selections" scope="force" value="0.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="c2ff-1888-b358-c068" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="dde1-c169-0158-788b" name="New CategoryLink" hidden="false" targetId="ff36a6f3-19bf-4f48-8956-adacfd28fe74" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="de03-6562-4e93-c6f2" name="Cybernetica Datasmith" hidden="false" collective="false" import="true" targetId="044c-451c-ed92-3ee2" type="selectionEntry">
<modifiers>
<modifier type="add" field="category" value="21a4-e229-0433-5454">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="38ee-6dae-3cb1-7f84" type="atLeast"/>
</conditions>
</modifier>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="82c2-bcf2-c8fd-5a38" type="equalTo"/>
</conditions>
</modifier>
<modifier type="increment" field="f63c-b5e0-259e-1170" value="1.0">
<repeats>
<repeat field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="82c2-bcf2-c8fd-5a38" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="force" value="0.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="f63c-b5e0-259e-1170" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="bc80-bb47-caf7-5f63" name="No Force Org Slot" hidden="false" targetId="ff36a6f3-19bf-4f48-8956-adacfd28fe74" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="1f9b-8def-a62f-cbad" name="Belisarius Cawl" hidden="false" collective="false" import="true" targetId="37a6-acbc-d023-b0a5" type="selectionEntry">
<modifiers>
<modifier type="add" field="category" value="21a4-e229-0433-5454">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="38ee-6dae-3cb1-7f84" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="cc3f-225e-8a67-6635" name="New CategoryLink" hidden="false" targetId="26b0-4bb9-73aa-d3d7" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="dc8d-5229-6996-1566" name="Unit Filter" hidden="false" collective="false" import="true" targetId="8a28-8f79-4ac0-1f45" type="selectionEntry"/>
<entryLink id="7967-3985-9e3c-e265" name="Army of Renown - Skitarii Veteran Cohort" hidden="false" collective="false" import="true" targetId="ac03-d781-0c3b-b4be" type="selectionEntry"/>
</entryLinks>
<infoLinks>
<infoLink id="b9a6-a085-224e-39a1" name="Extremis Sentinel Protocols" hidden="false" targetId="098e-f085-f124-c297" type="rule"/>
</infoLinks>
<sharedSelectionEntries>
<selectionEntry id="37a6-acbc-d023-b0a5" name="Belisarius Cawl" publicationId="ebe8-544e-pubN65537" page="86" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="ac03-d781-0c3b-b4be" type="equalTo"/>
</conditions>
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="76d2-6e71-243f-ad3d" type="lessThan"/>
</conditions>
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="bde4-e5f7-024d-78a4" type="equalTo"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="c930-55c4-9edb-a0fb" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</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="Lord of the Machine Cult (Aura)" publicationId="ebe8-544e-pubN65537" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">While a friendly ADEPTUS MECHANICUS CORE unit is within 6" of this model, each time a model in that unit makes an attack, re-roll a hit roll of one.</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">In your Command phase, this model can repair itself. If it does so, it regains up to D3 lost wounds. Each model can only be repaired once per turn.</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">In your Command phase, select one friendly MARS CORE unit within 6" of this model. Until the start of your next Command phase, each time a model in that unit makes an attack, you can re-roll the hit roll.</characteristic>
</characteristics>
</profile>
<profile id="f59b-7342-e493-cf03" name="Master of Machines" 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 one other Friendly ADPEPTUS MECHANICUS or IMPERIUM VEHICLE model within 3" of it. That model regains up to D3 lost wounds. Each model can only be repaired once per turn.</characteristic>
</characteristics>
</profile>
<profile id="701d-8b23-7836-5fcf" name="Lead in Prayer" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">In your Command phase, you can select one friendly CULT MECHANICUS CORE unit within 6" of this model. If you do so, then select one Cancticle - this can be one that has already been active for your army. Until the start of your next Command phase, both this model and that unit benefit from the selected Canticle instead of the one that is active for your army.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="a17a-59cf-ba26-0ba6" name="Canticles of the Omnissiah" hidden="false" targetId="25f1-761d-2f64-7f0e" 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="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="f51e-2ec4-3677-fa71" name="New CategoryLink" hidden="false" targetId="26b0-4bb9-73aa-d3d7" primary="false"/>
<categoryLink id="f3e6-b2bb-0f5c-825a" name="Monster" hidden="false" targetId="3b77-decb-d468-6bcc" primary="false"/>
<categoryLink id="c51c-1873-a3cd-b641" name="Doctrina Assembler" hidden="false" targetId="6511-1923-6cd1-231e" primary="false"/>
</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="d60f-ab8c-88e7-4096" name="Warlord Trait (Codex 2): Masterwork Bionics" hidden="true" collective="false" import="true" targetId="6166-4643-5e1a-9cf2" type="selectionEntry">
<modifiers>
<modifier type="increment" field="cae1-c46d-2e12-8258" value="1.0">
<conditionGroups>
<conditionGroup type="or">
<conditionGroups>
<conditionGroup type="and">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="76d2-6e71-243f-ad3d" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="e77a-cc54-efcf-a09a" type="greaterThan"/>
</conditions>
</conditionGroup>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="82f3-69c6-8ebf-a266" type="greaterThan"/>
<condition field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="6771-6ab3-1672-6a39" type="greaterThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
<conditionGroup type="and">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="76d2-6e71-243f-ad3d" type="equalTo"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="e77a-cc54-efcf-a09a" type="equalTo"/>
</conditions>
</conditionGroup>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="82f3-69c6-8ebf-a266" type="greaterThan"/>
<condition field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="d4fa-d036-f5dd-f91d" type="greaterThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="set" field="hidden" value="false">
<conditionGroups>
<conditionGroup type="or">
<conditionGroups>
<conditionGroup type="and">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="76d2-6e71-243f-ad3d" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="e77a-cc54-efcf-a09a" type="greaterThan"/>
</conditions>
</conditionGroup>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="82f3-69c6-8ebf-a266" type="greaterThan"/>
<condition field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="6771-6ab3-1672-6a39" type="greaterThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
<conditionGroup type="and">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="76d2-6e71-243f-ad3d" type="equalTo"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="e77a-cc54-efcf-a09a" type="equalTo"/>
</conditions>
</conditionGroup>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="82f3-69c6-8ebf-a266" type="greaterThan"/>
<condition field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="d4fa-d036-f5dd-f91d" type="greaterThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cae1-c46d-2e12-8258" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0180-8cb2-ed3e-1a07" type="max"/>
</constraints>
</entryLink>
<entryLink id="50e1-3742-4401-a74f" name="Character Stratagems" hidden="false" collective="false" import="true" targetId="a53c-cde9-df16-ca1c" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="160.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="9.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">
<modifiers>
<modifier type="set" field="3667-b725-5fca-f602" value="1.0">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="ac03-d781-0c3b-b4be" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="-1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="3667-b725-5fca-f602" type="max"/>
</constraints>
<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>
</profiles>
<infoLinks>
<infoLink id="3ed8-9fd5-bb75-5d65" name="Canticles of the Omnissiah" hidden="false" targetId="25f1-761d-2f64-7f0e" type="rule"/>
<infoLink id="a26d-6fa6-db7c-0237" name="Master of Machines" hidden="false" targetId="e020-e9bd-f615-9530" type="profile"/>
<infoLink id="fc20-662d-f30b-dd09" name="Refractor Field" hidden="false" targetId="ea42-0a85-6f73-d867" type="profile"/>
<infoLink id="b06f-cb45-39f3-916e" name="Lord of the Machine Cult (Aura)" hidden="false" targetId="398f-5736-62cb-17ac" 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"/>
<categoryLink id="d315-96f4-8c0a-17a3" name="Doctrina Assembler" hidden="false" targetId="6511-1923-6cd1-231e" primary="false"/>
</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">
<modifiers>
<modifier type="set" field="points" value="0.0"/>
</modifiers>
<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">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="ac03-d781-0c3b-b4be" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<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="8361-ee72-267a-865d" name="Tech-Priest Warlord Traits" hidden="false" collective="false" import="true" targetId="fd91-ec78-9e06-df45" type="selectionEntryGroup"/>
<entryLink id="c51b-59e1-5c2f-4776" name="Holy Orders" hidden="false" collective="false" import="true" targetId="5aaf-7a8b-92b4-6202" type="selectionEntryGroup"/>
<entryLink id="749f-6730-f430-d184" name="Character Stragagems" hidden="false" collective="false" import="true" targetId="a53c-cde9-df16-ca1c" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="70.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="1aaa-d901-e93c-78b5" name="Tech-Priest Enginseer" publicationId="ebe8-544e-pubN65537" page="75" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="8819-e27f-ab99-3428" value="1.0">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="ac03-d781-0c3b-b4be" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="-1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="8819-e27f-ab99-3428" type="max"/>
</constraints>
<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">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">3+</characteristic>
</characteristics>
</profile>
<profile id="3bb5-4b27-3db5-cad1" name="Awaken the Machine" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">In your Command phase, this model can awaken one friendly <FORGE WORLD> VEHICLE model (excluding KASTELAN ROBOT models) within 3" of it. Until the start of your next Command phase, each time that model makes an attack, add 1 to that attack's hit roll. Each model can only be awakened once per turn.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="40f1-bcc5-8f3e-d6cd" name="Enhanced Bionics" hidden="false" targetId="d060-09ec-5fdb-2f06" type="profile"/>
<infoLink id="0446-3996-6b60-8528" name="Canticles of the Omnissiah" hidden="false" targetId="25f1-761d-2f64-7f0e" type="rule"/>
<infoLink id="2719-1596-ba29-bc62" name="Master of Machines" hidden="false" targetId="e020-e9bd-f615-9530" type="profile"/>
<infoLink id="a9ea-3b98-74f9-3709" name="Brotherhood of the Cog" hidden="false" targetId="5b2b-853b-57eb-8c84" type="profile"/>
</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="a7c6-b0b4-3579-fd30" name="Doctrina Assembler" hidden="false" targetId="6511-1923-6cd1-231e" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="46a4-1b37-1d4d-4829" name="Warlord" hidden="false" collective="false" import="true" targetId="d4fa-d036-f5dd-f91d" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="ac03-d781-0c3b-b4be" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<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="0c61-c3e6-74fc-2354" name="Tech-Priest Warlord Traits" hidden="false" collective="false" import="true" targetId="fd91-ec78-9e06-df45" type="selectionEntryGroup"/>
<entryLink id="125f-b2b7-b58e-a62b" name="Holy Orders" hidden="false" collective="false" import="true" targetId="5aaf-7a8b-92b4-6202" type="selectionEntryGroup"/>
<entryLink id="e770-a6a6-2555-c3a9" name="Mechanicus Pistol" hidden="false" collective="false" import="true" targetId="77a7-ea5b-5b5c-ffe6" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="50ba-73c4-237d-5312" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fa2e-c2ec-d570-33bc" type="min"/>
</constraints>
</entryLink>
<entryLink id="1cab-73ea-4aa7-e09c" 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="6a41-23aa-dc90-220c" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="65c3-82cb-15b8-960a" type="min"/>
</constraints>
</entryLink>
<entryLink id="d471-ab51-9cae-abe3" name="Character Stragagems" hidden="false" collective="false" import="true" targetId="a53c-cde9-df16-ca1c" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="50.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="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="6.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="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="ac03-d781-0c3b-b4be" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<infoLinks>
<infoLink id="3b78-5947-c815-9a58" name="Bionics" hidden="false" targetId="edf0-6bc2-d76e-6004" type="profile"/>
<infoLink id="d1fd-4229-33d9-c611" name="Canticles of the Omnissiah" hidden="false" targetId="25f1-761d-2f64-7f0e" type="rule"/>
<infoLink id="8017-29e6-a45b-933a" name="Kataphron Breacher" hidden="false" targetId="062a-b738-7cc3-2e66" type="profile">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="462e-7d8f-4ff3-6330" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="5922-664b-f549-7a05" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
</infoLink>
</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="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"/>
<categoryLink id="b92c-9612-904f-a82f" name="Biker" hidden="false" targetId="1c6f-0311-3eba-3180" primary="false"/>
<categoryLink id="3bfd-9626-6249-6152" name="Kataphron Servitors" hidden="false" targetId="30ba-4cc5-24da-cca1" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="5e15-df07-339a-11aa" name="Kataphron Breacher" hidden="false" collective="false" import="true" targetId="48ad-2df6-55b4-2e80" type="selectionEntry">