-
Notifications
You must be signed in to change notification settings - Fork 82
/
Chaos - Skaven - Data.cat
10406 lines (10360 loc) · 779 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 xmlns="http://www.battlescribe.net/schema/catalogueSchema" id="de06-0235-6a96-193b" name="Chaos - Skaven - Data" revision="102" battleScribeVersion="2.03" authorContact="@BSData" authorUrl="https://github.com/BSData/warhammer-age-of-sigmar" library="true" gameSystemId="e51d-b1a3-75fc-dc33" gameSystemRevision="161" type="catalogue">
<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"/>
<publication id="a327-c3aa-1a2a-7d86" name="Battletome: Skaven 2022"/>
<publication id="6da5-43a5-381b-e2b6" name="Battletome: Skaven Errata July 2022"/>
<publication id="ed42-b4a2-768a-3bba" name="Battletome: Skaven Errata October 2022"/>
<publication id="779d-fe3c-ef8c-e2e2" name="Battletome: Skaven Errata January 2023"/>
</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 VERMINUS" 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">
<repeats>
<repeat field="selections" scope="roster" value="4" 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" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="da6b-47f0-4785-2374" type="max"/>
</constraints>
</categoryEntry>
<categoryEntry id="d463-82b8-2e15-bc10" name="SLYNK SKITTERSHANK" hidden="false"/>
<categoryEntry id="e383-6316-4bfc-b0aa" name="SKITTERSHANK'S CLAWPACK" hidden="false"/>
<categoryEntry id="49c7-82f9-bb26-9c3b" name="Eshin Hero" hidden="false"/>
<categoryEntry id="9e59-60ce-fa88-2648" name="Moulder Hero" hidden="false"/>
<categoryEntry id="7c7b-d978-12c6-b6a0" name="Pestilens Hero" hidden="false"/>
<categoryEntry id="e48f-d0ab-be89-7b30" name="Skryre Hero" hidden="false"/>
<categoryEntry id="c74d-23f5-569f-98e9" name="Skaven Warscroll Battalion" hidden="false"/>
<categoryEntry id="65e3-9a40-4cd9-6c17" name="Skaven Core Battalion" hidden="false"/>
<categoryEntry id="1993-c969-3592-0262" name="Giant Rat Battleline" hidden="false">
<modifiers>
<modifier type="increment" field="7bdc-df46-ff1a-605f" value="1">
<repeats>
<repeat field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9e59-60ce-fa88-2648" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="7bdc-df46-ff1a-605f" type="max"/>
</constraints>
</categoryEntry>
<categoryEntry id="953f-b267-a157-0953" name="Gutter Runner Battleline" hidden="false">
<modifiers>
<modifier type="increment" field="4f6a-221a-dffd-d3d0" value="1">
<repeats>
<repeat field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="49c7-82f9-bb26-9c3b" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="4f6a-221a-dffd-d3d0" type="max"/>
</constraints>
</categoryEntry>
<categoryEntry id="70e4-9735-0ae9-ad82" name="Night Runners Battleline" hidden="false">
<modifiers>
<modifier type="increment" field="9dd8-df46-7ba0-1801" value="1">
<repeats>
<repeat field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="49c7-82f9-bb26-9c3b" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="9dd8-df46-7ba0-1801" type="max"/>
</constraints>
</categoryEntry>
<categoryEntry id="4b19-a36e-3c61-ef7d" name="Plague Censer Bearers Battleline" hidden="false">
<modifiers>
<modifier type="increment" field="f825-bd26-2065-5dc7" value="1">
<repeats>
<repeat field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c7b-d978-12c6-b6a0" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="f825-bd26-2065-5dc7" type="max"/>
</constraints>
</categoryEntry>
<categoryEntry id="1f83-2ca3-68d8-9962" name="Plague Monks Battleline" hidden="false">
<modifiers>
<modifier type="increment" field="30c8-cedc-96ef-fd2b" value="1">
<repeats>
<repeat field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c7b-d978-12c6-b6a0" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="30c8-cedc-96ef-fd2b" type="max"/>
</constraints>
</categoryEntry>
<categoryEntry id="23f2-c4a4-4beb-7ae2" name="Rat Ogors Battleline" hidden="false">
<modifiers>
<modifier type="increment" field="1698-c8ea-041d-2a72" value="1">
<repeats>
<repeat field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9e59-60ce-fa88-2648" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="1698-c8ea-041d-2a72" type="max"/>
</constraints>
</categoryEntry>
<categoryEntry id="79e7-f737-9d9a-4290" name="Skryre Acolyte Battleline" hidden="false">
<modifiers>
<modifier type="increment" field="9938-cd25-3fb8-9951" value="1">
<repeats>
<repeat field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="e48f-d0ab-be89-7b30" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="9938-cd25-3fb8-9951" type="max"/>
</constraints>
</categoryEntry>
<categoryEntry id="3bee-d751-33ab-4501" name="Stormfiends Battleline" hidden="false">
<modifiers>
<modifier type="increment" field="8054-ce54-3a35-d935" value="1">
<repeats>
<repeat field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="e48f-d0ab-be89-7b30" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="8054-ce54-3a35-d935" type="max"/>
</constraints>
</categoryEntry>
<categoryEntry id="c328-1a3d-3932-cad7" name="Eshin General" hidden="false"/>
<categoryEntry id="4b70-7ebc-6b30-d717" name="Moulder General" hidden="false"/>
<categoryEntry id="9324-c010-1669-b828" name="Pestilens General" hidden="false"/>
<categoryEntry id="2b97-1d95-c176-dadf" name="Skryre General" hidden="false"/>
<categoryEntry id="ab7a-183d-21a8-6c60" name="Verminus General" hidden="false"/>
<categoryEntry id="0cf2-ceb7-7978-4254" name="Masterclan General" hidden="false"/>
<categoryEntry name="SKABBIK PLAGUESEEKER" hidden="false" id="e485-a53a-69ad-e45a"/>
<categoryEntry name="SKABBIK'S PLAGUEPACK" hidden="false" id="1348-ba3e-6f0d-25a9"/>
</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" 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" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="f307-1ebe-3d3b-6460" type="max"/>
<constraint field="selections" scope="roster" value="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 unit 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.</characteristic>
</characteristics>
</profile>
<profile id="0b9e-9ba0-f51d-aed1" 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 when you pick a friendly CLANS VERMINUS unit to fight in the combat phase. That unit must receive the command. Add 1 to the Attacks characteristic of that unit's melee weapons in that phase.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="7ebf-e714-de39-569d" name="CHAOS" hidden="false" targetId="7cdd-80ea-cbeb-8e16" primary="false"/>
<categoryLink id="e655-ed70-2673-6df1" name="SKAVEN" hidden="false" targetId="8f8a-7c29-799e-ace9" primary="false"/>
<categoryLink id="2a40-c5f7-7820-2dd5" name="HERO" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="6428-9189-0a8a-25a2" name="SKRITCH SPITECLAW" hidden="false" targetId="6512-ac46-397f-d9e7" primary="false"/>
<categoryLink id="bf18-6f1a-b3ee-d80b" name="CLANS VERMINUS" 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="b4e0-55dc-e102-7e77" name="Leader" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="d5ac-c3b3-7b7d-f262" name="9 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" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e102-3d29-8609-0261" type="min"/>
<constraint field="selections" scope="parent" value="1" 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">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"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="49a5-33f1-7098-b19a" name="Battalions" hidden="false" collective="false" import="true" targetId="286a-2838-49be-5968" type="selectionEntryGroup"/>
<entryLink id="4f42-b2a0-1001-51f4" name="General" hidden="false" collective="false" import="true" targetId="a43e-ee01-c76d-d3a7" type="selectionEntry">
<categoryLinks>
<categoryLink id="94c0-692c-d391-6c20" name="Verminus General" hidden="false" targetId="ab7a-183d-21a8-6c60" primary="false"/>
<categoryLink id="a5ec-7528-1885-9174" name="Unique General" hidden="false" targetId="fe3f-d230-7e2c-fba2" primary="false"/>
</categoryLinks>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="150"/>
</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" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="aca2-1d43-0220-2465" type="greaterThan"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="7f45-c5b3-c698-138d">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9f18-9ffb-0267-3e08" type="greaterThan"/>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9f95-f6dc-e866-90a0" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="2b9b-a0b1-2170-12ad" type="max"/>
<constraint field="selections" scope="roster" value="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, this unit has a ward of 5+ until the end of that phase.</characteristic>
</characteristics>
</profile>
<profile id="d4f5-bf9a-78e3-0ea0" name="Champion" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Krrk the Almost-trusted is the unit champion. Do not take battleshock tests for this unit if 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="CHAOS" hidden="false" targetId="7cdd-80ea-cbeb-8e16" primary="false"/>
<categoryLink id="ffe1-4db7-eaa2-d51c" name="CLANS VERMINUS" 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="e7c4-d515-4bd5-61ca" name="SPITECLAW'S SWARM" hidden="false" targetId="6443-6964-73d4-c58a" primary="false"/>
<categoryLink id="6e97-2f7e-2c54-afdd" name="Other" 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"/>
<categoryLink targetId="7f45-c5b3-c698-138d" id="81e9-edd6-1ad0-a482" primary="false" name="Infantry"/>
</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" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6a45-8a2f-a9c3-c1ca" type="min"/>
<constraint field="selections" scope="parent" value="1" 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" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="82aa-4d8b-bed1-7ad1" type="min"/>
<constraint field="selections" scope="parent" value="1" 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">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</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"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="pts" typeId="points" value="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" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c49c-3964-50a5-c025" type="min"/>
<constraint field="selections" scope="parent" value="1" 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" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3dd6-0ad3-c27a-aa6e" type="min"/>
<constraint field="selections" scope="parent" value="1" 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">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">2</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="pts" typeId="points" value="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" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0962-007d-8811-db28" type="min"/>
<constraint field="selections" scope="parent" value="1" 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" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="73af-33e4-e753-f2b2" type="min"/>
<constraint field="selections" scope="parent" value="1" 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"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="pts" typeId="points" value="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" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f651-d839-2524-3707" type="min"/>
<constraint field="selections" scope="parent" value="1" 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" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f832-cbad-a241-e603" type="min"/>
<constraint field="selections" scope="parent" value="1" 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"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="pts" typeId="points" value="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"/>
</costs>
</selectionEntry>
<selectionEntry id="f11d-d308-1800-42ca" name="Arch-warlock" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="add" field="category" value="89f7-d50b-0aa9-01ce">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9f18-9ffb-0267-3e08" type="greaterThan"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="8f5e-e464-221b-4f06">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9f95-f6dc-e866-90a0" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<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="Wizard" hidden="false" typeId="f55d-ee3a-1597-110f" typeName="Magic">
<characteristics>
<characteristic name="Cast/Unbind" typeId="8294-f605-2c0f-8f92">2/2</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, until the end of that phase, the Attacks characteristic of that weapon is D6 instead of D3. However, for each unmodified hit roll of 1 for an attack made with that weapon in that phase, this unit suffers D3 mortal wounds after all of its attacks have been resolved.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="9cde-8a4c-ab1f-b81b" name="CHAOS" hidden="false" targetId="7cdd-80ea-cbeb-8e16" primary="false"/>
<categoryLink id="0f4d-56c2-30d2-55b9" name="SKAVEN" hidden="false" targetId="8f8a-7c29-799e-ace9" primary="false"/>
<categoryLink id="e644-0c69-8568-124b" name="HERO" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="31ea-88ca-d4ec-a089" name="WIZARD" hidden="false" targetId="4f53-8230-2f02-9639" primary="false"/>
<categoryLink id="6185-8e88-7f5f-b287" name="ARCH-WARLOCK" hidden="false" targetId="14ac-0ee9-c90c-e047" primary="false"/>
<categoryLink id="989b-0ba1-433c-4635" name="CLANS SKRYRE" hidden="false" targetId="5e5d-af59-6ea5-832c" 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="9 or less wounds Leader" hidden="false" targetId="a8ed-ca35-24e0-cf2e" primary="false"/>
<categoryLink id="6a91-9e5d-c51c-f804" name="Leader" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="7435-eaf7-6e2c-8920" name="Skryre Hero" hidden="false" targetId="e48f-d0ab-be89-7b30" primary="false"/>
<categoryLink targetId="94b9-7eb-a81a-b892" id="591-5101-34a8-c931" primary="false" name="Champion"/>
</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" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a491-4e4f-6717-437e" type="min"/>
<constraint field="selections" scope="parent" value="1" 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 9" of this unit and visible to it, 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"/>
</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" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3bd3-6f73-a951-3ee6" type="min"/>
<constraint field="selections" scope="parent" value="1" 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"/>
</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" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="17dd-4a36-48ae-80aa" type="min"/>
<constraint field="selections" scope="parent" value="1" 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">D3</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">2</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="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" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d399-353c-44ff-cfa5" type="min"/>
<constraint field="selections" scope="parent" value="1" 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">13"</characteristic>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">If successfully cast, pick up to D3 different enemy units within range and visible to the caster. Those units suffers D3 mortal wounds.
Alternatively, before making the casting roll, you can say that this unit will use its warp-power accumulator to augment the spell. If you do so, and the spell is successfully cast and not unbound, pick up to D3 different enemy units within range and visible to the caster. Those units each suffer D6 mortal wounds. However, if the spell is not successfully cast or is unbound, this unit suffers 2D6 mortal wounds.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="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="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"/>
<entryLink id="702c-13a5-08ff-6a1b" name="General" hidden="false" collective="false" import="true" targetId="a43e-ee01-c76d-d3a7" type="selectionEntry">
<categoryLinks>
<categoryLink id="5ae2-351c-9822-37f7" name="Skryre General" hidden="false" targetId="2b97-1d95-c176-dadf" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="c3b4-3328-e645-540f" name="Unique Enhancements" hidden="false" collective="false" import="true" targetId="d327-b794-76e4-172d" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="150"/>
</costs>
</selectionEntry>
<selectionEntry id="6b0c-69a9-54bf-1ba8" name="Brood Horror [LEGENDS]" publicationId="dd94-71a7-8549-0d65" hidden="false" 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="CHAOS" hidden="false" targetId="7cdd-80ea-cbeb-8e16" primary="false"/>
<categoryLink id="84aa-3f8e-1d90-8a1c" name="SKAVEN" hidden="false" targetId="8f8a-7c29-799e-ace9" primary="false"/>
<categoryLink id="b3cc-e3f7-0bd8-f56a" name="BROOD HORROR" 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="b328-9c78-e242-9b07" name="Other" 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" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="98e7-6d7d-bfb4-ecb1" type="max"/>
<constraint field="selections" scope="parent" value="1" 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"/>
</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" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="33ad-0608-0fe0-7648" type="min"/>
<constraint field="selections" scope="parent" value="1" 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"/>
</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"/>
</costs>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="roster" childId="f1b8-8df5-9e90-9345" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
</selectionEntry>
<selectionEntry id="ff51-5dac-313e-b769" name="Clanrats" publicationId="bcc4-c671-pubd1e1" page="119" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="add" field="category" value="7ede-19c1-7261-f88b">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="1411-460f-c135-a667" type="greaterThan"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="7f45-c5b3-c698-138d">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9f18-9ffb-0267-3e08" type="greaterThan"/>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9f95-f6dc-e866-90a0" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<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">5+</characteristic>
</characteristics>
</profile>
<profile id="b8c8-ebb3-3066-8b65" name="Champion" 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 weapon.</characteristic>
</characteristics>
</profile>
<profile id="b6f9-7057-a0ae-21c2" name="Seething Swarm" 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 battleshock phase, you can return D3 slain models to this unit.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="8fb6-9fb1-2c0d-91e4" name="CHAOS" hidden="false" targetId="7cdd-80ea-cbeb-8e16" primary="false"/>
<categoryLink id="52f8-550b-4fb1-f4ec" name="SKAVEN" hidden="false" targetId="8f8a-7c29-799e-ace9" primary="false"/>
<categoryLink id="5162-5e2a-7fab-4676" name="CLANRATS" hidden="false" targetId="9d26-a0db-0406-a32b" primary="false"/>
<categoryLink id="f1cc-5253-eb75-8e58" name="CLANS VERMINUS" hidden="false" targetId="3058-1b6c-3bc2-746d" primary="false"/>
<categoryLink id="dac4-8455-2b75-7a23" name="Battleline" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
<categoryLink targetId="7f45-c5b3-c698-138d" id="3a3b-8286-3ce1-9d50" primary="false" name="Infantry"/>
</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" 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" 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" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="2b56-7a46-5f0f-1904" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="7be6-b636-738c-63a6" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="100"/>
</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="2">
<repeats>
<repeat field="selections" scope="ff51-5dac-313e-b769" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="0a8d-cde8-fba1-6c0d" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="2" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="99a2-1354-610b-6862" type="max"/>
<constraint field="selections" scope="parent" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d643-7af0-f1bd-0bfe" type="min"/>
</constraints>
<profiles>
<profile id="758e-ed67-d369-b51b" name="Standard Bearer" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">1 in every 10 models in this unit can be a Clanrat Standard Bearer. This unit can retreat and still charge later in the turn if it includes any Clanrat Standard Bearers.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="b51c-c6a6-b1da-821e" name="Musician" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="increment" field="7afb-6c81-e6f1-f3c6" value="2">
<repeats>
<repeat field="selections" scope="ff51-5dac-313e-b769" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="0a8d-cde8-fba1-6c0d" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="2" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7afb-6c81-e6f1-f3c6" type="max"/>
<constraint field="selections" scope="parent" value="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="Bellringer" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">1 in every 10 models in this unit can be a Clanrat Bellringer. Add 2 to run rolls for this unit if it includes any Clanrat Bellringers.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="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" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b5b7-33fa-ae9e-87bf" type="min"/>
<constraint field="selections" scope="parent" value="1" 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"/>
</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"/>
</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"/>
</modifiers>
<costs>
<cost name="pts" typeId="points" value="100"/>
</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"/>
</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 the Attacks characteristic of Whirling Blades if this unit 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 of 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 roll either a double or a 7, this unit is destroyed after all of its attacks have been resolved.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="ae65-0197-80e1-9125" name="Hidden Weapon Team" hidden="false" targetId="1d56-051c-ee72-ed11" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="bc61-d788-d24d-5f88" name="CHAOS" hidden="false" targetId="7cdd-80ea-cbeb-8e16" primary="false"/>
<categoryLink id="d7d2-ca2f-44d1-8534" name="SKAVEN" hidden="false" targetId="8f8a-7c29-799e-ace9" primary="false"/>
<categoryLink id="77e9-35f0-5dd2-98ea" name="DOOM-FLAYER" hidden="false" targetId="9222-a6af-449a-0124" primary="false"/>
<categoryLink id="73cb-86d1-4c40-74a5" name="CLANS SKRYRE" hidden="false" targetId="5e5d-af59-6ea5-832c" primary="false"/>
<categoryLink id="d81f-4988-b470-e949" name="WEAPON TEAM" hidden="false" targetId="790f-4d6d-ec0b-4959" primary="false"/>
<categoryLink id="cfcc-8985-d36d-7c1a" name="Other" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="96bd-7b4e-1727-4c12" name="Whirling Blades" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="07a4-c68f-b347-76fd" type="min"/>
<constraint field="selections" scope="parent" value="1" 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">-2</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">2</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="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" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0f10-96bd-ae17-369b" type="min"/>
<constraint field="selections" scope="parent" value="1" 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">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"/>
</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"/>
</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>