generated from BSData/TemplateDataRepo
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Skaven - Library.cat
4834 lines (4834 loc) · 353 KB
/
Skaven - Library.cat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<catalogue library="true" id="3cd3-38d3-26cb-7a17" name="Skaven - Library" gameSystemId="e51d-b1a3-75fc-dc3g" gameSystemRevision="2" revision="1" battleScribeVersion="2.03" type="catalogue" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<sharedSelectionEntries>
<selectionEntry type="unit" import="true" name="Stormfiends" hidden="false" id="64f5-f28b-5aa9-4e18" publicationId="ff83-b049-91b9-ed05">
<categoryLinks>
<categoryLink name="SKAVEN" hidden="false" id="fac5-77f5-5d2f-843a" targetId="cce6-9e5a-dd33-a755" primary="false"/>
<categoryLink name="CHAOS" hidden="false" id="1c2-52d7-1b7c-5f0d" targetId="319b-38ee-d10d-e800" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="1f99-5065-38b-5b5e" targetId="75d6-6995-dfcc-3898" primary="true"/>
<categoryLink name="MOULDER" hidden="false" id="be15-56a-b43-7c67" targetId="3244-98f3-bb61-b9d3" primary="false"/>
<categoryLink name="SKRYRE" hidden="false" id="604d-1cda-ae0-b8e" targetId="da36-ed81-79fe-ca75" primary="false"/>
</categoryLinks>
<profiles>
<profile name="Stormfiends" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="8158-584b-f2f6-50ed">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">6"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">6</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">4+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="model" import="true" name="Stormfiend" hidden="false" id="f9a9-20a5-7e89-5906">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="a668-d963-a973-805c"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="f4ab-7ad3-b87e-2f32"/>
</constraints>
<selectionEntryGroups>
<selectionEntryGroup name="Wargear Options" id="1059-529b-1fea-40bc" hidden="false">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Ratling Cannons and Clubbing Blows" hidden="false" id="b314-b825-3cd6-95c6">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Ratling Cannons" hidden="false" id="e0ec-9239-ce1f-505a">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="7474-4f0d-c3a1-cf8"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="99a0-a787-c541-18c0"/>
</constraints>
<profiles>
<profile name="Ratling Cannons" typeId="1fd-a42f-41d3-fe05" typeName="Ranged Weapon" hidden="false" id="a878-eaf7-985-b770">
<characteristics>
<characteristic name="Rng" typeId="c6b5-908c-a604-1a98">15"</characteristic>
<characteristic name="Atk" typeId="aa17-4296-2887-e05d">3D6</characteristic>
<characteristic name="Hit" typeId="194d-aeb6-5ba7-83b4">4+</characteristic>
<characteristic name="Wnd" typeId="d3d5-9dc6-13de-8d1">3+</characteristic>
<characteristic name="Rnd" typeId="d03f-a9ae-3eec-755">1</characteristic>
<characteristic name="Dmg" typeId="96c2-d0a5-ea1e-653b">1</characteristic>
<characteristic name="Ability" typeId="d793-3dd7-9c13-741e">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Clubbing Blows" hidden="false" id="fe5e-d4c0-e1af-6b27">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="55b4-4945-8c11-7215"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="c5ac-f272-a9d8-e4c5"/>
</constraints>
<profiles>
<profile name="Clubbing Blows" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="603b-3b61-d951-7c78">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">3</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">-</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Grinderfists" hidden="false" id="e04f-9aa2-a82c-e3df">
<profiles>
<profile name="Grinderfist Tunnellers" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="365f-f8ed-3a29-ba64">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Your Movement Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick this unit if it is **in the tunnels below** and includes any models armed with **Grinderfists**.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Set up this unit anywhere on the battlefield more than 9" from all enemy units.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Grinderfists" hidden="false" id="9b8e-7563-a54a-5392">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="605e-d9af-7f7d-1a59"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="29f3-7474-aef9-7285"/>
</constraints>
<profiles>
<profile name="Grinderfists" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="42f2-2197-f92a-6b62">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">4</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="7b90-afb0-9184-d2db"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="986c-7284-1c6a-20e8"/>
</constraints>
</selectionEntryGroup>
</selectionEntryGroups>
<modifiers>
<modifier type="increment" value="1" field="a668-d963-a973-805c">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="root-entry" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" value="1" field="f4ab-7ad3-b87e-2f32">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="root-entry" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</selectionEntry>
<selectionEntry type="model" import="true" name="Stormfiend" hidden="false" id="9e5a-5612-fa01-28b2">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="2f5-838f-ee9e-639e"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="ff5a-3cc4-4a23-e30b"/>
</constraints>
<selectionEntryGroups>
<selectionEntryGroup name="Wargear Options" id="4d15-dd3-22ba-1678" hidden="false">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Warpfire Projectors and Clubbing Blows" hidden="false" id="296d-997a-ea3c-343e">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Warpfire Projectors" hidden="false" id="51f1-a437-e597-956">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="cc5a-3366-f410-63fe"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="75fb-c5a-bb6f-76e8"/>
</constraints>
<profiles>
<profile name="Warpfire Projectors" typeId="1fd-a42f-41d3-fe05" typeName="Ranged Weapon" hidden="false" id="5dec-9dec-bdda-6cbe">
<characteristics>
<characteristic name="Rng" typeId="c6b5-908c-a604-1a98">10"</characteristic>
<characteristic name="Atk" typeId="aa17-4296-2887-e05d">2D6</characteristic>
<characteristic name="Hit" typeId="194d-aeb6-5ba7-83b4">2+</characteristic>
<characteristic name="Wnd" typeId="d3d5-9dc6-13de-8d1">4+</characteristic>
<characteristic name="Rnd" typeId="d03f-a9ae-3eec-755">2</characteristic>
<characteristic name="Dmg" typeId="96c2-d0a5-ea1e-653b">1</characteristic>
<characteristic name="Ability" typeId="d793-3dd7-9c13-741e">Shoot in Combat</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Clubbing Blows" hidden="false" id="3919-6bb8-d889-a24c">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="2900-43db-8d8-71eb"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="23a-7ee0-9512-8f89"/>
</constraints>
<profiles>
<profile name="Clubbing Blows" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="c7a8-57b7-ca90-5d13">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">3</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">-</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Windlaunchers and Clubbing Blows" hidden="false" id="5336-6b21-a951-95ab">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Windlaunchers" hidden="false" id="d1be-c4c2-90cc-90e6">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="73b8-911f-ee72-cb06"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="a1ac-9ed8-b25b-7e38"/>
</constraints>
<profiles>
<profile name="Windlaunchers" typeId="1fd-a42f-41d3-fe05" typeName="Ranged Weapon" hidden="false" id="fa82-22f4-6611-6700">
<characteristics>
<characteristic name="Rng" typeId="c6b5-908c-a604-1a98">15"</characteristic>
<characteristic name="Atk" typeId="aa17-4296-2887-e05d">3</characteristic>
<characteristic name="Hit" typeId="194d-aeb6-5ba7-83b4">4+</characteristic>
<characteristic name="Wnd" typeId="d3d5-9dc6-13de-8d1">3+</characteristic>
<characteristic name="Rnd" typeId="d03f-a9ae-3eec-755">2</characteristic>
<characteristic name="Dmg" typeId="96c2-d0a5-ea1e-653b">D3</characteristic>
<characteristic name="Ability" typeId="d793-3dd7-9c13-741e">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Clubbing Blows" hidden="false" id="9f31-7b84-3b8f-923c">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="6370-f29c-422-3ce2"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="6386-221c-5975-ef06"/>
</constraints>
<profiles>
<profile name="Clubbing Blows" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="f671-3b62-df3a-314e">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">3</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">-</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="2137-3c4a-ef77-7211"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="7bfa-8c4a-3cb1-e7d2"/>
</constraints>
</selectionEntryGroup>
</selectionEntryGroups>
<modifiers>
<modifier type="increment" value="1" field="2f5-838f-ee9e-639e">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="root-entry" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" value="1" field="ff5a-3cc4-4a23-e30b">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="root-entry" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</selectionEntry>
<selectionEntry type="model" import="true" name="Stormfiend" hidden="false" id="30a8-11c9-fa14-7583">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="f54e-a122-f077-3f98"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="5ad9-6f86-6994-e8a4"/>
</constraints>
<selectionEntryGroups>
<selectionEntryGroup name="Wargear Options" id="8682-4c22-11e5-8ea0" hidden="false">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Doomflayer Gauntlets" hidden="false" id="469c-f3ed-bfbb-bd09">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Doomflayer Gauntlets" hidden="false" id="d4b8-2350-5d70-696f">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="7899-7dc7-280e-1449"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="748-38db-d3c9-2267"/>
</constraints>
<profiles>
<profile name="Doomflayer Gauntlets" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="20b7-6c95-8bac-6f12">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">5</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">D3</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Charge (+1 Damage)</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Shock Gauntlets" hidden="false" id="157c-ce72-4c3f-3177">
<profiles>
<profile name="Shock Gauntlets" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="e3a0-6b39-3a94-505c">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Each time an attack made with this unit’s **Shock Gauntlets** scores a critical hit, that attack scores D6 hits on the target unit instead of 1. Make a wound roll for each hit.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Shock Gauntlets" hidden="false" id="692e-b766-5989-80f9">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="8939-8eb5-8494-3cc1"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="4942-5ff4-3abe-914e"/>
</constraints>
<profiles>
<profile name="Shock Gauntlets" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="ee41-2fac-f7c0-34f5">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">4</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="bc2b-a192-9602-bb56"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="343d-2436-d338-fa74"/>
</constraints>
</selectionEntryGroup>
</selectionEntryGroups>
<modifiers>
<modifier type="increment" value="1" field="f54e-a122-f077-3f98">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="root-entry" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" value="1" field="5ad9-6f86-6994-e8a4">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="root-entry" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Thanquol on Boneripper" hidden="false" id="63ad-17ef-38e1-210a" publicationId="ff83-b049-91b9-ed05">
<categoryLinks>
<categoryLink name="UNIQUE" hidden="false" id="d9bf-b31b-39fe-e4c6" targetId="72ce-2188-70bf-2dbd" primary="false"/>
<categoryLink name="HERO" hidden="false" id="589f-77bb-3cd1-3ccc" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="MONSTER" hidden="false" id="cda1-4b5b-fda0-c551" targetId="6d54-625c-d063-13e2" primary="false"/>
<categoryLink name="WARMASTER" hidden="false" id="6143-5463-d52d-2de1" targetId="c203-51a0-3d44-6b07" primary="false"/>
<categoryLink name="SKAVEN" hidden="false" id="cdec-9710-788c-e83" targetId="cce6-9e5a-dd33-a755" primary="false"/>
<categoryLink name="MASTERCLAN" hidden="false" id="8ea2-5d64-7e70-ee75" targetId="7974-c5a2-e00a-f98f" primary="false"/>
<categoryLink name="WIZARD (2)" hidden="false" id="ed54-cd07-58fb-942e" targetId="8179-697a-9f4c-91d4" primary="false"/>
<categoryLink name="WARD (5+)" hidden="false" id="dbc7-b547-57e2-3815" targetId="52cc-95fd-6cd3-8f72" primary="false"/>
<categoryLink name="CHAOS" hidden="false" id="d3a2-49be-f711-be44" targetId="319b-38ee-d10d-e800" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="197f-fda9-ce55-7655" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Thanquol on Boneripper" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="3227-4262-9ac7-4031">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">8"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">14</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">4+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">5</characteristic>
</characteristics>
</profile>
<profile name="Battle Damaged" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="a63c-84de-6e8c-fc5a">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">While this unit has 10 or more damage points, the Attacks characteristic of its **Warpfire Braziers** is 4.</characteristic>
</characteristics>
</profile>
<profile name="Staff of the Horned Rat" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="8ac-7f06-6c75-ff32">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Add 1 to casting rolls for this unit.</characteristic>
</characteristics>
</profile>
<profile name="Warp-amulet" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="92c9-3f5b-20b-799f">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">End of Any Turn</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">**Heal (D3)** this unit.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
<profile name="Boneripper Rampage" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="3931-3b61-7774-faf8">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), Any Combat Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick an enemy unit in combat with this unit to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a dice. On a 3-5, inflict D3 mortal damage on the target. On a 6, inflict 2D3 mortal damage on the target.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f">**^^Rampage^^**</characteristic>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
<profile name="Terrible Madness" typeId="7312-8367-c171-f2ef" typeName="Ability (Spell)" hidden="false" id="9be5-4bff-d155-d2b3">
<characteristics>
<characteristic name="Timing" typeId="de6f-d57b-248a-83be">Your Hero Phase</characteristic>
<characteristic name="Casting Value" typeId="9fc7-b0f6-d018-a608">7</characteristic>
<characteristic name="Declare" typeId="24f8-3803-4ab1-3b6c">Pick a visible enemy unit within 13" of this unit to be the target, then make a casting roll of 2D6.</characteristic>
<characteristic name="Effect" typeId="1cb9-a-1345-907f">The target cannot use commands until the start of your next turn. In addition, roll a number of dice equal to the number of models in the target unit. For each 6, inflict 1 mortal damage on the target.</characteristic>
<characteristic name="Keywords" typeId="353f-565e-c351-1cf2">**^^Spell^^**</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="e2f2-17d1-49b7-a947" includeChildSelections="true"/>
</constraints>
<selectionEntries>
<selectionEntry type="model" import="true" name="Thanquol on Boneripper" hidden="false" id="f269-5b69-e16f-da3e">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Warpfire Braziers" hidden="false" id="c204-c82c-7b2f-7255">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="18c-2fe-5716-5b6b"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="e10-17bf-683b-3c8a"/>
</constraints>
<profiles>
<profile name="Warpfire Braziers" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="1777-6e34-2070-88dd">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">6</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">3</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Companion</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Staff of the Horned Rat" hidden="false" id="ce18-2a73-eae6-242d">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="8743-ccda-4a7e-1f88"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="f7c8-c82e-de69-42dc"/>
</constraints>
<profiles>
<profile name="Staff of the Horned Rat" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="43a2-cc25-bb22-4a73">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">4</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">4+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">D3</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Custom Warpfire Projectors" hidden="false" id="fcc5-cdd7-4613-ac44">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="69d2-3601-1c17-48f5"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="b9fe-ae56-69c1-7ff6"/>
</constraints>
<profiles>
<profile name="Custom Warpfire Projectors" typeId="1fd-a42f-41d3-fe05" typeName="Ranged Weapon" hidden="false" id="ad11-7d34-c364-f9ee">
<characteristics>
<characteristic name="Rng" typeId="c6b5-908c-a604-1a98">10"</characteristic>
<characteristic name="Atk" typeId="aa17-4296-2887-e05d">6</characteristic>
<characteristic name="Hit" typeId="194d-aeb6-5ba7-83b4">2+</characteristic>
<characteristic name="Wnd" typeId="d3d5-9dc6-13de-8d1">3+</characteristic>
<characteristic name="Rnd" typeId="d03f-a9ae-3eec-755">2</characteristic>
<characteristic name="Dmg" typeId="96c2-d0a5-ea1e-653b">1</characteristic>
<characteristic name="Ability" typeId="d793-3dd7-9c13-741e">Companion</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="a773-a9bc-7347-8ce6"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="75f1-9895-e75d-8051"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Lord Skreech Veminking" hidden="false" id="873-d49d-6d01-4397" publicationId="ff83-b049-91b9-ed05">
<categoryLinks>
<categoryLink name="UNIQUE" hidden="false" id="de24-54cb-56d8-4291" targetId="72ce-2188-70bf-2dbd" primary="false"/>
<categoryLink name="HERO" hidden="false" id="8e4-e95-2c1c-4e45" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="MONSTER" hidden="false" id="53e8-f682-cd7e-2907" targetId="6d54-625c-d063-13e2" primary="false"/>
<categoryLink name="WARMASTER" hidden="false" id="f3d1-8bf8-719-d64e" targetId="c203-51a0-3d44-6b07" primary="false"/>
<categoryLink name="SKAVEN" hidden="false" id="e63-a8d8-567-4b5b" targetId="cce6-9e5a-dd33-a755" primary="false"/>
<categoryLink name="MASTERCLAN" hidden="false" id="2bf8-3d4c-dc77-77db" targetId="7974-c5a2-e00a-f98f" primary="false"/>
<categoryLink name="WARD (5+)" hidden="false" id="4674-582e-41b9-ceb9" targetId="52cc-95fd-6cd3-8f72" primary="false"/>
<categoryLink name="CHAOS" hidden="false" id="379b-8baa-4bde-c4cb" targetId="319b-38ee-d10d-e800" primary="false"/>
<categoryLink name="WIZARD (1)" hidden="false" id="2a31-77bc-7829-d88a" targetId="6f28-c3f6-4b1b-8aff" primary="false"/>
<categoryLink name="DAEMON" hidden="false" id="741f-9166-8f7e-afd7" targetId="dc0b-e417-51f4-10f0" primary="false"/>
<categoryLink name="VERMINUS" hidden="false" id="8d64-d275-a0e0-3c1" targetId="e0fb-7194-508-f33b" primary="false"/>
<categoryLink name="PESTILENS" hidden="false" id="be20-cfc6-a27-7afe" targetId="e9fa-30a7-a728-b45e" primary="false"/>
<categoryLink name="ESHIN" hidden="false" id="bb7e-3055-1271-e83b" targetId="a2e1-6655-23f6-6533" primary="false"/>
<categoryLink name="SKRYRE" hidden="false" id="78b6-3fc2-52b3-2cc9" targetId="da36-ed81-79fe-ca75" primary="false"/>
<categoryLink name="MOULDER" hidden="false" id="c6be-3ead-3250-7b72" targetId="3244-98f3-bb61-b9d3" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="2208-d7c9-c3d5-1802" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Lord Skreech Veminking" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="1811-6e2b-f5bc-1b07">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">10"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">13</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">4+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">5</characteristic>
</characteristics>
</profile>
<profile name="The Thirteen-headed One" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="23fe-c70f-26bd-e15a">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Your Hero Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Pick 1 of the following effects to apply until the start of your next turn. You cannot pick the same effect more than once per battle.
***Master of Dire Sorcery:*** Add 1 to casting rolls for friendly **^^Masterclan Wizards^^** while they are wholly within 13" of this unit.
***Commander of Vermin:*** Add 1 to charge rolls for friendly **^^Verminus^^** units while they are wholly within 13" of this unit.
***Knower of Warp-tech:*** Add 1 to hit rolls for shooting attacks made by friendly **^^Skryre^^** units while they are wholly within 13" of this unit.
***Deliverer of Weeping Blades:*** Add 1 to the Rend characteristic of melee weapons used by friendly **^^Eshin^^** units while they are wholly within 13" of this unit.
***Bringer of Plagues:*** Add 1 to chanting rolls for friendly **^^Pestilens Priests^^** while they are wholly within 13" of this unit.
***Shaper of Fleshcraft:*** **Heal (D3)** each friendly **^^Moulder^^** unit wholly within 13" of this unit.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
<profile name="Terrifying Monstrosity" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="1b6c-33a1-b48c-a34">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), Any Combat Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick an enemy **^^Infantry^^** unit in combat with this unit to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a dice. On a 3+:
• The target cannot use commands for the rest of the turn.
• Subtract an amount equal to the roll from the target’s control score until the start of your next turn.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f">**^^Rampage^^**</characteristic>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
<profile name="The Dreaded Thirteenth Spell" typeId="7312-8367-c171-f2ef" typeName="Ability (Spell)" hidden="false" id="f0ad-470-69a7-cf14">
<characteristics>
<characteristic name="Timing" typeId="de6f-d57b-248a-83be">Your Hero Phase</characteristic>
<characteristic name="Casting Value" typeId="9fc7-b0f6-d018-a608">7</characteristic>
<characteristic name="Declare" typeId="24f8-3803-4ab1-3b6c">Pick a visible enemy unit within 13" to be the target, then make a casting roll of 2D6.</characteristic>
<characteristic name="Effect" typeId="1cb9-a-1345-907f">Roll 13 dice. For each 5+:
• Inflict 1 mortal damage on the target.
• You can return 1 slain model to a friendly **Clanrats** unit wholly within 13" of this unit.</characteristic>
<characteristic name="Keywords" typeId="353f-565e-c351-1cf2">**^^Spell^^**</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="a730-eefd-d1af-19cd" includeChildSelections="true"/>
</constraints>
<selectionEntries>
<selectionEntry type="model" import="true" name="Lord Skreech Veminking" hidden="false" id="8705-edf4-3a82-ec58">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Glaive of the Rat King" hidden="false" id="b4d9-fa2-9cb2-be0">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="4bfa-cb1b-ace5-58e"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="6dcc-2b00-8966-5737"/>
</constraints>
<profiles>
<profile name="Glaive of the Rat King" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="999c-c407-a670-5963">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">7</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">3</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Crit (2 Hits)</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="57c1-da1b-192-2772"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="5892-4cd5-545d-7e43"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Verminlord Deceiver" hidden="false" id="de4e-185a-4671-283d" publicationId="ff83-b049-91b9-ed05">
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="4ba0-c13c-a6eb-8bf" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="MONSTER" hidden="false" id="849f-a18c-3904-5159" targetId="6d54-625c-d063-13e2" primary="false"/>
<categoryLink name="SKAVEN" hidden="false" id="4d1a-4b93-843e-5855" targetId="cce6-9e5a-dd33-a755" primary="false"/>
<categoryLink name="WARD (5+)" hidden="false" id="5d0e-74f7-f8a4-cfea" targetId="52cc-95fd-6cd3-8f72" primary="false"/>
<categoryLink name="CHAOS" hidden="false" id="3603-131b-ab44-4447" targetId="319b-38ee-d10d-e800" primary="false"/>
<categoryLink name="WIZARD (1)" hidden="false" id="ca06-42c8-72b3-913d" targetId="6f28-c3f6-4b1b-8aff" primary="false"/>
<categoryLink name="DAEMON" hidden="false" id="9ec5-2585-a89-8fc6" targetId="dc0b-e417-51f4-10f0" primary="false"/>
<categoryLink name="ESHIN" hidden="false" id="bd27-c1ea-3744-8795" targetId="a2e1-6655-23f6-6533" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="ac29-ad73-8356-b92" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Verminlord Deceiver" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="e9e2-3dd0-1f1-f699">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">10"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">13</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">4+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">5</characteristic>
</characteristics>
</profile>
<profile name="Lord of Assassins" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="62ff-c41a-bd1-65b7">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Reaction: You declared the ‘Redeploy’ command for a friendly **^^Eshin Infantry^^** unit wholly within 13" of this unit</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">If you roll a 1-3 when determining the distance that unit can move, you can use a value of 4 instead.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
<profile name="Burst From the Shadows" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="2576-5d86-146d-89f5">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), Any Combat Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">If this unit is in combat, roll a dice. On a 4+, you can pick a point on the battlefield within 13" of this unit and within 1" of any enemy units. Remove this unit from the battlefield and set it up again within 1" of that point.
**Designer’s Note:** *This ability allows the unit to set up in combat with a new enemy unit.*</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f">**^^Rampage^^**</characteristic>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="model" import="true" name="Verminlord Deceiver" hidden="false" id="c9a1-9187-4c15-177f">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Doomstar" hidden="false" id="80ba-428d-3f7a-e72b">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="5c2f-c8bd-a33c-f9a1"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="bebb-50e1-5712-c3a8"/>
</constraints>
<profiles>
<profile name="Doomstar" typeId="1fd-a42f-41d3-fe05" typeName="Ranged Weapon" hidden="false" id="19cf-2c82-af3e-3e5a">
<characteristics>
<characteristic name="Rng" typeId="c6b5-908c-a604-1a98">13"</characteristic>
<characteristic name="Atk" typeId="aa17-4296-2887-e05d">6</characteristic>
<characteristic name="Hit" typeId="194d-aeb6-5ba7-83b4">3+</characteristic>
<characteristic name="Wnd" typeId="d3d5-9dc6-13de-8d1">2+</characteristic>
<characteristic name="Rnd" typeId="d03f-a9ae-3eec-755">1</characteristic>
<characteristic name="Dmg" typeId="96c2-d0a5-ea1e-653b">2</characteristic>
<characteristic name="Ability" typeId="d793-3dd7-9c13-741e">Crit (Auto-wound)</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Warpstiletto" hidden="false" id="cf1e-4e0d-172e-8ced">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="e0be-50cd-6d3c-5f8d"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="80c4-b961-ebe3-b42"/>
</constraints>
<profiles>
<profile name="Warpstiletto" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="2c4d-ae64-fc0d-add4">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">8</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">3</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Crit (Mortal)</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="a95d-c447-b319-c103"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="d551-feb-5b1-abba"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Grey Seer on Screaming Bell" hidden="false" id="dc6a-710a-58a4-3c7b" publicationId="ff83-b049-91b9-ed05">
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="8317-a225-e31d-57e1" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="SKAVEN" hidden="false" id="6452-4c3f-b459-44f2" targetId="cce6-9e5a-dd33-a755" primary="false"/>
<categoryLink name="CHAOS" hidden="false" id="8f16-695-97b5-c9ed" targetId="319b-38ee-d10d-e800" primary="false"/>
<categoryLink name="WARD (5+)" hidden="false" id="ce9a-6482-4aa7-9c3c" targetId="52cc-95fd-6cd3-8f72" primary="false"/>
<categoryLink name="WAR MACHINE" hidden="false" id="25ba-47ef-64b4-1a24" targetId="f7bc-b618-4b5d-2bae" primary="false"/>
<categoryLink name="MASTERCLAN" hidden="false" id="f0d7-c966-4184-b7ce" targetId="7974-c5a2-e00a-f98f" primary="false"/>
<categoryLink name="WIZARD (2)" hidden="false" id="e4e3-6faa-106d-6f5c" targetId="8179-697a-9f4c-91d4" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="b136-74ef-32d3-16c8" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Grey Seer on Screaming Bell" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="4b81-ce30-43c6-747a">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">6"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">15</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">4+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">5</characteristic>
</characteristics>
</profile>
<profile name="Battle Damaged" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="ff7a-8be5-39ec-80ec">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">While this unit has 10 or more damage points, the Attacks characteristic of its **Crushing Bulk** is 4.</characteristic>
</characteristics>
</profile>
<profile name="Altar of the Horned Rat" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="c288-6154-dbc5-d378">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Friendly **^^Skaven Infantry^^** units have **^^Ward (6+)^^** while they are wholly within 6" of this unit.</characteristic>
</characteristics>
</profile>
<profile name="Peal of Doom" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="2a6e-6eaa-7e74-d3a8">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Your Hero Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a dice and apply the corresponding effect:
**1 *Magical Backlash:*** Inflict D3 mortal damage on this unit.
**2-4 *Wall of Unholy Sound:*** Until the start of your next turn, subtract 1 from hit rolls for combat attacks made by enemy units while they are within 13" of this unit.
**5-6 *Apocalyptic Doom:*** Roll a D3 for each enemy unit within 13" of this unit. On a 2+, inflict an amount of mortal damage on that unit equal to the roll.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
<profile name="Crack's Call" typeId="7312-8367-c171-f2ef" typeName="Ability (Spell)" hidden="false" id="13a0-e954-fa3b-60b1">
<characteristics>
<characteristic name="Timing" typeId="de6f-d57b-248a-83be">Your Hero Phase</characteristic>
<characteristic name="Casting Value" typeId="9fc7-b0f6-d018-a608">6</characteristic>
<characteristic name="Declare" typeId="24f8-3803-4ab1-3b6c">Pick a visible enemy unit that does not have **^^Fly^^** and is within 13" of this unit to be the target, then make a casting roll of 2D6.</characteristic>
<characteristic name="Effect" typeId="1cb9-a-1345-907f">If the casting roll exceeds the target’s **^^Move^^** characteristic, inflict an amount of mortal damage on the target equal to the difference between the casting roll and its **^^Move^^** characteristic.</characteristic>
<characteristic name="Keywords" typeId="353f-565e-c351-1cf2">**^^Spell^^**</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="model" import="true" name="Grey Seer on Screaming Bell" hidden="false" id="85a6-45da-26a-210d">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Rat Ogor’s Tearing Claws" hidden="false" id="8094-80b3-3aec-4224">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="6bdd-2717-8056-578"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="2d59-1339-64e9-5910"/>
</constraints>
<profiles>
<profile name="Rat Ogor’s Tearing Claws" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="2d45-924b-37ac-f888">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">5</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Companion</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Crushing Bulk" hidden="false" id="f3c4-6ddf-3ccd-e1c2">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="c101-197b-3117-b80a"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="d49b-65f2-4e63-b025"/>
</constraints>
<profiles>
<profile name="Crushing Bulk" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="20d4-4fda-9815-2c9b">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">6</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Companion</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Warpstone Staff" hidden="false" id="3df0-35e2-dbb2-12bc">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="28f8-74c2-29a4-b49"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="311e-d6cf-dd18-3d01"/>
</constraints>
<profiles>
<profile name="Warpstone Staff" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="1f6a-9bfb-754c-bd07">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">3</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">4+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">D3</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="17b4-65b0-f9b4-2e0e"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="5cef-b56-a906-4c6f"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Verminlord Warbringer" hidden="false" id="6848-b440-5959-a43" publicationId="ff83-b049-91b9-ed05">
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="c964-fcdd-21d8-e218" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="MONSTER" hidden="false" id="1e34-d72d-55f2-ce29" targetId="6d54-625c-d063-13e2" primary="false"/>
<categoryLink name="SKAVEN" hidden="false" id="3de1-2a61-74b9-c548" targetId="cce6-9e5a-dd33-a755" primary="false"/>
<categoryLink name="WARD (5+)" hidden="false" id="7042-4fd3-8ce0-50b8" targetId="52cc-95fd-6cd3-8f72" primary="false"/>
<categoryLink name="CHAOS" hidden="false" id="e82b-be19-5c39-9397" targetId="319b-38ee-d10d-e800" primary="false"/>
<categoryLink name="WIZARD (1)" hidden="false" id="2913-fa56-c771-c30" targetId="6f28-c3f6-4b1b-8aff" primary="false"/>
<categoryLink name="DAEMON" hidden="false" id="775f-37dc-397d-ad06" targetId="dc0b-e417-51f4-10f0" primary="false"/>
<categoryLink name="VERMINUS" hidden="false" id="4fc4-cf83-cb11-4f90" targetId="e0fb-7194-508-f33b" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="7d1b-f12a-2eaf-fbd2" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Verminlord Warbringer" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="c681-7b64-4138-6823">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">10"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">13</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">4+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">5</characteristic>
</characteristics>
</profile>
<profile name="Tyrant of Battle" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="49ba-f669-bd46-9894">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), Any Combat Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick up to 2 friendly **^^Verminus Infantry^^** units wholly within 13" of this unit to be the targets.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">The targets can each use the ‘All-out Attack’ or ‘All-out Defence’ command this phase even if that command has been used by a friendly unit this phase.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
<profile name="Killing Blow" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="bb8-73f2-4bb4-5e1d">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), End of Any Turn</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick a damaged enemy unit in combat with this unit to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a dice. If the roll is less than the number of damage points the target has, inflict an amount of mortal damage on the target equal to the roll.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f">**^^Rampage^^**</characteristic>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="model" import="true" name="Verminlord Warbringer" hidden="false" id="83f6-3210-a3d6-b7d9">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Doom Glaive and Spike-fist" hidden="false" id="5574-8aaa-26ce-40aa">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="d0ad-d801-9d23-ec48"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="26c7-bae2-476d-e3b8"/>
</constraints>
<profiles>
<profile name="Doom Glaive and Spike-fist" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="62d6-6bc4-ab97-b33f">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">7</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">3</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Crit (Mortal)</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="3b02-8c2f-1319-56fe"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="eadc-c733-765-865"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Verminlord Warpseer" hidden="false" id="8dad-1c7-e47c-b608" publicationId="ff83-b049-91b9-ed05">
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="a14b-4138-afcf-94ab" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="MONSTER" hidden="false" id="de9f-a2bd-d723-ee1" targetId="6d54-625c-d063-13e2" primary="false"/>
<categoryLink name="SKAVEN" hidden="false" id="9006-63af-edcf-7aae" targetId="cce6-9e5a-dd33-a755" primary="false"/>
<categoryLink name="WARD (5+)" hidden="false" id="c293-7620-5f8d-b8ba" targetId="52cc-95fd-6cd3-8f72" primary="false"/>
<categoryLink name="CHAOS" hidden="false" id="731a-af3d-7165-7f8e" targetId="319b-38ee-d10d-e800" primary="false"/>
<categoryLink name="DAEMON" hidden="false" id="a168-1325-a118-1d72" targetId="dc0b-e417-51f4-10f0" primary="false"/>
<categoryLink name="MASTERCLAN" hidden="false" id="63d1-8016-fbfa-4ac0" targetId="7974-c5a2-e00a-f98f" primary="false"/>
<categoryLink name="WIZARD (2)" hidden="false" id="0cc4-ef85-8f0e-c831" targetId="8179-697a-9f4c-91d4" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="d004-c6b8-10ff-6e04" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Verminlord Warpseer" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="8121-e9b9-7a26-c16a">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">10"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">13</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">4+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">5</characteristic>
</characteristics>
</profile>
<profile name="Divine the Future" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="4f03-25df-1515-f18">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">While this unit is on the battlefield, add 2" to the distance friendly units can move when using the ‘Always Three Clawsteps Ahead’ ability.</characteristic>
</characteristics>
</profile>
<profile name="Arch-Manipulator" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="d9f9-c8e3-e715-bab7">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), Any Combat Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick an enemy unit in combat with this unit to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a dice. On a 4+, the target has **^^Strike-last^^** for the rest of the turn.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f">**^^Rampage^^**</characteristic>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
<profile name="Hurl Scry-orb" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="4848-6c22-2129-1d6c">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Battle, Any Combat Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick an enemy unit in combat with this unit to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">This unit cannot use the ‘Divine the Future’ ability for the rest of the battle. Roll a dice. On a 2+, inflict an amount of mortal damage on the target equal to the roll.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
<profile name="Tectonic Splintering" typeId="7312-8367-c171-f2ef" typeName="Ability (Spell)" hidden="false" id="3725-6880-8e1b-9faf">
<characteristics>
<characteristic name="Timing" typeId="de6f-d57b-248a-83be">Your Hero Phase</characteristic>
<characteristic name="Casting Value" typeId="9fc7-b0f6-d018-a608">7</characteristic>
<characteristic name="Declare" typeId="24f8-3803-4ab1-3b6c">Pick a visible enemy unit within 18" to be the target, then make a casting roll of 2D6.</characteristic>
<characteristic name="Effect" typeId="1cb9-a-1345-907f">Until the start of your next turn, subtract 1 from the number of dice rolled when making charge rolls for the target, to a minimum of 1.</characteristic>
<characteristic name="Keywords" typeId="353f-565e-c351-1cf2">**^^Spell^^**</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="model" import="true" name="Verminlord Warpseer" hidden="false" id="f4c-bcc1-9409-e6b2">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Doom Glaive" hidden="false" id="d244-b12-fddd-ca68">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="835a-cf1e-f6e3-c1dd"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="db4f-a26d-3e8e-3655"/>
</constraints>
<profiles>
<profile name="Doom Glaive" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="a1c8-bacf-ca50-c967">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">6</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">3</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="1857-daeb-665c-a608"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="3916-5ed6-20e2-17b2"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Clawlord" hidden="false" id="966e-f5f4-99e0-58cf" publicationId="ff83-b049-91b9-ed05">
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="9854-1615-e3f-668c" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="SKAVEN" hidden="false" id="80e7-5a51-bcd6-6e1e" targetId="cce6-9e5a-dd33-a755" primary="false"/>
<categoryLink name="CHAOS" hidden="false" id="f31a-a117-e1e6-47db" targetId="319b-38ee-d10d-e800" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="f829-259-c06a-55d9" targetId="75d6-6995-dfcc-3898" primary="false"/>
<categoryLink name="VERMINUS" hidden="false" id="993d-ef40-596-389c" targetId="e0fb-7194-508-f33b" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="a91e-759a-8c4e-813c" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Clawlord" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="99e-17f9-2bc8-dbd4">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">6"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">5</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">4+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="Cornered Rat" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="44b3-a421-2bd5-e66c">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">While this unit is damaged, add 3 to the Attacks characteristic of its **Warpforged Blade**.</characteristic>
</characteristics>
</profile>
<profile name="Gnash-gnaw on Their Bones" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="e5f7-94a5-380c-1f1b">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Reaction: You declared a **^^Fight^^** ability for this unit</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Pick a friendly non-**^^Hero Verminus Infantry^^** unit that has not used a **^^Fight^^** ability this turn and is within this unit’s combat range to be the target. The target can be picked to use a Fight ability immediately after the **^^Fight^^** ability used by this unit has been resolved.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="model" import="true" name="Clawlord" hidden="false" id="8478-9559-1517-3369">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Warpforged Blade" hidden="false" id="d045-7e19-4969-2cfc">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="a2b5-dd1b-d4be-f10a"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="c4f5-8f66-4c45-c709"/>
</constraints>
<profiles>
<profile name="Warpforged Blade" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="c65-6183-ed84-c91e">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">6</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">4+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="a8e5-9805-1b92-ef98"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="3156-44fc-a6e8-b63"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Plague Priest" hidden="false" id="90a1-d4c0-96ae-328" publicationId="9dee-a6b2-4b42-bfee">
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="2930-3d45-8976-39d9" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="SKAVEN" hidden="false" id="c580-17a8-a5b8-a7b4" targetId="cce6-9e5a-dd33-a755" primary="false"/>
<categoryLink name="CHAOS" hidden="false" id="bd03-3561-b993-3f0e" targetId="319b-38ee-d10d-e800" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="bfab-75ce-871e-6dc5" targetId="75d6-6995-dfcc-3898" primary="false"/>
<categoryLink name="PRIEST (1)" hidden="false" id="beb9-bbc-428f-9d49" targetId="3fe-84f4-cec6-a1c1" primary="false"/>
<categoryLink name="PESTILENS" hidden="false" id="8b18-ab95-e052-78ab" targetId="e9fa-30a7-a728-b45e" primary="false"/>
<categoryLink name="Legends" hidden="false" id="b48f-1590-2771-904b" targetId="acaf-8bb6-d6f-3e2a" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="7f1d-722f-935b-9fcd" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Plague Priest" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="5ad-fdf8-d601-1785">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">6"</characteristic>