-
Notifications
You must be signed in to change notification settings - Fork 82
/
Copy pathRegiments of Renown.cat
3595 lines (3581 loc) · 280 KB
/
Regiments of Renown.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="33cf-d309-6df3-50d6" name="Regiments of Renown" revision="9" battleScribeVersion="2.03" library="true" gameSystemId="e51d-b1a3-75fc-dc33" gameSystemRevision="157" type="catalogue">
<categoryEntries>
<categoryEntry id="70bf-3963-c8b1-948f" name="ORRUK WARCLANS" hidden="false"/>
<categoryEntry id="c391-fa3d-48c4-136f" name="ORRUK" hidden="false"/>
<categoryEntry id="346b-7d14-ecd4-9b59" name="KRULEBOYZ" hidden="false"/>
<categoryEntry id="3ae1-5ae8-e76b-8d87" name="BEAST-SKEWER KILLBOW" hidden="false"/>
<categoryEntry id="49b5-a263-ea27-1124" name="MAN-SKEWER BOLTBOYZ" hidden="false"/>
<categoryEntry id="ec21-2f26-493e-f83d" name="ARCH-REVENANT" hidden="false"/>
<categoryEntry id="335d-8f75-76f9-2107" name="FREE SPIRITS" hidden="false"/>
<categoryEntry id="204c-f324-f132-5ca7" name="GOSSAMID ARCHERS" hidden="false"/>
<categoryEntry id="e373-9106-ddcd-0d34" name="IRONDRAKES" hidden="false"/>
<categoryEntry id="d36a-4d8c-841c-509c" name="RUNELORD" hidden="false"/>
<categoryEntry id="f859-2729-b5dc-1cad" name="DUARDIN" hidden="false"/>
<categoryEntry id="6c56-c31b-c433-f567" name="DISCIPLES OF TZEENTCH" hidden="false"/>
<categoryEntry id="0bde-2662-bc66-fa41" name="HORRORS OF TZEENTCH" hidden="false"/>
<categoryEntry id="6181-aa29-1815-e521" name="MAGISTER" hidden="false"/>
<categoryEntry id="8148-a7df-942e-299c" name="ARCANITE" hidden="false"/>
<categoryEntry id="2ca0-5b33-3724-79d7" name="FOMOROID" hidden="false"/>
<categoryEntry id="9d00-4a54-aad5-d4c8" name="UNDIVIDED" hidden="false"/>
<categoryEntry id="78e7-adc8-caa4-c1e4" name="FOMOROID CRUSHER" hidden="false"/>
<categoryEntry id="4eba-038e-39b0-c5c7" name="MINDSTEALER SPHIRANX" hidden="false"/>
<categoryEntry id="3401-2eab-fed1-5703" name="MARK OF CHAOS" hidden="false"/>
<categoryEntry id="8c80-abf4-9f13-c2b2" name="OGROID" hidden="false"/>
<categoryEntry id="ca1a-3c94-9571-0997" name="EYE OF THE GODS" hidden="false"/>
<categoryEntry id="7755-b468-1bf2-7ff0" name="OGROID MYRMIDON" hidden="false"/>
<categoryEntry name="COURTIER" hidden="false" id="aabf-1ee9-60e2-638"/>
<categoryEntry name="MARROWSCROLL HERALD" hidden="false" id="5fca-46aa-3eee-233f"/>
<categoryEntry name="GRIMHOLD EXILE" hidden="false" id="222d-3eac-b8ff-970b"/>
<categoryEntry name="HARBINGER OF DECAY" hidden="false" id="7105-d4b3-27f3-684f"/>
<categoryEntry name="AURIC HEARTHGUARD" hidden="false" id="1960-a38b-f703-bc39"/>
<categoryEntry name="HEARTHGUARD BERSERKERS" hidden="false" id="7723-383a-8a12-cff9"/>
<categoryEntry name="VULKITE BERSERKERS" hidden="false" id="be72-16be-eddc-3a29"/>
<categoryEntry name="VULKITE BERSERKERS WITH FYRESTEEL HANDAXES" hidden="false" id="3d48-6528-4bd1-dc45"/>
<categoryEntry name="PUTRID BLIGHTKINGS" hidden="false" id="d711-b170-bee8-dd21"/>
<categoryEntry name="PUSGOYLE BLIGHTLORDS" hidden="false" id="3080-c419-13a0-41c"/>
<categoryEntry name="MAGGOTKIN OF NURGLE" hidden="false" id="be3-347e-e776-17fd"/>
<categoryEntry name="GLOOMSPITE GITZ" hidden="false" id="ddcb-26c7-36e1-c010"/>
<categoryEntry name="GROT" hidden="false" id="9165-81ac-d7d5-2e6c"/>
<categoryEntry name="MOONCLAN" hidden="false" id="c079-f6f7-2c6a-fea4"/>
<categoryEntry name="RABBLE-ROWSA" hidden="false" id="e65-a30d-e9e9-c127"/>
<categoryEntry name="SQUIG" hidden="false" id="a308-8dd0-a5aa-db7"/>
<categoryEntry name="SQUIG HERD" hidden="false" id="41ce-fe66-fe4-fb42"/>
<categoryEntry name="SQUIG HOPPERS" hidden="false" id="8004-cead-72b-4508"/>
<categoryEntry name="GOBBAPALOOZA" hidden="false" id="aac6-458e-211-61c2"/>
<categoryEntry name="KNIGHTS" hidden="false" id="6e9d-1735-e220-1d85"/>
<categoryEntry name="CRYPT HORRORS" hidden="false" id="1422-5262-e6a4-3f92"/>
<categoryEntry name="CRYPT FLAYERS" hidden="false" id="b345-4cac-9e86-7855"/>
<categoryEntry name="SERFS" hidden="false" id="cc2e-27c1-2cef-a3dc"/>
<categoryEntry name="CRYPT GHOULS" hidden="false" id="c3d3-3207-8d4b-df18"/>
<categoryEntry name="NEAVE BLACKTALON" hidden="false" id="a4ab-2c04-192d-b572"/>
<categoryEntry name="LORAI" hidden="false" id="83bb-8186-94a8-f698"/>
<categoryEntry name="NEAVE'S COMPANIONS" hidden="false" id="7ad8-2ae9-d805-9ff4"/>
<categoryEntry name="THE BLACKTALONS" hidden="false" id="1c68-3b88-69be-826a"/>
<categoryEntry name="IONRACH" hidden="false" id="981d-69fd-28bd-2d"/>
<categoryEntry name="ISHARANN" hidden="false" id="6fb8-9d79-f479-e77c"/>
<categoryEntry name="SOULSCRYER" hidden="false" id="87f1-4c7b-5db4-a7c5"/>
<categoryEntry name="KNIGHT" hidden="false" id="96f5-c03d-b56e-d513"/>
<categoryEntry name="KNIGHT-ZEPHYROS" hidden="false" id="ab1e-ff96-6b66-d976"/>
<categoryEntry name="AELF" hidden="false" id="ecb4-6fcc-18ef-3ee7"/>
<categoryEntry name="HAMMERS OF SIGMAR" hidden="false" id="678d-1e20-2e6a-c79c"/>
</categoryEntries>
<sharedSelectionEntries>
<selectionEntry id="fa3f-532f-9753-cd59" name="Regiment of Renown - Veremord's Shamblers" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="78fa-c9d5-ef50-57bc" type="max"/>
</constraints>
<profiles>
<profile id="da10-3d77-8056-1e55" name="Legend Among Graverobbers" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">The Corpse Cart in this regiment of renown has the HERO keyword.</characteristic>
</characteristics>
</profile>
<profile id="4357-8726-f082-6bff" name="Repurposed Wards" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">The DEADWALKER ZOMBIES unit in this regiment of renown has a ward of 6+ while it is wholly within 12" of the CORPSE CART in this regiment of renown.
The CORPSE CART in this regiment of renown has a ward of 5+ while it is wholly within 12" of the DEADWALKER ZOMBIES unit in this regiment of renown.</characteristic>
</characteristics>
</profile>
<profile id="964b-33d9-000b-cc43" name="Vitiating Vapours" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">Subtract 1 from ward rolls for enemy units within 12" of the CORPSE CART in this regiment of renown.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="eeb6-5a4c-789f-7e38" name="Unified" hidden="false" targetId="9439-c5f6-945d-2d65" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="fca7-9861-004a-184b" name="New CategoryLink" hidden="false" targetId="6575-7d6c-ce4d-ada4" primary="true"/>
<categoryLink targetId="1111-11dc-777-cf35" id="d0a3-129-de1e-b1b4" primary="false" name="Ally"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="20e6-655b-183a-5b56" name="1 Corpse Cart with Balefire Brazier" hidden="false" collective="false" import="true" defaultSelectionEntryId="3d13-6856-579c-b262">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="dad6-77d3-49ed-98e5" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d496-3e6d-03c8-42a3" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="1258-1c0a-bc14-0e06" name="DEATH" hidden="false" targetId="6cdf-dd4f-0e91-e9c4" primary="false"/>
<categoryLink id="5d59-4f56-e253-60a9" name="SOULBLIGHT GRAVELORDS" hidden="false" targetId="3d31-12d5-6735-011c" primary="false"/>
<categoryLink id="e23c-9e9b-5112-8159" name="DEADWALKERS" hidden="false" targetId="cba7-18df-b7ae-3365" primary="false"/>
<categoryLink id="8a28-cdba-a9e4-f85f" name="CORPSE CART" hidden="false" targetId="9a75-5717-65de-04cf" primary="false"/>
<categoryLink id="36e9-5cea-b544-850a" name="HERO" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="3d13-6856-579c-b262" name="Corpse Cart with Balefire Brazier" hidden="false" collective="false" import="true" targetId="7a38-7ef4-392d-4045" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="3047-b2f3-23df-3ee8" name="20 Deadwalker Zombies" hidden="false" collective="false" import="true" defaultSelectionEntryId="49c9-2ce0-9ea0-a0ea">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4e89-e339-fd8d-b6a3" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0eae-f686-9c8e-3e59" type="max"/>
</constraints>
<entryLinks>
<entryLink id="49c9-2ce0-9ea0-a0ea" name="Deadwalker Zombies" hidden="false" collective="false" import="true" targetId="ba7b-56a5-fe0e-5edd" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="190"/>
</costs>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="a763-f425-1441-2df2" shared="true" includeChildForces="true" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
</selectionEntry>
<selectionEntry id="ba7b-56a5-fe0e-5edd" name="Deadwalker Zombies" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="537-a935-aabb-424f" name="Deadwalker Zombies" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">4"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">1</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">10</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">6+</characteristic>
</characteristics>
</profile>
<profile id="210e-6463-536b-4bcb" name="Dragged Down and Torn Apart" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Roll a dice each time a model in this unit is slain by an attack made with a melee weapon. On a 5+, the attacking unit suffers 1 mortal wound.</characteristic>
</characteristics>
</profile>
<profile id="a541-7a48-34bb-534e" name="The Newly Dead" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">At the end of the combat phase, you can roll a dice for each enemy model that was slain by wounds caused by this unit's attacks in that phase. For each 2+, you can add 1 Deadwalker Zombie model to this unit. Models that are added to this unit with this ability must be set up within 1" of a model in this unit. They can only be set up within 3" of an enemy unit if a model in this unit is already within 3" of that enemy unit. Models added to this unit using this ability can take it above its maximum size.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="aa31-8187-4516-2cd7" name="DEATH" hidden="false" targetId="6cdf-dd4f-0e91-e9c4" primary="false"/>
<categoryLink id="a6e2-f034-9178-d996" name="SOULBLIGHT GRAVELORDS" hidden="false" targetId="3d31-12d5-6735-011c" primary="false"/>
<categoryLink id="9d40-b3a6-bb6f-732c" name="DEADWALKERS" hidden="false" targetId="cba7-18df-b7ae-3365" primary="false"/>
<categoryLink id="b46b-4f09-f502-93f8" name="DEADWALKER ZOMBIES" hidden="false" targetId="50a1-5210-860b-7496" primary="false"/>
<categoryLink id="f576-dc40-da4a-80d5" name="SUMMONABLE" hidden="false" targetId="d51a-b7de-3b60-a231" primary="false"/>
<categoryLink id="d3fe-480e-a161-27cd" name="Other" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
<categoryLink id="cc9f-be4f-3e11-a9c5" name="REGIMENT OF RENOWN" hidden="false" targetId="e41b-4270-3cf6-e397" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="ed39-6efe-7b28-1796" name="20 Deadwalker Zombies" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="name" value="40 Deadwalker Zombies">
<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 Deadwalker Zombies">
<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="minSelections" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
</selectionEntry>
<selectionEntry id="cc47-f847-85d7-c733" name="Crude Weapons and Infectious Bites" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="1dc4-5538-3a34-1bdb" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8d30-28d8-0440-eb21" type="max"/>
</constraints>
<profiles>
<profile id="ff24-848b-7a13-ac05" name="Crude Weapons and Infectious Bites" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">2</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">5+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
<modifiers>
<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"/>
</conditions>
</modifier>
</modifiers>
</selectionEntry>
<selectionEntry id="be49-da5b-fda8-f051" name="Beast-skewer Killbow" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="7c01-96ec-4603-cf35" name="Pick 'Em Off" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">When this unit attacks with its Beast-skewer Bolts, use the Aimed Shot missile weapon characteristic if it did not make a normal move in the same turn and is more than 3" from all enemy units. Otherwise, use the Hasty Shot missile weapon characteristics.</characteristic>
</characteristics>
</profile>
<profile id="79b5-9df3-ac14-d153" name="Beast-skewer Killbow" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">5"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">5</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">5</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">5+</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="dbcb-78d5-19e8-586a" name="New CategoryLink" hidden="false" targetId="1d26-07fc-6a66-d73e" primary="true"/>
<categoryLink id="5ea2-3321-580a-cadc" name="DESTRUCTION" hidden="false" targetId="d963-a5fb-c348-2371" primary="false"/>
<categoryLink id="3182-9ad4-8f71-76aa" name="ORRUK" hidden="false" targetId="c391-fa3d-48c4-136f" primary="false"/>
<categoryLink id="71fb-cd15-6b2b-dfe9" name="ORRUK WARCLANS" hidden="false" targetId="70bf-3963-c8b1-948f" primary="false"/>
<categoryLink id="2066-31ac-25df-987a" name="KRULEBOYZ" hidden="false" targetId="346b-7d14-ecd4-9b59" primary="false"/>
<categoryLink id="9b3a-f0f3-b1dd-34d3" name="BEAST-SKEWER KILLBOW" hidden="false" targetId="3ae1-5ae8-e76b-8d87" primary="false"/>
<categoryLink id="7a09-5acc-9d36-5809" name="REGIMENT OF RENOWN" hidden="false" targetId="e41b-4270-3cf6-e397" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="7533-fbe3-0757-d836" name="Beast Skewer Bolts" 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="9d1f-68b4-7a50-b822" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="03ac-3cd6-c79f-274b" type="max"/>
</constraints>
<profiles>
<profile id="b005-c6e2-2adc-89d7" name="Beast Skewer Bolts: Hasty Shot" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Missile</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">12"</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">See Below</characteristic>
</characteristics>
</profile>
<profile id="cbfe-9779-1223-3c97" name="Beast Skewer Bolts: Aimed Shot" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Missile</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">24"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">1</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">2+</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">See Below</characteristic>
</characteristics>
</profile>
<profile id="e26c-9910-4243-1482" name="Skewered" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">To determine the Damage characteristic for an attack made with Beast-skewer Bolts, roll a number of dice equal to the Wounds characteristic of the target unit. The Damage characteristic is equal to 2, plus 1 for each roll of 5+, up to a maximum Damage characteristic of 12.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="2ac1-310f-a49a-2fdf" name="Jaggedy 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="4b62-eae6-6310-88bd" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="56c6-a2d9-cef6-0507" type="max"/>
</constraints>
<profiles>
<profile id="c802-e522-e81f-f689" name="Jaggedy 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">3</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="46df-3920-efdd-7364" name="Man-skewer Boltboyz" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="fd4e-00c4-0d8f-a43b" 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 Boltboy Boss. Add 1 to the Attacks characteristic of that model's missile weapons.</characteristic>
</characteristics>
</profile>
<profile id="5e10-8ede-e189-f1ef" name="Pick 'Em Off" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">When this unit attacks with a Man-skewer Crossbow, use the Aimed Shot missile weapon characteristics if it did not make a normal move in the same turn and is more than 3" from all enemy units. Otherwise, use the Hasty Shot missile weapon characteristics.</characteristic>
</characteristics>
</profile>
<profile id="3557-9cf3-a17e-3a52" name="Man-skewer Boltboyz" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">5"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">2</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">5</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">6+</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="a446-e1af-8ae0-7595" name="DESTRUCTION" hidden="false" targetId="d963-a5fb-c348-2371" primary="false"/>
<categoryLink id="de4f-55a0-b777-bd3b" name="ORRUK" hidden="false" targetId="c391-fa3d-48c4-136f" primary="false"/>
<categoryLink id="8181-5bbe-a7e5-5606" name="ORRUK WARCLANS" hidden="false" targetId="70bf-3963-c8b1-948f" primary="false"/>
<categoryLink id="6c59-035e-499c-be55" name="MAN-SKEWER BOLTBOYZ" hidden="false" targetId="49b5-a263-ea27-1124" primary="false"/>
<categoryLink id="7db8-8647-08de-c6c1" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
<categoryLink id="bedc-b215-76da-4919" name="REGIMENT OF RENOWN" hidden="false" targetId="e41b-4270-3cf6-e397" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="55c0-fcf9-baa5-2957" name="Jaggedy Blade" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="2b12-d24d-7bf2-0bd7" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="68cc-181c-ede9-0fe6" type="max"/>
</constraints>
<profiles>
<profile id="3a3a-d40a-6373-f805" name="Jaggedy 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">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>
<selectionEntry id="4e6f-22bf-b951-0a50" name="Man-skewer Crossbow: Aimed Shot" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="d000-5389-e25a-b6df" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="a1ee-04e5-4afe-6d77" type="max"/>
</constraints>
<profiles>
<profile id="b273-7270-9477-c39d" name="Man-skewer Crossbow: Aimed Shot" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Missile</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">24"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">1</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">2+</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>
<selectionEntry id="daa8-f44e-bb8b-fa45" name="Man-skewer Crossbow: Hasty Shot" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="86d8-7ca6-a52f-cf68" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="1bf1-f5bc-3b99-1994" type="max"/>
</constraints>
<profiles>
<profile id="a42e-9284-ebca-dc86" name="Man-skewer Crossbow: Hasty Shot" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Missile</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">12"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">2</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">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="c9de-fb1a-e665-362f" name="Regiment of Renown - Big Grikk's Kruleshots" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4329-12da-4cda-0a86" type="max"/>
</constraints>
<profiles>
<profile id="4c8d-d346-b288-c1eb" name="Toxin-laden Skewers" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">If the unmodified hit roll for an attack made by a model in this regiment of renown is 6, that attack causes a number of mortal wounds to the target equal to the weapon’s Damage characteristic and the attack sequence ends (do not make a wound roll or save roll).</characteristic>
</characteristics>
</profile>
<profile id="e529-5e27-29d5-12aa" name="Skewer It Again!" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">If any wounds and/or mortal wounds caused by a shooting attack made by this regiment of renown’s BEAST-SKEWER KILLBOW are allocated to an enemy MONSTER and not negated, you can pick any number of other models in this regiment of renown and say that they are focusing fire. If you do so, until the end of the phase, add 1 to the Attacks characteristic of missile weapons used by those models but all of their attacks must target that enemy MONSTER.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="008e-dbb2-dc00-fba0" name="Unified" hidden="false" targetId="9439-c5f6-945d-2d65" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="b2de-6565-cfd8-4066" name="New CategoryLink" hidden="false" targetId="6575-7d6c-ce4d-ada4" primary="true"/>
<categoryLink targetId="1111-11dc-777-cf35" id="3534-3b43-cd86-89e2" primary="false" name="Ally"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="dd78-ac58-95c0-3b71" name="1 Beast-skewer Killbow" hidden="false" collective="false" import="true" defaultSelectionEntryId="a23e-381c-4a98-6697">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="12ba-8d22-8aad-e339" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e963-d8c1-43af-3ee2" type="max"/>
</constraints>
<entryLinks>
<entryLink id="a23e-381c-4a98-6697" name="Beast-skewer Killbow" hidden="false" collective="false" import="true" targetId="be49-da5b-fda8-f051" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="f36a-0838-5fe3-2e4c" name="3 Man-skewer Boltboyz" hidden="false" collective="false" import="true" defaultSelectionEntryId="1648-14ca-64ec-b080">
<constraints>
<constraint field="selections" scope="parent" value="2" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a05a-33d1-ebab-24c6" type="min"/>
<constraint field="selections" scope="parent" value="2" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5de1-4a97-239a-f173" type="max"/>
</constraints>
<entryLinks>
<entryLink id="1648-14ca-64ec-b080" name="Man-skewer Boltboyz" hidden="false" collective="false" import="true" targetId="46df-3920-efdd-7364" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="290"/>
</costs>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="a763-f425-1441-2df2" shared="true" includeChildForces="true" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
</selectionEntry>
<selectionEntry id="66f8-b848-40fa-a08d" name="Regiment of Renown - Elthwin's Thorns" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fac3-ba11-c7dd-1ff0" type="max"/>
</constraints>
<profiles>
<profile id="d1eb-a9f1-cff0-b5fe" name="Gossamid Champion" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">Add 1 to wound rolls for attacks made by the GOSSAMID ARCHERS unit in this regiment of renown while it is wholly within 12" of the ARCH-REVENANT in this regiment of renown.</characteristic>
</characteristics>
</profile>
<profile id="5ade-cd8a-ba85-17db" name="Flight of the Zephyrspites" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">If the GOSSAMID ARCHERS unit in this regiment of renown is within 3" of the ARCH-REVENANT in this regiment of renown when you roll a 2+ to retreat using its Zephyrspites ability, instead of retreating, you can remove both units from the battlefield, then immediately set them up again so that the GOSSAMID ARCHERS unit is wholly within 3" of a terrain feature, the ARCH-REVENANT is wholly within 3" of the GOSSAMID ARCHERS unit, and both units are more than 9" from all enemy units.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="8341-f791-6dac-86e4" name="Unified" hidden="false" targetId="9439-c5f6-945d-2d65" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="faa5-4ee4-efd0-f00c" name="New CategoryLink" hidden="false" targetId="6575-7d6c-ce4d-ada4" primary="true"/>
<categoryLink targetId="1111-11dc-777-cf35" id="36d5-bc9a-9652-868f" primary="false" name="Ally"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="e7f9-590d-1b1f-4a0f" name="5 Gossamid Archers" hidden="false" collective="false" import="true" defaultSelectionEntryId="97a3-a755-d9b7-0e27">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8f87-0d69-e919-095b" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="611a-6a2e-2deb-82b6" type="max"/>
</constraints>
<entryLinks>
<entryLink id="97a3-a755-d9b7-0e27" name="Gossamid Archers" hidden="false" collective="false" import="true" targetId="08b4-dd47-ca09-12bf" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="0a13-f9c2-02d0-f309" name="1 Arch-Revenant" hidden="false" collective="false" import="true" defaultSelectionEntryId="503b-ab50-d885-d709">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="46d4-d37e-5f80-13f7" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="eadc-a5a5-dc3c-5208" type="max"/>
</constraints>
<entryLinks>
<entryLink id="503b-ab50-d885-d709" name="Arch-Revenant" hidden="false" collective="false" import="true" targetId="5969-8b83-ce4c-91a7" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="310"/>
</costs>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="a763-f425-1441-2df2" shared="true" includeChildForces="true" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
</selectionEntry>
<selectionEntry id="9553-8763-ddc2-a840" name="Regiment of Renown - Norgrimm's Rune Throng" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1b45-dc8e-9476-561c" type="max"/>
</constraints>
<profiles>
<profile id="1a6a-a2b0-b786-bd92" name="Rune of Restored Hearth" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">Once per battle, in your hero phase, you can pick 1 objective within 6" of the RUNELORD in this regiment of renown and say Norgrimm will strike the Rune of Restored Hearth. If you do so, for the rest of the battle, models in this regiment of renown count as 2 models for the purposes of contesting that objective, and their unit has a ward of 5+ while they are contesting that objective.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="1c15-fa2d-cf54-8c11" name="Unified" hidden="false" targetId="9439-c5f6-945d-2d65" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="fb78-331d-6fe4-481b" name="New CategoryLink" hidden="false" targetId="6575-7d6c-ce4d-ada4" primary="true"/>
<categoryLink targetId="1111-11dc-777-cf35" id="22ff-6dfc-c47e-338e" primary="false" name="Ally"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="dd1c-05ff-21a7-9ddc" name="1 Runelord" hidden="false" collective="false" import="true" defaultSelectionEntryId="e443-20aa-f78a-fe92">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fe8b-f342-5de9-bb0d" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0504-8879-ec1d-b704" type="max"/>
</constraints>
<entryLinks>
<entryLink id="e443-20aa-f78a-fe92" name="Runelord" hidden="false" collective="false" import="true" targetId="7185-fd05-4aa5-6b2c" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="8168-fde8-a43f-82e5" name="10 Irondrakes" hidden="false" collective="false" import="true" defaultSelectionEntryId="4521-5dd7-630a-c00e">
<constraints>
<constraint field="selections" scope="parent" value="2" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5d53-1d44-8f19-4cd5" type="min"/>
<constraint field="selections" scope="parent" value="2" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ddd8-ecc4-2bb2-924d" type="max"/>
</constraints>
<entryLinks>
<entryLink id="4521-5dd7-630a-c00e" name="Irondrakes" hidden="false" collective="false" import="true" targetId="37b5-6b88-b50a-9f62" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="320"/>
</costs>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="a763-f425-1441-2df2" shared="true" includeChildForces="true" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
</selectionEntry>
<selectionEntry id="66b0-4847-a04e-0375" name="Regiment of Renown - The Coven of Thryx" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1c0d-e485-85ff-d367" type="max"/>
</constraints>
<profiles>
<profile id="f8c9-f5fd-7571-b843" name="Skilled Summoner" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">In the first battle round, after the players have received their starting command points but before the start of the first turn, the MAGISTER in this regiment of renown can automatically cast a spell they know that summons a Disciples of Tzeentch endless spell (do not make a casting roll). That spell cannot be unbound, and that endless spell cannot be dispelled in the first battle round. Set up the endless spell as described in its Summoning rules.</characteristic>
</characteristics>
</profile>
<profile id="4f1f-ce37-62cb-6187" name="Sparks of Profane Potential" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">Once per turn, at the end of a phase in which a Horror model in this regiment of renown was slain while its unit was wholly within 12" of the MAGISTER in this regiment of renown, you can pick 1 endless spell on the battlefield that was summoned by that MAGISTER and remove that endless spell from play. If you do so, that MAGISTER can immediately automatically cast a spell they know that summons a Disciples of Tzeentch endless spell that is different to the one removed from play (do not make a casting roll). That spell cannot be unbound. Set up the endless spell as described in its Summoning rules. Depending on the type of endless spell you set up, you can immediately do one of the following:
• Burning Sigil of Tzeentch: Resolve the effect of the Radiant Transmogrification ability as if it were the end of the movement phase.
• Tome of Eyes: Attempt to cast The Parchment Curse with the MAGISTER in this regiment of renown as if it were your hero phase.
• Daemonic Simulacrum: Resolve the effect of the Snapping Jaws ability as if the endless spell had just moved.</characteristic>
</characteristics>
</profile>
</profiles>
<rules>
<rule id="5ece-ba33-c891-505c" name="Horrors of Tzeentch" hidden="false">
<description>The Horrors of Tzeentch unit in this regiment of renown cannot use its Split and Split Again ability.</description>
</rule>
</rules>
<infoLinks>
<infoLink id="a673-111b-91c9-6d5e" name="Unified" hidden="false" targetId="9439-c5f6-945d-2d65" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="2c1a-d299-ffb0-477c" name="New CategoryLink" hidden="false" targetId="6575-7d6c-ce4d-ada4" primary="true"/>
<categoryLink targetId="1111-11dc-777-cf35" id="4d59-2495-e4af-a27d" primary="false" name="Ally"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="1608-7b22-d416-5a4b" name="1 Magister" hidden="false" collective="false" import="true" defaultSelectionEntryId="b0a1-7d12-13e4-6475">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="093e-b13d-0842-1d7a" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5662-b946-a3f8-7bc5" type="max"/>
</constraints>
<entryLinks>
<entryLink id="b0a1-7d12-13e4-6475" name="Magister" hidden="false" collective="false" import="true" targetId="ccd4-d270-1d4a-a640" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="98c7-917a-d9da-a6f3" name="10 Pink Horrors of Tzeentch" hidden="false" collective="false" import="true" defaultSelectionEntryId="eb6e-1ec2-ba18-4677">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1241-b98c-c1dd-3ca2" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3862-79d6-fe68-6741" type="max"/>
</constraints>
<entryLinks>
<entryLink id="eb6e-1ec2-ba18-4677" name="Pink Horrors of Tzeentch" hidden="false" collective="false" import="true" targetId="740d-56f5-7204-3e34" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="bc9a-4e79-5fd8-dda9" name="1 Burning Sigil of Tzeentch" hidden="false" collective="false" import="true" defaultSelectionEntryId="0726-0fe3-f44a-6b67">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="503b-9458-7dcc-d862" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0a86-4ece-09e3-ecc4" type="max"/>
</constraints>
<entryLinks>
<entryLink id="0726-0fe3-f44a-6b67" name="Endless Spell: Burning Sigil of Tzeentch" hidden="false" collective="false" import="true" targetId="74a6-a8b9-234c-7c0a" type="selectionEntry">
<modifiers>
<modifier type="set" field="points" value="0"/>
</modifiers>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="eb80-21b1-5339-2102" name="1 Tome of Eyes" hidden="false" collective="false" import="true" defaultSelectionEntryId="fa6a-93fe-49a5-0842">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0040-4a4f-381c-1206" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="65e2-b2ed-06f8-19d5" type="max"/>
</constraints>
<entryLinks>
<entryLink id="fa6a-93fe-49a5-0842" name="Endless Spell: Tome of Eyes" hidden="false" collective="false" import="true" targetId="199e-1bbf-76f3-6654" type="selectionEntry">
<modifiers>
<modifier type="set" field="points" value="0"/>
</modifiers>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="4a20-d8c1-b7f4-4ec1" name="1 Daemonic Simulacrum" hidden="false" collective="false" import="true" defaultSelectionEntryId="59c3-01d2-b1a5-3ed8">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6288-af54-07b5-a5f9" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a3bb-145e-fad5-a9a5" type="max"/>
</constraints>
<entryLinks>
<entryLink id="59c3-01d2-b1a5-3ed8" name="Endless Spell: Daemonic Simulacrum" hidden="false" collective="false" import="true" targetId="0d20-c548-bfb4-0fec" type="selectionEntry">
<modifiers>
<modifier type="set" field="points" value="0"/>
</modifiers>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="320"/>
</costs>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="a763-f425-1441-2df2" shared="true" includeChildForces="true" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
</selectionEntry>
<selectionEntry id="f5e6-6888-e003-118d" name="Regiment of Renown - Hargax's Pit-beats" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0f80-e4fa-fe7a-6f55" type="max"/>
</constraints>
<profiles>
<profile id="5b94-7877-0e6a-d39c" name="Beastial Domination" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">Once per phase, the OGROID MYRMIDON in this regiment of renown can issue the All-out Attack or All-out Defence command to the FOMOROID CRUSHER or MINDSTEALER SPHIRANX in this regiment of renown without a command point being spent.</characteristic>
</characteristics>
</profile>
<profile id="de5f-82c4-620e-e4e0" name="The Worthiest Stock" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">At the end of the charge phase, you can pick either the FOMOROID CRUSHER or the MINDSTEALER SPHIRANX in this regiment of renown and 1 enemy MONSTER within 3" of it. If you do so, roll a dice. On a 3+, the strike-last effect applies to both units you picked in the following combat phase.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="0c50-0b48-d555-ab3c" name="Unified" hidden="false" targetId="9439-c5f6-945d-2d65" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="8274-ac37-14c8-804f" name="New CategoryLink" hidden="false" targetId="6575-7d6c-ce4d-ada4" primary="true"/>
<categoryLink targetId="1111-11dc-777-cf35" id="2bdf-2466-2c13-4362" primary="false" name="Ally"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="69b5-a2ea-4844-8e4f" name="1 Ogroid Myrmidon" hidden="false" collective="false" import="true" defaultSelectionEntryId="b820-2686-7547-800b">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9dff-8b71-a9bc-70e7" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b2a1-324c-ed9e-e030" type="max"/>
</constraints>
<entryLinks>
<entryLink id="b820-2686-7547-800b" name="Ogroid Myrmidon" hidden="false" collective="false" import="true" targetId="7ad8-9f90-c8cc-318b" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="2ecb-3c13-7551-b957" name="1 Fomorid Crusher" hidden="false" collective="false" import="true" defaultSelectionEntryId="1598-23fd-1101-146f">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6509-868b-516a-add6" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6a97-abf6-0dff-d41f" type="max"/>
</constraints>
<entryLinks>
<entryLink id="1598-23fd-1101-146f" name="Fomoroid Crusher" hidden="false" collective="false" import="true" targetId="4188-7a04-67c8-c2de" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="da8d-0c32-2c4f-2741" name="1 Mindstealer Sphiranx" hidden="false" collective="false" import="true" defaultSelectionEntryId="445b-75fd-5fdd-c772">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a05c-a36c-4197-b097" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f31c-7fca-4891-9da2" type="max"/>
</constraints>
<entryLinks>
<entryLink id="445b-75fd-5fdd-c772" name="Mindstealer Sphiranx" hidden="false" collective="false" import="true" targetId="a7ea-37fa-041d-6508" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="260"/>
</costs>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="a763-f425-1441-2df2" shared="true" includeChildForces="true" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
</selectionEntry>
<selectionEntry id="5969-8b83-ce4c-91a7" name="Arch-Revenant" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="2cf5-e6bd-7c82-7048" name="Call to Battle" 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 once per turn at the start of the combat phase. The unit that receives the command must be a friendly SYLVANETH unit. Add 1 to the Attacks characteristic of melee weapons used by that unit until the end of that phase.</characteristic>
</characteristics>
</profile>
<profile id="8a7a-55d1-6219-dc6b" name="Crescent Shield" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">At the start of the combat phase, you must say if this unit is adopting a defensive stance or an aggressive stance. If it is adopting a defensive stance, it has a ward of 4+ until the end of that phase. If it is adopting an aggressive stance, add 1 to the Attacks characteristic of this unit's Revenant's Glaive until the end of that phase.</characteristic>
</characteristics>
</profile>
<profile id="92c2-0821-335e-6a10" name="Arch-Revenant" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">12"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">6</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">8</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">4+</characteristic>
</characteristics>
</profile>
<profile id="9f1a-1e67-0eba-fbd2" name="Champion of Kurnoth" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Add 1 to wound rolls for attacks made by friendly KURNOTH HUNTERS units wholly within 12" of any friendly units with the ability.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="2464-b685-e516-b14c" name="Fly" hidden="false" targetId="8e0c-cbe4-27be-8a30" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="a722-8f92-94eb-e389" name="9 or less wounds Leader" hidden="false" targetId="a8ed-ca35-24e0-cf2e" primary="false"/>
<categoryLink id="79bb-2cf8-befe-5fa3" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="752a-df57-578a-feda" name="HERO" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="c25d-723f-9ffd-68c0" name="ORDER" hidden="false" targetId="b970-b3bf-e1a4-a6fc" primary="false"/>
<categoryLink id="6e65-8848-3fe5-77c0" name="SYLVANETH" hidden="false" targetId="de6f-3fcb-09b2-a59e" primary="false"/>
<categoryLink id="8521-a06b-d6b0-cbe0" name="ARCH-REVENANT" hidden="false" targetId="ec21-2f26-493e-f83d" primary="false"/>
<categoryLink id="9568-8a88-3402-be86" name="FREE SPIRITS" hidden="false" targetId="335d-8f75-76f9-2107" primary="false"/>
<categoryLink id="9fde-8227-4ca2-fc93" name="REGIMENT OF RENOWN" hidden="false" targetId="e41b-4270-3cf6-e397" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="d812-cbb4-69ab-f7f5" name="Revenant's Glaive" 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="dffd-6ba7-86de-83ba" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="66d6-0f35-4d65-15d0" type="max"/>
</constraints>
<profiles>
<profile id="fcbe-aedc-633d-0b35" name="Revenant's Glaive" 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">4</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">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="3925-3799-68cc-1a17" name="Tail Pincers" 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="34a9-6aa9-c495-f473" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="41b7-8d71-7e29-b7f0" type="max"/>
</constraints>
<profiles>
<profile id="e047-d37a-a3ab-913c" name="Tail Pincers" 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">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">-</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="08b4-dd47-ca09-12bf" name="Gossamid Archers" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="e933-5f23-f0fb-f2c9" 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 Flitwing Scion. Add 1 to the Attacks characteristic of that model’s Gossamid Bow.</characteristic>
</characteristics>
</profile>
<profile id="01a9-f215-d5e5-4d94" name="Forest Fighters" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">If this unit has 2 or more models, it is coherent if each model in the unit is within 2" horizontally of at least 1 other model in the unit instead of 1".</characteristic>
</characteristics>
</profile>
<profile id="c293-c142-57d0-90bd" name="Larval Shafts" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">If the unmodified hit roll for an attack made with a Gossamid Bow is 6, the target suffers D3 mortal wounds and the attack sequence ends (do not make a wound roll or save roll).</characteristic>
</characteristics>
</profile>
<profile id="87af-fef1-149f-a991" name="Zephyrspites" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">After this unit has received the Unleash Hell command and all of its shooting attacks have been resolved, if this unit is within 3" of any enemy units, you can roll a dice. On a 2+, this unit can retreat.</characteristic>
</characteristics>
</profile>
<profile id="9a24-60a7-68de-b3b6" name="Gossamid Archers" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">12"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">2</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">6</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">5+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="2022-dd39-6b82-5f59" name="Fly" hidden="false" targetId="8e0c-cbe4-27be-8a30" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="f563-f0fa-5e13-3a07" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
<categoryLink id="f61e-4a0f-492d-7151" name="SYLVANETH" hidden="false" targetId="de6f-3fcb-09b2-a59e" primary="false"/>
<categoryLink id="647f-3299-335b-f645" name="FREE SPIRITS" hidden="false" targetId="335d-8f75-76f9-2107" primary="false"/>
<categoryLink id="26c6-1885-fd51-c957" name="GOSSAMID ARCHERS" hidden="false" targetId="204c-f324-f132-5ca7" primary="false"/>
<categoryLink id="f5ba-c2a2-dbd6-0daa" name="ORDER" hidden="false" targetId="b970-b3bf-e1a4-a6fc" primary="false"/>
<categoryLink id="02e9-36a9-b2f4-d7c6" name="REGIMENT OF RENOWN" hidden="false" targetId="e41b-4270-3cf6-e397" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="843c-3080-e360-a4e8" name="Cruel Talons" 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="9d96-a7da-5a3f-1d21" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5e90-f645-5b74-78b2" type="min"/>
</constraints>
<profiles>
<profile id="2165-fdf6-1208-ed32" name="Cruel Talons" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">2</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">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="79c6-8a27-965b-d648" name="Gossamid Bow" 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="b69e-f527-efe1-256f" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1bbb-2752-e56b-232a" type="min"/>
</constraints>
<profiles>
<profile id="d7ee-9b81-0f50-7343" name="Gossamid Bow" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Missile</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">12"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">2</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</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="ccd4-d270-1d4a-a640" name="Magister" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="ff69-f4df-1d00-140e" name="Wizard" hidden="false" typeId="f55d-ee3a-1597-110f" typeName="Magic">
<characteristics>
<characteristic name="Cast/Unbind" typeId="8294-f605-2c0f-8f92">1/1</characteristic>
<characteristic name="Spells Known" typeId="dc9c-47d3-6931-859c">Arcane Bolt, Mystic Shield and Bolt of Change</characteristic>
</characteristics>
</profile>
<profile id="0a22-a3b5-87cd-8f8c" name="Magister" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">6"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">5</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">7</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">5+</characteristic>
</characteristics>
</profile>
<profile id="1ed9-8b86-f089-05ec" name="Magic-touched" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">If the first casting attempt made by this unit in your hero phase is successful and the spell is not unbound, this unit can attempt to cast 1 extra spell in that phase. If it does so and the casting roll for that extra spell is a double, the casting attempt automatically fails and this unit is slain. If this happens, you can choose for this unit to be transformed into a Spawn instead of being slain.</characteristic>
</characteristics>
</profile>
<profile id="81b4-e3f5-d18a-2d53" name="Bolt of Change" 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">18"</characteristic>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">If successfully cast, pick 1 enemy unit within range and visible to the caster. That unit suffers D3 mortal wounds. You can say that the first enemy model slain by this spell each time it is cast is transformed into s Spawn instead of being slain.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="deb6-b474-fc96-5e50" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="94d4-7fdf-95ce-37b0" name="9 or less wounds Leader" hidden="false" targetId="a8ed-ca35-24e0-cf2e" primary="false"/>
<categoryLink id="498c-112c-73ac-d051" name="CHAOS" hidden="false" targetId="7cdd-80ea-cbeb-8e16" primary="false"/>
<categoryLink id="d4b6-e7a0-da07-8545" name="DISCIPLES OF TZEENTCH" hidden="false" targetId="6c56-c31b-c433-f567" primary="false"/>
<categoryLink id="32da-6fc8-87ed-202f" name="MORTAL" hidden="false" targetId="a934-6d15-9932-b7ea" primary="false"/>
<categoryLink id="eb4d-8d84-58d6-379b" name="TZEENTCH" hidden="false" targetId="7d12-f4c5-3832-0f19" primary="false"/>
<categoryLink id="3ec5-0e8a-e14e-fb65" name="HERO" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="6598-892c-7478-2477" name="WIZARD" hidden="false" targetId="4f53-8230-2f02-9639" primary="false"/>
<categoryLink id="ad3d-81aa-05f5-1934" name="MAGISTER" hidden="false" targetId="6181-aa29-1815-e521" primary="false"/>
<categoryLink id="c043-2c51-21ab-5e71" name="ARCANITE" hidden="false" targetId="8148-a7df-942e-299c" primary="false"/>
<categoryLink id="b71d-7498-ad8c-a5e0" name="REGIMENT OF RENOWN" hidden="false" targetId="e41b-4270-3cf6-e397" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="78d6-17c7-2dde-7b74" name="Tzeenchian Runestaff" 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="b19d-3b23-c277-e6c2" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9c36-9be8-e9b3-7326" type="max"/>
</constraints>
<profiles>
<profile id="bc30-05d8-148a-3f2a" name="Tzeenchian Runestaff" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Missile</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">18"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">1</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">D3</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="43ba-7bdb-2a6a-8a22" name="Warpsteel Sword" 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="289a-bc0a-bcb3-01f7" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="feb9-2779-fd9c-d042" type="max"/>
</constraints>
<profiles>
<profile id="cb0b-c553-a9c2-0a0a" name="Warpsteel Sword" 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>
<entryLinks>
<entryLink id="3c9c-be22-29fc-3fcf" name="Arcane Bolt" hidden="false" collective="false" import="true" targetId="869c-168d-eba5-eacf" type="selectionEntry"/>
<entryLink id="dc44-459d-a441-bfcc" name="Mystic Shield" hidden="false" collective="false" import="true" targetId="5fdd-6634-f9f8-068a" type="selectionEntry"/>
</entryLinks>