-
Notifications
You must be signed in to change notification settings - Fork 82
/
2022 - Mechanicum.cat
7193 lines (7193 loc) · 532 KB
/
2022 - Mechanicum.cat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<catalogue xmlns="http://www.battlescribe.net/schema/catalogueSchema" id="c247-da79-1654-d39e" name="Mechanicum" revision="46" battleScribeVersion="2.03" library="false" gameSystemId="28d4-bd2e-4858-ece6" gameSystemRevision="70" type="catalogue" publicationId="3886-76e5-438f-159f">
<entryLinks>
<entryLink id="29c6-0ec7-0162-e817" name="Mechanicum" hidden="false" collective="false" import="false" targetId="ddf5-d792-3146-6e9a" type="selectionEntry">
<modifiers>
<modifier type="set" field="dadb-f5a9-20c8-f415" value="2">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2cd1-fe10-db22-54bd" type="atLeast"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="7b69-bf2f-4547-e83b">
<conditions>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="5430-5be1-1613-be44" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="c3e3-faec-34a7-3b4c" type="min"/>
</constraints>
<categoryLinks>
<categoryLink id="e8be-9a28-67c2-ab93" name="Allegiance:" hidden="false" targetId="e90d-e5a8-f42d-da84" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="12ef-d6e7-3e43-41f7" name="Archmagos Prime" hidden="false" collective="false" import="false" targetId="d0f2-ee39-450c-39db" type="selectionEntry">
<categoryLinks>
<categoryLink id="b654-9601-210e-2023" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
<categoryLink id="ed2f-e502-9c88-ef9e" name="HQ:" hidden="false" targetId="4f85-eb33-30c9-8f51" primary="true"/>
<categoryLink id="943e-3900-7eb5-e5ab" name="Compulsory HQ:" hidden="false" targetId="f823-8c1d-6a87-26a1" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="c24f-27c9-1759-4427" name="Archmagos Prime on Abeyant" hidden="false" collective="false" import="false" targetId="3821-7503-6139-3054" type="selectionEntry">
<categoryLinks>
<categoryLink id="7fc8-bff9-1ce8-4ab5" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
<categoryLink id="fec0-6e63-9264-bfd2" name="HQ:" hidden="false" targetId="4f85-eb33-30c9-8f51" primary="true"/>
<categoryLink id="4592-5ca2-9c47-09ba" name="Compulsory HQ:" hidden="false" targetId="f823-8c1d-6a87-26a1" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="850d-b62e-8f76-b1be" name="Magos Dominus" hidden="false" collective="false" import="false" targetId="2dcd-d6c5-9f57-0084" type="selectionEntry">
<categoryLinks>
<categoryLink id="5b02-7a0e-57ce-4c30" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
<categoryLink id="3984-61d8-2f84-c437" name="HQ:" hidden="false" targetId="4f85-eb33-30c9-8f51" primary="true"/>
<categoryLink id="ce21-60e8-7612-3909" name="Compulsory HQ:" hidden="false" targetId="f823-8c1d-6a87-26a1" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="2f3b-dd15-7f5e-9cf7" name="Magos Dominus on Abeyant" hidden="false" collective="false" import="false" targetId="ed8b-48de-1e04-fa9d" type="selectionEntry">
<categoryLinks>
<categoryLink id="071e-1aff-6f80-5a67" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
<categoryLink id="44e7-ba3a-da35-d5fc" name="HQ:" hidden="false" targetId="4f85-eb33-30c9-8f51" primary="true"/>
<categoryLink id="ae9b-7528-7813-39d2" name="Compulsory HQ:" hidden="false" targetId="f823-8c1d-6a87-26a1" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="140c-306c-d09d-265f" name="Calleb Decima Invictus" hidden="true" collective="false" import="false" targetId="a204-6b74-3aeb-0231" type="selectionEntry">
<categoryLinks>
<categoryLink id="58b5-6803-6799-0aa9" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
<categoryLink id="3d6b-6612-cc33-5f72" name="HQ:" hidden="false" targetId="4f85-eb33-30c9-8f51" primary="true"/>
<categoryLink id="ae5d-99ed-bca3-5c51" name="Compulsory HQ:" hidden="false" targetId="f823-8c1d-6a87-26a1" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="eb03-59c6-97aa-8f6b" name="Tech-Priest Auxilia" hidden="false" collective="false" import="false" targetId="0eae-0c52-1087-a3b0" type="selectionEntry">
<categoryLinks>
<categoryLink id="0e6d-0458-4a4d-ca4d" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
<categoryLink id="5ba2-c0ac-fb56-e190" name="Elites:" hidden="false" targetId="7aee-565f-b0ae-294e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="d629-dd69-e689-c38a" name="Arcuitor Magisterium" hidden="false" collective="false" import="false" targetId="6f33-657c-a1b4-710e" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d0b6-712f-0b12-a308" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="4833-3ad9-f086-2980" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
<categoryLink id="0c0f-9a1e-4050-56d4" name="Elites:" hidden="false" targetId="7aee-565f-b0ae-294e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="4f46-e279-a2c2-df18" name="Myrmidon Secutor Host" hidden="false" collective="false" import="false" targetId="1869-2d16-d825-04c3" type="selectionEntry">
<categoryLinks>
<categoryLink id="8567-d030-d756-4c6a" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
<categoryLink id="e0af-3ec1-6313-926e" name="Elites:" hidden="false" targetId="7aee-565f-b0ae-294e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="c06a-da74-71b7-fee1" name="Adsecularis Tech-thralls Covenant" hidden="false" collective="false" import="false" targetId="bc2c-076a-209b-f121" type="selectionEntry">
<categoryLinks>
<categoryLink id="b03f-214f-f4e8-8de8" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
<categoryLink id="e761-63e9-40c4-57ff" name="Troops:" hidden="false" targetId="9b5d-fac7-799b-d7e7" primary="true"/>
<categoryLink id="9bef-dc92-297a-da86" name="Compulsory Troops:" hidden="false" targetId="8f42-a824-fb5f-8fea" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="123c-8d49-5eb2-8e19" name="Thallax Cohort" hidden="false" collective="false" import="false" targetId="25c8-3e0f-e22d-a7eb" type="selectionEntry">
<categoryLinks>
<categoryLink id="670f-cf2a-d36d-be6e" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
<categoryLink id="eb58-ed23-c958-3d96" name="Troops:" hidden="false" targetId="9b5d-fac7-799b-d7e7" primary="true"/>
<categoryLink id="02de-e1ca-567c-d897" name="Compulsory Troops:" hidden="false" targetId="8f42-a824-fb5f-8fea" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="88d1-a0a6-3637-5bf8" name="Scyllax Guardian-Automata Maniple" hidden="false" collective="false" import="false" targetId="57ab-2409-6707-b967" type="selectionEntry">
<categoryLinks>
<categoryLink id="6658-9df3-d4ac-70d7" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
<categoryLink id="f1b8-f9a4-e1fb-c21f" name="Troops:" hidden="false" targetId="9b5d-fac7-799b-d7e7" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="de1b-2a5f-b271-fd61" name="Arlatax Battle-Automata Maniple" hidden="false" collective="false" import="false" targetId="b178-7d35-136f-d305" type="selectionEntry">
<categoryLinks>
<categoryLink id="b0c1-fb4e-652e-7630" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
<categoryLink id="fa0b-cfcd-a68a-1c73" name="Fast Attack:" hidden="false" targetId="20ef-cd01-a8da-376e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="a722-3efe-7ccb-6242" name="Ursarax Cohort" hidden="false" collective="false" import="false" targetId="0750-2aed-2d36-8a82" type="selectionEntry">
<categoryLinks>
<categoryLink id="d453-d437-1236-00c0" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
<categoryLink id="9ca5-73ce-baf3-ecf1" name="Fast Attack:" hidden="false" targetId="20ef-cd01-a8da-376e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="b790-b6dc-b904-118c" name="Vultarax Stratos-Automata Squadron" hidden="false" collective="false" import="false" targetId="0e08-6b7e-8fff-1f02" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7b69-bf2f-4547-e83b" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="76a8-0091-e9f9-e5e2" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
<categoryLink id="ef35-36e0-2fc3-f8c7" name="Fast Attack:" hidden="false" targetId="20ef-cd01-a8da-376e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="6558-9557-4654-31fc" name="Myrmidon Destructor Host" hidden="false" collective="false" import="false" targetId="356f-a88b-1d13-3700" type="selectionEntry">
<categoryLinks>
<categoryLink id="23e1-8fa1-49c1-1d77" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
<categoryLink id="66c0-0a59-046b-249b" name="Heavy Support:" hidden="false" targetId="7031-469a-1aeb-eab0" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="4467-970e-236e-6118" name="Karacnos Assault Tank" hidden="false" collective="false" import="false" targetId="8920-3184-2455-1834" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7b69-bf2f-4547-e83b" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="3691-ade8-41f9-ecf2" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
<categoryLink id="1e5d-4224-528c-7cba" name="Heavy Support:" hidden="false" targetId="7031-469a-1aeb-eab0" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="30bc-6d27-6a7b-5d02" name="Krios Squadron" hidden="false" collective="false" import="false" targetId="ce87-68e2-0134-3c84" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7b69-bf2f-4547-e83b" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="90f5-b210-0447-2356" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
<categoryLink id="4b9e-daec-dd50-1582" name="Heavy Support:" hidden="false" targetId="7031-469a-1aeb-eab0" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="4351-1507-2a58-b11d" name="Knight Moirax Talon" hidden="false" collective="false" import="false" targetId="c21c-3c14-2d2e-4bc0" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7b69-bf2f-4547-e83b" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="ca25-1bf8-642c-6aa4" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
<categoryLink id="ff46-2a7c-d938-8c35" name="Heavy Support:" hidden="false" targetId="7031-469a-1aeb-eab0" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="9ca0-8d1b-faa7-e89d" name="Mechanicum Knight Magaera" hidden="false" collective="false" import="false" targetId="b582-e53e-5e13-286c" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7b69-bf2f-4547-e83b" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="6411-f60a-4ee6-fa8a" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
<categoryLink id="76b5-a3b8-07c7-eb28" name="Lords of War:" hidden="false" targetId="c658-dc6b-727b-c488" primary="true"/>
<categoryLink targetId="2eaf-32d6-9d1d-d906" id="4ed9-cc03-f7be-875d" primary="false" name="LoW & Primarchs (25% Limit)"/>
</categoryLinks>
</entryLink>
<entryLink id="c5d0-e078-888c-4574" name="Mechanicum Knight Styrix" hidden="false" collective="false" import="false" targetId="aae3-4a95-fbce-6d01" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7b69-bf2f-4547-e83b" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="9984-1655-436c-e75c" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
<categoryLink id="d445-8c66-903b-de69" name="Lords of War:" hidden="false" targetId="c658-dc6b-727b-c488" primary="true"/>
<categoryLink targetId="2eaf-32d6-9d1d-d906" id="1255-c6c-6588-fd3d" primary="false" name="LoW & Primarchs (25% Limit)"/>
</categoryLinks>
</entryLink>
<entryLink id="c7b8-2484-8229-9d47" name="Mechanicum Knight Atrapos" hidden="false" collective="false" import="false" targetId="6405-d682-11c9-35b6" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7b69-bf2f-4547-e83b" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="5572-322f-3fd4-df9c" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
<categoryLink id="d947-9ad4-b373-47f7" name="Lords of War:" hidden="false" targetId="c658-dc6b-727b-c488" primary="true"/>
<categoryLink targetId="2eaf-32d6-9d1d-d906" id="5f98-86c6-7d9f-edd2" primary="false" name="LoW & Primarchs (25% Limit)"/>
</categoryLinks>
</entryLink>
<entryLink id="fd4a-8cec-3721-c94f" name="Mechanicum Acastus Knight Asterius" hidden="false" collective="false" import="false" targetId="ccc2-5689-4796-61b4" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7b69-bf2f-4547-e83b" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="ef49-9452-4d80-69a3" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
<categoryLink id="58ac-b3ec-8a9d-0f89" name="Lords of War:" hidden="false" targetId="c658-dc6b-727b-c488" primary="true"/>
<categoryLink targetId="2eaf-32d6-9d1d-d906" id="8591-dd4-c72e-c21c" primary="false" name="LoW & Primarchs (25% Limit)"/>
</categoryLinks>
</entryLink>
<entryLink id="1521-2b96-fcbd-095b" name="Ordinatus Ulator" hidden="false" collective="false" import="false" targetId="1277-aefb-66c5-bd35" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7b69-bf2f-4547-e83b" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="5a23-8aaf-d1cc-9a2c" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
<categoryLink id="8f5e-22b8-50e7-1004" name="Lords of War:" hidden="false" targetId="c658-dc6b-727b-c488" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="ac39-4b53-e47f-d54c" name="Ordinatus Aktaeus" hidden="false" collective="false" import="false" targetId="89a5-fa4d-0e01-3a55" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7b69-bf2f-4547-e83b" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="8eee-4e6f-0d30-cbd6" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
<categoryLink id="3331-9a71-e131-6128" name="Lords of War:" hidden="false" targetId="c658-dc6b-727b-c488" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="6a07-9580-9c41-dbc6" name="Archmagos Anacharis Scoria" hidden="true" collective="false" import="false" targetId="2185-5fd1-2e59-b467" type="selectionEntry">
<categoryLinks>
<categoryLink id="1bfa-3de2-bf04-16db" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
<categoryLink id="d3aa-2699-4210-25dd" name="HQ:" hidden="false" targetId="4f85-eb33-30c9-8f51" primary="true"/>
<categoryLink id="2583-0dcb-f271-6960" name="Compulsory HQ:" hidden="false" targetId="f823-8c1d-6a87-26a1" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="60ea-7150-b6b9-7b9b" name="Thanatar Siege-automata Maniple" hidden="false" collective="false" import="false" targetId="2903-fef6-e839-368b" type="selectionEntry">
<categoryLinks>
<categoryLink id="9d6b-f8e9-44a9-9974" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
<categoryLink id="b283-74d2-92e1-5d80" name="Heavy Support:" hidden="false" targetId="7031-469a-1aeb-eab0" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="3c04-f537-6cf1-65bc" name="Castellax Battle-Automata Maniple" hidden="false" collective="false" import="false" targetId="537f-846d-90e3-2526" type="selectionEntry">
<modifiers>
<modifier type="add" field="category" value="6399-5c65-7833-1025">
<conditions>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9bcd-f556-5740-2f9f" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="b52a-0f4e-b317-2bcd" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
<categoryLink id="12ad-c3f3-cdb7-1735" name="Troops:" hidden="false" targetId="9b5d-fac7-799b-d7e7" primary="true"/>
<categoryLink id="63cb-4eca-61e7-11af" name="Compulsory Troops:" hidden="false" targetId="8f42-a824-fb5f-8fea" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="2394-56b3-7592-01ae" name="Domitar Battle-Automata Maniple" hidden="false" collective="false" import="false" targetId="1a1b-fa35-a6a2-ca78" type="selectionEntry">
<categoryLinks>
<categoryLink id="ca4b-e16a-f7d8-fc3d" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
<categoryLink id="ed71-00ef-b55e-2e50" name="Elites:" hidden="false" targetId="7aee-565f-b0ae-294e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="8010-9dfe-c8dc-3561" name="Vorax Battle-automata Maniple" hidden="false" collective="false" import="false" targetId="f144-1079-11ff-019d" type="selectionEntry">
<categoryLinks>
<categoryLink id="5e13-e19b-50c8-72ad" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
<categoryLink id="099a-66ab-81aa-4ac7" name="Fast Attack:" hidden="false" targetId="20ef-cd01-a8da-376e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="cb9d-dcbd-a336-3687" name="Archmagos Draykavac" hidden="false" collective="false" import="false" targetId="8b4c-01f4-f39f-7c55" type="selectionEntry">
<categoryLinks>
<categoryLink id="e5b1-a8f4-deff-e3fc" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
<categoryLink id="f7a4-e7ef-9bc9-80b2" name="HQ:" hidden="false" targetId="4f85-eb33-30c9-8f51" primary="true"/>
<categoryLink id="22c6-2c40-c433-b524" name="Compulsory HQ:" hidden="false" targetId="f823-8c1d-6a87-26a1" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="0d52-bf5d-15d6-0470" name="Tech-Priest Auxilia" hidden="true" collective="false" import="false" targetId="0eae-0c52-1087-a3b0" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="1247-a94b-070d-2a7b" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="22e8-b76e-e559-5ac5" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
<categoryLink id="093d-3993-8774-9f21" name="Troops:" hidden="false" targetId="9b5d-fac7-799b-d7e7" primary="true"/>
<categoryLink id="2e88-4d17-543b-453e" name="Compulsory Troops:" hidden="false" targetId="8f42-a824-fb5f-8fea" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="a311-28b2-65d1-193d" name="Arcuitor Magisterium" hidden="true" collective="false" import="false" targetId="6f33-657c-a1b4-710e" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d0b6-712f-0b12-a308" type="greaterThan"/>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="5e62-8d7e-a487-0490" type="greaterThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="ac20-54eb-277f-85ca" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
<categoryLink id="a52f-f980-0f7d-36c3" name="HQ:" hidden="false" targetId="4f85-eb33-30c9-8f51" primary="true"/>
<categoryLink id="cd51-74f1-04ca-2248" name="Compulsory HQ:" hidden="false" targetId="f823-8c1d-6a87-26a1" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="d1c5-ff4b-1a9e-2a92" name="Thanatar Siege-automata Maniple" hidden="true" collective="false" import="false" targetId="2903-fef6-e839-368b" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition type="greaterThan" value="0" field="selections" scope="force" childId="8305-5ac6-f395-e570" shared="true" percentValue="false" includeChildSelections="true" includeChildForces="false"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="19e9-28c4-f881-a0b3" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
<categoryLink id="db76-cda6-0690-9f5c" name="HQ:" hidden="false" targetId="4f85-eb33-30c9-8f51" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="3ca2-40e2-1b7e-b0b3" name="Myrmidon Secutor Host" hidden="true" collective="false" import="false" targetId="1869-2d16-d825-04c3" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="8305-5ac6-f395-e570" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="e4bc-e382-e2f4-1151" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
<categoryLink id="6609-996b-bd48-3075" name="Troops:" hidden="false" targetId="9b5d-fac7-799b-d7e7" primary="true"/>
<categoryLink id="44d3-3b8a-f672-7fb4" name="Compulsory Troops:" hidden="false" targetId="8f42-a824-fb5f-8fea" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="001b-6e55-0b99-c015" name="Myrmidon Destructor Host" hidden="true" collective="false" import="false" targetId="356f-a88b-1d13-3700" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="8305-5ac6-f395-e570" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="9a3c-7e17-b013-675c" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
<categoryLink id="7c96-b532-93cb-02c2" name="Elites:" hidden="false" targetId="7aee-565f-b0ae-294e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="46b7-2b32-94fe-5552" name="Adsecularis Tech-thralls Certus Covenant" hidden="true" collective="false" import="false" targetId="4436-7062-9be3-b233" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d344-d97b-4687-8a62" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="dc6f-99d0-848f-2e37" name="Compulsory Troops:" hidden="false" targetId="8f42-a824-fb5f-8fea" primary="false"/>
<categoryLink id="3039-f040-b7b5-9a6e" name="Troops:" hidden="false" targetId="9b5d-fac7-799b-d7e7" primary="true"/>
<categoryLink id="c03f-8360-930b-f691" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="8f88-8be3-05ff-8f5e" name="Mechanicum Termite Assault Drill" hidden="true" collective="false" import="false" targetId="9991-c84b-dc5d-2125" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7b69-bf2f-4547-e83b" type="equalTo"/>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d344-d97b-4687-8a62" type="greaterThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="0458-b3f4-ccb7-0edd" name="Fast Attack:" hidden="false" targetId="20ef-cd01-a8da-376e" primary="true"/>
<categoryLink id="cfdb-cade-a93c-d5ac" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="1113-81b2-107c-5c57" name="Mechanicum Tarantula Sentry Gun Battery" hidden="true" collective="false" import="false" targetId="1905-926d-628c-a411" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d344-d97b-4687-8a62" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="2ffa-2a46-fc9a-a923" name="Fast Attack:" hidden="false" targetId="20ef-cd01-a8da-376e" primary="true"/>
<categoryLink id="8578-ba1d-17f6-7c6e" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="71b9-6a72-a0cb-b43b" name="Inar Satarael" hidden="true" collective="false" import="false" targetId="e26f-a72f-8ea2-1641" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d344-d97b-4687-8a62" type="greaterThan"/>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="f9c0-0c5a-3e24-58c7" type="greaterThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="1bc1-d9e1-b119-4629" name="HQ:" hidden="false" targetId="4f85-eb33-30c9-8f51" primary="true"/>
<categoryLink id="b29f-a354-e649-3e8d" name="Compulsory HQ:" hidden="false" targetId="f823-8c1d-6a87-26a1" primary="false"/>
<categoryLink id="ff26-0ed6-3de9-4c30" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="db9e-a946-5ad7-a81f" name="Mechanicum Land Raider Phobos" hidden="true" collective="false" import="false" targetId="ad56-a7fc-a815-aebf" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d344-d97b-4687-8a62" type="greaterThan"/>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7b69-bf2f-4547-e83b" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="af46-73e9-95b5-ecb9" name="Heavy Support:" hidden="false" targetId="7031-469a-1aeb-eab0" primary="true"/>
<categoryLink id="5e30-0ad2-6f7f-6943" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="134c-75ba-ebdb-d54c" name="Ordo Reductor Minotaur Battery" hidden="true" collective="false" import="false" targetId="ebf8-fbe4-1473-7903" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d344-d97b-4687-8a62" type="greaterThan"/>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7b69-bf2f-4547-e83b" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="1f73-6e2d-c3f3-f53c" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
<categoryLink id="e795-e3e7-17d4-cfc3" name="Heavy Support:" hidden="false" targetId="7031-469a-1aeb-eab0" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="f092-9b7c-0ece-5f1a" name="Ordo Reductor Artillery Tank Battery" hidden="true" collective="false" import="false" targetId="6353-c4c3-d099-002e" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d344-d97b-4687-8a62" type="greaterThan"/>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7b69-bf2f-4547-e83b" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="5b9e-14a0-d63d-ee8a" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
<categoryLink id="2363-773b-54f6-4940" name="Heavy Support:" hidden="false" targetId="7031-469a-1aeb-eab0" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="75ab-47e9-3e7d-1fcb" name="Macrocarid Explorator" hidden="true" collective="false" import="false" targetId="bd83-b47d-1f37-1159" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition type="equalTo" value="0" field="selections" scope="force" childId="7b69-bf2f-4547-e83b" shared="true" percentValue="false" includeChildSelections="true" includeChildForces="false"/>
<condition type="greaterThan" value="0" field="selections" scope="roster" childId="d344-d97b-4687-8a62" shared="true" percentValue="false" includeChildSelections="true" includeChildForces="false"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="6b3d-b497-866a-d8a0" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
<categoryLink id="a12c-791f-fbf5-c999" name="Heavy Support:" hidden="false" targetId="7031-469a-1aeb-eab0" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="fc21-65ad-c05e-4fc9" name="Clade Assassins (Loyalist)" hidden="false" collective="false" import="false" targetId="7363-5a05-4102-24fa" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d0b6-712f-0b12-a308" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="c131-9ece-247d-39d7" name="HQ:" hidden="false" targetId="4f85-eb33-30c9-8f51" primary="true"/>
<categoryLink id="c8d6-cac0-a82b-e544" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="bc0c-bd59-130e-5879" name="Cults Abominatio" hidden="false" collective="false" import="false" targetId="4a00-03d4-a850-884b" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="f9c0-0c5a-3e24-58c7" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="9f57-ee5b-ffc8-70e8" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
<categoryLink id="86ec-500f-ae9c-6af3" name="HQ:" hidden="false" targetId="4f85-eb33-30c9-8f51" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="647d-acd3-51a9-9257" name="Davinite Lodge Priest" hidden="true" collective="false" import="false" targetId="fe13-4a8f-b2af-1e40" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d344-d97b-4687-8a62" type="greaterThan">
<comment>node_id_ba25-a4b2-4ba9-b023</comment>
</condition>
<condition field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="f9c0-0c5a-3e24-58c7" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="e561-cf41-30ee-0f9b" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
<categoryLink id="f4eb-e438-533b-8318" name="HQ:" hidden="false" targetId="4f85-eb33-30c9-8f51" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="2bbf-2986-1550-477f" name="Expeditionary Navigator" hidden="true" collective="false" import="false" targetId="ce53-e40c-65b6-4d3a" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d344-d97b-4687-8a62" type="greaterThan">
<comment>node_id_ba25-a4b2-4ba9-b023</comment>
</condition>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="804f-203f-b407-1c32" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false"/>
<categoryLink id="adcb-ff5b-4cd1-1ae5" name="HQ:" hidden="false" targetId="4f85-eb33-30c9-8f51" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink import="false" name="Kytan Daemon Engine" hidden="false" type="selectionEntry" id="c814-2c52-5523-5e46" targetId="b7cd-670-7027-fee8">
<categoryLinks>
<categoryLink targetId="36c3-e85e-97cc-c503" id="32df-2690-98fe-21cd" primary="false" name="Unit:"/>
<categoryLink targetId="c658-dc6b-727b-c488" id="432a-5a1-eb9-c2bf" primary="true" name="Lords of War:"/>
</categoryLinks>
</entryLink>
<entryLink import="false" name="Greater Brass Scorpion" hidden="false" type="selectionEntry" id="cf26-6eab-4a3e-b082" targetId="3c5c-5bbf-cfc-e84e">
<categoryLinks>
<categoryLink targetId="c658-dc6b-727b-c488" id="b4c2-2f3-960a-7db6" primary="true" name="Lords of War:"/>
<categoryLink targetId="36c3-e85e-97cc-c503" id="3d7f-f70d-84f1-1cf6" primary="false" name="Unit:"/>
</categoryLinks>
</entryLink>
<entryLink import="false" name="Blood Slaughterer" hidden="false" type="selectionEntry" id="f14b-bcb2-b7e7-7e50" targetId="2d70-676d-68aa-1973">
<categoryLinks>
<categoryLink targetId="20ef-cd01-a8da-376e" id="4701-e42d-e866-730f" primary="true" name="Fast Attack:"/>
<categoryLink targetId="3c75-d5f8-1ad4-24e5" id="5703-5a0f-3a0e-82b5" primary="false" name="Compulsory Fast Attack:"/>
</categoryLinks>
</entryLink>
<entryLink import="false" name="Decimator" hidden="false" type="selectionEntry" id="4699-ff33-7334-6b2d" targetId="b1a5-42a-a6ee-2223">
<categoryLinks>
<categoryLink targetId="7031-469a-1aeb-eab0" id="2190-e66a-de28-7774" primary="true" name="Heavy Support:"/>
<categoryLink targetId="030f-3801-4f54-e7f8" id="c9e2-0c79-15d5-4cb8" primary="false" name="Compulsory Heavy Support:"/>
</categoryLinks>
</entryLink>
<entryLink id="7736-5242-6cb5-a742" name="Nathaniel Garro" hidden="true" collective="false" import="false" targetId="0583-258d-f0a0-2170" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="false">
<comment>node_id_4729-bc86-456b-b73d</comment>
<conditionGroups>
<conditionGroup type="and">
<comment>node_id_cf0f-e3f4-4fb4-989d</comment>
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d344-d97b-4687-8a62" type="greaterThan">
<comment>node_id_1cc8-5611-4d9a-9218</comment>
</condition>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d0b6-712f-0b12-a308" type="greaterThan">
<comment>node_id_2e32-ca02-48f0-a8dd</comment>
</condition>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="655a-6d13-81f5-9625" name="HQ:" hidden="false" targetId="4f85-eb33-30c9-8f51" primary="true">
<comment>template_id_0af1-d052-4bd7-aab6</comment>
</categoryLink>
<categoryLink id="468a-6bce-e601-d96e" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false">
<comment>template_id_45ce-e338-43c9-b63e</comment>
</categoryLink>
</categoryLinks>
</entryLink>
<entryLink id="8bf3-482f-d13d-7fa9" name="Tylos Rubio" hidden="true" collective="false" import="false" targetId="56bf-2c6d-a0fa-a145" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="false">
<comment>node_id_dfdc-f6f6-49d2-a7b3</comment>
<conditionGroups>
<conditionGroup type="and">
<comment>node_id_354c-c71f-472f-b268</comment>
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d344-d97b-4687-8a62" type="greaterThan">
<comment>node_id_1127-c974-4663-874d</comment>
</condition>
<condition field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d0b6-712f-0b12-a308" type="greaterThan">
<comment>node_id_0843-bef2-4767-8307</comment>
</condition>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="888e-5134-3f39-af46" name="HQ:" hidden="false" targetId="4f85-eb33-30c9-8f51" primary="true">
<comment>template_id_28e0-91e7-4ada-9fac</comment>
</categoryLink>
<categoryLink id="88a9-9ec3-6926-cda0" name="Unit:" hidden="false" targetId="36c3-e85e-97cc-c503" primary="false">
<comment>template_id_4448-a712-4dd7-bf6d</comment>
</categoryLink>
</categoryLinks>
</entryLink>
<entryLink import="false" name="Blood Slaughterer" hidden="false" id="1d25-44aa-e569-0fbd" type="selectionEntry" targetId="2d70-676d-68aa-1973">
<categoryLinks>
<categoryLink targetId="9b5d-fac7-799b-d7e7" id="faa7-5592-b739-360d" primary="true" name="Troops:"/>
<categoryLink targetId="6399-5c65-7833-1025" id="1d59-97d6-393b-c5f0" primary="false" name="Line Sub-type"/>
</categoryLinks>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="equalTo" value="0" field="selections" scope="force" childId="b716-0dae-8a41-3c81" shared="true" percentValue="false" includeChildSelections="true" includeChildForces="false"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink import="false" name="Decimator" hidden="false" id="4d1c-a587-f62a-9ab3" type="selectionEntry" targetId="b1a5-42a-a6ee-2223">
<categoryLinks>
<categoryLink targetId="9b5d-fac7-799b-d7e7" id="efcb-11b8-a3b6-2109" primary="true" name="Troops:"/>
</categoryLinks>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="equalTo" value="0" field="selections" scope="force" childId="183d-be3f-82f9-e754" shared="true" percentValue="false" includeChildSelections="true" includeChildForces="false"/>
</conditions>
</modifier>
<modifier type="increment" value="1" field="951e-f7f9-8ed7-5a00">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="force" childId="183d-be3f-82f9-e754" shared="true" roundUp="false" includeChildSelections="true"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint type="max" value="0" field="selections" scope="force" shared="false" id="951e-f7f9-8ed7-5a00" includeChildSelections="true"/>
</constraints>
</entryLink>
<entryLink import="false" name="Infernus Abomination" hidden="false" id="91d2-492e-e6c3-9801" collective="false" targetId="3928-63ee-20a9-f84b" type="selectionEntry">
<categoryLinks>
<categoryLink targetId="7aee-565f-b0ae-294e" id="d875-fced-5305-e8a6" primary="true" name="Elites:"/>
<categoryLink targetId="36c3-e85e-97cc-c503" id="ab3b-f2b4-9bf6-8993" primary="false" name="Unit:"/>
</categoryLinks>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="equalTo" value="0" field="selections" scope="force" childId="de6f-55bd-6647-586a" shared="true" percentValue="false" includeChildSelections="true" includeChildForces="false"/>
</conditions>
</modifier>
<modifier type="increment" value="1" field="8e82-1d5b-2445-fa8f">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="force" childId="de6f-55bd-6647-586a" shared="true" roundUp="false" includeChildSelections="true"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint type="max" value="0" field="selections" scope="force" shared="false" id="8e82-1d5b-2445-fa8f" includeChildSelections="true"/>
</constraints>
</entryLink>
</entryLinks>
<sharedSelectionEntries>
<selectionEntry id="d0f2-ee39-450c-39db" name="Archmagos Prime" publicationId="bde1-6db1-163b-3b76" page="20" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7627-04e3-89f2-e14f" type="max"/>
</constraints>
<profiles>
<profile id="17bc-b919-f988-4e8a" name="Archmagos Prime" publicationId="bde1-6db1-163b-3b76" page="20" hidden="false" typeId="4bb2-cb95-e6c8-5a21" typeName="Unit">
<modifiers>
<modifier type="set" field="cc42-7ed5-7092-5c84" value="5">
<conditions>
<condition field="selections" scope="d0f2-ee39-450c-39db" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="5e62-8d7e-a487-0490" type="greaterThan"/>
</conditions>
</modifier>
<modifier type="set" field="f111-2ce5-dd12-d6b0" value="3">
<conditions>
<condition field="selections" scope="d0f2-ee39-450c-39db" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="5e62-8d7e-a487-0490" type="greaterThan"/>
</conditions>
</modifier>
<modifier type="set" field="57ee-1126-32a9-5672" value="5">
<conditions>
<condition field="selections" scope="d0f2-ee39-450c-39db" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="8305-5ac6-f395-e570" type="greaterThan"/>
</conditions>
</modifier>
<modifier type="set" value="4" field="57ee-1126-32a9-5672">
<conditions>
<condition type="greaterThan" value="0" field="selections" scope="12ef-d6e7-3e43-41f7" childId="d929-7702-8f4b-3393" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="Unit Type" typeId="ddd7-6f5c-a939-b69e">Infantry (Cybertheurgist, Character)</characteristic>
<characteristic name="Move" typeId="893e-2d76-8f04-44e5">6</characteristic>
<characteristic name="WS" typeId="cc42-7ed5-7092-5c84">4</characteristic>
<characteristic name="BS" typeId="74ae-c840-0036-d244">5</characteristic>
<characteristic name="S" typeId="e478-41d4-a092-48a8">5</characteristic>
<characteristic name="T" typeId="c32b-5fdd-3fbe-9b1f">5</characteristic>
<characteristic name="W" typeId="57ee-1126-32a9-5672">3</characteristic>
<characteristic name="I" typeId="62d3-22d7-2d49-52dc">4</characteristic>
<characteristic name="A" typeId="f111-2ce5-dd12-d6b0">2</characteristic>
<characteristic name="Ld" typeId="e8a6-1da9-d384-8727">10</characteristic>
<characteristic name="Save" typeId="e593-6b3c-f169-04f0">2+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="a1f3-3354-d23f-f046" name="Battlesmith (X)" hidden="false" targetId="5d57-4d02-1e36-4a82" type="rule">
<modifiers>
<modifier type="set" field="name" value="Battlesmith (4+)"/>
</modifiers>
</infoLink>
<infoLink id="34de-d754-4304-039e" name="Firing Protocols (X)" hidden="false" targetId="32a3-f599-5c92-2945" type="rule">
<modifiers>
<modifier type="set" field="name" value="Firing Protocols (3)"/>
</modifiers>
</infoLink>
<infoLink id="3e68-edb3-e82b-bcbb" name="Relentless" hidden="false" targetId="7adf-ac9a-5035-522d" type="rule"/>
<infoLink id="16f9-27ca-ca47-1d1e" name="Stubborn" hidden="false" targetId="7989-1f2c-a43d-82ae" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="fc8b-7c82-9965-120f" name="Independent Character" hidden="false" targetId="4f07-3d45-4f28-a0c6" primary="false"/>
<categoryLink id="699b-4a76-ee6f-f722" name="Infantry Unit Type" hidden="false" targetId="8b4f-bfe2-ce7b-f1b1" primary="false"/>
<categoryLink id="2eab-eaf4-105a-f2a0" name="Cybertheurgist" hidden="false" targetId="57a1-ae47-ff1b-36e4" primary="false"/>
<categoryLink id="9c62-aa7d-142d-51f5" name="Feudal Hierarchy (On Foot)" hidden="false" targetId="ff97-e64e-506b-0587" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="2ab1-bffc-d310-dee2" name="May take any of the following options:" hidden="false" collective="false" import="true">
<selectionEntries>
<selectionEntry id="100c-29a9-e126-e082" name="Master-craft one weapon" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0da6-a6e0-8fbb-627e" type="max"/>
</constraints>
<infoLinks>
<infoLink id="0eee-3c76-6a5a-b60f" name="Master-crafted" hidden="false" targetId="6de0-55b0-bf21-48b9" type="rule"/>
</infoLinks>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="5"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="3808-81b7-4bf1-9f60" name="Augury Scanner" hidden="false" collective="false" import="true" targetId="67ee-7338-3b74-04b4" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f02d-1a77-6483-eeb0" type="max"/>
</constraints>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="5"/>
</costs>
</entryLink>
<entryLink id="530a-00b3-54f5-fbe7" name="Meltabombs" hidden="false" collective="false" import="true" targetId="b9dd-3b21-f3f8-78e3" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d618-15e1-1d37-32c0" type="max"/>
</constraints>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="5"/>
</costs>
</entryLink>
<entryLink id="56c5-62e1-c683-fc95" name="Rad Grenades" hidden="false" collective="false" import="true" targetId="1b0b-3dfc-9521-b27e" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e197-afc7-fb60-e8c2" type="max"/>
</constraints>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="10"/>
</costs>
</entryLink>
<entryLink id="b28f-41d5-7caa-ba47" name="Cyber-Familiar" hidden="false" collective="false" import="true" targetId="6c85-4601-cf58-7b35" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c70e-7d76-4524-2796" type="max"/>
</constraints>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="15"/>
</costs>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="fd00-143b-56bb-caf8" name="May exchange either their Volkite Serpenta and/or Power Weapon each for one of the following options:" hidden="false" collective="false" import="true" defaultSelectionEntryId="bd58-fc10-2ae8-611e">
<constraints>
<constraint field="selections" scope="parent" value="2" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="52c9-2f1c-800c-a0ab" type="min"/>
<constraint field="selections" scope="parent" value="2" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="78b7-42b5-c8d0-8c79" type="max"/>
</constraints>
<entryLinks>
<entryLink id="bd58-fc10-2ae8-611e" name="Volkite Serpenta" hidden="false" collective="false" import="true" targetId="d535-1da8-290d-69a6" type="selectionEntry"/>
<entryLink id="7b9a-a5a9-9da0-06a1" name="Power Sword" hidden="false" collective="false" import="true" targetId="a3cd-aa97-a148-2309" type="selectionEntry"/>
<entryLink id="a7d3-874b-cb5c-8898" name="Power Maul" hidden="false" collective="false" import="true" targetId="0df4-c67e-cf64-82e0" type="selectionEntry"/>
<entryLink id="e287-31ff-1cdb-274e" name="Power Axe" hidden="false" collective="false" import="true" targetId="c066-2ace-f68c-e440" type="selectionEntry"/>
<entryLink id="6c14-de51-6afc-2b64" name="Power Lance" hidden="false" collective="false" import="true" targetId="a4c8-c8ff-87f2-1ac9" type="selectionEntry">
<modifiers>
<modifier type="set" field="3767-8bda-7444-b0ce" value="0"/>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3767-8bda-7444-b0ce" type="min"/>
</constraints>
</entryLink>
<entryLink id="87d1-fe9f-990f-652c" name="Archaeotech Pistol" hidden="false" collective="false" import="true" targetId="c22a-ed4d-af68-bf00" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="5"/>
</costs>
</entryLink>
<entryLink id="ff67-6414-40cc-5aa3" name="Lucifex" hidden="false" collective="false" import="true" targetId="71cf-978d-0444-a3f1" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="5"/>
</costs>
</entryLink>
<entryLink id="b8dc-3cb9-2692-a2df" name="Maxima Bolter" hidden="false" collective="false" import="true" targetId="1d3e-1b60-d133-ea0d" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="5"/>
</costs>
</entryLink>
<entryLink id="3ff1-c2e7-0dd8-5d8a" name="Photon Gauntlet" hidden="false" collective="false" import="true" targetId="e825-c60e-e6c3-60f0" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="5"/>
</costs>
</entryLink>
<entryLink id="be9f-af48-eb9c-5b3c" name="Plasma Pistol" hidden="false" collective="false" import="true" targetId="717f-cf0a-1593-4bd8" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="5"/>
</costs>
</entryLink>
<entryLink id="b095-e29e-c105-bdd8" name="Power Fist" hidden="false" collective="false" import="true" targetId="768d-b89b-7328-d749" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="5"/>
</costs>
</entryLink>
<entryLink id="6ee5-c22a-e1c3-ff15" name="Corposant Stave" hidden="false" collective="false" import="true" targetId="cfc3-0ca2-ebdc-e6b0" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="5"/>
</costs>
</entryLink>
<entryLink id="d40d-149e-7a43-2510" name="Chainfist" hidden="false" collective="false" import="true" targetId="7347-c5b1-5da3-a78f" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="10"/>
</costs>
</entryLink>
<entryLink id="c104-ece0-9f82-c9cf" name="Paragon Blade" hidden="false" collective="false" import="true" targetId="2ab9-0e45-405e-056b" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="15"/>
</costs>
</entryLink>
<entryLink import="true" name="Abomination Blades" hidden="false" id="6fdf-8aef-53a9-53ea" type="selectionEntry" targetId="9940-99a1-78ae-1d2a">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="10"/>
</costs>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="equalTo" value="0" field="selections" scope="force" childId="de6f-55bd-6647-586a" shared="true" percentValue="false" includeChildSelections="true" includeChildForces="false"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="88ac-981a-7b93-7bda" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
</constraints>
</entryLink>
<entryLink import="true" name="Pair of Abomination Blades" hidden="false" id="2506-87d9-7c14-884b" type="selectionEntry" targetId="5caf-acfb-7e27-0a16"/>
</entryLinks>
<modifiers>
<modifier type="decrement" value="1" field="52c9-2f1c-800c-a0ab">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="parent" childId="5caf-acfb-7e27-0a16" shared="true"/>
</conditions>
</modifier>
<modifier type="set" value="1" field="78b7-42b5-c8d0-8c79">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="parent" childId="5caf-acfb-7e27-0a16" shared="true"/>
</conditions>
</modifier>
</modifiers>
</selectionEntryGroup>
<selectionEntryGroup id="de1b-c169-e406-509d" name="May take one of the following options:" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="75da-4222-d7e5-ba25" type="max"/>
</constraints>
<entryLinks>
<entryLink id="a5f2-4694-f699-fd16" name="Servo-Arm" hidden="false" collective="false" import="true" targetId="4168-fc85-8912-7188" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="10"/>
</costs>
</entryLink>
<entryLink id="a186-7ee1-b717-10f4" name="Incunabulan Jet Pack" hidden="false" collective="false" import="true" targetId="9faf-7242-dc40-c3e5" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="20"/>
</costs>
</entryLink>
<entryLink id="a1a0-135e-7b69-5882" name="Conversion Beamer" hidden="false" collective="false" import="true" targetId="2397-a3fd-81e6-4ced" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="25"/>
</costs>
</entryLink>
<entryLink id="2ef4-9107-2995-d88e" name="Graviton Imploder" hidden="false" collective="false" import="true" targetId="c651-d95e-6aa9-c3de" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="25"/>
</costs>
</entryLink>
<entryLink id="8aa5-6d46-faa4-de37" name="Machinator Array" hidden="false" collective="false" import="true" targetId="66f5-697c-605c-f1bb" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="25"/>
</costs>
</entryLink>
<entryLink id="9b84-f467-8b83-1476" name="Machinator Array with Prehensile Data-Spike" hidden="true" collective="false" import="true" targetId="3104-9879-3dcd-2bbb" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="5e62-8d7e-a487-0490" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="35"/>
</costs>
</entryLink>
<entryLink id="a160-c7ca-210b-6b2e" name="Servo-Arm with Prehensile Data-Spike" hidden="true" collective="false" import="true" targetId="981f-5ffe-b686-0491" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="5e62-8d7e-a487-0490" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="20"/>
</costs>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="2725-d5f8-44c1-d795" name="May take one of the following additional weapon options (an Archmagos Prime with the Myrmidax Order of High Techno-arcana may takeup to two selections from the list instead, but may not select a rad furnace):" hidden="false" collective="false" import="true">
<modifiers>
<modifier type="increment" field="dca2-7358-f3f2-3dc5" value="1">
<conditions>
<condition field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="8305-5ac6-f395-e570" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="dca2-7358-f3f2-3dc5" type="max"/>
</constraints>
<entryLinks>
<entryLink id="036b-7d7a-b439-77ef" name="Rotor Cannon" hidden="false" collective="false" import="true" targetId="5ce3-3aa5-3f5e-9ead" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="10"/>
</costs>
</entryLink>
<entryLink id="8e17-9d26-e061-c3eb" name="Graviton Gun" hidden="false" collective="false" import="true" targetId="5303-5a3e-de51-1707" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="15"/>
</costs>
</entryLink>
<entryLink id="da4a-e7d1-3ffe-82aa" name="Meltagun" hidden="false" collective="false" import="true" targetId="4ebd-57e0-3560-e568" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="15"/>
</costs>
</entryLink>
<entryLink id="a8b1-7de1-cf57-cc0e" name="Irad-Cleanser" hidden="false" collective="false" import="true" targetId="b3c5-237f-e1d2-d9f8" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="20"/>
</costs>
</entryLink>
<entryLink id="504b-3e65-4742-7853" name="Phased Plasma-Fusil" hidden="false" collective="false" import="true" targetId="17c6-afe9-c5da-d9b6" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="20"/>