forked from BSData/wh40k-9e
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Imperium - Adeptus Mechanicus.cat
8235 lines (8229 loc) · 403 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" book="Index: Imperium 2" revision="15" battleScribeVersion="2.01" gameSystemId="28ec-711c-d87f-3aeb" gameSystemRevision="1" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<profiles/>
<rules>
<rule id="202b-8774-27b2-ff54" name="Canticles of the Omnissiah" hidden="false">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<description>
Incantation of the Iron Soul:
You can re-roll failed Morale tests for affected units.
Litany of the Electromancer:
Roll a D6 for each enemy unit that is within 1" of any affected units; on a roll of 6, the unit being rolled for suffers D3 mortal wounds.
Chant of the Remorseless Fist:
You can re-roll any failed hit rolls of 1 for affected units in the Fight phase.
Shroudpsalm:
Affected units gain the bonus to their armour saving throws as if they were in cover. Units already in cover are unaffected.
Invocation of Machine Might:
Affected units have +1 Strength.
Benediction of the Omnissiah:
You can re-roll failed hit rolls of 1 for affected units in the shooting phase.
</description>
</rule>
<rule id="bf9c-9361-ef12-2e12" name="Dogma: Glory of the Omnissiah" hidden="true">
<profiles/>
<rules/>
<infoLinks/>
<modifiers>
<modifier type="set" field="hidden" value="false">
<repeats/>
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="dfab-6c94-20f8-dd88" type="equalTo"/>
</conditions>
<conditionGroups/>
</modifier>
</modifiers>
<description>Each time you randomly determine which Canticle of the Omniissiah is being canted, roll two dice instead of one. All units with this dogma receive the benefit of both results, instead of just the result of the first dice (if a duplicate is rolled, no additional Canticle is canted this turn)</description>
</rule>
<rule id="0250-4d47-9499-0c76" name="Dogma: Red in Cog and Claw" hidden="true">
<profiles/>
<rules/>
<infoLinks/>
<modifiers>
<modifier type="set" field="hidden" value="false">
<repeats/>
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="846e-f164-06a4-0e3e" type="equalTo"/>
</conditions>
<conditionGroups/>
</modifier>
</modifiers>
<description>You can re-roll wound rolls of 1 in the Fight phase for units with this dogma</description>
</rule>
<rule id="fb82-93f5-e698-7a5f" name="Dogma: Refusal To Yield" hidden="true">
<profiles/>
<rules/>
<infoLinks/>
<modifiers>
<modifier type="set" field="hidden" value="false">
<repeats/>
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="dcc1-31fb-7003-ba0a" type="equalTo"/>
</conditions>
<conditionGroups/>
</modifier>
</modifiers>
<description>Roll a D6 each time a model with this dogma is slain or flees . on a 6 that model refuses to yield; either the wound that slew it is ignored or the model does not flee. However, <FORGE WORLD> units with this dogma cannot Fall Back unless there is a friendly <FORGE WORLD> Character on the battlefield.</description>
</rule>
<rule id="4bc0-a593-94ab-6bae" name="Dogma: Shroud Protocols" hidden="true">
<profiles/>
<rules/>
<infoLinks/>
<modifiers>
<modifier type="set" field="hidden" value="false">
<repeats/>
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="8052-a037-da6b-950f" type="equalTo"/>
</conditions>
<conditionGroups/>
</modifier>
</modifiers>
<description>Your opponent must substract 1 from their hit rolls when shooting at units with this dogma if they are more than 12" away</description>
</rule>
<rule id="abce-c0d7-146c-27a7" name="Dogma: Relentless March" hidden="true">
<profiles/>
<rules/>
<infoLinks/>
<modifiers>
<modifier type="set" field="hidden" value="false">
<repeats/>
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="398f-cf30-2355-c34f" type="equalTo"/>
</conditions>
<conditionGroups/>
</modifier>
</modifiers>
<description>If a unit with this Dogma Advances, it can ignore the penalty for firing Assault weapons and treats all Rapid Fire weapons it is armed with as Assault weapons until the end of the turn.</description>
</rule>
<rule id="7bb8-e3b1-2765-3ac9" name="Dogma: Staunch Defenders" hidden="true">
<profiles/>
<rules/>
<infoLinks/>
<modifiers>
<modifier type="set" field="hidden" value="false">
<repeats/>
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="8ae2-d027-8a2f-301b" type="equalTo"/>
</conditions>
<conditionGroups/>
</modifier>
</modifiers>
<description>When firing Overwatch, units with this dogma hit on a roll on 5+, instead of only 6+, irrespective modifiers</description>
</rule>
<rule id="a2ff-018f-8dc7-0b34" name="Dogma: The Solar Blessing" hidden="true">
<profiles/>
<rules/>
<infoLinks/>
<modifiers>
<modifier type="set" field="hidden" value="false">
<repeats/>
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="64e9-33fc-5b2b-13eb" type="equalTo"/>
</conditions>
<conditionGroups/>
</modifier>
</modifiers>
<description>When making saving throws, units with this dogma treat enemy attacks with an Armour Penetration characteristic of -1 as having an Armour Penetration of 0 instead</description>
</rule>
</rules>
<infoLinks/>
<costTypes/>
<profileTypes/>
<categoryEntries>
<categoryEntry id="cbfd-4970-f914-ac9a" name="Belisarius Cawl" hidden="false">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
</categoryEntry>
<categoryEntry id="6743-7925-6ec5-6b91" name="Tech-Priest" hidden="false">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
</categoryEntry>
<categoryEntry id="e4c1-ea70-18cd-6caf" name="Dominus" hidden="false">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
</categoryEntry>
<categoryEntry id="0775-0dfb-b8c2-f2b0" name="Enginseer" hidden="false">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
</categoryEntry>
<categoryEntry id="3966-1076-64dc-9148" name="Kataphron Breachers" hidden="false">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
</categoryEntry>
<categoryEntry id="cc3b-aa01-8d8c-2556" name="Kataphron Destroyers" hidden="false">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
</categoryEntry>
<categoryEntry id="9fb2-7ff0-3fc7-725f" name="Electro-Priests" hidden="false">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
</categoryEntry>
<categoryEntry id="4cf4-52eb-596c-6a8d" name="Fulgurite" hidden="false">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
</categoryEntry>
<categoryEntry id="3848-aa3f-847b-a48a" name="Corpuscarii" hidden="false">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
</categoryEntry>
<categoryEntry id="82c2-bcf2-c8fd-5a38" name="Kastelan Robots" hidden="false">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
</categoryEntry>
<categoryEntry id="679d-a5b2-5f40-8398" name="Cybernetica Datasmith" hidden="false">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
</categoryEntry>
<categoryEntry id="087d-6c35-17a2-b79c" name="Servitors" hidden="false">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
</categoryEntry>
<categoryEntry id="768d-d42c-e62a-fb21" name="Skitarii Rangers" hidden="false">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
</categoryEntry>
<categoryEntry id="f4e9-fdfc-d210-f161" name="Skitarii Vanguard" hidden="false">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
</categoryEntry>
<categoryEntry id="3ef1-101b-798e-840c" name="Sicarian Infiltrators" hidden="false">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
</categoryEntry>
<categoryEntry id="dcc4-65b7-b4a5-8611" name="Sicarian Ruststalkers" hidden="false">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
</categoryEntry>
<categoryEntry id="6138-457b-42b1-4fef" name="Ironstrider Balistarii" hidden="false">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
</categoryEntry>
<categoryEntry id="ab4e-7301-965d-a747" name="Sydonian Dragoons" hidden="false">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
</categoryEntry>
<categoryEntry id="0310-2aa0-62fc-d659" name="Onager Dunecrawler" hidden="false">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
</categoryEntry>
<categoryEntry id="acfe-844c-46e8-0f0d" name="Faction: Imperium" hidden="false">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
</categoryEntry>
<categoryEntry id="dfde-d915-6e58-09af" name="Faction: <FORGE WORLD>" hidden="false">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
</categoryEntry>
<categoryEntry id="2293-bc6b-5261-a2c0" name="Faction: Mars" hidden="false">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
</categoryEntry>
<categoryEntry id="ca27-5069-1c2c-a28b" name="Faction: Adeptus Mechanicus" hidden="false">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
</categoryEntry>
<categoryEntry id="6bb8-fe7f-7918-bf8f" name="Faction: Cult Mechanicus" hidden="false">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
</categoryEntry>
<categoryEntry id="3c55-5bc9-3dc3-a3ff" name="Faction: Astra Militarum" hidden="false">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
</categoryEntry>
<categoryEntry id="cdee-83f1-5387-56cc" name="Faction: Skitarii" hidden="false">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
</categoryEntry>
</categoryEntries>
<forceEntries/>
<selectionEntries/>
<entryLinks>
<entryLink id="447c-82b5-1aa0-190d" name="Belisarius Cawl" hidden="false" targetId="37a6-acbc-d023-b0a5" type="selectionEntry">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
<categoryLinks/>
</entryLink>
<entryLink id="fb5a-2f31-b730-9b32" name="New EntryLink" hidden="false" targetId="0895-13ad-3ba1-0952" type="selectionEntry">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
<categoryLinks/>
</entryLink>
<entryLink id="277f-49b1-9257-87f6" name="New EntryLink" hidden="false" targetId="1aaa-d901-e93c-78b5" type="selectionEntry">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
<categoryLinks/>
</entryLink>
<entryLink id="c4ed-cb92-9c78-344c" name="Kataphron Breachers" hidden="false" targetId="462e-7d8f-4ff3-6330" type="selectionEntry">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
<categoryLinks/>
</entryLink>
<entryLink id="811d-2fc9-1dfb-1340" name="New EntryLink" hidden="false" targetId="4d05-c01f-0921-f52e" type="selectionEntry">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
<categoryLinks/>
</entryLink>
<entryLink id="b595-0dfd-2e13-09ab" name="New EntryLink" hidden="false" targetId="2017-60f0-4bb4-c0bd" type="selectionEntry">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
<categoryLinks/>
</entryLink>
<entryLink id="aa38-5595-f8fb-7390" name="Corpuscarii Electro-Priests" hidden="false" targetId="8be1-4ebb-3371-d572" type="selectionEntry">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
<categoryLinks/>
</entryLink>
<entryLink id="3a1c-d084-c4d7-e4a1" name="New EntryLink" hidden="false" targetId="1922-eaab-6f88-d609" type="selectionEntry">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
<categoryLinks/>
</entryLink>
<entryLink id="fcec-22ea-2bb1-d303" name="New EntryLink" hidden="false" targetId="044c-451c-ed92-3ee2" type="selectionEntry">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
<categoryLinks>
<categoryLink id="cb41-d6a6-015c-81f7" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
</categoryLink>
</categoryLinks>
</entryLink>
<entryLink id="0bdb-39db-3241-30cf" name="New EntryLink" hidden="false" targetId="8d79-d7a1-6eff-431c" type="selectionEntry">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
<categoryLinks/>
</entryLink>
<entryLink id="6e02-98e6-5e5d-6f85" name="Skitarii Rangers" hidden="false" targetId="ba77-6fd9-7474-7095" type="selectionEntry">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
<categoryLinks/>
</entryLink>
<entryLink id="5d23-9c2d-45e9-1c7f" name="Skitarii Vanguards" hidden="false" targetId="ed1e-bdea-6881-edd6" type="selectionEntry">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
<categoryLinks/>
</entryLink>
<entryLink id="b7b9-67ad-9517-679a" name="New EntryLink" hidden="false" targetId="606f-d3f0-0649-c4e8" type="selectionEntry">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
<categoryLinks/>
</entryLink>
<entryLink id="15db-edfb-487f-9588" name="Sicarian Ruststalkers" hidden="false" targetId="321a-efc3-31ca-0865" type="selectionEntry">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
<categoryLinks/>
</entryLink>
<entryLink id="5283-ddea-b023-4d7a" name="New EntryLink" hidden="false" targetId="bd87-5ad4-01bf-3025" type="selectionEntry">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
<categoryLinks/>
</entryLink>
<entryLink id="e1d9-5598-8460-54f7" name="Sydonian Dragoons" hidden="false" targetId="cf61-f1a9-c753-5220" type="selectionEntry">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
<categoryLinks/>
</entryLink>
<entryLink id="61f5-e29b-7836-672b" name="New EntryLink" hidden="false" targetId="9f66-b3b8-055d-ccfd" type="selectionEntry">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
<categoryLinks/>
</entryLink>
<entryLink id="4fdc-b9a7-3fe7-9e84" name="New EntryLink" hidden="false" targetId="0dbb-e7cd-4b8e-92aa" type="selectionEntry">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
<categoryLinks/>
</entryLink>
<entryLink id="c08d-1048-26bf-b1c8" name="New EntryLink" hidden="false" targetId="8803-a6b9-42b0-0c21" type="selectionEntry">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
<categoryLinks/>
</entryLink>
<entryLink id="362e-5743-7bb5-8ab5" name="New EntryLink" hidden="false" targetId="cdc6-137c-f002-39d6" type="selectionEntry">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
<categoryLinks/>
</entryLink>
</entryLinks>
<sharedSelectionEntries>
<selectionEntry id="37a6-acbc-d023-b0a5" name="Belisarius Cawl" book="Imperium Index 2" hidden="false" collective="false" type="model">
<profiles>
<profile id="3245-72e3-02d5-dcfd" name="Belisarius Cawl" book="Index 2" hidden="false" profileTypeId="800f-21d0-4387-c943" profileTypeName="Unit">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<characteristics>
<characteristic name="M" characteristicTypeId="0bdf-a96e-9e38-7779" value="6"/>
<characteristic name="WS" characteristicTypeId="e7f0-1278-0250-df0c" value="2+"/>
<characteristic name="BS" characteristicTypeId="381b-eb28-74c3-df5f" value="2+"/>
<characteristic name="S" characteristicTypeId="2218-aa3c-265f-2939" value="5"/>
<characteristic name="T" characteristicTypeId="9c9f-9774-a358-3a39" value="6"/>
<characteristic name="W" characteristicTypeId="f330-5e6e-4110-0978" value="8"/>
<characteristic name="A" characteristicTypeId="13fc-b29b-31f2-ab9f" value="4"/>
<characteristic name="Ld" characteristicTypeId="00ca-f8b8-876d-b705" value="9"/>
<characteristic name="Save" characteristicTypeId="c0df-df94-abd7-e8d3" value="2+"/>
</characteristics>
</profile>
<profile id="513d-39e0-1961-cfe5" name="Archmagos" hidden="false" profileTypeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" profileTypeName="Abilities">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<characteristics>
<characteristic name="Description" characteristicTypeId="21befb24-fc85-4f52-a745-64b2e48f8228" value="While Belisarius Cawl is on the battlefield, you can add or substract 1 when rolling on the Canticles of the Omnissiah table."/>
</characteristics>
</profile>
<profile id="5db0-14b5-d2cf-3ae0" name="Self-repair Mechanisms" hidden="false" profileTypeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" profileTypeName="Abilities">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<characteristics>
<characteristic name="Description" characteristicTypeId="21befb24-fc85-4f52-a745-64b2e48f8228" value="At the beginning of your turns, Belisarius Cawl heals D3 wounds."/>
</characteristics>
</profile>
<profile id="07b5-79d7-1181-176d" name="Lord of Mars" hidden="false" profileTypeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" profileTypeName="Abilities">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<characteristics>
<characteristic name="Description" characteristicTypeId="21befb24-fc85-4f52-a745-64b2e48f8228" value="You can re-roll any hit rolls in the Shooting phase for friendly MARS units within 6""/>
</characteristics>
</profile>
</profiles>
<rules/>
<infoLinks>
<infoLink id="a17a-59cf-ba26-0ba6" name="New InfoLink" hidden="false" targetId="9fcd-e1a8-eeaf-0857" type="profile">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
</infoLink>
<infoLink id="874e-51f8-64a8-8f1a" name="New InfoLink" hidden="false" targetId="f862-f5cb-6157-1d1f" type="profile">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
</infoLink>
</infoLinks>
<modifiers/>
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f923-9336-b8d2-e7e9" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="f14c-d46d-fc61-dab2" name="New CategoryLink" hidden="false" targetId="ef18-746a-369f-43a4" primary="false">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
</categoryLink>
<categoryLink id="04b8-e23e-aeed-b5bf" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
</categoryLink>
<categoryLink id="da75-0bb0-a2ed-d282" name="New CategoryLink" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
</categoryLink>
<categoryLink id="f4ca-5c96-bc11-588b" name="New CategoryLink" hidden="false" targetId="cbfd-4970-f914-ac9a" primary="false">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
</categoryLink>
<categoryLink id="b8bf-9893-9b27-93e3" name="New CategoryLink" hidden="false" targetId="6743-7925-6ec5-6b91" primary="false">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
</categoryLink>
<categoryLink id="2855-e7d4-bb57-767a" name="New CategoryLink" hidden="false" targetId="acfe-844c-46e8-0f0d" primary="false">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
</categoryLink>
<categoryLink id="1b11-89e0-e2f0-a67f" name="New CategoryLink" hidden="false" targetId="2293-bc6b-5261-a2c0" primary="false">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
</categoryLink>
<categoryLink id="465d-4d5d-e256-10f8" name="New CategoryLink" hidden="false" targetId="6bb8-fe7f-7918-bf8f" primary="false">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
</categoryLink>
<categoryLink id="7263-4599-af77-4583" name="New CategoryLink" hidden="false" targetId="ca27-5069-1c2c-a28b" primary="false">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
</categoryLink>
</categoryLinks>
<selectionEntries>
<selectionEntry id="4b86-f909-a2de-3d0c" name="Solar Atomiser" hidden="false" collective="false" type="upgrade">
<profiles>
<profile id="0cec-010a-d7a8-47e7" name="Solar Atomiser" hidden="false" profileTypeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" profileTypeName="Weapon">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<characteristics>
<characteristic name="Range" characteristicTypeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464" value="12""/>
<characteristic name="Type" characteristicTypeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2" value="Assault D3"/>
<characteristic name="S" characteristicTypeId="59b1-319e-ec13-d466" value="10"/>
<characteristic name="AP" characteristicTypeId="75aa-a838-b675-6484" value="-4"/>
<characteristic name="D" characteristicTypeId="ae8a-3137-d65b-4ca7" value="D3"/>
<characteristic name="Abilities" characteristicTypeId="837d-5e63-aeb7-1410" value="If the target is within half range of this weapon, it has a Damage of D6"/>
</characteristics>
</profile>
</profiles>
<rules/>
<infoLinks/>
<modifiers/>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3430-ffa1-af62-b47a" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8fa7-8ec9-5fc3-1011" type="max"/>
</constraints>
<categoryLinks/>
<selectionEntries/>
<selectionEntryGroups/>
<entryLinks/>
<costs>
<cost name="pts" costTypeId="points" value="0.0"/>
<cost name=" PL" costTypeId="e356-c769-5920-6e14" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="2bf8-5ab5-ff12-b6d6" name="Arc scourge" hidden="false" collective="false" type="upgrade">
<profiles>
<profile id="91b3-8471-148a-540e" name="Arc scourge" hidden="false" profileTypeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" profileTypeName="Weapon">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<characteristics>
<characteristic name="Range" characteristicTypeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464" value="Melee"/>
<characteristic name="Type" characteristicTypeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2" value="Melee"/>
<characteristic name="S" characteristicTypeId="59b1-319e-ec13-d466" value="x2"/>
<characteristic name="AP" characteristicTypeId="75aa-a838-b675-6484" value="-1"/>
<characteristic name="D" characteristicTypeId="ae8a-3137-d65b-4ca7" value="1"/>
<characteristic name="Abilities" characteristicTypeId="837d-5e63-aeb7-1410" value="When attacking a VEHICLE, this weapon has a Damage of D3."/>
</characteristics>
</profile>
</profiles>
<rules/>
<infoLinks/>
<modifiers/>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f218-da10-9383-5a3d" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1649-46e1-0f70-8a22" type="max"/>
</constraints>
<categoryLinks/>
<selectionEntries/>
<selectionEntryGroups/>
<entryLinks/>
<costs>
<cost name="pts" costTypeId="points" value="0.0"/>
<cost name=" PL" costTypeId="e356-c769-5920-6e14" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="2c01-9948-54a3-fafb" name="Mechadendrite Hive" hidden="false" collective="false" type="upgrade">
<profiles>
<profile id="ee9a-4ad9-ff4b-2cba" name="Mechadendrite Hive" hidden="false" profileTypeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" profileTypeName="Weapon">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<characteristics>
<characteristic name="Range" characteristicTypeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464" value="Melee"/>
<characteristic name="Type" characteristicTypeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2" value="Melee"/>
<characteristic name="S" characteristicTypeId="59b1-319e-ec13-d466" value="User"/>
<characteristic name="AP" characteristicTypeId="75aa-a838-b675-6484" value="0"/>
<characteristic name="D" characteristicTypeId="ae8a-3137-d65b-4ca7" value="1"/>
<characteristic name="Abilities" characteristicTypeId="837d-5e63-aeb7-1410" value="Each time Belisarius Cawl fights, he can make 2D6 additional attacks with this weapon."/>
</characteristics>
</profile>
</profiles>
<rules/>
<infoLinks/>
<modifiers/>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b073-635b-4e26-61cf" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8cdd-65b4-2109-5a3f" type="max"/>
</constraints>
<categoryLinks/>
<selectionEntries/>
<selectionEntryGroups/>
<entryLinks/>
<costs>
<cost name="pts" costTypeId="points" value="0.0"/>
<cost name=" PL" costTypeId="e356-c769-5920-6e14" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups/>
<entryLinks>
<entryLink id="022b-338f-8485-c2c7" name="New EntryLink" hidden="false" targetId="2629-27e8-027b-af2c" type="selectionEntry">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="500a-6ba3-16e4-68c7" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8707-2f8c-ac73-271a" type="max"/>
</constraints>
<categoryLinks/>
</entryLink>
<entryLink id="12e1-426d-165e-6d47" name="New EntryLink" hidden="false" targetId="d97f-3755-f0cf-7e5f" type="selectionEntry">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
<categoryLinks/>
</entryLink>
<entryLink id="0c8e-5d8f-7a4b-482b" name="Warlord" hidden="false" targetId="d4fa-d036-f5dd-f91d" type="selectionEntry">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
<categoryLinks/>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" costTypeId="points" value="250.0"/>
<cost name=" PL" costTypeId="e356-c769-5920-6e14" value="13.0"/>
</costs>
</selectionEntry>
<selectionEntry id="2629-27e8-027b-af2c" name="Refractor Field" hidden="false" collective="false" type="upgrade">
<profiles>
<profile id="a378-a850-9b62-2af3" name="Refractor Field" hidden="false" profileTypeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" profileTypeName="Abilities">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<characteristics>
<characteristic name="Description" characteristicTypeId="21befb24-fc85-4f52-a745-64b2e48f8228" value="Unit has a 5+ invulnerable save."/>
</characteristics>
</profile>
</profiles>
<rules/>
<infoLinks/>
<modifiers/>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f6c5-7306-d780-5da4" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4216-fa9d-5723-d1ff" type="max"/>
</constraints>
<categoryLinks/>
<selectionEntries/>
<selectionEntryGroups/>
<entryLinks/>
<costs>
<cost name="pts" costTypeId="points" value="0.0"/>
<cost name=" PL" costTypeId="e356-c769-5920-6e14" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="0895-13ad-3ba1-0952" name="Tech-Priest Dominus" hidden="false" collective="false" type="unit">
<profiles>
<profile id="98b9-3c6b-d02a-f8d1" name="Tech-Priest Dominus" hidden="false" profileTypeId="800f-21d0-4387-c943" profileTypeName="Unit">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<characteristics>
<characteristic name="M" characteristicTypeId="0bdf-a96e-9e38-7779" value="6""/>
<characteristic name="WS" characteristicTypeId="e7f0-1278-0250-df0c" value="3+"/>
<characteristic name="BS" characteristicTypeId="381b-eb28-74c3-df5f" value="2+"/>
<characteristic name="S" characteristicTypeId="2218-aa3c-265f-2939" value="4"/>
<characteristic name="T" characteristicTypeId="9c9f-9774-a358-3a39" value="4"/>
<characteristic name="W" characteristicTypeId="f330-5e6e-4110-0978" value="5"/>
<characteristic name="A" characteristicTypeId="13fc-b29b-31f2-ab9f" value="3"/>
<characteristic name="Ld" characteristicTypeId="00ca-f8b8-876d-b705" value="8"/>
<characteristic name="Save" characteristicTypeId="c0df-df94-abd7-e8d3" value="2+"/>
</characteristics>
</profile>
<profile id="b005-21b2-f6b4-5387" name="Lord of the Machine Cult" hidden="false" profileTypeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" profileTypeName="Abilities">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<characteristics>
<characteristic name="Description" characteristicTypeId="21befb24-fc85-4f52-a745-64b2e48f8228" value="You can re-roll hit rolls of 1 in the Shooting phase for friendly <FORGE WORLD> units within 6""/>
</characteristics>
</profile>
<profile id="c0c4-a119-9fe4-401f" name="Masterwork Bionics" hidden="false" profileTypeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" profileTypeName="Abilities">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<characteristics>
<characteristic name="Description" characteristicTypeId="21befb24-fc85-4f52-a745-64b2e48f8228" value="At the beginning of each of your turns, this model regains D3 lost wounds."/>
</characteristics>
</profile>
</profiles>
<rules/>
<infoLinks>
<infoLink id="3f50-0871-86b1-34c6" name="New InfoLink" hidden="false" targetId="71cb-74ed-4f82-5e5f" type="profile">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
</infoLink>
<infoLink id="8f56-85a1-d691-fb57" name="New InfoLink" hidden="false" targetId="9fcd-e1a8-eeaf-0857" type="profile">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
</infoLink>
</infoLinks>
<modifiers/>
<constraints/>
<categoryLinks>
<categoryLink id="e4bf-978a-ea55-56b2" name="New CategoryLink" hidden="false" targetId="ef18-746a-369f-43a4" primary="false">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
</categoryLink>
<categoryLink id="2576-ed86-fba5-83e0" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
</categoryLink>
<categoryLink id="26d6-8dbf-ec3d-852e" name="New CategoryLink" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
</categoryLink>
<categoryLink id="1383-6867-6b5c-5eb1" name="New CategoryLink" hidden="false" targetId="6743-7925-6ec5-6b91" primary="false">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
</categoryLink>
<categoryLink id="2858-120e-9e24-3530" name="New CategoryLink" hidden="false" targetId="e4c1-ea70-18cd-6caf" primary="false">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
</categoryLink>
<categoryLink id="4acd-4f4b-39ec-a4cd" name="New CategoryLink" hidden="false" targetId="6bb8-fe7f-7918-bf8f" primary="false">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
</categoryLink>
<categoryLink id="04b8-3900-119f-f7a1" name="New CategoryLink" hidden="false" targetId="ca27-5069-1c2c-a28b" primary="false">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
</categoryLink>
<categoryLink id="6811-39ab-0a33-0c70" name="New CategoryLink" hidden="false" targetId="dfde-d915-6e58-09af" primary="false">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
</categoryLink>
<categoryLink id="2097-d4b5-1fdc-0717" name="New CategoryLink" hidden="false" targetId="acfe-844c-46e8-0f0d" primary="false">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
</categoryLink>
</categoryLinks>
<selectionEntries/>
<selectionEntryGroups>
<selectionEntryGroup id="abca-3294-da99-a835" name="Main armament" hidden="false" collective="false" defaultSelectionEntryId="3cfb-b4d3-8b29-44bb">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<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>
<categoryLinks/>
<selectionEntries>
<selectionEntry id="a880-c8b0-b693-adbc" name="Eradication Ray" hidden="false" collective="false" type="upgrade">
<profiles>
<profile id="7d0e-7906-4c83-21dd" name="Eradication Ray" hidden="false" profileTypeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" profileTypeName="Weapon">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<characteristics>
<characteristic name="Range" characteristicTypeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464" value="24""/>
<characteristic name="Type" characteristicTypeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2" value="Heavy D3"/>
<characteristic name="S" characteristicTypeId="59b1-319e-ec13-d466" value="6"/>
<characteristic name="AP" characteristicTypeId="75aa-a838-b675-6484" value="-2"/>
<characteristic name="D" characteristicTypeId="ae8a-3137-d65b-4ca7" value="1"/>
<characteristic name="Abilities" characteristicTypeId="837d-5e63-aeb7-1410" value="Attacks from this weapon that target enemies at 8" or less are resolved with an AP of -4 and a Damage of D3."/>
</characteristics>
</profile>
</profiles>
<rules/>
<infoLinks/>
<modifiers/>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5007-04b8-744a-ecd7" type="max"/>
</constraints>
<categoryLinks/>
<selectionEntries/>
<selectionEntryGroups/>
<entryLinks/>
<costs>
<cost name="pts" costTypeId="points" value="14.0"/>
<cost name=" PL" costTypeId="e356-c769-5920-6e14" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups/>
<entryLinks>
<entryLink id="3cfb-b4d3-8b29-44bb" name="New EntryLink" hidden="false" targetId="0a8a-2f6d-2507-f330" type="selectionEntry">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
<categoryLinks/>
</entryLink>
<entryLink id="7898-4e5e-d1b7-069c" name="New EntryLink" hidden="false" targetId="646a-757f-57dc-daf1" type="selectionEntry">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
<categoryLinks/>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="285c-cca2-da43-6fb5" name="Side armament" hidden="false" collective="false" defaultSelectionEntryId="405d-f5ed-acf4-4d41">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<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>
<categoryLinks/>
<selectionEntries/>
<selectionEntryGroups/>
<entryLinks>
<entryLink id="405d-f5ed-acf4-4d41" name="New EntryLink" hidden="false" targetId="d590-f332-a5f8-210b" type="selectionEntry">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
<categoryLinks/>
</entryLink>
<entryLink id="fe6b-fb6f-52f1-5303" name="New EntryLink" hidden="false" targetId="e042-ad54-1c9f-36a3" type="selectionEntry">
<profiles/>