forked from BSData/warhammer-age-of-sigmar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Order - Cities of Sigmar.cat
11503 lines (11487 loc) · 847 KB
/
Order - Cities of Sigmar.cat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<catalogue id="522a-d5b0-4c7e-321d" name="Order - Cities of Sigmar" revision="25" battleScribeVersion="2.03" authorName="https://gitter.im/BSData/warhammer-age-of-sigmar" authorContact="@BSData" authorUrl="https://github.com/BSData/warhammer-age-of-sigmar" library="false" gameSystemId="e51d-b1a3-75fc-dc33" gameSystemRevision="61" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<publications>
<publication id="deec-d475-pubN65537" name="Grand Alliance: Order"/>
<publication id="e440-9199-1072-a7a0" name="Cities of Sigmar Battletome"/>
</publications>
<categoryEntries>
<categoryEntry id="2e31-b1a1-10c7-22d4" name="GRIFFON" hidden="false"/>
<categoryEntry id="f04c-3520-c73d-898e" name="FREEGUILD GENERAL" hidden="false"/>
<categoryEntry id="2308-7db2-829e-94b3" name="HUMAN" hidden="false"/>
<categoryEntry id="33e5-4f6f-37f4-c882" name="FREEGUILD" hidden="false"/>
<categoryEntry id="0770-8b87-2d6f-7fe2" name="DEMIGRYPH KNIGHTS" hidden="false"/>
<categoryEntry id="7c84-ab7a-23cb-d864" name="FREEGUILD ARCHERS" hidden="false"/>
<categoryEntry id="dc80-e1f3-633d-985b" name="FREEGUILD CROSSBOWMEN" hidden="false"/>
<categoryEntry id="97d4-f901-8df1-5206" name="FREEGUILD GREATSWORDS" hidden="false"/>
<categoryEntry id="4771-57fd-9f7e-9cba" name="FREEGUILD GUARD" hidden="false"/>
<categoryEntry id="864b-0972-2569-4b7b" name="FREEGUILD HANDGUNNERS" hidden="false"/>
<categoryEntry id="9f0f-eb6f-1310-de2a" name="FREEGUILD OUTRIDERS" hidden="false"/>
<categoryEntry id="2953-7f90-6414-ed94" name="FREEGUILD PISTOLIERS" hidden="false"/>
<categoryEntry id="2fa3-7192-5ce2-10a5" name="CELESTIAL" hidden="false"/>
<categoryEntry id="eb4c-f7bc-8966-0247" name="DEVOTED OF SIGMAR" hidden="false"/>
<categoryEntry id="68ca-8042-65e4-e6d8" name="EXCELSIOR WARPRIEST" hidden="false"/>
<categoryEntry id="9304-00ac-b0eb-8741" name="FLAGELLANTS" hidden="false"/>
<categoryEntry id="d2e0-123f-1dd2-7992" name="COLLEGIATE ARCANE" hidden="false"/>
<categoryEntry id="18e1-27b1-33f8-2955" name="BATTLEMAGE" hidden="false"/>
<categoryEntry id="0cda-4c8e-b048-9cfe" name="LUMINARK OF HYSH" hidden="false"/>
<categoryEntry id="0160-a43b-3ac7-570d" name="CELESTIAL HURRICANUM" hidden="false"/>
<categoryEntry id="cccb-89cd-393f-5839" name="CITIES OF SIGMAR" hidden="false"/>
<categoryEntry id="7fe9-bc03-2c82-0a00" name="AELF" hidden="false"/>
<categoryEntry id="fd81-217d-c605-518a" name="SORCERESS" hidden="false"/>
<categoryEntry id="2b62-a20b-c306-8582" name="BLACK GUARD" hidden="false"/>
<categoryEntry id="f6cc-5806-08f4-da01" name="BLEAKSWORDS" hidden="false"/>
<categoryEntry id="596b-531e-d061-efe8" name="EXECUTIONERS" hidden="false"/>
<categoryEntry id="1989-50a2-b786-6dd8" name="DREADSPEARS" hidden="false"/>
<categoryEntry id="09b5-40ff-3401-9d42" name="DARKSHARDS" hidden="false"/>
<categoryEntry id="945b-2f5e-58f0-75e2" name="DUARDIN" hidden="false"/>
<categoryEntry id="1907-88f7-307b-fbf9" name="WARDEN KING" hidden="false"/>
<categoryEntry id="8e87-284f-3210-b8d7" name="LONGBEARDS" hidden="false"/>
<categoryEntry id="04b0-28bd-0eac-d481" name="IRONDRAKES" hidden="false"/>
<categoryEntry id="e5be-882b-f509-c6e9" name="IRONBREAKERS" hidden="false"/>
<categoryEntry id="3b69-2bdd-499a-64e0" name="HAMMERERS" hidden="false"/>
<categoryEntry id="0cb1-8b30-c44d-2b7a" name="RUNELORD" hidden="false"/>
<categoryEntry id="e81b-95b7-4866-db4b" name="HAMMERERS" hidden="false"/>
<categoryEntry id="920f-7600-9c65-a179" name="COGSMITH" hidden="false"/>
<categoryEntry id="b825-7b2f-9a1e-7c32" name="ENGINEER" hidden="false"/>
<categoryEntry id="75be-5b58-c14b-0395" name="GYROCOPTERS" hidden="false"/>
<categoryEntry id="c0c3-8fb0-b48a-596f" name="GYROBOMBERS" hidden="false"/>
<categoryEntry id="fb7a-5518-128d-c331" name="HELBLASTER VOLLEY GUN" hidden="false"/>
<categoryEntry id="55c7-9a88-fb09-583e" name="CANNON" hidden="false"/>
<categoryEntry id="eb9d-026c-8282-15ef" name="GUNMASTER" hidden="false"/>
<categoryEntry id="3dfb-ff02-f0e1-6cb1" name="HELSTORM ROCKET BATTERY" hidden="false"/>
<categoryEntry id="4807-239b-4c1d-3211" name="IRONWELD ARSENAL" hidden="false"/>
<categoryEntry id="db6e-b4df-35e6-1658" name="ORGAN GUN" hidden="false"/>
<categoryEntry id="3805-83b3-bdf5-6342" name="STEAM TANK" hidden="false"/>
<categoryEntry id="9713-6dce-4061-3e7f" name="PHOENIX TEMPLE" hidden="false"/>
<categoryEntry id="d0a0-7cc4-50c4-28cf" name="DRAKESPAWN CHARIOTS" hidden="false"/>
<categoryEntry id="fc32-6d3b-edb5-5c13" name="DRAKESPAWN KNIGHTS" hidden="false"/>
<categoryEntry id="35e2-6e38-34ac-dbe5" name="DREADLORD" hidden="false"/>
<categoryEntry id="487f-1015-0923-3ee0" name="ORDER SERPENTIS" hidden="false"/>
<categoryEntry id="7d80-7a90-95b6-2095" name="WAR HYDRA" hidden="false"/>
<categoryEntry id="63db-10c5-e70d-a003" name="ASSASSIN" hidden="false"/>
<categoryEntry id="a553-42c9-fdda-4a86" name="SHADOWBLADES" hidden="false"/>
<categoryEntry id="1864-84db-ccc1-544b" name="DARK RIDERS" hidden="false"/>
<categoryEntry id="b20e-4d1b-aa96-53af" name="ETERNAL GUARD" hidden="false"/>
<categoryEntry id="156b-d02a-8c8e-4401" name="GLADE GUARD" hidden="false"/>
<categoryEntry id="cf1c-4287-f2ed-ceec" name="NOMAD PRINCE" hidden="false"/>
<categoryEntry id="3573-2883-8447-2a1d" name="SISTERS OF THE THORN" hidden="false"/>
<categoryEntry id="9bf4-4067-f587-a008" name="SISTERS OF THE WATCH" hidden="false"/>
<categoryEntry id="f78e-3730-9323-b832" name="SPELLWEAVER" hidden="false"/>
<categoryEntry id="a83c-f6d2-31f5-765c" name="WILDWOOD RANGERS" hidden="false"/>
<categoryEntry id="f12b-14b1-eff9-c3cc" name="WILD RIDERS" hidden="false"/>
</categoryEntries>
<forceEntries>
<forceEntry id="0db5-b074-ea11-2661" name="Cities of Sigmar Pitched Battle" hidden="true">
<modifiers>
<modifier type="set" field="c615-652b-2fb4-53ba" value="1000.0">
<conditions>
<condition field="selections" scope="0db5-b074-ea11-2661" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="fd9f-428a-177d-c765" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="c615-652b-2fb4-53ba" value="2000.0">
<conditions>
<condition field="selections" scope="0db5-b074-ea11-2661" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="6330-7561-7a32-0851" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="c615-652b-2fb4-53ba" value="2500.0">
<conditions>
<condition field="selections" scope="0db5-b074-ea11-2661" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="1e63-0b49-ac04-321f" type="equalTo"/>
</conditions>
</modifier>
<modifier type="append" field="name" value="1,000">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="fd9f-428a-177d-c765" type="equalTo"/>
</conditions>
</modifier>
<modifier type="append" field="name" value="2,000">
<conditions>
<condition field="selections" scope="0db5-b074-ea11-2661" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="6330-7561-7a32-0851" type="equalTo"/>
</conditions>
</modifier>
<modifier type="append" field="name" value="2,500">
<conditions>
<condition field="selections" scope="0db5-b074-ea11-2661" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="1e63-0b49-ac04-321f" type="equalTo"/>
</conditions>
</modifier>
<modifier type="decrement" field="c615-652b-2fb4-53ba" value="250.0">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="aa3a-742d-9e34-e701" type="equalTo"/>
</conditions>
</modifier>
<modifier type="increment" field="c615-652b-2fb4-53ba" value="500.0">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="45c9-0873-d072-007a" type="equalTo"/>
</conditions>
</modifier>
<modifier type="decrement" field="c615-652b-2fb4-53ba" value="500.0">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="6a86-ed1f-1db7-6f7c" type="equalTo"/>
</conditions>
</modifier>
<modifier type="increment" field="c615-652b-2fb4-53ba" value="250.0">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="4c1d-7a55-fa32-d2be" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="points" scope="roster" value="-1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="true" id="c615-652b-2fb4-53ba" type="max"/>
</constraints>
<forceEntries>
<forceEntry id="2998-43ea-2b94-2058" name="Allies" hidden="false">
<modifiers>
<modifier type="set" field="2a3d-7164-5a36-2b3f" value="500.0">
<conditions>
<condition field="selections" scope="0db5-b074-ea11-2661" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="1e63-0b49-ac04-321f" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="2a3d-7164-5a36-2b3f" value="400.0">
<conditions>
<condition field="selections" scope="0db5-b074-ea11-2661" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="6330-7561-7a32-0851" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="2a3d-7164-5a36-2b3f" value="200.0">
<conditions>
<condition field="selections" scope="0db5-b074-ea11-2661" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="fd9f-428a-177d-c765" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="points" scope="roster" value="-1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="true" id="2a3d-7164-5a36-2b3f" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="bffb-70ad-17f4-8738" name="Artillery" hidden="false" targetId="1d26-07fc-6a66-d73e" primary="false"/>
<categoryLink id="21a6-aa69-e001-60e9" name="Behemoth" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false"/>
<categoryLink id="031e-d8d2-7de5-6897" name="Leader" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="false"/>
<categoryLink id="4b2f-9c9e-94a4-ee5a" name="Other" hidden="false" targetId="065e-fda7-fd27-1f40" primary="false"/>
<categoryLink id="daef-21dd-65b1-877a" name="Battalion" hidden="false" targetId="be17-6bbd-b857-3f43" primary="false"/>
</categoryLinks>
</forceEntry>
</forceEntries>
<categoryLinks>
<categoryLink id="b535-05ac-c926-b0ae" name="Leader" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="false">
<modifiers>
<modifier type="set" field="dcf4-c87c-1a50-f71e" value="4.0">
<conditions>
<condition field="selections" scope="0db5-b074-ea11-2661" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="fd9f-428a-177d-c765" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="dcf4-c87c-1a50-f71e" value="6.0">
<conditions>
<condition field="selections" scope="0db5-b074-ea11-2661" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="6330-7561-7a32-0851" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="dcf4-c87c-1a50-f71e" value="8.0">
<conditions>
<condition field="selections" scope="0db5-b074-ea11-2661" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="1e63-0b49-ac04-321f" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="cd8d-b790-1098-0e30" value="1.0">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="0db5-b074-ea11-2661" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="fd9f-428a-177d-c765" type="equalTo"/>
<condition field="selections" scope="0db5-b074-ea11-2661" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="1e63-0b49-ac04-321f" type="equalTo"/>
<condition field="selections" scope="0db5-b074-ea11-2661" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="6330-7561-7a32-0851" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="0.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="true" id="cd8d-b790-1098-0e30" type="min"/>
<constraint field="selections" scope="roster" value="-1.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="true" id="dcf4-c87c-1a50-f71e" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="0e02-ff66-3470-e904" name="Behemoth" hidden="false" targetId="fa0c-9044-2568-fa02" primary="false">
<modifiers>
<modifier type="set" field="040a-74e5-e253-49ad" value="2.0">
<conditions>
<condition field="selections" scope="0db5-b074-ea11-2661" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="fd9f-428a-177d-c765" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="040a-74e5-e253-49ad" value="4.0">
<conditions>
<condition field="selections" scope="0db5-b074-ea11-2661" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="6330-7561-7a32-0851" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="040a-74e5-e253-49ad" value="5.0">
<conditions>
<condition field="selections" scope="0db5-b074-ea11-2661" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="1e63-0b49-ac04-321f" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="-1.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="true" id="040a-74e5-e253-49ad" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="779c-4e12-f2d2-abd8" name="Artillery" hidden="false" targetId="1d26-07fc-6a66-d73e" primary="false">
<modifiers>
<modifier type="set" field="48c2-2ffd-304e-3e55" value="5.0">
<conditions>
<condition field="selections" scope="0db5-b074-ea11-2661" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="1e63-0b49-ac04-321f" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="48c2-2ffd-304e-3e55" value="2.0">
<conditions>
<condition field="selections" scope="0db5-b074-ea11-2661" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="fd9f-428a-177d-c765" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="48c2-2ffd-304e-3e55" value="4.0">
<conditions>
<condition field="selections" scope="0db5-b074-ea11-2661" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="6330-7561-7a32-0851" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="-1.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="true" id="48c2-2ffd-304e-3e55" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="cabe-018f-e37c-77bc" name="Battleline" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="false">
<modifiers>
<modifier type="set" field="2001-af46-4456-ba7f" value="2.0">
<conditions>
<condition field="selections" scope="0db5-b074-ea11-2661" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="fd9f-428a-177d-c765" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="2001-af46-4456-ba7f" value="4.0">
<conditions>
<condition field="selections" scope="0db5-b074-ea11-2661" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="1e63-0b49-ac04-321f" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="2001-af46-4456-ba7f" value="3.0">
<conditions>
<condition field="selections" scope="0db5-b074-ea11-2661" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="6330-7561-7a32-0851" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="0.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="true" id="2001-af46-4456-ba7f" type="min"/>
</constraints>
</categoryLink>
<categoryLink id="9611-1ba7-299f-10ea" name="Other" hidden="false" targetId="065e-fda7-fd27-1f40" primary="false"/>
<categoryLink id="09f9-4631-f2f4-2dd8" name="Battalion" hidden="false" targetId="be17-6bbd-b857-3f43" primary="false"/>
<categoryLink id="d576-9a07-f443-38e5" name="General" hidden="false" targetId="b745-17c4-8fbf-8b04" primary="false"/>
<categoryLink id="9d0a-babd-ff5d-2ac8" name="Artefact" hidden="false" targetId="3564-4c26-10b4-d953" primary="false"/>
<categoryLink id="761d-923c-f9fd-6b8d" name="Allegiance" hidden="false" targetId="87e8-c095-f059-5f7b" primary="false">
<constraints>
<constraint field="selections" scope="0db5-b074-ea11-2661" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4c6e-b316-6fb4-4016" type="min"/>
</constraints>
</categoryLink>
<categoryLink id="9d98-c930-789f-5163" name="Game Options" hidden="false" targetId="1974-3f49-7f0b-8422" primary="false"/>
<categoryLink id="a28c-1383-1b34-1e82" name="Realm of Origin" hidden="false" targetId="5c6d-5384-bcb1-b474" primary="false">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="true" id="c7e4-1701-01a2-945a" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="0126-9112-3602-e460" name="Malign Sorcery" hidden="false" targetId="eecb-ed66-d474-9ddd" primary="false"/>
<categoryLink id="8ea4-694c-e465-47f1" name="Command Points" hidden="false" targetId="8be8-3ccd-be93-b55e" primary="false"/>
<categoryLink id="5bad-12bc-6b0c-e07c" name="Realm of Battle" hidden="false" targetId="5e28-c4f1-4a92-b75c" primary="false">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="true" id="3222-9f4f-5791-c069" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="ca6f-37ff-283b-3cdb" name="Scenery" hidden="false" targetId="bc8a-9257-1601-6d62" primary="false"/>
<categoryLink id="cac2-cc6c-9b33-8854" name="STORMCAST ETERNALS" hidden="false" targetId="b396-0600-80d6-cee9" primary="false">
<modifiers>
<modifier type="increment" field="e07a-8193-2b4d-f3ae" value="1.0">
<repeats>
<repeat field="selections" scope="roster" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="cccb-89cd-393f-5839" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="e07a-8193-2b4d-f3ae" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="5ff9-a6f1-2d64-1edd" name="SYLVANETH" hidden="false" targetId="de6f-3fcb-09b2-a59e" primary="false">
<modifiers>
<modifier type="increment" field="943a-11bb-9439-5959" value="1.0">
<repeats>
<repeat field="selections" scope="roster" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="cccb-89cd-393f-5839" repeats="1" roundUp="false"/>
</repeats>
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9814-af33-d747-6185" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="943a-11bb-9439-5959" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="f044-a157-4e18-453d" name="KHARADRON OVERLORDS" hidden="false" targetId="2654-58fb-a46f-b28d" primary="false">
<modifiers>
<modifier type="increment" field="1b55-0c66-b2fe-c821" value="1.0">
<repeats>
<repeat field="selections" scope="roster" value="3.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="cccb-89cd-393f-5839" repeats="1" roundUp="false"/>
</repeats>
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="11e1-564a-b824-ac65" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="1b55-0c66-b2fe-c821" type="max"/>
</constraints>
</categoryLink>
</categoryLinks>
</forceEntry>
</forceEntries>
<entryLinks>
<entryLink id="d1b4-4124-e5f1-ddf5" name="Luminark of Hysh" hidden="false" collective="false" import="true" targetId="c2cb-f59d-ec38-10c8" type="selectionEntry"/>
<entryLink id="48f8-0cd0-c224-e202" name="Freeguild General" hidden="false" collective="false" import="true" targetId="aada-2a08-7231-2d0e" type="selectionEntry"/>
<entryLink id="e1ec-efa7-67c0-03bc" name="Freeguild General on Griffon" hidden="false" collective="false" import="true" targetId="f97b-a868-659a-a9e5" type="selectionEntry"/>
<entryLink id="fda5-33e1-17e6-3b70" name="Decimators" hidden="false" collective="false" import="true" targetId="5330-8a21-c53d-7aa3" type="selectionEntry"/>
<entryLink id="aa5e-44f7-bed0-8d70" name="Demigryph Knights" hidden="false" collective="false" import="true" targetId="997f-3956-6049-cc04" type="selectionEntry"/>
<entryLink id="5261-f6e9-39cd-854b" name="Freeguild Greatswords" hidden="false" collective="false" import="true" targetId="2285-8b6d-cc95-1dac" type="selectionEntry"/>
<entryLink id="6d30-660e-b258-674c" name="Freeguild Guard" hidden="false" collective="false" import="true" targetId="ce08-26df-f117-e698" type="selectionEntry"/>
<entryLink id="0787-3575-914a-5d5c" name="Freeguild Outriders" hidden="false" collective="false" import="true" targetId="032e-7267-915b-61e8" type="selectionEntry"/>
<entryLink id="b88f-329e-f9ab-44a0" name="Irondrakes" hidden="false" collective="false" import="true" targetId="c002-5bdd-6570-318c" type="selectionEntry"/>
<entryLink id="48ca-3230-4764-e585" name="Freeguild Handgunners" hidden="false" collective="false" import="true" targetId="74b7-10a4-e9c7-8035" type="selectionEntry"/>
<entryLink id="6dee-69e4-8940-e6d7" name="Freeguild Crossbowmen" hidden="false" collective="false" import="true" targetId="731e-cbfa-70d8-28eb" type="selectionEntry"/>
<entryLink id="166d-212e-323a-5373" name="Flagellants" hidden="false" collective="false" import="true" targetId="6c57-67c3-945c-aaa9" type="selectionEntry"/>
<entryLink id="36a3-909d-6d66-488b" name="Assassin" hidden="false" collective="false" import="true" targetId="bec5-213e-eccf-17e0" type="selectionEntry"/>
<entryLink id="9a80-45f2-d7a6-f86c" name="Allegiance" hidden="false" collective="false" import="true" targetId="87f8-d0f2-e2c7-0668" type="selectionEntry">
<categoryLinks>
<categoryLink id="a0e4-eb32-1a4d-4294" name="New CategoryLink" hidden="false" targetId="87e8-c095-f059-5f7b" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="155c-455f-0315-e826" name="Sorceress on Black Dragon" hidden="false" collective="false" import="true" targetId="dcad-577b-ccd1-7412" type="selectionEntry"/>
<entryLink id="4d0b-eb8f-e788-bba7" name="Eternal Guard" hidden="false" collective="false" import="true" targetId="d6a0-e2ca-0820-59f0" type="selectionEntry"/>
<entryLink id="d0be-ebd9-03bb-5350" name="Black Guard" hidden="false" collective="false" import="true" targetId="23bd-bb48-cffe-de68" type="selectionEntry"/>
<entryLink id="b9ad-c55d-6a90-19d3" name="Executioners" hidden="false" collective="false" import="true" targetId="f0e6-ad30-0b1b-d78c" type="selectionEntry"/>
<entryLink id="738b-8cf5-7615-e613" name="Bleakswords" hidden="false" collective="false" import="true" targetId="56fd-4c2f-2017-2d40" type="selectionEntry"/>
<entryLink id="f575-fab5-1114-05af" name="Darkshards" hidden="false" collective="false" import="true" targetId="35f4-2d7e-bbbf-6beb" type="selectionEntry"/>
<entryLink id="ef7c-7fac-43b9-0b17" name="Dreadspears" hidden="false" collective="false" import="true" targetId="de75-f86b-1d95-7043" type="selectionEntry"/>
<entryLink id="a286-e47c-d667-9e2d" name="Steam Tank" hidden="false" collective="false" import="true" targetId="b81e-3d25-eedb-91c1" type="selectionEntry"/>
<entryLink id="39ea-6d1a-83ce-266e" name="Hammerers" hidden="false" collective="false" import="true" targetId="af13-da79-5ee7-8d26" type="selectionEntry"/>
<entryLink id="828a-0e3a-e717-69fc" name="Cogsmith" hidden="false" collective="false" import="true" targetId="9c43-1531-41d6-c546" type="selectionEntry"/>
<entryLink id="75ba-29df-4852-9329" name="Gyrocopters" hidden="false" collective="false" import="true" targetId="55d2-b491-881d-ab72" type="selectionEntry"/>
<entryLink id="120d-09e5-b11c-a6da" name="Gyrobombers" hidden="false" collective="false" import="true" targetId="f261-829d-6711-4ea3" type="selectionEntry"/>
<entryLink id="628e-3ec9-383b-90b7" name="Ironbreakers" hidden="false" collective="false" import="true" targetId="5f50-d933-1d15-de3e" type="selectionEntry"/>
<entryLink id="4272-c172-5f44-fad6" name="Longbeards" hidden="false" collective="false" import="true" targetId="9e59-4856-0e32-fbf8" type="selectionEntry"/>
<entryLink id="3a15-c57b-1c12-3ffb" name="Freeguild Pistoliers" hidden="false" collective="false" import="true" targetId="c20a-2c87-56b3-b844" type="selectionEntry"/>
<entryLink id="89cf-d1db-1ed7-464c" name="Runelord" hidden="false" collective="false" import="true" targetId="2cf2-a837-e64e-b829" type="selectionEntry"/>
<entryLink id="8e63-a37d-72b1-9ff4" name="Warden King" hidden="false" collective="false" import="true" targetId="8f6e-0a44-254f-8047" type="selectionEntry"/>
<entryLink id="fb6a-7622-7668-3946" name="Helblaster Volly Gun" hidden="false" collective="false" import="true" targetId="cb80-204f-a4cc-99ce" type="selectionEntry"/>
<entryLink id="2b14-61d2-f1a7-50c7" name="Helstorm Rocket Battery" hidden="false" collective="false" import="true" targetId="6a7a-6562-0a20-e34d" type="selectionEntry"/>
<entryLink id="ed25-3575-4173-d804" name="Frostheart Phoenix" hidden="false" collective="false" import="true" targetId="7f72-8f77-b2f8-06a5" type="selectionEntry"/>
<entryLink id="c633-5659-4fe3-4697" name="Dreadlord on Black Dragon" hidden="false" collective="false" import="true" targetId="9783-0cea-ff0a-ed00" type="selectionEntry"/>
<entryLink id="19c6-f564-c4e0-c990" name="War Hydra" hidden="false" collective="false" import="true" targetId="48f0-e54b-c47b-15fd" type="selectionEntry"/>
<entryLink id="9d65-4982-3f04-f9cf" name="Drakespawn Knights" hidden="false" collective="false" import="true" targetId="a923-90e2-11c3-bd73" type="selectionEntry"/>
<entryLink id="d442-536b-9e4e-f3af" name="Drakespawn Chariots" hidden="false" collective="false" import="true" targetId="82b3-0356-222a-f320" type="selectionEntry"/>
<entryLink id="51fc-549b-8b55-1c9b" name="Flamespyre Phoenix" hidden="false" collective="false" import="true" targetId="e3c5-c528-43c9-426a" type="selectionEntry"/>
<entryLink id="fc5e-759e-0fca-6979" name="Shadow Warriors" hidden="false" collective="false" import="true" targetId="d4d5-d1ff-3cbc-018e" type="selectionEntry"/>
<entryLink id="2a60-b2cf-c86f-06b1" name="Wild Riders" hidden="false" collective="false" import="true" targetId="6497-3006-d73e-1485" type="selectionEntry"/>
<entryLink id="19e1-fcd6-52a3-011c" name="Wildwood Rangers" hidden="false" collective="false" import="true" targetId="add1-1bd1-a0ee-e3b0" type="selectionEntry"/>
<entryLink id="a8f6-bdb0-fed7-52c9" name="Sisters of the Thorn" hidden="false" collective="false" import="true" targetId="6a57-62b4-8b99-ece0" type="selectionEntry"/>
<entryLink id="8cf9-e854-bc4c-79a9" name="Sorceress" hidden="false" collective="false" import="true" targetId="845e-4dc4-d7cd-0dad" type="selectionEntry"/>
<entryLink id="5202-4bc8-4117-4847" name="Sisters of the Watch" hidden="false" collective="false" import="true" targetId="66f3-1ac7-404e-2446" type="selectionEntry"/>
<entryLink id="4796-bcf3-ed60-4c7f" name="Scourgerunner Chariots" hidden="false" collective="false" import="true" targetId="30f7-1600-90d4-7d5f" type="selectionEntry"/>
<entryLink id="362a-4a48-360d-d6c8" name="Nomad Prince" hidden="false" collective="false" import="true" targetId="8140-0d8a-3292-e45c" type="selectionEntry"/>
<entryLink id="27d8-d28a-aab3-3077" name="Black Ark Fleetmaster" hidden="false" collective="false" import="true" targetId="9bea-f64e-d9b9-26ec" type="selectionEntry"/>
<entryLink id="13b0-e68f-91b2-a4dd" name="Kharibdyss" hidden="false" collective="false" import="true" targetId="9865-28bf-ab8f-c3bf" type="selectionEntry"/>
<entryLink id="690d-c6d6-839c-c49d" name="Black Ark Corsairs" hidden="false" collective="false" import="true" targetId="09b7-7d70-f439-7f32" type="selectionEntry"/>
<entryLink id="885e-7134-5f2c-35ff" name="Battlemage on Griffon" hidden="false" collective="false" import="true" targetId="6e22-8a2b-42e3-af27" type="selectionEntry"/>
<entryLink id="57ec-e281-5db2-317c" name="Battalion: Phoenix Flight" hidden="false" collective="false" import="true" targetId="ce9b-86e4-769a-2091" type="selectionEntry"/>
<entryLink id="e2e6-0ec8-a686-019a" name="Battalion: Viridian Pathfinders" hidden="false" collective="false" import="true" targetId="5b31-1e56-009d-3701" type="selectionEntry"/>
<entryLink id="0641-28fe-9c66-540b" name="Battalion: Greywater Artillery Company" hidden="false" collective="false" import="true" targetId="fa99-743b-1a59-449f" type="selectionEntry"/>
<entryLink id="b207-dcb3-3057-e205" name="Battalion: Whitefire Retinue" hidden="false" collective="false" import="true" targetId="8b8c-1569-b56f-a764" type="selectionEntry"/>
<entryLink id="5ec9-a3f8-3717-bdc1" name="Battalion: Aetherguard Windrunners" hidden="false" collective="false" import="true" targetId="4a93-3eb0-be9b-6f67" type="selectionEntry"/>
<entryLink id="2c17-3d88-c236-3f6f" name="Battalion: Charrwind Beasthunters" hidden="false" collective="false" import="true" targetId="4be6-1ea4-2951-80af" type="selectionEntry"/>
<entryLink id="9dab-f2a5-a8cd-a035" name="Battalion: Hammerhalian Lancers" hidden="false" collective="false" import="true" targetId="045e-b385-6cd3-91bc" type="selectionEntry"/>
<entryLink id="7923-c9c0-7ace-1c8b" name="Battlemage" hidden="false" collective="false" import="true" targetId="e803-f69f-40ca-f348" type="selectionEntry"/>
<entryLink id="dbef-05d8-fa4b-ae26" name="Lord-Exorcist" hidden="false" collective="false" import="true" targetId="b92f-b04d-3339-5cd9" type="selectionEntry"/>
<entryLink id="a423-ab88-ee7d-cff3" name="Steam Tank with Commander" hidden="false" collective="false" import="true" targetId="906e-3ce2-c77a-daef" type="selectionEntry"/>
<entryLink id="9532-1ce7-4509-43b1" name="Phoenix Guard" hidden="false" collective="false" import="true" targetId="e7a3-2bf4-8920-6fc1" type="selectionEntry"/>
<entryLink id="0694-d504-9ef1-351c" name="Dark Riders" hidden="false" collective="false" import="true" targetId="11b9-fb1d-b5cd-cc7e" type="selectionEntry"/>
<entryLink id="3ab9-226a-f97e-9b08" name="Lord-Celestant on Stardrake" hidden="false" collective="false" import="true" targetId="19ca-60d5-c3b7-9444" type="selectionEntry"/>
<entryLink id="2cbd-22e3-612c-e89e" name="Knight-Questor" hidden="false" collective="false" import="true" targetId="3c95-3545-4b34-4221" type="selectionEntry"/>
<entryLink id="4bbd-1aaa-7051-f6f5" name="Lord-Celestant on Dracoth" hidden="false" collective="false" import="true" targetId="5232-9953-1b83-0097" type="selectionEntry"/>
<entryLink id="908f-38fb-33b9-3ec3" name="Knight-Azyros" hidden="false" collective="false" import="true" targetId="afac-5154-99ae-ee3c" type="selectionEntry"/>
<entryLink id="9205-3cf6-c2a7-874c" name="Gavriel Sureheart" hidden="false" collective="false" import="true" targetId="722a-0a7a-212c-da4c" type="selectionEntry"/>
<entryLink id="b20f-2823-d97c-dc7e" name="Fulminators" hidden="false" collective="false" import="true" targetId="fed1-2388-810f-3ae7" type="selectionEntry"/>
<entryLink id="020a-568e-b98e-c174" name="Evocators on Celestial Dracolines" hidden="false" collective="false" import="true" targetId="8800-4822-2349-f731" type="selectionEntry"/>
<entryLink id="0f8a-6bc8-db50-7d42" name="Evocators" hidden="false" collective="false" import="true" targetId="6427-4f9f-abde-dc0b" type="selectionEntry"/>
<entryLink id="0443-d213-8978-be4c" name="Errant-Questor" hidden="false" collective="false" import="true" targetId="530a-e1c9-444c-bc70" type="selectionEntry"/>
<entryLink id="4556-2676-43f6-0014" name="Judicators" hidden="false" collective="false" import="true" targetId="993b-d238-93ba-a4f2" type="selectionEntry"/>
<entryLink id="e623-fa3e-78d6-43f1" name="Concussors" hidden="false" collective="false" import="true" targetId="a106-3d7e-be4d-bf3b" type="selectionEntry"/>
<entryLink id="5358-c669-a38c-dd7e" name="Celestar Ballista" hidden="false" collective="false" import="true" targetId="70bf-9177-9d10-bc5f" type="selectionEntry"/>
<entryLink id="fa72-d022-a93a-9b23" name="Drakesworn Templar" hidden="false" collective="false" import="true" targetId="1090-dc26-d603-1103" type="selectionEntry"/>
<entryLink id="ea77-6cc4-864f-314e" name="Knight-Incantor" hidden="false" collective="false" import="true" targetId="7a4b-b062-14f2-65db" type="selectionEntry"/>
<entryLink id="6ab4-808d-4f7f-f673" name="Knight-Heraldor" hidden="false" collective="false" import="true" targetId="3c2d-c00c-722b-36d2" type="selectionEntry"/>
<entryLink id="dde3-02b4-a24c-16f2" name="Celestant-Prime, Hammer of Sigmar" hidden="false" collective="false" import="true" targetId="4827-4147-67c2-16f7" type="selectionEntry"/>
<entryLink id="71af-9d66-e7d6-0ca6" name="Desolators" hidden="false" collective="false" import="true" targetId="c97b-8f8b-99d4-71ed" type="selectionEntry"/>
<entryLink id="ae3c-54ee-03ea-666c" name="Castigators" hidden="false" collective="false" import="true" targetId="623f-7949-6fb7-fd62" type="selectionEntry"/>
<entryLink id="f53d-411f-fac9-8af5" name="Averon Stormsire" hidden="false" collective="false" import="true" targetId="aff4-016f-04b6-cf66" type="selectionEntry"/>
<entryLink id="071d-634a-cd93-d735" name="Aventis Firestrike, Magister of Hammerhal" hidden="false" collective="false" import="true" targetId="c346-0cbf-16de-8230" type="selectionEntry"/>
<entryLink id="3c05-2b98-d87f-2f15" name="Gryph-Hounds" hidden="false" collective="false" import="true" targetId="d79a-14b4-5f86-76d2" type="selectionEntry"/>
<entryLink id="f18c-4f74-b2dd-2d98" name="Astreia Solbright" hidden="false" collective="false" import="true" targetId="0bd3-8d56-f1d3-23ea" type="selectionEntry"/>
<entryLink id="c9c7-b906-47d6-ac32" name="Arkanaut Admiral" hidden="false" collective="false" import="true" targetId="44ad-2801-441f-6b44" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="11e1-564a-b824-ac65" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="7049-faea-33ee-5e44" name="Lord-Celestant" hidden="false" collective="false" import="true" targetId="425f-9d59-b2f6-b5f0" type="selectionEntry"/>
<entryLink id="4350-4cc6-872b-f944" name="Knight-Zephyros" hidden="false" collective="false" import="true" targetId="40dd-3878-4b37-f96e" type="selectionEntry"/>
<entryLink id="350e-71bd-c203-8330" name="Lord-Castellant" hidden="false" collective="false" import="true" targetId="15e7-d7b5-5bed-3c54" type="selectionEntry"/>
<entryLink id="9946-6b27-24d8-4a6b" name="Lord-Arcanum on Celestial Dracoline" hidden="false" collective="false" import="true" targetId="8568-5b1b-179d-e1c5" type="selectionEntry"/>
<entryLink id="202d-b4dd-6262-140a" name="Lord-Arcanum on Tauralon" hidden="false" collective="false" import="true" targetId="6f87-6fec-658e-d582" type="selectionEntry"/>
<entryLink id="9f57-468c-25c5-c238" name="Lord-Aquilor" hidden="false" collective="false" import="true" targetId="a352-bb91-9133-a58d" type="selectionEntry"/>
<entryLink id="4625-53e0-1906-13ca" name="Lord-Arcanum" hidden="false" collective="false" import="true" targetId="f069-8a02-0d59-83be" type="selectionEntry"/>
<entryLink id="a397-f581-a890-db17" name="Liberators" hidden="false" collective="false" import="true" targetId="5b8e-b5ee-8df3-9f2f" type="selectionEntry"/>
<entryLink id="491e-8b76-60e0-cc21" name="Anointed" hidden="false" collective="false" import="true" targetId="6992-73c4-c062-3eab" type="selectionEntry"/>
<entryLink id="8ff6-e09d-b42c-a433" name="Knight-Vexillor" hidden="false" collective="false" import="true" targetId="9320-740f-eb76-c07b" type="selectionEntry"/>
<entryLink id="ee56-4b17-3b75-3ee6" name="Knight-Venator" hidden="false" collective="false" import="true" targetId="aeb5-ae52-567b-5f8c" type="selectionEntry"/>
<entryLink id="9e2b-3841-2903-3090" name="Lord-Ordinator" hidden="false" collective="false" import="true" targetId="c924-f509-4a7f-1735" type="selectionEntry">
<categoryLinks>
<categoryLink id="f9ff-999c-ee36-acb5" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="ac7f-6ba3-dbeb-0239" name="Lord-Relictor" hidden="false" collective="false" import="true" targetId="ce64-88a6-ce56-0940" type="selectionEntry">
<categoryLinks>
<categoryLink id="8613-4db3-57db-6f55" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="d04e-aba8-ba82-ceaf" name="Lord-Veritant" hidden="false" collective="false" import="true" targetId="7132-5dde-398e-d8a0" type="selectionEntry">
<categoryLinks>
<categoryLink id="3b18-f47a-e48f-edb0" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="d930-7d73-78c3-b506" name="Neave Blacktalon" hidden="false" collective="false" import="true" targetId="e72f-58fe-d697-6be6" type="selectionEntry">
<categoryLinks>
<categoryLink id="0be5-0dae-8bda-9e5b" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="1615-41c9-afe8-e15b" name="Prosecutors" hidden="false" collective="false" import="true" targetId="432b-fe7d-867c-7e7d" type="selectionEntry">
<categoryLinks>
<categoryLink id="57d4-7a30-ef6a-e50c" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="d3d5-5f91-86ea-a47d" name="Protectors" hidden="false" collective="false" import="true" targetId="5858-a948-c65e-b3b7" type="selectionEntry">
<categoryLinks>
<categoryLink id="a0ff-16d1-a64b-1676" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="baf1-711c-f528-3a13" name="Retributors" hidden="false" collective="false" import="true" targetId="20ee-5f80-e899-a31b" type="selectionEntry">
<categoryLinks>
<categoryLink id="5668-02a8-fc20-155e" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="688d-6d0b-701c-d282" name="Sequitors" hidden="false" collective="false" import="true" targetId="29da-7c0d-155b-f63a" type="selectionEntry"/>
<entryLink id="8c35-fd69-f064-caed" name="Steelheart's Champions" hidden="false" collective="false" import="true" targetId="b8d3-7d4a-8689-ab16" type="selectionEntry"/>
<entryLink id="5ce3-44e1-5d17-f963" name="Stormsire's Cursebreakers" hidden="false" collective="false" import="true" targetId="d804-282f-96b2-4d98" type="selectionEntry"/>
<entryLink id="de58-9f73-0de6-3394" name="Tempestors" hidden="false" collective="false" import="true" targetId="4115-b86d-bbd9-69ab" type="selectionEntry"/>
<entryLink id="9fb1-dcac-f068-1c52" name="The Farstriders" hidden="false" collective="false" import="true" targetId="384d-78bf-f7a0-887d" type="selectionEntry"/>
<entryLink id="2450-ea94-c6db-d8fe" name="Vandus Hammerhand" hidden="false" collective="false" import="true" targetId="66fb-5872-a345-2ad5" type="selectionEntry"/>
<entryLink id="495c-9056-3b7c-c956" name="Vanguard-Hunters" hidden="false" collective="false" import="true" targetId="a304-f6e3-9750-fae8" type="selectionEntry"/>
<entryLink id="0edf-d7be-5e5b-58e7" name="Vanguard-Raptors with Hurricane Crossbows" hidden="false" collective="false" import="true" targetId="f013-a130-757f-6fbd" type="selectionEntry"/>
<entryLink id="75df-b478-0bbf-3747" name="Vanguard-Palladors" hidden="false" collective="false" import="true" targetId="495f-0703-ade1-f179" type="selectionEntry"/>
<entryLink id="42d1-1320-0c15-07d3" name="Vanguard-Raptors with Longstrike Crossbows" hidden="false" collective="false" import="true" targetId="5a5d-a64b-6f2e-0ed9" type="selectionEntry"/>
<entryLink id="97d2-1b8e-1a52-edda" name="Celestial Hurricanum" hidden="false" collective="false" import="true" targetId="9329-90d0-1c0a-eb4b" type="selectionEntry"/>
<entryLink id="7144-7385-d80d-4002" name="Aetherwings" hidden="false" collective="false" import="true" targetId="8940-6351-56bb-6cbf" type="selectionEntry"/>
<entryLink id="a2b5-e110-1374-c73e" name="Thundrik's Profiteers" hidden="false" collective="false" import="true" targetId="128e-d958-e7d6-7cbc" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="11e1-564a-b824-ac65" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="fdf9-180a-29f6-1d01" name="Skywardens" hidden="false" collective="false" import="true" targetId="6891-3bc7-0d14-3e01" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="11e1-564a-b824-ac65" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="24b7-5eaf-fe79-9e15" name="Grundstok Thunderers" hidden="false" collective="false" import="true" targetId="395d-4f2c-c544-43aa" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="11e1-564a-b824-ac65" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="230e-11c9-2e99-be8e" name="Grundstok Gunhauler" hidden="false" collective="false" import="true" targetId="fb69-6292-fcca-fba7" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="11e1-564a-b824-ac65" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="8b5c-7b9e-4658-3aa5" name="Endrinriggers" hidden="false" collective="false" import="true" targetId="0064-c926-85e4-d674" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="11e1-564a-b824-ac65" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="33ef-bd0f-422f-70fc" name="Endrinmaster" hidden="false" collective="false" import="true" targetId="b35b-ad7f-1673-0c71" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="11e1-564a-b824-ac65" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="c086-afe9-869f-03ec" name="Brokk Grungsson, Lord-Magnate of Barak-Nar" hidden="false" collective="false" import="true" targetId="dcd4-8e51-66c7-b222" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="11e1-564a-b824-ac65" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="0827-680d-00a8-f346" name="Bjorgen Thundrik" hidden="false" collective="false" import="true" targetId="616d-36bf-1a46-641e" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="11e1-564a-b824-ac65" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="9fad-f475-5416-3ffe" name="Arkanaut Ironclad" hidden="false" collective="false" import="true" targetId="fc3c-8879-dd3f-9e53" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="11e1-564a-b824-ac65" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="edc7-796e-18bb-e70c" name="Arkanaut Frigate" hidden="false" collective="false" import="true" targetId="75d5-622e-f185-7ce2" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="11e1-564a-b824-ac65" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="8eda-148d-6ff5-4d95" name="Arkanaut Company" hidden="false" collective="false" import="true" targetId="7d60-6000-c3d0-0a22" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="11e1-564a-b824-ac65" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="1822-325f-051c-3ee9" name="Alarielle the Everqueen" hidden="false" collective="false" import="true" targetId="4d73-8d1e-89ba-a66a" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9814-af33-d747-6185" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="b63d-b5ad-1bb5-cd3d" name="Branchwraith" hidden="false" collective="false" import="true" targetId="67ae-bbfe-04fe-0e20" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9814-af33-d747-6185" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="353e-836d-65c5-2332" name="Treelord" hidden="false" collective="false" import="true" targetId="0861-c6bd-bf12-f2f4" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9814-af33-d747-6185" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="9eb9-a6a4-aae5-25b3" name="Ylthari" hidden="false" collective="false" import="true" targetId="87c1-5306-8bdd-b182" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9814-af33-d747-6185" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="c39d-0365-4949-3342" name="Treelord Ancient" hidden="false" collective="false" import="true" targetId="524f-f49b-0bfd-9414" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9814-af33-d747-6185" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="2b89-e02d-a1c1-0725" name="Ylthari's Guardians" hidden="false" collective="false" import="true" targetId="2b90-c828-a79b-d060" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9814-af33-d747-6185" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="592b-4e15-08ae-d18e" name="Tree-Revenants" hidden="false" collective="false" import="true" targetId="a74a-7377-3ed9-0f5e" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9814-af33-d747-6185" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="2820-0ce3-478e-01cd" name="Spite-Revenants" hidden="false" collective="false" import="true" targetId="b487-315c-b64c-88b0" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9814-af33-d747-6185" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="2428-7a22-fb1c-c4f1" name="Spirit of Durthu" hidden="false" collective="false" import="true" targetId="ef77-af66-26da-3a02" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9814-af33-d747-6185" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="eee7-4df7-28f6-d870" name="Kurnoth Hunters" hidden="false" collective="false" import="true" targetId="e14d-00c2-5ed8-220a" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9814-af33-d747-6185" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="c335-92eb-ec01-582b" name="Drycha Hamadreth" hidden="false" collective="false" import="true" targetId="02a8-7840-22ef-b8f5" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9814-af33-d747-6185" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="4573-bbf0-dbed-18ff" name="Dryads" hidden="false" collective="false" import="true" targetId="0a14-90fc-1335-3c79" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9814-af33-d747-6185" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="5dbb-671b-2b49-97fa" name="Branchwych" hidden="false" collective="false" import="true" targetId="d65c-84f8-43bf-d534" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9814-af33-d747-6185" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="deeb-958b-2074-a389" name="Arch-Revenant" hidden="false" collective="false" import="true" targetId="ff4d-f06f-e2c4-9513" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9814-af33-d747-6185" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
</entryLinks>
<sharedSelectionEntries>
<selectionEntry id="d618-803c-36f8-0a3a" name="General" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f21b-6feb-3dca-bc55" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="b8cc-3cfc-1069-7af2" name="New CategoryLink" hidden="false" targetId="b745-17c4-8fbf-8b04" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="9865-28bf-ab8f-c3bf" name="Kharibdyss" hidden="false" collective="false" import="true" type="unit">
<modifierGroups>
<modifierGroup>
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="e169-1633-ace8-c25d" type="equalTo"/>
</conditions>
<modifiers>
<modifier type="set-primary" field="category" value="e9f2-765a-b7b8-ce8e"/>
<modifier type="remove" field="category" value="fa0c-9044-2568-fa02"/>
</modifiers>
</modifierGroup>
</modifierGroups>
<profiles>
<profile id="bd42-a554-1de0-2b8c" name="Kharibdyss" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">*</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">12</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">6</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">4+</characteristic>
</characteristics>
</profile>
<profile id="eee7-e660-88d1-a020" name="Abyssal Howl" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Subtract 1 from the Bravery characteristic of enemy units within 12" of any models with this ability.</characteristic>
</characteristics>
</profile>
<profile id="7c4c-3495-dd57-b98a" name="Feast of Bones" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">At the end of the combat phase, if any enemy models were slain by wounds inflicted by this model’s attacks in that combat phase, you can heal D3 wounds allocated to this model</characteristic>
</characteristics>
</profile>
<profile id="b27d-5d9c-394c-f965" name="Quck With the Lash" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Before you make a charge roll for this model, you can say that its Handlers are going to apply the lash. If you do so, roll 3D6, remove 1 dice of your choice, and then use the remaining 2D6 to determine the charge roll. However, if the 3D6 roll was a triple, this model suffers 1 mortal wound and it cannot make a charge move in that phase.</characteristic>
</characteristics>
</profile>
<profile id="691c-3977-f4b9-6207" name="Wound0" hidden="false" typeId="90d1-a434-348d-a861" typeName="Damage Table">
<characteristics>
<characteristic name="Variable 1" typeId="420a-645a-ab28-93a0">Wounds Suffered</characteristic>
<characteristic name="Variable 2" typeId="4cdd-1e03-530f-0ff7">Move</characteristic>
<characteristic name="Variable 3" typeId="b1ea-56be-ba52-16e9">Fanged Tentacles</characteristic>
<characteristic name="Variable 4" typeId="ad26-bf56-95c4-80f1">Spiked Tail</characteristic>
</characteristics>
</profile>
<profile id="5679-90c2-392b-ffe8" name="Wound1" hidden="false" typeId="90d1-a434-348d-a861" typeName="Damage Table">
<characteristics>
<characteristic name="Variable 1" typeId="420a-645a-ab28-93a0">0-1</characteristic>
<characteristic name="Variable 2" typeId="4cdd-1e03-530f-0ff7">7"</characteristic>
<characteristic name="Variable 3" typeId="b1ea-56be-ba52-16e9">6</characteristic>
<characteristic name="Variable 4" typeId="ad26-bf56-95c4-80f1">2+</characteristic>
</characteristics>
</profile>
<profile id="865e-87f4-25c9-b7fb" name="Wound2" hidden="false" typeId="90d1-a434-348d-a861" typeName="Damage Table">
<characteristics>
<characteristic name="Variable 1" typeId="420a-645a-ab28-93a0">2-3</characteristic>
<characteristic name="Variable 2" typeId="4cdd-1e03-530f-0ff7">6"</characteristic>
<characteristic name="Variable 3" typeId="b1ea-56be-ba52-16e9">5</characteristic>
<characteristic name="Variable 4" typeId="ad26-bf56-95c4-80f1">3+</characteristic>
</characteristics>
</profile>
<profile id="72e8-93db-225a-8f27" name="Wound3" hidden="false" typeId="90d1-a434-348d-a861" typeName="Damage Table">
<characteristics>
<characteristic name="Variable 1" typeId="420a-645a-ab28-93a0">4-5</characteristic>
<characteristic name="Variable 2" typeId="4cdd-1e03-530f-0ff7">5"</characteristic>
<characteristic name="Variable 3" typeId="b1ea-56be-ba52-16e9">4</characteristic>
<characteristic name="Variable 4" typeId="ad26-bf56-95c4-80f1">4+</characteristic>
</characteristics>
</profile>
<profile id="8469-d10b-b369-9371" name="Wound4" hidden="false" typeId="90d1-a434-348d-a861" typeName="Damage Table">
<characteristics>
<characteristic name="Variable 1" typeId="420a-645a-ab28-93a0">6-7</characteristic>
<characteristic name="Variable 2" typeId="4cdd-1e03-530f-0ff7">5"</characteristic>
<characteristic name="Variable 3" typeId="b1ea-56be-ba52-16e9">3</characteristic>
<characteristic name="Variable 4" typeId="ad26-bf56-95c4-80f1">5+</characteristic>
</characteristics>
</profile>
<profile id="3ece-d5fd-8bd9-4b5a" name="Wound5" hidden="false" typeId="90d1-a434-348d-a861" typeName="Damage Table">
<characteristics>
<characteristic name="Variable 1" typeId="420a-645a-ab28-93a0">8+</characteristic>
<characteristic name="Variable 2" typeId="4cdd-1e03-530f-0ff7">4"</characteristic>
<characteristic name="Variable 3" typeId="b1ea-56be-ba52-16e9">2</characteristic>
<characteristic name="Variable 4" typeId="ad26-bf56-95c4-80f1">6+</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="bb09-2521-dc53-b320" name="AELF" hidden="false" targetId="7fe9-bc03-2c82-0a00" primary="false"/>
<categoryLink id="3517-7d7f-cca0-74e2" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="true"/>
<categoryLink id="edf6-eb67-2d60-9bc1" name="CITIES OF SIGMAR" hidden="false" targetId="cccb-89cd-393f-5839" primary="false"/>
<categoryLink id="7e00-b8b8-1cfd-f121" name="MONSTER" hidden="false" targetId="1959-9f6a-3056-913a" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="8224-79f3-b7eb-5659" name="Clawed Limbs" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e2e7-61a7-1c0d-e9ff" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9ebf-8429-057e-f5a4" type="min"/>
</constraints>
<profiles>
<profile id="4822-b5e4-7b8f-05f8" name="Clawed Limbs" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">2</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="a60a-072a-e832-5ecc" name="Fanged Tentacles" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7db9-1fe0-c4d7-0e17" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="bd62-bc2c-a759-f93b" type="min"/>
</constraints>
<profiles>
<profile id="6871-f43a-3b7c-cbe2" name="Fanged Tentacles" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">3"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">*</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">2</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="a8c9-f703-add8-d184" name="Cruel Goads and Whips" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b517-2e2a-7d20-2b88" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c298-bd47-2ef3-ad8e" type="min"/>
</constraints>
<profiles>
<profile id="9b9f-fc39-7bd7-5c7c" name="Cruel Goads and Whips" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">2"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">2</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="4b1e-cfe7-b334-0b5a" name="Spiked Tail" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="637a-aa06-39e0-8f68" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fb9e-ecf8-8d1f-3af5" type="min"/>
</constraints>
<profiles>
<profile id="835c-86f6-65e3-b93b" name="Spiked Tail" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">2"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">D6</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">*</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="7665-fda0-a726-1ded" name="Drakeblood Curses" hidden="false" collective="false" import="true" targetId="499e-0250-d265-b75b" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="170.0"/>
</costs>
</selectionEntry>
<selectionEntry id="9bea-f64e-d9b9-26ec" name="Black Ark Fleetmaster" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="c232-9c1d-acc0-69b3" name="Black Ark Fleetmaster" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">6"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">5</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">7</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">4+</characteristic>
</characteristics>
</profile>
<profile id="a56f-836f-281e-fe22" name="Sea Dragon Cloak" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Add 1 to save rolls for attacks made with missile weapons that target this model.</characteristic>
</characteristics>
</profile>
<profile id="f7eb-c0d4-6082-2d23" name="Murderous Swashbuckler" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">If the unmodified hit roll for an attack made with a Black Ark Cutlass is 6, that attack scores 2 hits on the target instead of 1. Make a wound and save roll for each hit.</characteristic>
</characteristics>
</profile>
<profile id="9d3f-d6ea-bb60-a08c" name="At Them, You Curs!" hidden="false" typeId="f71f-b0a4-730e-ced3" typeName="Command Abilities">
<characteristics>
<characteristic name="Command Ability Details" typeId="1b71-4c83-4e8c-093f">You can use this command ability at the start of the combat phase. If you do so, pick 1 friendly SCOURGE PRIVATEERS unit wholly within 12" of a friendly HERO with this command ability. Add 1 to the Attacks characteristic of that unit’s melee weapons until the end of that phase. A unit cannot benefit from this command ability more than once per phase.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="50b2-d93c-b37b-6537" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="29f7-96a5-57ab-13be" name="Black Ark Cutlass" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d393-2d1b-53dc-f591" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7c2c-23dc-a138-d78a" type="min"/>
</constraints>
<profiles>
<profile id="448e-a7a3-ac70-03a9" name="Black Ark Cutlass" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">3</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="9aa1-70a8-43b0-708c" name="Murder Hook" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="68c1-050d-862d-2068" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="bd64-0dbf-d0c5-5cce" type="min"/>
</constraints>
<profiles>
<profile id="888c-f7d1-e9a9-64a4" name="Murder Hook" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">2</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="42a6-ec49-775d-ca31" name="General" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">