generated from BSData/TemplateDataRepo
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMechanicum - Library.cat
2341 lines (2340 loc) · 148 KB
/
Mechanicum - Library.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 library="true" id="5943-3ab9-e00f-e458" name="Mechanicum - Library" gameSystemId="sys-9498-516a-178a-3f4f" gameSystemRevision="28" revision="2" battleScribeVersion="2.03" publicationId="89ae-8b6d-da44-733f" type="catalogue" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<sharedRules>
<rule name="Cortex Controller" id="3579-8e16-d3b1-e319" hidden="false" publicationId="89ae-8b6d-da44-733f">
<description>If a detachment with the Cybernetica Cortex (X) special rule has at least one model wholly within 8" of a friendly model with the Cortex Controller special rule, the former Detachment can be issued with any Order it would be eligible to be issued, instead of just those listed in brackets.
Note: The Cortex Controller does not need to be part of the same Formation, merely the same Army.</description>
</rule>
<rule name="Automata Detachments" id="7207-325d-62f0-302b" hidden="false" publicationId="89ae-8b6d-da44-733f">
<description>Archmagus Prime, Archmagus Prime on Abeyant and Tech-Priest Auxilia models may be attached to any friendly Infantry, Walker, Cavalry or Vehicle Detachment within the same formation that has the Cybernetica Cortex (X) special rule. This overrides normal restrictions about joining Detachments of different types.</description>
</rule>
<rule name="Cybernetica Cortex (X) " id="3df1-39f0-9014-cf63" hidden="false" publicationId="89ae-8b6d-da44-733f">
<alias>Cybernetica Cortex</alias>
<description>Detachments with the Cybernetica Cortex (X) special rule can only be issued an Order shown in brackets unless instructed otherwise. If a Detachment is not eligible to be issued any of the Orders listed - for example it is within a Transport and cannot be issued with anything other than the Advance Order - then this rule is temporarily ignored.</description>
</rule>
</sharedRules>
<sharedSelectionEntries>
<selectionEntry type="model" import="true" name="Tech-thralls" hidden="false" id="a5c2-be99-e3c2-d171">
<costs>
<cost name="points" typeId="ee95-a20e-f9ff-e2c2" value="0"/>
<cost name="Transport" typeId="54cb-1324-71d0-d324" value="0"/>
<cost name="Break Point" typeId="5312-855-beda-23c1" value="0.5"/>
</costs>
<profiles>
<profile name="Tech-thralls" typeId="6c4e-cc0f-8b44-d1ab" typeName="Detachment" hidden="false" id="fb6e-9a3f-85e1-ca0e">
<characteristics>
<characteristic name="Move" typeId="77ae-ddcc-f55a-7441">5"</characteristic>
<characteristic name="Sv" typeId="ddb1-4f55-6b17-7bc8">6+</characteristic>
<characteristic name="CAF" typeId="b9d2-6ffb-17a1-757f">1</characteristic>
<characteristic name="Morale" typeId="8485-4ee2-6feb-d93c">-</characteristic>
<characteristic name="W" typeId="b00f-3f1c-eb63-461a">1</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Las-locks" hidden="false" id="b1ce-fc9e-52d3-1b31">
<profiles>
<profile name="Las-locks" typeId="ac1f-57b2-e1a8-3b2a" typeName="Weapon" hidden="false" id="2d5d-48eb-5c77-5cb0">
<characteristics>
<characteristic name="Range" typeId="9b59-b345-bfe2-c99b">6"</characteristic>
<characteristic name="Dice" typeId="e416-76d6-5762-ed21">1</characteristic>
<characteristic name="To Hit" typeId="c441-9eb2-b00a-5c8c">6+</characteristic>
<characteristic name="AP" typeId="3932-ca12-de16-c1b7">0</characteristic>
<characteristic name="Traits" typeId="d0f2-61ea-138a-81af">Light</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Light" id="6234-30bf-7ff5-72e6" hidden="false" type="rule" targetId="4f6f-3184-9172-ef3f"/>
</infoLinks>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="f9ee-7832-0914-92df-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="f9ee-7832-0914-92df-max"/>
</constraints>
<categoryLinks>
<categoryLink targetId="68c1-de55-26b1-8ca4" id="6463-0069-9429-398f" primary="false" name="Infantry (1)"/>
</categoryLinks>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="model" import="true" name="Thallax" hidden="false" id="b0e5-db48-66c7-ba75">
<profiles>
<profile name="Thallax" typeId="6c4e-cc0f-8b44-d1ab" typeName="Detachment" hidden="false" id="651e-5c4e-15c8-a18e">
<characteristics>
<characteristic name="Move" typeId="77ae-ddcc-f55a-7441">7"</characteristic>
<characteristic name="Sv" typeId="ddb1-4f55-6b17-7bc8">5+</characteristic>
<characteristic name="CAF" typeId="b9d2-6ffb-17a1-757f">+1</characteristic>
<characteristic name="Morale" typeId="8485-4ee2-6feb-d93c">3+</characteristic>
<characteristic name="W" typeId="b00f-3f1c-eb63-461a">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="points" typeId="ee95-a20e-f9ff-e2c2" value="0"/>
<cost name="Transport" typeId="54cb-1324-71d0-d324" value="0"/>
<cost name="Break Point" typeId="5312-855-beda-23c1" value="0.5"/>
</costs>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Lightning guns" hidden="false" id="a8eb-b162-9511-b20c">
<profiles>
<profile name="Lightning guns" typeId="ac1f-57b2-e1a8-3b2a" typeName="Weapon" hidden="false" id="82f2-f14d-b894-a6d4">
<characteristics>
<characteristic name="Range" typeId="9b59-b345-bfe2-c99b">8"</characteristic>
<characteristic name="Dice" typeId="e416-76d6-5762-ed21">2</characteristic>
<characteristic name="To Hit" typeId="c441-9eb2-b00a-5c8c">5+</characteristic>
<characteristic name="AP" typeId="3932-ca12-de16-c1b7">-1</characteristic>
<characteristic name="Traits" typeId="d0f2-61ea-138a-81af">Light AT</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Light AT" id="9813-c9dd-6b21-40a1" hidden="false" type="rule" targetId="c731-70f4-ffcd-4ff7"/>
</infoLinks>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="478a-2c92-19bb-cc27-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="478a-2c92-19bb-cc27-max"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Thallax plasma-fusil" hidden="false" id="b37f-5f5f-0a80-7d77">
<profiles>
<profile name="Thallax plasma-fusil" typeId="ac1f-57b2-e1a8-3b2a" typeName="Weapon" hidden="false" id="5469-e299-ae66-84d4">
<characteristics>
<characteristic name="Range" typeId="9b59-b345-bfe2-c99b">10"</characteristic>
<characteristic name="Dice" typeId="e416-76d6-5762-ed21">1</characteristic>
<characteristic name="To Hit" typeId="c441-9eb2-b00a-5c8c">4+</characteristic>
<characteristic name="AP" typeId="3932-ca12-de16-c1b7">-1</characteristic>
<characteristic name="Traits" typeId="d0f2-61ea-138a-81af">Light AT</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Light AT" id="b16b-b4d2-87e7-3567" hidden="false" type="rule" targetId="c731-70f4-ffcd-4ff7"/>
</infoLinks>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="837d-a8a0-a670-3cf1-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="837d-a8a0-a670-3cf1-max"/>
</constraints>
</selectionEntry>
</selectionEntries>
<infoLinks>
<infoLink name="Jump Packs" id="7d9e-67c8-878a-ed4c" hidden="false" type="rule" targetId="130c-4ba7-dab7-34b3"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="model" import="true" name="Myrmidon Secutors" hidden="false" id="da42-ba05-1a7e-c6b5" publicationId="89ae-8b6d-da44-733f" page="100">
<costs>
<cost name="points" typeId="ee95-a20e-f9ff-e2c2" value="0"/>
<cost name="Transport" typeId="54cb-1324-71d0-d324" value="0"/>
<cost name="Break Point" typeId="5312-855-beda-23c1" value="0.5"/>
</costs>
<categoryLinks>
<categoryLink targetId="68c1-de55-26b1-8ca4" id="b58a-4515-4519-a267" primary="true" name="Infantry (1)"/>
</categoryLinks>
<profiles>
<profile name="Myrmidon Secutors" typeId="6c4e-cc0f-8b44-d1ab" typeName="Detachment" hidden="false" id="ab4f-0a44-6fe3-afd9">
<characteristics>
<characteristic name="Move" typeId="77ae-ddcc-f55a-7441">5"</characteristic>
<characteristic name="Sv" typeId="ddb1-4f55-6b17-7bc8">4+</characteristic>
<characteristic name="CAF" typeId="b9d2-6ffb-17a1-757f">+6</characteristic>
<characteristic name="Morale" typeId="8485-4ee2-6feb-d93c">3+</characteristic>
<characteristic name="W" typeId="b00f-3f1c-eb63-461a">1</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Implacable" id="c124-1393-ea05-c9ee" hidden="false" type="rule" targetId="d6b1-1b69-a07c-3ddd"/>
</infoLinks>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Maxima Bolters" hidden="false" id="a2c4-4ffb-dddc-c625">
<profiles>
<profile name="Maxima Bolters" typeId="ac1f-57b2-e1a8-3b2a" typeName="Weapon" hidden="false" id="130b-1fd8-de99-ce13">
<characteristics>
<characteristic name="Range" typeId="9b59-b345-bfe2-c99b">8"</characteristic>
<characteristic name="Dice" typeId="e416-76d6-5762-ed21">2</characteristic>
<characteristic name="To Hit" typeId="c441-9eb2-b00a-5c8c">5+</characteristic>
<characteristic name="AP" typeId="3932-ca12-de16-c1b7">0</characteristic>
<characteristic name="Traits" typeId="d0f2-61ea-138a-81af">Assault, Light</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="c991-38d7-4c9f-dc6b-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="c991-38d7-4c9f-dc6b-max"/>
</constraints>
<infoLinks>
<infoLink name="Assault" id="be20-1ba4-f61b-1dc3" hidden="false" type="rule" targetId="e368-00fb-7a9b-9eb0"/>
<infoLink name="Light" id="c0fa-acda-f8a6-5a68" hidden="false" type="rule" targetId="4f6f-3184-9172-ef3f"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="model" import="true" name="Myrmidon Destructors" hidden="false" id="d17a-fd59-ab4c-7770" publicationId="89ae-8b6d-da44-733f" page="101">
<costs>
<cost name="points" typeId="ee95-a20e-f9ff-e2c2" value="0"/>
<cost name="Transport" typeId="54cb-1324-71d0-d324" value="0"/>
<cost name="Break Point" typeId="5312-855-beda-23c1" value="0.5"/>
</costs>
<categoryLinks>
<categoryLink targetId="68c1-de55-26b1-8ca4" id="fcd7-a379-cdc9-e1d7" primary="true" name="Infantry (1)"/>
</categoryLinks>
<profiles>
<profile name="Myrmidon Destructors" typeId="6c4e-cc0f-8b44-d1ab" typeName="Detachment" hidden="false" id="7b1e-4654-8c57-0e22">
<characteristics>
<characteristic name="Move" typeId="77ae-ddcc-f55a-7441">5"</characteristic>
<characteristic name="Sv" typeId="ddb1-4f55-6b17-7bc8">4+</characteristic>
<characteristic name="CAF" typeId="b9d2-6ffb-17a1-757f">+3</characteristic>
<characteristic name="Morale" typeId="8485-4ee2-6feb-d93c">3+</characteristic>
<characteristic name="W" typeId="b00f-3f1c-eb63-461a">1</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Implacable" id="0445-d388-385b-a82a" hidden="false" type="rule" targetId="d6b1-1b69-a07c-3ddd"/>
</infoLinks>
<selectionEntryGroups>
<selectionEntryGroup name="Weapons" id="de2a-5ec0-82de-4ccd" hidden="false" defaultSelectionEntryId="f248-1dca-0508-6d92">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Conversion beamers" hidden="false" id="f248-1dca-0508-6d92">
<profiles>
<profile name="Conversion beamers" typeId="ac1f-57b2-e1a8-3b2a" typeName="Weapon" hidden="false" id="9b24-5d13-5e23-09bc">
<characteristics>
<characteristic name="Range" typeId="9b59-b345-bfe2-c99b">4-22"</characteristic>
<characteristic name="Dice" typeId="e416-76d6-5762-ed21">1</characteristic>
<characteristic name="To Hit" typeId="c441-9eb2-b00a-5c8c">4+</characteristic>
<characteristic name="AP" typeId="3932-ca12-de16-c1b7">-2</characteristic>
<characteristic name="Traits" typeId="d0f2-61ea-138a-81af"/>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Myrmidon volkites" hidden="false" id="7316-50e3-22d8-dae1">
<profiles>
<profile name="Myrmidon volkites" typeId="ac1f-57b2-e1a8-3b2a" typeName="Weapon" hidden="false" id="00b5-ba25-ad2f-b8ec">
<characteristics>
<characteristic name="Range" typeId="9b59-b345-bfe2-c99b">12"</characteristic>
<characteristic name="Dice" typeId="e416-76d6-5762-ed21">2</characteristic>
<characteristic name="To Hit" typeId="c441-9eb2-b00a-5c8c">4+</characteristic>
<characteristic name="AP" typeId="3932-ca12-de16-c1b7">0</characteristic>
<characteristic name="Traits" typeId="d0f2-61ea-138a-81af">Deflagrate, Light</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Deflagrate" id="8e22-0fe8-85fd-abe2" hidden="false" type="rule" targetId="711e-2910-b797-71a8"/>
<infoLink name="Light" id="473d-fd2d-fb9c-1067" hidden="false" type="rule" targetId="4f6f-3184-9172-ef3f"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="74d5-e288-1318-73b6-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="74d5-e288-1318-73b6-max"/>
</constraints>
</selectionEntryGroup>
</selectionEntryGroups>
</selectionEntry>
<selectionEntry type="model" import="true" name="Ursarax" hidden="false" id="38a8-c364-ebe3-fa7d">
<costs>
<cost name="points" typeId="ee95-a20e-f9ff-e2c2" value="0"/>
<cost name="Transport" typeId="54cb-1324-71d0-d324" value="0"/>
<cost name="Break Point" typeId="5312-855-beda-23c1" value="0.5"/>
</costs>
<profiles>
<profile name="Ursarax" typeId="6c4e-cc0f-8b44-d1ab" typeName="Detachment" hidden="false" id="b8bb-b7f6-25ce-c239">
<characteristics>
<characteristic name="Move" typeId="77ae-ddcc-f55a-7441">7"</characteristic>
<characteristic name="Sv" typeId="ddb1-4f55-6b17-7bc8">5+</characteristic>
<characteristic name="CAF" typeId="b9d2-6ffb-17a1-757f">+3</characteristic>
<characteristic name="Morale" typeId="8485-4ee2-6feb-d93c">3+</characteristic>
<characteristic name="W" typeId="b00f-3f1c-eb63-461a">1</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Jump Packs" id="b6ec-1ca5-b0b9-e5c5" hidden="false" type="rule" targetId="130c-4ba7-dab7-34b3"/>
</infoLinks>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Volkite incinerators" hidden="false" id="996a-4ac4-f3b9-8aa0">
<profiles>
<profile name="Volkite incinerators" typeId="ac1f-57b2-e1a8-3b2a" typeName="Weapon" hidden="false" id="f173-cfe0-f232-2223">
<characteristics>
<characteristic name="Range" typeId="9b59-b345-bfe2-c99b">6"</characteristic>
<characteristic name="Dice" typeId="e416-76d6-5762-ed21">2</characteristic>
<characteristic name="To Hit" typeId="c441-9eb2-b00a-5c8c">5+</characteristic>
<characteristic name="AP" typeId="3932-ca12-de16-c1b7">0</characteristic>
<characteristic name="Traits" typeId="d0f2-61ea-138a-81af">Deflagrate, Light</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Deflagrate" id="8065-f11c-b005-5196" hidden="false" type="rule" targetId="711e-2910-b797-71a8"/>
<infoLink name="Light" id="3985-11bd-5c4e-cf8c" hidden="false" type="rule" targetId="4f6f-3184-9172-ef3f"/>
</infoLinks>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="eafc-037b-3069-d5e9-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="eafc-037b-3069-d5e9-max"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="model" import="true" name="Krios Battle Tank" hidden="false" id="5f26-55f1-f9ce-a2b4">
<infoLinks>
<infoLink name="Krios" id="da15-efb1-832c-b14b" hidden="false" type="profile" targetId="3cb5-a447-0168-09fc"/>
</infoLinks>
<costs>
<cost name="points" typeId="ee95-a20e-f9ff-e2c2" value="0"/>
<cost name="Transport" typeId="54cb-1324-71d0-d324" value="0"/>
<cost name="Break Point" typeId="5312-855-beda-23c1" value="0.5"/>
</costs>
<selectionEntryGroups>
<selectionEntryGroup name="Turret Weapons" id="74a6-be02-b438-021e" hidden="false" sortIndex="1">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Krios lightning cannon" hidden="false" id="2c42-5b80-531c-578d" sortIndex="1">
<profiles>
<profile name="Krios lightning cannon" typeId="ac1f-57b2-e1a8-3b2a" typeName="Weapon" hidden="false" id="7451-ac3c-ff87-9146">
<characteristics>
<characteristic name="Range" typeId="9b59-b345-bfe2-c99b">22"</characteristic>
<characteristic name="Dice" typeId="e416-76d6-5762-ed21">2</characteristic>
<characteristic name="To Hit" typeId="c441-9eb2-b00a-5c8c">5+</characteristic>
<characteristic name="AP" typeId="3932-ca12-de16-c1b7">-2</characteristic>
<characteristic name="Traits" typeId="d0f2-61ea-138a-81af">Arc (Front)</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Arc (Front/Rear)" id="7e73-0cff-6e28-3e2c" hidden="false" type="rule" targetId="c48c-8f45-e290-9940">
<modifiers>
<modifier type="set" value="Arc (Front)" field="name"/>
</modifiers>
</infoLink>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Irad Scourer" hidden="false" id="736c-61ec-4eb4-c69c">
<profiles>
<profile name="Irad Scourer" typeId="ac1f-57b2-e1a8-3b2a" typeName="Weapon" hidden="false" id="cc7f-d209-8c49-1eb0">
<characteristics>
<characteristic name="Range" typeId="9b59-b345-bfe2-c99b">16"</characteristic>
<characteristic name="Dice" typeId="e416-76d6-5762-ed21">2</characteristic>
<characteristic name="To Hit" typeId="c441-9eb2-b00a-5c8c">4+</characteristic>
<characteristic name="AP" typeId="3932-ca12-de16-c1b7">-2</characteristic>
<characteristic name="Traits" typeId="d0f2-61ea-138a-81af">Arc (Front), Light AT, Ignores Cover</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Arc (Front/Rear)" id="99b0-80dc-6e62-0709" hidden="false" type="rule" targetId="c48c-8f45-e290-9940">
<modifiers>
<modifier type="set" value="Arc (Front)" field="name"/>
</modifiers>
</infoLink>
<infoLink name="Light AT" id="218b-a239-7efd-3615" hidden="false" type="rule" targetId="c731-70f4-ffcd-4ff7"/>
<infoLink name="Ignores Cover" id="6904-2453-0880-cae0" hidden="false" type="rule" targetId="bff7-b88a-2145-2c63"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="95c3-0727-40cd-b31c-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="95c3-0727-40cd-b31c-max"/>
</constraints>
</selectionEntryGroup>
</selectionEntryGroups>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Volkite caliver sponsons" hidden="false" id="0f1a-da19-4c29-9936" sortIndex="2">
<profiles>
<profile name="Volkite caliver sponsons" typeId="ac1f-57b2-e1a8-3b2a" typeName="Weapon" hidden="false" id="c5f7-a005-5a5f-a13d">
<characteristics>
<characteristic name="Range" typeId="9b59-b345-bfe2-c99b">12"</characteristic>
<characteristic name="Dice" typeId="e416-76d6-5762-ed21">1</characteristic>
<characteristic name="To Hit" typeId="c441-9eb2-b00a-5c8c">4+</characteristic>
<characteristic name="AP" typeId="3932-ca12-de16-c1b7">0</characteristic>
<characteristic name="Traits" typeId="d0f2-61ea-138a-81af">Accurate, Deflagrate, Light, Point Defence</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="383f-8fc3-596e-6eb5-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="383f-8fc3-596e-6eb5-max"/>
</constraints>
<infoLinks>
<infoLink name="Accurate" id="88a8-a08b-159e-eddb" hidden="false" type="rule" targetId="dc55-9f84-39e1-1e1e"/>
<infoLink name="Deflagrate" id="d77e-b936-96b1-d563" hidden="false" type="rule" targetId="711e-2910-b797-71a8"/>
<infoLink name="Light" id="e045-0227-728c-2bd9" hidden="false" type="rule" targetId="4f6f-3184-9172-ef3f"/>
<infoLink name="Point Defence" id="db3d-1466-3967-e0c5" hidden="false" type="rule" targetId="f921-10ce-33f7-19fd"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Cortex Controller" hidden="false" id="fb2a-2e67-763a-6372" sortIndex="3">
<costs>
<cost name="points" typeId="ee95-a20e-f9ff-e2c2" value="10"/>
<cost name="Transport" typeId="54cb-1324-71d0-d324" value="0"/>
<cost name="Break Point" typeId="5312-855-beda-23c1" value="0"/>
</costs>
<infoLinks>
<infoLink name="Cortex Controller" id="52d8-2dde-34ca-339c" hidden="false" type="rule" targetId="3579-8e16-d3b1-e319"/>
</infoLinks>
<constraints>
<constraint type="max" value="1" field="selections" scope="force" shared="true" id="38f9-690c-f87e-2128"/>
</constraints>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="notInstanceOf" value="1" field="selections" scope="force" childId="7ea4-70ef-6360-b1a5" shared="true"/>
</conditions>
</modifier>
</modifiers>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="model" import="true" name="Karacnos" hidden="false" id="94c4-fc51-2e1b-296d">
<costs>
<cost name="points" typeId="ee95-a20e-f9ff-e2c2" value="0"/>
<cost name="Transport" typeId="54cb-1324-71d0-d324" value="0"/>
<cost name="Break Point" typeId="5312-855-beda-23c1" value="0.5"/>
</costs>
<profiles>
<profile name="Karacnos" typeId="6c4e-cc0f-8b44-d1ab" typeName="Detachment" hidden="false" id="c24f-73fc-8e30-73e3">
<characteristics>
<characteristic name="Move" typeId="77ae-ddcc-f55a-7441">8"</characteristic>
<characteristic name="Sv" typeId="ddb1-4f55-6b17-7bc8">3+</characteristic>
<characteristic name="CAF" typeId="b9d2-6ffb-17a1-757f">0</characteristic>
<characteristic name="Morale" typeId="8485-4ee2-6feb-d93c">3+</characteristic>
<characteristic name="W" typeId="b00f-3f1c-eb63-461a">1</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Lightning locks" hidden="false" id="6b49-e80d-b5f0-3208" sortIndex="1">
<profiles>
<profile name="Lightning locks" typeId="ac1f-57b2-e1a8-3b2a" typeName="Weapon" hidden="false" id="6de4-ec80-2ceb-f368">
<characteristics>
<characteristic name="Range" typeId="9b59-b345-bfe2-c99b">12"</characteristic>
<characteristic name="Dice" typeId="e416-76d6-5762-ed21">2</characteristic>
<characteristic name="To Hit" typeId="c441-9eb2-b00a-5c8c">5+</characteristic>
<characteristic name="AP" typeId="3932-ca12-de16-c1b7">1</characteristic>
<characteristic name="Traits" typeId="d0f2-61ea-138a-81af">Arc (front), Point Defence</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Arc (Front/Rear)" id="29cb-516a-68a5-9f88" hidden="false" type="rule" targetId="c48c-8f45-e290-9940">
<modifiers>
<modifier type="set" value="Arc (Front)" field="name"/>
</modifiers>
</infoLink>
<infoLink name="Point Defence" id="f739-b724-1e9a-50ca" hidden="false" type="rule" targetId="f921-10ce-33f7-19fd"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Karacnos mortar battery" hidden="false" id="dbe7-9433-c9a6-8988" sortIndex="2">
<profiles>
<profile name="Karacnos mortar battery" typeId="ac1f-57b2-e1a8-3b2a" typeName="Weapon" hidden="false" id="e58f-785d-350a-2d1c">
<characteristics>
<characteristic name="Range" typeId="9b59-b345-bfe2-c99b">30"</characteristic>
<characteristic name="Dice" typeId="e416-76d6-5762-ed21">2</characteristic>
<characteristic name="To Hit" typeId="c441-9eb2-b00a-5c8c">4+</characteristic>
<characteristic name="AP" typeId="3932-ca12-de16-c1b7">-1</characteristic>
<characteristic name="Traits" typeId="d0f2-61ea-138a-81af">Arc (Front), Barrage, Ignores Cover</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Arc (Front/Rear)" id="0566-51ce-ee2e-3a60" hidden="false" type="rule" targetId="c48c-8f45-e290-9940">
<modifiers>
<modifier type="set" value="Arc (Front)" field="name"/>
</modifiers>
</infoLink>
<infoLink name="Barrage" id="a0d5-a6bc-0c46-bd31" hidden="false" type="rule" targetId="862d-b036-2018-dbaf"/>
<infoLink name="Ignores Cover" id="1051-1d49-a414-b7e7" hidden="false" type="rule" targetId="bff7-b88a-2145-2c63"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Shock ram" hidden="false" id="b40d-5770-6111-03b4" sortIndex="3">
<profiles>
<profile name="Shock ram" typeId="ac1f-57b2-e1a8-3b2a" typeName="Weapon" hidden="false" id="c55d-7de9-9bcf-4187">
<characteristics>
<characteristic name="Range" typeId="9b59-b345-bfe2-c99b"/>
<characteristic name="Dice" typeId="e416-76d6-5762-ed21"/>
<characteristic name="To Hit" typeId="c441-9eb2-b00a-5c8c"/>
<characteristic name="AP" typeId="3932-ca12-de16-c1b7"/>
<characteristic name="Traits" typeId="d0f2-61ea-138a-81af">Wrecker (2)</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Wrecker (X)" id="381b-c99b-6f30-f44e" hidden="false" type="rule" targetId="e40-19fc-8c79-9a12">
<modifiers>
<modifier type="set" value="Wrecker (2)" field="name"/>
</modifiers>
</infoLink>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Cortex Controller" hidden="false" id="fb2a-2e67-763a-6372" sortIndex="4">
<costs>
<cost name="points" typeId="ee95-a20e-f9ff-e2c2" value="10"/>
<cost name="Transport" typeId="54cb-1324-71d0-d324" value="0"/>
<cost name="Break Point" typeId="5312-855-beda-23c1" value="0"/>
</costs>
<infoLinks>
<infoLink name="Cortex Controller" id="52d8-2dde-34ca-339c" hidden="false" type="rule" targetId="3579-8e16-d3b1-e319"/>
</infoLinks>
<constraints>
<constraint type="max" value="1" field="selections" scope="force" shared="true" id="38f9-690c-f87e-2128"/>
</constraints>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="notInstanceOf" value="1" field="selections" scope="force" childId="7ea4-70ef-6360-b1a5" shared="true"/>
</conditions>
</modifier>
</modifiers>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Karacnos Assault Tank Squadron" hidden="false" id="29ba-2b50-94bd-d82c" publicationId="89ae-8b6d-da44-733f">
<costs>
<cost name="points" typeId="ee95-a20e-f9ff-e2c2" value="40"/>
<cost name="Transport" typeId="54cb-1324-71d0-d324" value="0"/>
<cost name="Break Point" typeId="5312-855-beda-23c1" value="0"/>
</costs>
<categoryLinks>
<categoryLink name="Battle Tank" hidden="false" id="6eb6-7f5b-37de-8c9a" targetId="4e02-d7ec-4d81-d5fa" primary="true"/>
<categoryLink name="Vehicle (2)" hidden="false" id="d3f3-a823-1a90-71f2" targetId="49b3-dae7-33f8-f8e" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="Karacnos" hidden="false" id="c3d6-0989-f45f-8385" type="selectionEntry" targetId="94c4-fc51-2e1b-296d">
<constraints>
<constraint type="min" value="2" field="selections" scope="parent" shared="true" id="25a7-9acd-bb09-6eae-min"/>
<constraint type="max" value="2" field="selections" scope="parent" shared="true" id="25a7-9acd-bb09-6eae-max"/>
</constraints>
</entryLink>
</entryLinks>
<selectionEntryGroups>
<selectionEntryGroup name="Upgrades" id="3917-6ea4-0905-9ce1" hidden="false">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Increase size by 1" hidden="false" id="d2fa-8991-426e-d73d">
<costs>
<cost name="points" typeId="ee95-a20e-f9ff-e2c2" value="40"/>
<cost name="Transport" typeId="54cb-1324-71d0-d324" value="0"/>
<cost name="Break Point" typeId="5312-855-beda-23c1" value="0"/>
</costs>
<entryLinks>
<entryLink import="true" name="Karacnos" hidden="false" id="d6e8-ed6f-88eb-eb6d" type="selectionEntry" targetId="94c4-fc51-2e1b-296d">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="27a6-4815-621f-04bf-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="27a6-4815-621f-04bf-max"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Increase size by 3" hidden="false" id="19f3-f18b-c35f-4ab7">
<costs>
<cost name="points" typeId="ee95-a20e-f9ff-e2c2" value="100"/>
<cost name="Transport" typeId="54cb-1324-71d0-d324" value="0"/>
<cost name="Break Point" typeId="5312-855-beda-23c1" value="0"/>
</costs>
<entryLinks>
<entryLink import="true" name="Karacnos" hidden="false" id="e7f5-141c-a96b-64c6" type="selectionEntry" targetId="94c4-fc51-2e1b-296d">
<constraints>
<constraint type="min" value="3" field="selections" scope="parent" shared="true" id="28a7-b6b7-c775-cf64-min"/>
<constraint type="max" value="3" field="selections" scope="parent" shared="true" id="28a7-b6b7-c775-cf64-max"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Increase size by 2" hidden="false" id="957c-c367-4613-4564">
<costs>
<cost name="points" typeId="ee95-a20e-f9ff-e2c2" value="70"/>
<cost name="Transport" typeId="54cb-1324-71d0-d324" value="0"/>
<cost name="Break Point" typeId="5312-855-beda-23c1" value="0"/>
</costs>
<entryLinks>
<entryLink import="true" name="Karacnos" hidden="false" id="80cc-dac9-bbe4-f1b3" type="selectionEntry" targetId="94c4-fc51-2e1b-296d">
<constraints>
<constraint type="min" value="2" field="selections" scope="parent" shared="true" id="d053-db66-9893-a551-min"/>
<constraint type="max" value="2" field="selections" scope="parent" shared="true" id="d053-db66-9893-a551-max"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="b902-0b76-c0f8-50c7"/>
</constraints>
</selectionEntryGroup>
</selectionEntryGroups>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Krios Battle Tank Squadron" hidden="false" id="cc8e-6ce4-71bb-aa7e" publicationId="89ae-8b6d-da44-733f">
<categoryLinks>
<categoryLink name="Battle Tank" hidden="false" id="f407-6f63-931f-281e" targetId="4e02-d7ec-4d81-d5fa" primary="true"/>
<categoryLink name="Vehicle (2)" hidden="false" id="ac3f-8450-fdae-2ef1" targetId="49b3-dae7-33f8-f8e" primary="false"/>
</categoryLinks>
<costs>
<cost name="points" typeId="ee95-a20e-f9ff-e2c2" value="100"/>
<cost name="Transport" typeId="54cb-1324-71d0-d324" value="0"/>
<cost name="Break Point" typeId="5312-855-beda-23c1" value="0"/>
</costs>
<entryLinks>
<entryLink import="true" name="Krios Battle Tank" hidden="false" id="7273-3c64-e485-4744" type="selectionEntry" targetId="5f26-55f1-f9ce-a2b4">
<constraints>
<constraint type="min" value="3" field="selections" scope="parent" shared="true" id="cd64-0072-f612-a079-min"/>
<constraint type="max" value="3" field="selections" scope="parent" shared="true" id="cd64-0072-f612-a079-max"/>
</constraints>
</entryLink>
</entryLinks>
<selectionEntryGroups>
<selectionEntryGroup name="Upgrades" id="4e47-a35e-3df8-2841" hidden="false">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Increase size by 3" hidden="false" id="4aba-1983-e55b-25e0">
<costs>
<cost name="points" typeId="ee95-a20e-f9ff-e2c2" value="90"/>
<cost name="Transport" typeId="54cb-1324-71d0-d324" value="0"/>
<cost name="Break Point" typeId="5312-855-beda-23c1" value="0"/>
</costs>
<entryLinks>
<entryLink import="true" name="Krios Battle Tank" hidden="false" id="dec8-b1ab-4c69-552d" type="selectionEntry" targetId="5f26-55f1-f9ce-a2b4">
<constraints>
<constraint type="min" value="3" field="selections" scope="parent" shared="true" id="c20a-3d8e-1dfc-831f-min"/>
<constraint type="max" value="3" field="selections" scope="parent" shared="true" id="c20a-3d8e-1dfc-831f-max"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Increase size by 6" hidden="false" id="6eae-9c60-88b9-576a">
<costs>
<cost name="points" typeId="ee95-a20e-f9ff-e2c2" value="170"/>
<cost name="Transport" typeId="54cb-1324-71d0-d324" value="0"/>
<cost name="Break Point" typeId="5312-855-beda-23c1" value="0"/>
</costs>
<entryLinks>
<entryLink import="true" name="Krios Battle Tank" hidden="false" id="1260-1fe2-733c-3b1c" type="selectionEntry" targetId="5f26-55f1-f9ce-a2b4">
<constraints>
<constraint type="min" value="6" field="selections" scope="parent" shared="true" id="4196-c473-da58-6f97-min"/>
<constraint type="max" value="6" field="selections" scope="parent" shared="true" id="4196-c473-da58-6f97-max"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="dbc0-ff9f-b4ac-ca50"/>
</constraints>
</selectionEntryGroup>
</selectionEntryGroups>
</selectionEntry>
<selectionEntry type="model" import="true" name="Tech-Priest" hidden="false" id="c96f-9492-7e30-43f4">
<profiles>
<profile name="Tech-Priest Auxilia" typeId="6c4e-cc0f-8b44-d1ab" typeName="Detachment" hidden="false" id="4727-dc25-bf0c-36dd">
<characteristics>
<characteristic name="Move" typeId="77ae-ddcc-f55a-7441">5"</characteristic>
<characteristic name="Sv" typeId="ddb1-4f55-6b17-7bc8">5+</characteristic>
<characteristic name="CAF" typeId="b9d2-6ffb-17a1-757f">+2</characteristic>
<characteristic name="Morale" typeId="8485-4ee2-6feb-d93c">3+</characteristic>
<characteristic name="W" typeId="b00f-3f1c-eb63-461a">1</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Attached Deployment" id="ceeb-b058-a6f5-52f9" hidden="false" type="rule" targetId="69f3-f5b-fef4-ba4f"/>
<infoLink name="Battlesmith" id="842e-0a19-580c-fd8f" hidden="false" type="rule" targetId="bc6e-78fc-8fde-226d"/>
<infoLink name="Cortex Controller" id="e54f-0954-1904-c73b" hidden="false" type="rule" targetId="3579-8e16-d3b1-e319"/>
<infoLink name="Invulnerable Save (X)" id="b538-53d0-230d-c45a" hidden="false" type="rule" targetId="49e7-280c-c388-60ba">
<modifiers>
<modifier type="set" value="Invulnerable Save (6+)" field="name"/>
</modifiers>
</infoLink>
</infoLinks>
<costs>
<cost name="points" typeId="ee95-a20e-f9ff-e2c2" value="15"/>
<cost name="Transport" typeId="54cb-1324-71d0-d324" value="0"/>
<cost name="Break Point" typeId="5312-855-beda-23c1" value="0.5"/>
</costs>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Triaros Armoured Conveyor" hidden="false" id="079e-ed76-42fa-cae9" publicationId="89ae-8b6d-da44-733f">
<categoryLinks>
<categoryLink name="Transport" hidden="false" id="9731-76a0-72fa-7cf3" targetId="3751-fb88-3656-b7d1" primary="true"/>
<categoryLink name="Vehicle (2)" hidden="false" id="fd1f-6137-85bb-edd4" targetId="49b3-dae7-33f8-f8e" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="Triaros" hidden="false" id="9897-0321-5d4c-7063" type="selectionEntry" targetId="ef70-4e36-852e-fd7d">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="dbe0-aae6-0922-acdc"/>
<constraint type="max" value="8" field="selections" scope="parent" shared="true" id="1635-99d2-64ef-9caf"/>
</constraints>
<costs>
<cost name="points" typeId="ee95-a20e-f9ff-e2c2" value="15"/>
</costs>
</entryLink>
</entryLinks>
</selectionEntry>
<selectionEntry type="model" import="true" name="Triaros" hidden="false" id="ef70-4e36-852e-fd7d" defaultAmount="1">
<costs>
<cost name="Transport" typeId="54cb-1324-71d0-d324" value="0"/>
<cost name="Break Point" typeId="5312-855-beda-23c1" value="0.5"/>
</costs>
<categoryLinks>
<categoryLink name="Vehicle (2)" hidden="false" id="a770-e882-f893-58d1" targetId="49b3-dae7-33f8-f8e" primary="false"/>
</categoryLinks>
<infoLinks>
<infoLink name="Large Transport (X)" id="f7f0-ac5c-582a-5c28" hidden="false" type="rule" targetId="d33b-3fa4-492e-6d3e">
<modifiers>
<modifier type="set" value="Large Transport (4)" field="name"/>
</modifiers>
</infoLink>
</infoLinks>
<profiles>
<profile name="Triaros" typeId="6c4e-cc0f-8b44-d1ab" typeName="Detachment" hidden="false" id="25a7-c520-8766-ec6d">
<characteristics>
<characteristic name="Move" typeId="77ae-ddcc-f55a-7441">8"</characteristic>
<characteristic name="Sv" typeId="ddb1-4f55-6b17-7bc8">3+</characteristic>
<characteristic name="CAF" typeId="b9d2-6ffb-17a1-757f">0</characteristic>
<characteristic name="Morale" typeId="8485-4ee2-6feb-d93c">-</characteristic>
<characteristic name="W" typeId="b00f-3f1c-eb63-461a">1</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Twin-linked volkite calivers" hidden="false" id="b7f4-0b4f-7ffe-28bf" sortIndex="1">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="c459-ce1f-1bb2-f13a"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="7674-924c-b731-ab42"/>
</constraints>
<profiles>
<profile name="Twin-linked volkite calivers" typeId="ac1f-57b2-e1a8-3b2a" typeName="Weapon" hidden="false" id="eee1-b8e0-436d-4d3d">
<characteristics>
<characteristic name="Range" typeId="9b59-b345-bfe2-c99b">12"</characteristic>
<characteristic name="Dice" typeId="e416-76d6-5762-ed21">1</characteristic>
<characteristic name="To Hit" typeId="c441-9eb2-b00a-5c8c">4+</characteristic>
<characteristic name="AP" typeId="3932-ca12-de16-c1b7">0</characteristic>
<characteristic name="Traits" typeId="d0f2-61ea-138a-81af">Accurate, Deflagrate, Light</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Accurate" id="a23a-078a-7276-d5a2" hidden="false" type="rule" targetId="dc55-9f84-39e1-1e1e"/>
<infoLink name="Deflagrate" id="cb51-3596-38a4-0330" hidden="false" type="rule" targetId="711e-2910-b797-71a8"/>
<infoLink name="Light" id="f15f-fa86-8488-13fc" hidden="false" type="rule" targetId="4f6f-3184-9172-ef3f"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Twin-linked mauler bolt cannon" hidden="false" id="46c6-7c02-53f1-18b8">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="b213-cfd9-f104-1da2"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="89cd-daae-b368-3f60"/>
</constraints>
<profiles>
<profile name="Twin-linked mauler bolt cannon" typeId="ac1f-57b2-e1a8-3b2a" typeName="Weapon" hidden="false" id="2388-649f-23ca-f84c">
<characteristics>
<characteristic name="Range" typeId="9b59-b345-bfe2-c99b">8"</characteristic>
<characteristic name="Dice" typeId="e416-76d6-5762-ed21">3</characteristic>
<characteristic name="To Hit" typeId="c441-9eb2-b00a-5c8c">5+</characteristic>
<characteristic name="AP" typeId="3932-ca12-de16-c1b7">-1</characteristic>
<characteristic name="Traits" typeId="d0f2-61ea-138a-81af">Arc (Front), Light AT</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Light AT" id="150c-7d72-b075-cb57" hidden="false" type="rule" targetId="c731-70f4-ffcd-4ff7"/>
<infoLink name="Arc (Front/Rear)" id="68e1-108e-9ba4-e6e4" hidden="false" type="rule" targetId="c48c-8f45-e290-9940">
<modifiers>
<modifier type="set" value="Arc (Front)" field="name"/>
</modifiers>
</infoLink>
</infoLinks>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="model" import="true" name="Archmagos Prime" hidden="false" id="da96-d297-7d75-5e5b">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Volkite Serpenta" hidden="false" id="da51-54f8-c76b-7e14">
<profiles>
<profile name="Volkite Serpenta" typeId="ac1f-57b2-e1a8-3b2a" typeName="Weapon" hidden="false" id="dea3-bf5b-5381-6435">
<characteristics>
<characteristic name="Range" typeId="9b59-b345-bfe2-c99b">6"</characteristic>
<characteristic name="Dice" typeId="e416-76d6-5762-ed21">1</characteristic>
<characteristic name="To Hit" typeId="c441-9eb2-b00a-5c8c">5+</characteristic>
<characteristic name="AP" typeId="3932-ca12-de16-c1b7">0</characteristic>
<characteristic name="Traits" typeId="d0f2-61ea-138a-81af">Deflagrate, Light</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Deflagrate" id="95f5-2792-63a3-ff58" hidden="false" type="rule" targetId="711e-2910-b797-71a8"/>
<infoLink name="Light" id="3a2e-c447-23ec-6b2e" hidden="false" type="rule" targetId="4f6f-3184-9172-ef3f"/>
</infoLinks>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="d241-f714-8365-77c2"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="82e3-e6ab-f7bb-eefa"/>
</constraints>
</selectionEntry>
</selectionEntries>
<profiles>
<profile name="Archmagos Prime" typeId="6c4e-cc0f-8b44-d1ab" typeName="Detachment" hidden="false" id="d4a0-5078-3a83-e5c4">
<characteristics>
<characteristic name="Move" typeId="77ae-ddcc-f55a-7441">5"</characteristic>
<characteristic name="Sv" typeId="ddb1-4f55-6b17-7bc8">4+</characteristic>
<characteristic name="CAF" typeId="b9d2-6ffb-17a1-757f">+3</characteristic>
<characteristic name="Morale" typeId="8485-4ee2-6feb-d93c">2+</characteristic>
<characteristic name="W" typeId="b00f-3f1c-eb63-461a">1</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Battlesmith" id="d46d-fff2-1f37-52fc" hidden="false" type="rule" targetId="bc6e-78fc-8fde-226d"/>
<infoLink name="Invulnerable Save (X)" id="975b-25fe-f967-c518" hidden="false" type="rule" targetId="49e7-280c-c388-60ba">
<modifiers>
<modifier type="set" value="Invulnerable Save (5+)" field="name"/>
</modifiers>
</infoLink>
<infoLink name="Commander" id="136a-a3fd-ac2b-c400" hidden="false" type="rule" targetId="caaf-3de0-3658-9054"/>
<infoLink name="Cortex Controller" id="6bf3-21c3-7664-81ae" hidden="false" type="rule" targetId="3579-8e16-d3b1-e319"/>
</infoLinks>
<costs>
<cost name="points" typeId="ee95-a20e-f9ff-e2c2" value="25"/>
<cost name="Transport" typeId="54cb-1324-71d0-d324" value="0"/>
<cost name="Break Point" typeId="5312-855-beda-23c1" value="0.5"/>
</costs>
</selectionEntry>
<selectionEntry type="model" import="true" name="Archmagos Prime on Abeyant" hidden="false" id="83d3-6267-00c8-93c3">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Volkite Serpenta" hidden="false" id="a1ba-4333-e179-276d" sortIndex="1">
<profiles>
<profile name="Volkite Serpenta" typeId="ac1f-57b2-e1a8-3b2a" typeName="Weapon" hidden="false" id="d3ed-0aac-bbb0-4c33">
<characteristics>
<characteristic name="Range" typeId="9b59-b345-bfe2-c99b">6"</characteristic>
<characteristic name="Dice" typeId="e416-76d6-5762-ed21">1</characteristic>
<characteristic name="To Hit" typeId="c441-9eb2-b00a-5c8c">5+</characteristic>
<characteristic name="AP" typeId="3932-ca12-de16-c1b7">0</characteristic>
<characteristic name="Traits" typeId="d0f2-61ea-138a-81af">Deflagrate, Light</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Deflagrate" id="f190-6667-facb-0245" hidden="false" type="rule" targetId="711e-2910-b797-71a8"/>
<infoLink name="Light" id="bdc0-72d5-40cb-f069" hidden="false" type="rule" targetId="4f6f-3184-9172-ef3f"/>
</infoLinks>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="acff-6cf8-465d-9c36"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="ac97-ce4c-d69a-a8f0"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Meltagun" hidden="false" id="5edd-9f59-9273-aa5e">
<profiles>
<profile name="Meltagun" typeId="ac1f-57b2-e1a8-3b2a" typeName="Weapon" hidden="false" id="f484-65d4-1fc9-0dfb">
<characteristics>
<characteristic name="Range" typeId="9b59-b345-bfe2-c99b">6"</characteristic>
<characteristic name="Dice" typeId="e416-76d6-5762-ed21">1</characteristic>
<characteristic name="To Hit" typeId="c441-9eb2-b00a-5c8c">4+</characteristic>
<characteristic name="AP" typeId="3932-ca12-de16-c1b7">-3</characteristic>
<characteristic name="Traits" typeId="d0f2-61ea-138a-81af">Anti-tank</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Anti-tank" id="d60f-f823-7682-9300" hidden="false" type="rule" targetId="5656-4a72-5de3-87ce"/>
</infoLinks>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="2245-df7d-c19f-8d5c"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="f6de-c835-73ee-d40c"/>
</constraints>
</selectionEntry>
</selectionEntries>
<profiles>
<profile name="Archmagos Prime on Abeyant" typeId="6c4e-cc0f-8b44-d1ab" typeName="Detachment" hidden="false" id="109f-ef2f-0204-8436">
<characteristics>
<characteristic name="Move" typeId="77ae-ddcc-f55a-7441">6"</characteristic>
<characteristic name="Sv" typeId="ddb1-4f55-6b17-7bc8">4+</characteristic>
<characteristic name="CAF" typeId="b9d2-6ffb-17a1-757f">+4</characteristic>
<characteristic name="Morale" typeId="8485-4ee2-6feb-d93c">2+</characteristic>
<characteristic name="W" typeId="b00f-3f1c-eb63-461a">2</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Battlesmith" id="b68e-c4a9-4f86-681e" hidden="false" type="rule" targetId="bc6e-78fc-8fde-226d"/>
<infoLink name="Commander" id="6b17-5098-7b7c-a018" hidden="false" type="rule" targetId="caaf-3de0-3658-9054"/>
<infoLink name="Cortex Controller" id="7145-93a7-608f-67ca" hidden="false" type="rule" targetId="3579-8e16-d3b1-e319"/>
<infoLink name="Invulnerable Save (X)" id="7765-ad3d-e619-13e9" hidden="false" type="rule" targetId="49e7-280c-c388-60ba">
<modifiers>
<modifier type="set" value="Invulnerable Save (5+)" field="name"/>
</modifiers>
</infoLink>
</infoLinks>
<costs>
<cost name="points" typeId="ee95-a20e-f9ff-e2c2" value="45"/>
<cost name="Transport" typeId="54cb-1324-71d0-d324" value="0"/>
<cost name="Break Point" typeId="5312-855-beda-23c1" value="0.5"/>
</costs>
</selectionEntry>
<selectionEntry type="model" import="true" name="Artalax" hidden="false" id="e33a-1d7f-90a6-39d9">
<costs>
<cost name="points" typeId="ee95-a20e-f9ff-e2c2" value="0"/>
<cost name="Transport" typeId="54cb-1324-71d0-d324" value="0"/>
<cost name="Break Point" typeId="5312-855-beda-23c1" value="0.5"/>
</costs>
<categoryLinks>
<categoryLink name="Walker (1)" hidden="false" id="9392-fc1b-a746-ba08" targetId="1a2a-6f7d-dff8-8be1" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Autocannon" hidden="false" id="26a3-c6d9-d49e-3d03">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="f6de-2ba0-1952-cb9c"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="e819-a03a-b0f3-394f"/>
</constraints>
<profiles>
<profile name="Autocannon" typeId="ac1f-57b2-e1a8-3b2a" typeName="Weapon" hidden="false" id="cb46-8408-eb93-bcbb">
<characteristics>
<characteristic name="Range" typeId="9b59-b345-bfe2-c99b">16"</characteristic>
<characteristic name="Dice" typeId="e416-76d6-5762-ed21">2</characteristic>
<characteristic name="To Hit" typeId="c441-9eb2-b00a-5c8c">5+</characteristic>
<characteristic name="AP" typeId="3932-ca12-de16-c1b7">-1</characteristic>
<characteristic name="Traits" typeId="d0f2-61ea-138a-81af">Light AT</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Light AT" id="111d-5082-d6f8-6772" hidden="false" type="rule" targetId="c731-70f4-ffcd-4ff7"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Plasma cannon" hidden="false" id="a0d9-f02d-22eb-70c5">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="b6dd-340b-ee39-9ec4"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="dad5-d691-3337-3288"/>
</constraints>
<profiles>
<profile name="Plasma cannon" typeId="ac1f-57b2-e1a8-3b2a" typeName="Weapon" hidden="false" id="70ef-ef38-bfaa-521b">
<characteristics>
<characteristic name="Range" typeId="9b59-b345-bfe2-c99b">12"</characteristic>
<characteristic name="Dice" typeId="e416-76d6-5762-ed21">1</characteristic>
<characteristic name="To Hit" typeId="c441-9eb2-b00a-5c8c">4+</characteristic>
<characteristic name="AP" typeId="3932-ca12-de16-c1b7">-1</characteristic>
<characteristic name="Traits" typeId="d0f2-61ea-138a-81af">Light AT</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Light AT" id="ae12-7ce2-5272-201b" hidden="false" type="rule" targetId="c731-70f4-ffcd-4ff7"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
<profiles>
<profile name="Artalax" typeId="6c4e-cc0f-8b44-d1ab" typeName="Detachment" hidden="false" id="5604-7154-85b8-4bf6">
<characteristics>
<characteristic name="Move" typeId="77ae-ddcc-f55a-7441">7"</characteristic>
<characteristic name="Sv" typeId="ddb1-4f55-6b17-7bc8">4+</characteristic>
<characteristic name="CAF" typeId="b9d2-6ffb-17a1-757f">+6</characteristic>
<characteristic name="Morale" typeId="8485-4ee2-6feb-d93c">-</characteristic>
<characteristic name="W" typeId="b00f-3f1c-eb63-461a">2</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Armoured" id="6a51-2dcc-7c6f-32af" hidden="false" type="rule" targetId="665b-47e2-df00-2629"/>
<infoLink name="Invulnerable Save (X)" id="0a63-6097-7bbf-e78f" hidden="false" type="rule" targetId="49e7-280c-c388-60ba">
<modifiers>
<modifier type="set" value="Invulnerable Save (6+)" field="name"/>
</modifiers>
</infoLink>
<infoLink name="Jump Packs" id="380d-aa83-d6e6-89ae" hidden="false" type="rule" targetId="130c-4ba7-dab7-34b3"/>
<infoLink name="Cybernetica Cortex (X) " id="686d-ebad-40d1-e0a3" hidden="false" type="rule" targetId="3df1-39f0-9014-cf63">
<modifiers>
<modifier type="set" value="Cybernetica Cortex (Advance, Charge)" field="name">
<conditions>
<condition type="notInstanceOf" value="1" field="selections" scope="primary-catalogue" childId="0aac-4388-bb47-6fcd" shared="true"/>
</conditions>
</modifier>
<modifier type="set" value="Cybernetica Cortex (March, Charge)" field="name">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="primary-catalogue" childId="0aac-4388-bb47-6fcd" shared="true"/>
</conditions>
</modifier>
</modifiers>
</infoLink>
<infoLink name="Dread Aura (X)" id="2922-75f5-08b5-26e2" hidden="false" type="rule" targetId="2624-3dd4-d87c-5af8">
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="notInstanceOf" value="1" field="selections" scope="primary-catalogue" childId="0aac-4388-bb47-6fcd" shared="true"/>
</conditions>
</modifier>
<modifier type="set" value="Dread Aura (3")" field="name"/>
</modifiers>
</infoLink>
</infoLinks>
</selectionEntry>
<selectionEntry type="model" import="true" name="Castellax" hidden="false" id="e623-8b92-b5e1-9482">
<costs>
<cost name="points" typeId="ee95-a20e-f9ff-e2c2" value="0"/>
<cost name="Transport" typeId="54cb-1324-71d0-d324" value="0"/>
<cost name="Break Point" typeId="5312-855-beda-23c1" value="0.5"/>
</costs>
<categoryLinks>
<categoryLink name="Walker (1)" hidden="false" id="422e-c678-6dd4-935e" targetId="1a2a-6f7d-dff8-8be1" primary="false"/>
</categoryLinks>
<profiles>
<profile name="Castellax" typeId="6c4e-cc0f-8b44-d1ab" typeName="Detachment" hidden="false" id="dfeb-4ffb-9a99-451b">
<characteristics>
<characteristic name="Move" typeId="77ae-ddcc-f55a-7441">5"</characteristic>
<characteristic name="Sv" typeId="ddb1-4f55-6b17-7bc8">4+</characteristic>
<characteristic name="CAF" typeId="b9d2-6ffb-17a1-757f">+4</characteristic>
<characteristic name="Morale" typeId="8485-4ee2-6feb-d93c">-</characteristic>
<characteristic name="W" typeId="b00f-3f1c-eb63-461a">2</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Armoured" id="20c0-2a43-c96a-aa80" hidden="false" type="rule" targetId="665b-47e2-df00-2629"/>
<infoLink name="Invulnerable Save (X)" id="be63-71d7-270f-f793" hidden="false" type="rule" targetId="49e7-280c-c388-60ba">
<modifiers>
<modifier type="set" value="Invulnerable Save (6+)" field="name"/>
</modifiers>
</infoLink>
<infoLink name="Cybernetica Cortex (X) " id="07b5-1682-2eef-aa8b" hidden="false" type="rule" targetId="3df1-39f0-9014-cf63">
<modifiers>
<modifier type="set" value="Cybernetica Cortex (Advance, March)" field="name">
<conditions>
<condition type="notInstanceOf" value="1" field="selections" scope="primary-catalogue" childId="0aac-4388-bb47-6fcd" shared="true"/>
</conditions>
</modifier>
<modifier type="set" value="Cybernetica Cortex (March, Charge)" field="name">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="primary-catalogue" childId="0aac-4388-bb47-6fcd" shared="true"/>
</conditions>
</modifier>
</modifiers>
</infoLink>
<infoLink name="Dread Aura (X)" id="ec15-16f3-00f9-3948" hidden="false" type="rule" targetId="2624-3dd4-d87c-5af8">