forked from BSData/warhammer-age-of-sigmar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Chaos - Skaven - Data.cat
9526 lines (9515 loc) · 727 KB
/
Chaos - Skaven - Data.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="de06-0235-6a96-193b" name="Chaos - Skaven - Data" revision="54" battleScribeVersion="2.03" authorName="" authorContact="@BSData" authorUrl="https://github.com/BSData/warhammer-age-of-sigmar" library="true" gameSystemId="e51d-b1a3-75fc-dc33" gameSystemRevision="128" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<publications>
<publication id="bcc4-c671-pubd1e1" name="Chaos Battletome: Skaven"/>
<publication id="bcc4-c671-pubd1e30758" name="Warscroll Compendium: Skaven"/>
<publication id="e316-99a9-2860-3a7c" name="Battletome: Skaven"/>
</publications>
<profileTypes>
<profileType id="727c-643b-cfa1-5383" name="Too Horrible to Die - D6 Roll">
<characteristicTypes>
<characteristicType id="727c-643b-cfa1-5383" name="Effect"/>
</characteristicTypes>
</profileType>
<profileType id="63d5-4311-92f8-d2f3" name="The Thirteen-headed One">
<characteristicTypes>
<characteristicType id="ab4d-bdbd-c0da-dfd3" name="Benefit"/>
</characteristicTypes>
</profileType>
<profileType id="d0c4-0803-9249-9cd3" name="Peal of Doom - 2D6 Roll">
<characteristicTypes>
<characteristicType id="bbc9-6420-c480-59b5" name="Effect"/>
</characteristicTypes>
</profileType>
<profileType id="0b5f-6f00-1064-5987" name="Great Plagues">
<characteristicTypes>
<characteristicType id="415b-4f71-efa1-505d" name="Effect"/>
</characteristicTypes>
</profileType>
<profileType id="e9c6-4710-a808-db1a" name="Clan Moulder Mutation">
<characteristicTypes>
<characteristicType id="1877-6aa6-d145-96ba" name="Mutation"/>
</characteristicTypes>
</profileType>
</profileTypes>
<categoryEntries>
<categoryEntry id="49f5-6781-e150-eb5f" name="MASTERCLAN" hidden="false"/>
<categoryEntry id="9389-678f-3e93-2ebd" name="GREY SEER" hidden="false"/>
<categoryEntry id="d461-577b-7fbc-19b7" name="THANQUOL" hidden="false"/>
<categoryEntry id="38f1-f8fd-e4dc-6f60" name="VERMINLORD" hidden="false"/>
<categoryEntry id="c3d0-d29c-5790-1fe9" name="LORD SKREECH VERMINKING" hidden="false"/>
<categoryEntry id="6121-6eca-d0db-8078" name="SCREAMING BELL" hidden="false"/>
<categoryEntry id="5c0b-8cfe-bd01-97fc" name="VERMINLORD WARPSEER" hidden="false"/>
<categoryEntry id="d8c1-7849-6f19-d10e" name="VERMINUS" hidden="false"/>
<categoryEntry id="d698-1950-ee2b-e845" name="VERMINLORD WARBRINGER" hidden="false"/>
<categoryEntry id="6ede-7ca1-630c-9a12" name="WARPGNAW VERMINLORD" hidden="false"/>
<categoryEntry id="774f-ffa8-46bc-3f97" name="PLAGUE PRIEST" hidden="false"/>
<categoryEntry id="bd72-d234-b14d-fe09" name="VERMINLORD DECEIVER" hidden="false"/>
<categoryEntry id="e5bb-31a0-025f-93c9" name="ESHIN" hidden="false"/>
<categoryEntry id="4e44-60d3-9cdb-58af" name="SKAVEN ASSASSIN" hidden="false"/>
<categoryEntry id="2e5c-41c9-d969-0a70" name="NIGHT RUNNERS" hidden="false"/>
<categoryEntry id="8b8e-4f13-7644-939f" name="GUTTER RUNNERS" hidden="false"/>
<categoryEntry id="4081-bd99-2ccc-03bb" name="HELL PIT ABOMINATION" hidden="false"/>
<categoryEntry id="3cf7-5f12-492d-b9dd" name="MOULDER" hidden="false"/>
<categoryEntry id="b486-4e68-a7ab-4637" name="RAT SWARMS" hidden="false"/>
<categoryEntry id="49ea-69a1-0bc9-b799" name="GIANT RATS" hidden="false"/>
<categoryEntry id="0cba-fca2-cafd-6870" name="PACKMASTERS" hidden="false"/>
<categoryEntry id="14ac-0ee9-c90c-e047" name="ARCH-WARLOCK" hidden="false"/>
<categoryEntry id="9319-f73a-ef27-fd21" name="WARLOCK ENGINEER" hidden="false"/>
<categoryEntry id="45e8-87ea-8b28-ba29" name="POISONED WIND MORTAR" hidden="false"/>
<categoryEntry id="9222-a6af-449a-0124" name="DOOM-FLAYER" hidden="false"/>
<categoryEntry id="e156-f3ba-dc8e-69ad" name="RATLING GUN" hidden="false"/>
<categoryEntry id="1832-26ca-a65e-78b5" name="WARPFIRE THROWER" hidden="false"/>
<categoryEntry id="db10-6d6c-3c56-8376" name="WARP-GRINDER" hidden="false"/>
<categoryEntry id="816c-d515-68ef-0726" name="SKRYRE ACOLYTES" hidden="false"/>
<categoryEntry id="a010-4a33-f3c1-ec3a" name="STORMFIENDS" hidden="false"/>
<categoryEntry id="c3f8-b6ef-ad20-d699" name="WARP LIGHTNING CANNON" hidden="false"/>
<categoryEntry id="daf2-1375-17be-1174" name="DOOMWHEEL" hidden="false"/>
<categoryEntry id="48af-dc62-85ea-3635" name="WARPLOCK JEZZAILS" hidden="false"/>
<categoryEntry id="02e6-cdd2-3e46-a156" name="RAT OGORS" hidden="false"/>
<categoryEntry id="9d26-a0db-0406-a32b" name="CLANRATS" hidden="false"/>
<categoryEntry id="2748-c707-2441-d25c" name="STORMVERMIN" hidden="false"/>
<categoryEntry id="f7b0-bab4-7cbd-b460" name="SKAVEN WARLORD" hidden="false"/>
<categoryEntry id="4853-623d-2893-05e1" name="PLAGUE FURNACE" hidden="false"/>
<categoryEntry id="689d-54af-30d7-61d8" name="PLAGUE MONKS" hidden="false"/>
<categoryEntry id="8016-0012-5506-db28" name="PLAGUE CENSER BEARERS" hidden="false"/>
<categoryEntry id="755d-7328-a478-04af" name="PLAGUECLAW" hidden="false"/>
<categoryEntry id="c75e-837d-044e-6b69" name="VERMINLORD CORRUPTOR" hidden="false"/>
<categoryEntry id="3ec6-da32-325e-dd17" name="SKAVEN DEATHRUNNER" hidden="false"/>
<categoryEntry id="0bfd-094f-eae7-68c7" name="BROOD HORROR" hidden="false"/>
<categoryEntry id="875c-1da1-3aec-c146" name="SKAVEN CLAWLORD ON BROOD HORROR" hidden="false"/>
<categoryEntry id="cda2-cb9a-3973-0510" name="SKAVEN WOLF RATS" hidden="false"/>
<categoryEntry id="6512-ac46-397f-d9e7" name="SKRITCH SPITECLAW" hidden="false"/>
<categoryEntry id="93ab-c898-2ccb-3eaa" name="EngineCoven" hidden="false"/>
<categoryEntry id="3e2c-e138-fe91-95ea" name="SKAVEN CHIEFTAIN WITH BATTLE STANDARD" hidden="false"/>
<categoryEntry id="0ffa-61ef-fa8e-6f3d" name="SKAVENSLAVES" hidden="false"/>
<categoryEntry id="5ed5-bfa0-f1f7-8b61" name="SKAVENTIDE" hidden="false"/>
<categoryEntry id="5e5d-af59-6ea5-832c" name="CLANS SKRYRE" hidden="false"/>
<categoryEntry id="07f3-a813-9aea-eff4" name="CLANS MOULDER" hidden="false"/>
<categoryEntry id="15a7-9973-d20d-8127" name="FIGHTING BEAST" hidden="false"/>
<categoryEntry id="1c25-073b-6d5f-cec3" name="CLANS PESTILENS" hidden="false"/>
<categoryEntry id="3058-1b6c-3bc2-746d" name="CLANS VERMINOUS" hidden="false"/>
<categoryEntry id="ab95-95da-239d-dd92" name="DEATHMASTER" hidden="false"/>
<categoryEntry id="9a0b-8f23-d27c-491a" name="CLANS ESHIN" hidden="false"/>
<categoryEntry id="6c31-d5f5-4a7e-638e" name="CLAWLORD" hidden="false"/>
<categoryEntry id="2ac2-2071-3708-8cd0" name="PACK" hidden="false"/>
<categoryEntry id="af93-3eab-d118-5898" name="MASTER MOULDER" hidden="false"/>
<categoryEntry id="6443-6964-73d4-c58a" name="SPITECLAW'S SWARM" hidden="false"/>
<categoryEntry id="790f-4d6d-ec0b-4959" name="WEAPON TEAM" hidden="false"/>
<categoryEntry id="f07c-e899-0dae-720f" name="WARLOCK BOMBARDIER" hidden="false"/>
<categoryEntry id="0250-c05b-ed90-c018" name="BELL OF DOOM" hidden="false"/>
<categoryEntry id="a986-2dd9-5302-538e" name="VERMINTIDE" hidden="false"/>
<categoryEntry id="4440-1420-2dd0-70d1" name="WARP LIGHTNING VORTEX" hidden="false"/>
<categoryEntry id="c198-5254-88be-9298" name="GNAWHOLE" hidden="false"/>
<categoryEntry id="fa82-5fdb-6243-958a" name="STORMFIENDS MOULDER" hidden="false"/>
<categoryEntry id="0dff-2ca0-f235-f2e1" name="STORMFIENDS SKRYRE" hidden="false"/>
<categoryEntry id="b29e-7f2f-e37e-7197" name="Coalition: Skaven Pestilens" hidden="false">
<modifiers>
<modifier type="increment" field="da6b-47f0-4785-2374" value="1.0">
<repeats>
<repeat field="selections" scope="roster" value="4.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="unit" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="da6b-47f0-4785-2374" type="max"/>
</constraints>
</categoryEntry>
</categoryEntries>
<sharedSelectionEntries>
<selectionEntry id="aca2-1d43-0220-2465" name="Skritch Spiteclaw" publicationId="bcc4-c671-pubd1e1" page="118" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="set" field="6106-a3cd-0092-b3c0" value="1">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0c25-586e-f397-9896" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="f307-1ebe-3d3b-6460" type="max"/>
<constraint field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="6106-a3cd-0092-b3c0" type="min"/>
</constraints>
<profiles>
<profile id="7cc6-b61d-d3e7-0d71" name="Skritch Spiteclaw" 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">6</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">4+</characteristic>
</characteristics>
</profile>
<profile id="646d-c9b3-76fd-5b33" name="There are Always More" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">At the start of your hero phase, if this model is within 13" of a friendly SPITECLAW’S SWARM, you can return D3 slain models to that unit (you cannot return Krrk the Almost-trusted). Set up the returning models one at a time within 1" of a model from that unit (this can be a model you returned to the unit earlier in the same phase). Returning models can only be set up within 3" of an enemy unit if one or more models from the same unit are already within 3" of that enemy unit.</characteristic>
</characteristics>
</profile>
<profile id="08a4-b9a9-f626-c593" name="Gnash-gnaw on their Bones" 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 CLANS VERMINUS unit wholly within 13" of a friendly model with this command ability. Add 1 to the Attacks characteristic of melee weapons used by that unit in that phase. You cannot pick the same unit to benefit from this ability more than once per phase.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="7ebf-e714-de39-569d" name="New CategoryLink" hidden="false" targetId="7cdd-80ea-cbeb-8e16" primary="false"/>
<categoryLink id="e655-ed70-2673-6df1" name="New CategoryLink" hidden="false" targetId="8f8a-7c29-799e-ace9" primary="false"/>
<categoryLink id="2a40-c5f7-7820-2dd5" name="New CategoryLink" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="6428-9189-0a8a-25a2" name="New CategoryLink" hidden="false" targetId="6512-ac46-397f-d9e7" primary="false"/>
<categoryLink id="bf18-6f1a-b3ee-d80b" name="CLANS VERMINOUS" hidden="false" targetId="3058-1b6c-3bc2-746d" primary="false"/>
<categoryLink id="ad67-f855-7b70-9749" name="CLAWLORD" hidden="false" targetId="6c31-d5f5-4a7e-638e" primary="false"/>
<categoryLink id="6e80-b9d6-4e4e-0c02" name="SKAVENTIDE" hidden="false" targetId="5ed5-bfa0-f1f7-8b61" primary="false"/>
<categoryLink id="b4e0-55dc-e102-7e77" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="d5ac-c3b3-7b7d-f262" name="10 or less wounds Leader" hidden="false" targetId="a8ed-ca35-24e0-cf2e" primary="false"/>
<categoryLink id="30f6-1731-f53f-01af" name="Unique" hidden="false" targetId="088b-3a27-03f7-8249" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="2614-6624-4d87-ffe0" name="Wicked Halberd" 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="e102-3d29-8609-0261" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="45b4-bf18-4886-c72d" type="max"/>
</constraints>
<profiles>
<profile id="e20a-0f2a-026d-fedf" name="Wicked Halberd" 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">3</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">D3</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="5adc-1239-2c84-96c0" name="General - Clans Verminous" hidden="false" collective="false" import="true" targetId="b60e-1aa4-96da-a83b" type="selectionEntry">
<categoryLinks>
<categoryLink id="99f2-fd09-6329-8941" name="Unique General" hidden="false" targetId="fe3f-d230-7e2c-fba2" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="49a5-33f1-7098-b19a" name="Battalions" hidden="false" collective="false" import="true" targetId="286a-2838-49be-5968" type="selectionEntryGroup"/>
<entryLink id="490c-b234-642f-ec86" name="Incarnate Bonding" hidden="false" collective="false" import="true" targetId="c890-acbd-0c80-55c9" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="120.0"/>
</costs>
</selectionEntry>
<selectionEntry id="c71b-c7bd-77ca-12b9" 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="ancestor" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="8af4-649e-9ee2-22ee" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="5c1d-d0be-e5cf-9fe3" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="88f2-a5fd-1371-927b" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="24d6-500b-7e3f-1470" 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="83b9-f2d9-706f-6e13" type="max"/>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="af8c-4de7-1626-2002" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="706a-afe7-7cfd-326a" 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="0c25-586e-f397-9896" name="Spiteclaw's Swarm" publicationId="bcc4-c671-pubd1e1" page="118" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="set" field="549a-1094-3663-f935" value="1">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="aca2-1d43-0220-2465" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="2b9b-a0b1-2170-12ad" type="max"/>
<constraint field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="549a-1094-3663-f935" type="min"/>
</constraints>
<profiles>
<profile id="cf20-f346-9aa4-ee03" name="Aversion to Death" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">After the first wound or mortal wound is allocated to this unit in any phase, you can roll a dice each time you allocate a further wound or mortal wound to this unit in that phase. On a 5+ that wound or mortal wound is negated.</characteristic>
</characteristics>
</profile>
<profile id="d4f5-bf9a-78e3-0ea0" name="Krrk the Almost-Trusted" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">The leader of this unit is Krrk the Almost-trusted. Do not take battleshock tests for this unit while it includes Krrk the Almost-trusted. In addition, if Skritch Spiteclaw is slain, add 2 to the Attacks characteristic of Krrk’s Rusty Spear for the rest of this battle.</characteristic>
</characteristics>
</profile>
<profile id="8199-e89c-90cd-ddad" name="Spiteclaw's Swarm" 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">1</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">4</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">6+</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="19f4-5921-947f-a8b2" name="New CategoryLink" hidden="false" targetId="7cdd-80ea-cbeb-8e16" primary="false"/>
<categoryLink id="ffe1-4db7-eaa2-d51c" name="CLANS VERMINOUS" hidden="false" targetId="3058-1b6c-3bc2-746d" primary="false"/>
<categoryLink id="e829-c5ed-9354-85d1" name="SKAVEN" hidden="false" targetId="8f8a-7c29-799e-ace9" primary="false"/>
<categoryLink id="6a31-db44-b5fc-8710" name="SKAVENTIDE" hidden="false" targetId="5ed5-bfa0-f1f7-8b61" primary="false"/>
<categoryLink id="e7c4-d515-4bd5-61ca" name="SPITECLAW'S SWARM" hidden="false" targetId="6443-6964-73d4-c58a" primary="false"/>
<categoryLink id="6e97-2f7e-2c54-afdd" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
<categoryLink id="64c5-7afa-25f2-2722" name="Unique" hidden="false" targetId="088b-3a27-03f7-8249" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="8f4c-f136-f703-1c66" name="Krrk the Almost-trusted" 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="6a45-8a2f-a9c3-c1ca" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="eb4b-284a-dc65-2be1" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="1080-b084-af7f-5f39" name="Rusty Spear" 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="82aa-4d8b-bed1-7ad1" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b585-2914-f484-deae" type="max"/>
</constraints>
<profiles>
<profile id="6f55-c0ec-368b-97ba" name="Rusty Spear" 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>
</selectionEntries>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="10d6-6fa0-a9cf-ee17" name="Lurking Skaven" 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="c49c-3964-50a5-c025" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0d65-2d72-bd0c-0862" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="6d8b-87a7-ab87-5e65" name="Punch Daggers" 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="3dd6-0ad3-c27a-aa6e" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fc4e-f29e-21da-8991" type="max"/>
</constraints>
<profiles>
<profile id="4167-1339-4ba1-985a" name="Punch Daggers" 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">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>
</selectionEntries>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="de99-6d84-a736-536c" name="Hungering Skaven" 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="0962-007d-8811-db28" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="272d-4a3b-ffe8-1bbd" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="f896-ade4-7464-a0b0" name="Rusty Flail" 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="73af-33e4-e753-f2b2" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ffa4-534a-7b23-03f9" type="max"/>
</constraints>
<profiles>
<profile id="41cc-f2e1-1ff9-e5e3" name="Rusty Flail" 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">1</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>
</selectionEntries>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="7953-ad3a-7c42-51b7" name="Festering Skaven" 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="f651-d839-2524-3707" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="da88-e661-52f5-af95" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="fa61-b756-1b06-b85d" name="Stabbing Blades" 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="f832-cbad-a241-e603" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e4ad-3034-0334-251c" type="max"/>
</constraints>
<profiles>
<profile id="eb7f-6e81-42d0-66f7" name="Stabbing Blades" 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">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>
</selectionEntries>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="61e6-5c54-632f-c3f4" name="Battalions" hidden="false" collective="false" import="true" targetId="286a-2838-49be-5968" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="f11d-d308-1800-42ca" name="Arch-warlock" publicationId="bcc4-c671-pubd1e1" page="106" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="5c69-5aaa-6aa9-7d10" name="Arch-warlock" 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">6</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">6</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">3+</characteristic>
</characteristics>
</profile>
<profile id="cf94-576e-1d53-bf91" name="Arch-warlock" hidden="false" typeId="f55d-ee3a-1597-110f" typeName="Magic">
<characteristics>
<characteristic name="Cast/Unbind" typeId="8294-f605-2c0f-8f92">2/1</characteristic>
<characteristic name="Spells Known" typeId="dc9c-47d3-6931-859c">Arcane Bolt, Mystic Shield, Warp Lightning Storm</characteristic>
</characteristics>
</profile>
<profile id="bac8-fc1c-75b8-e87b" name="More-more Stormcage!" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Before you make a hit roll for an attack with a Stormcage Halberd, you can say that the engineer has overloaded its generator. If you do so, the Damage characteristic for that attack is D6 instead of D3. However, if you do so and the unmodified hit roll is 1, that attack fails and this model suffers D6 mortal wounds.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="9cde-8a4c-ab1f-b81b" name="New CategoryLink" hidden="false" targetId="7cdd-80ea-cbeb-8e16" primary="false"/>
<categoryLink id="0f4d-56c2-30d2-55b9" name="New CategoryLink" hidden="false" targetId="8f8a-7c29-799e-ace9" primary="false"/>
<categoryLink id="e644-0c69-8568-124b" name="New CategoryLink" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="31ea-88ca-d4ec-a089" name="New CategoryLink" hidden="false" targetId="4f53-8230-2f02-9639" primary="false"/>
<categoryLink id="6185-8e88-7f5f-b287" name="New CategoryLink" hidden="false" targetId="14ac-0ee9-c90c-e047" primary="false"/>
<categoryLink id="989b-0ba1-433c-4635" name="CLANS SKYRE" hidden="false" targetId="5e5d-af59-6ea5-832c" primary="false"/>
<categoryLink id="458b-288d-9439-d6e1" name="SKAVENTIDE" hidden="false" targetId="5ed5-bfa0-f1f7-8b61" primary="false"/>
<categoryLink id="756d-d18b-5dfc-c3e0" name="WARLOCK ENGINEER" hidden="false" targetId="9319-f73a-ef27-fd21" primary="false"/>
<categoryLink id="b5a4-7bae-bd98-bc3e" name="10 or less wounds Leader" hidden="false" targetId="a8ed-ca35-24e0-cf2e" primary="false"/>
<categoryLink id="6a91-9e5d-c51c-f804" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="d577-751f-577a-e7b3" name="Warpfire Gauntlet" 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="a491-4e4f-6717-437e" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f4ff-e3e2-f1c9-e548" type="max"/>
</constraints>
<profiles>
<profile id="9491-9f0e-3c76-c93a" name="Warpfire Gauntlet" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Once per battle, in your shooting phase, you can pick 1 enemy unit within 8" of this model and visible to them, and roll a dice. On a 2+ that unit suffers D3 mortal wounds.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="e237-d22d-13b0-25b5" name="Piston Claw" 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="3bd3-6f73-a951-3ee6" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d27f-a900-1d9e-9ac4" type="max"/>
</constraints>
<profiles>
<profile id="9ce2-288f-a120-f25d" name="Piston Claw" 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">1</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">-2</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">3</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="f066-2199-ba73-3ea6" name="Stormcage Halberd" 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="17dd-4a36-48ae-80aa" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c676-6b5d-bb29-5315" type="max"/>
</constraints>
<profiles>
<profile id="e458-c6f4-1250-0a00" name="Stormcage Halberd" 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">1</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">-2</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">D3</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="e99d-9057-ec6f-410d" name="Warp Lightning Storm" 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="d399-353c-44ff-cfa5" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8d4a-6a3d-ba24-803d" type="max"/>
</constraints>
<profiles>
<profile id="cfec-fb08-b3ad-63b3" name="Warp Lighting Storm" hidden="false" typeId="2e81-5e22-c6e1-73cb" typeName="Spell">
<characteristics>
<characteristic name="Casting Value" typeId="2508-b604-1258-a920">7</characteristic>
<characteristic name="Range" typeId="5b5c-1fd1-4c0f-5705"/>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">If successfully cast, pick up to D3 enemy units within 13" of the caster and visible to them. Those units each suffer D3 mortal wounds. Before making the casting roll, you can say that this model will use its warp-power accumulator to augment the spell. If you do so and the casting attempt is successful and not unbound, the spell inflicts D6 mortal wounds on each of those units instead of D3. However, if you do so and the casting attempt fails or is unbound,this model suffers D3xD6 mortal wounds.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="b389-9236-8682-10fa" name="Arcane Bolt" hidden="false" collective="false" import="true" targetId="869c-168d-eba5-eacf" type="selectionEntry"/>
<entryLink id="482e-5d38-bc75-ae41" name="Mystic Shield" hidden="false" collective="false" import="true" targetId="5fdd-6634-f9f8-068a" type="selectionEntry"/>
<entryLink id="d03a-1232-dfc0-047d" name="General - Clans Skyre" hidden="false" collective="false" import="true" targetId="103a-ea19-f285-ca41" type="selectionEntry"/>
<entryLink id="32e8-74d5-7821-b7b8" name="Artefacts" hidden="false" collective="false" import="true" targetId="01be-261c-a6e1-68d6" type="selectionEntryGroup"/>
<entryLink id="96b3-024a-cc1b-49e3" name="Command Traits" hidden="false" collective="false" import="true" targetId="d469-f2fa-07d9-bd12" type="selectionEntryGroup"/>
<entryLink id="5aac-120f-e32e-2b39" name="Battalions" hidden="false" collective="false" import="true" targetId="286a-2838-49be-5968" type="selectionEntryGroup"/>
<entryLink id="dadc-7d8a-db5c-e26f" name="Spell Lores" hidden="false" collective="false" import="true" targetId="4b53-bbff-8558-f42c" type="selectionEntryGroup"/>
<entryLink id="5c1b-539b-691e-015e" name="Incarnate Bonding" hidden="false" collective="false" import="true" targetId="c890-acbd-0c80-55c9" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="175.0"/>
</costs>
</selectionEntry>
<selectionEntry id="6b0c-69a9-54bf-1ba8" name="Brood Horror [LEGENDS]" publicationId="dd94-71a7-8549-0d65" hidden="true" collective="false" import="true" type="unit">
<profiles>
<profile id="b2d9-9ab3-66ad-7d81" name="Regenerating Monstrosity" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">In your hero phase, you can heal up to D3 wounds allocated to this model.</characteristic>
</characteristics>
</profile>
<profile id="d563-5281-2319-2c5e" name="Brood Horror" publicationId="dd94-71a7-8549-0d65" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">8"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">6</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">6</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">4+</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="6ff0-addb-4a3a-11f2" name="New CategoryLink" hidden="false" targetId="7cdd-80ea-cbeb-8e16" primary="false"/>
<categoryLink id="84aa-3f8e-1d90-8a1c" name="New CategoryLink" hidden="false" targetId="8f8a-7c29-799e-ace9" primary="false"/>
<categoryLink id="b3cc-e3f7-0bd8-f56a" name="New CategoryLink" hidden="false" targetId="0bfd-094f-eae7-68c7" primary="false"/>
<categoryLink id="6cd9-c6c8-b7b2-5a8e" name="CLANS MOULDER" hidden="false" targetId="07f3-a813-9aea-eff4" primary="false"/>
<categoryLink id="ad8e-78d3-00be-8bff" name="FIGHTING BEAST" hidden="false" targetId="15a7-9973-d20d-8127" primary="false"/>
<categoryLink id="ab11-5c6d-2996-3259" name="SKAVENTIDE" hidden="false" targetId="5ed5-bfa0-f1f7-8b61" primary="false"/>
<categoryLink id="b328-9c78-e242-9b07" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="a127-0e61-0a69-d1f4" name="Prehensile 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="98e7-6d7d-bfb4-ecb1" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5733-8d02-346f-47b6" type="min"/>
</constraints>
<profiles>
<profile id="9b4f-3a22-d104-5bee" name="Prehensile 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">3"</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="5b2e-d168-478b-e212" name="Fangs and Claws" 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="33ad-0608-0fe0-7648" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3bea-5fe9-ad02-e56b" type="max"/>
</constraints>
<profiles>
<profile id="84d9-25b2-250f-b5d3" name="Fangs and Claws" 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">6</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">2</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="ade6-0dad-12e9-f9f4" name="Battalions" hidden="false" collective="false" import="true" targetId="286a-2838-49be-5968" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="170.0"/>
</costs>
</selectionEntry>
<selectionEntry id="ff51-5dac-313e-b769" name="Clanrats" publicationId="bcc4-c671-pubd1e1" page="119" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="96b2-337e-5aca-094a" name="Clanrats" 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">1</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">4</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">6+</characteristic>
</characteristics>
</profile>
<profile id="b8c8-ebb3-3066-8b65" name="Clawleader" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">1 model in this unit can be a Clawleader. Add 1 to the Attacks characteristic of that model’s melee weapons.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="8fb6-9fb1-2c0d-91e4" name="New CategoryLink" hidden="false" targetId="7cdd-80ea-cbeb-8e16" primary="false"/>
<categoryLink id="52f8-550b-4fb1-f4ec" name="New CategoryLink" hidden="false" targetId="8f8a-7c29-799e-ace9" primary="false"/>
<categoryLink id="5162-5e2a-7fab-4676" name="New CategoryLink" hidden="false" targetId="9d26-a0db-0406-a32b" primary="false"/>
<categoryLink id="f1cc-5253-eb75-8e58" name="CLANS VERMINOUS" hidden="false" targetId="3058-1b6c-3bc2-746d" primary="false"/>
<categoryLink id="bb15-6ac5-b3bb-b8f2" name="SKAVENTIDE" hidden="false" targetId="5ed5-bfa0-f1f7-8b61" primary="false"/>
<categoryLink id="dac4-8455-2b75-7a23" name="New CategoryLink" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="6748-9377-38f3-2237" name="20 Clanrats" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="name" value="40 Clanrats">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0a8d-cde8-fba1-6c0d" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="name" value="60 Clanrats">
<conditions>
<condition field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0a8d-cde8-fba1-6c0d" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="2b56-7a46-5f0f-1904" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="7be6-b636-738c-63a6" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="130.0"/>
</costs>
</selectionEntry>
<selectionEntry id="0310-abdc-ac78-9bc0" name="Clanshields" 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="5894-3962-21b0-2dd5" type="max"/>
</constraints>
<infoLinks>
<infoLink id="228d-67f1-065f-000d" name="Clanshield" hidden="false" targetId="12f7-d1c7-a2a6-fdb6" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="945b-5613-21f7-e1c9" name="Standard Bearers" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="increment" field="99a2-1354-610b-6862" value="1">
<repeats>
<repeat field="selections" scope="ff51-5dac-313e-b769" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="6748-9377-38f3-2237" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="99a2-1354-610b-6862" type="max"/>
<constraint field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d643-7af0-f1bd-0bfe" type="min"/>
</constraints>
<infoLinks>
<infoLink id="17a9-dde0-c677-90e4" name="Standard Bearer" hidden="false" targetId="cedf-5e55-0b61-504b" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="b51c-c6a6-b1da-821e" name="Bell Ringer" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="increment" field="7afb-6c81-e6f1-f3c6" value="1">
<repeats>
<repeat field="selections" scope="ff51-5dac-313e-b769" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="6748-9377-38f3-2237" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7afb-6c81-e6f1-f3c6" type="max"/>
<constraint field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b146-1c8f-fe7a-d949" type="min"/>
</constraints>
<profiles>
<profile id="8174-2407-75b0-9105" name="Bell Ringer" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">1 in every 20 models in this unit can be a Clanrat Bell-ringer. Add 2 to run rolls for this unit while it includes any Clanrat Bell-ringers.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="7f59-8e95-e71f-7af4" name="Weapon option" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b5b7-33fa-ae9e-87bf" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5151-2a7c-fa38-c115" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="7ab1-310b-d004-0349" name="Rusty Blades" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="8755-2e45-480f-71da" name="Rusty Blade" 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">1</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="6c3a-d4e4-c6b3-8861" name="Rusty Spears" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="e4fe-4b2d-d725-872a" name="Rusty Spear" 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">1</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">5+</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>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="1604-63ec-7045-0ce4" name="Reinforced" hidden="false" collective="false" import="true" targetId="0a8d-cde8-fba1-6c0d" type="selectionEntry">
<modifiers>
<modifier type="set" field="95f2-6885-756f-9ea5" value="2.0"/>
</modifiers>
<costs>
<cost name="pts" typeId="points" value="130.0"/>
</costs>
</entryLink>
<entryLink id="e1dd-9c7d-4bae-bdf3" name="Battalions" hidden="false" collective="false" import="true" targetId="286a-2838-49be-5968" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="b6ac-b9aa-a40c-1320" name="Doom-flayer" publicationId="bcc4-c671-pubd1e1" page="113" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="83d1-5e5e-f939-9f31" name="Doom-flayer" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">2D6"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">3</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">4</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">5+</characteristic>
</characteristics>
</profile>
<profile id="b88b-de39-ca40-0740" name="Whirling Death" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Add 1 to hit rolls for attacks made with this model’s Whirling Blades if this model made a charge move in the same turn</characteristic>
</characteristics>
</profile>
<profile id="b150-75fa-e10d-2596" name="More-more Whirling Death" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Before you determine the Attacks characteristic for this model’s Whirling Blades, you can say that the crew have kicked its generator into overdrive. If you do so, roll 2D6 to determine the Attacks characteristic for that attack instead of D6. However, if you do so and the roll that determines the Attacks characteristic is either a double or a roll of 7, this model is slain after all of the attacks have been resolved.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="bc61-d788-d24d-5f88" name="New CategoryLink" hidden="false" targetId="7cdd-80ea-cbeb-8e16" primary="false"/>
<categoryLink id="d7d2-ca2f-44d1-8534" name="New CategoryLink" hidden="false" targetId="8f8a-7c29-799e-ace9" primary="false"/>
<categoryLink id="77e9-35f0-5dd2-98ea" name="New CategoryLink" hidden="false" targetId="9222-a6af-449a-0124" primary="false"/>
<categoryLink id="73cb-86d1-4c40-74a5" name="CLANS SKYRE" hidden="false" targetId="5e5d-af59-6ea5-832c" primary="false"/>
<categoryLink id="ad10-626c-f878-3946" name="SKAVENTIDE" hidden="false" targetId="5ed5-bfa0-f1f7-8b61" primary="false"/>
<categoryLink id="d81f-4988-b470-e949" name="WEAPON TEAM" hidden="false" targetId="790f-4d6d-ec0b-4959" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="96bd-7b4e-1727-4c12" name="Doom-flayer" 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="07a4-c68f-b347-76fd" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1ccb-6c32-5ff9-8e0d" type="max"/>
</constraints>
<profiles>
<profile id="691d-9024-7f5d-ccaf" name="Whirling Blades" 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">D6</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="f50a-2c4e-4c31-1b45" name="Rusty Knives" 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="0f10-96bd-ae17-369b" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f15d-4676-8b10-bbc4" type="max"/>
</constraints>
<profiles>
<profile id="280f-e050-ac23-29e3" name="Rusty Knives" 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">5+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">5+</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="1c3c-3cf5-536b-f05f" name="Battalions" hidden="false" collective="false" import="true" targetId="286a-2838-49be-5968" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="60.0"/>
</costs>
</selectionEntry>
<selectionEntry id="8a79-1819-7cca-1ff7" name="Doomwheel" publicationId="bcc4-c671-pubd1e1" page="110" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="b943-75c0-d097-5333" name="Doomwheel" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">4D6"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">8</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="2264-a4bd-b17c-340d" name="Rolling Doom" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">When this model makes a normal move, it can pass across models with a Wounds characteristic of 3 or less in the same manner as a model that can fly. In addition, after this model has made a normal move or a charge move, roll a dice for each unit that has any models it passed across, and each other unit that is within 1" of this model at the end of the move. On a 2+ that unit suffers D3 mortal wounds.</characteristic>
</characteristics>
</profile>
<profile id="c899-3f67-7faa-518f" name="More-more Speed" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">When this model makes a normal move, you can re-roll the 4D6 roll that determines its Move characteristic. However, if you do so and the new roll includes any dice with an unmodified roll of 1, then your opponent carries out that normal move for that model instead of you.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="b3cc-e021-9bc2-4f57" name="New CategoryLink" hidden="false" targetId="7cdd-80ea-cbeb-8e16" primary="false"/>
<categoryLink id="5a9e-a152-c582-bca1" name="New CategoryLink" hidden="false" targetId="8f8a-7c29-799e-ace9" primary="false"/>
<categoryLink id="e4ca-c9b9-c04e-785e" name="New CategoryLink" hidden="false" targetId="880e-1e33-b965-71ec" primary="false"/>
<categoryLink id="c4b0-2d55-84cf-d8cb" name="New CategoryLink" hidden="false" targetId="daf2-1375-17be-1174" primary="false"/>
<categoryLink id="5af7-9842-4c07-e780" name="CLANS SKYRE" hidden="false" targetId="5e5d-af59-6ea5-832c" primary="false"/>
<categoryLink id="2c18-a89c-ac05-98fb" name="SKAVENTIDE" hidden="false" targetId="5ed5-bfa0-f1f7-8b61" primary="false"/>
<categoryLink id="eb49-3f1b-8f22-48df" name="New CategoryLink" hidden="false" targetId="fa0c-9044-2568-fa02" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="9290-5097-4a9c-8c40" name="Warp Bolts" 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="3f3b-48b0-1cdd-1aeb" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="94fe-148c-c252-123c" type="max"/>
</constraints>
<profiles>
<profile id="ca3a-4dd0-db7a-1822" name="Warp Bolts" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Missile</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">13"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">D6</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">D3</characteristic>
</characteristics>
</profile>
<profile id="a645-8d4f-b6cd-d5ed" name="More-more Warp Bolts!" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Before you determine the Attacks characteristic for this model’s Warp Bolts attack, you can say that the engineer is overcharging the warp lightning generator. If you do so, the Attacks characteristic for that attack is 2D6 instead of D6. However, if you do so and you roll a double, this model suffers 2D6 mortal wounds after all of the attacks have been resolved.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="be39-5e31-92c3-6b1a" name="Grinding Wheel" 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="627d-d513-07f5-5e5a" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5c11-a3fc-7d80-72ba" type="min"/>
</constraints>
<profiles>
<profile id="0fbc-4f80-2915-8667" name="Grinding Wheel" 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">D6</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="844d-bea9-9ad9-e5a1" name="Teeth and Knives" 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="79fe-2907-5657-bb19" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e573-50d2-e26e-9d31" type="min"/>
</constraints>
<profiles>
<profile id="6264-24d6-d7fb-64a7" name="Teeth and Knives" 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">6</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">5+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">5+</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="1f86-8ea8-4087-2cd0" name="Battalions" hidden="false" collective="false" import="true" targetId="286a-2838-49be-5968" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="165.0"/>
</costs>
</selectionEntry>
<selectionEntry id="2434-ca8e-36d2-4af0" name="Giant Rats" publicationId="bcc4-c671-pubd1e1" page="123" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="set-primary" field="category" value="e9f2-765a-b7b8-ce8e">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="51b7-c778-b260-8e6a" type="equalTo"/>
</conditions>
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="1ebc-adcb-d870-3ea6" type="greaterThan"/>
</conditions>
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="3478-7e3a-da0b-2d36" type="greaterThan"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="49f5-6781-e150-eb5f" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="9a0b-8f23-d27c-491a" type="equalTo"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="5e5d-af59-6ea5-832c" type="equalTo"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="3058-1b6c-3bc2-746d" type="equalTo"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="1c25-073b-6d5f-cec3" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>