-
Notifications
You must be signed in to change notification settings - Fork 82
/
Regiments of Renown.cat
6504 lines (6489 loc) · 512 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="25" 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"/>
<categoryEntry name="HUMAN" hidden="false" id="6475-e28d-34d8-44c8"/>
<categoryEntry name="SAVIOURS OF CINDERFAL" hidden="false" id="d9b2-35af-1632-784c"/>
<categoryEntry name="ORDER OF AZYR" hidden="false" id="eaeb-23c-bed9-3297"/>
<categoryEntry name="HAMMERHAL AQSHA" hidden="false" id="d824-8f2-49d4-2dd8"/>
<categoryEntry name="CALLIS AND TOLL" hidden="false" id="667c-baf9-831-515e"/>
<categoryEntry name="TOLL'S COMPANIONS" hidden="false" id="614b-c09d-84a7-6f9c"/>
</categoryEntries>
<sharedSelectionEntries>
<selectionEntry id="f5e6-6888-e003-118d" name="Regiment of Renown - Hargax's Pit-beats" hidden="false" collective="false" import="true" type="unit">
<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="Core Battalion" 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">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a726-6283-e7d3-802" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7ef3-6fad-62fb-5731" type="min"/>
</constraints>
</entryLink>
</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">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="97cd-acf5-e37d-4b59" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c2fd-6b0-4ad6-dcbd" type="min"/>
</constraints>
</entryLink>
</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">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2a4a-b3ca-3037-3645" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5444-f20e-1f8b-9599" type="min"/>
</constraints>
</entryLink>
</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="Leader" 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="Other" 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="Leader" 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>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="740d-56f5-7204-3e34" name="Pink Horrors of Tzeentch" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="7d2b-be30-c405-1adc" name="Horrors of Tzeentch" 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">1</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">10</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">6+</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="f6d9-4101-58f4-1db0" name="Other" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
<categoryLink id="3174-e3f1-607f-55ce" name="CHAOS" hidden="false" targetId="7cdd-80ea-cbeb-8e16" primary="false"/>
<categoryLink id="ce8f-df20-9532-7447" name="TZEENTCH" hidden="false" targetId="7d12-f4c5-3832-0f19" primary="false"/>
<categoryLink id="abde-8650-0532-d4b2" name="DISCIPLES OF TZEENTCH" hidden="false" targetId="6c56-c31b-c433-f567" primary="false"/>
<categoryLink id="ed6b-bf9e-f822-926a" name="DAEMON" hidden="false" targetId="1418-9a68-9f9e-e9a7" primary="false"/>
<categoryLink id="ec6d-99df-ad05-d30c" name="HORRORS OF TZEENTCH" hidden="false" targetId="0bde-2662-bc66-fa41" primary="false"/>
<categoryLink id="0726-14ce-6bc3-1d51" name="REGIMENT OF RENOWN" hidden="false" targetId="e41b-4270-3cf6-e397" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="72c4-6c94-1b5e-95b2" name="Hornblowers" 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="9931-9c0c-4203-c5a3" type="max"/>
<constraint field="selections" scope="parent" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2fee-5618-6058-d0db" type="min"/>
</constraints>
<profiles>
<profile id="9a7a-9114-23db-5aac" name="Musician" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">1 in every 10 Pink Horrors in this unit can be a Pink Horror Hornblower instead. Add 1 to save rolls for this unit while it includes any Pink Horrors Hornblowers.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="2264-d922-18fb-83b2" name="Icon Bearers" 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="0660-d61f-2019-4794" type="max"/>
<constraint field="selections" scope="parent" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7be4-a843-7dd4-e20c" type="min"/>
</constraints>
<profiles>
<profile id="eb37-6b83-e3aa-4cc0" name="Standard Bearer" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">1 in every 10 Pink Horrors in this unit can be a Pink Horror Icon Bearer instead. At the start of your hero phase, if you have a Disciples of Tzeentch army, roll 1 dice for each Pink Horror Icon Bearer in this unit. For each 3+, you receive 1 Fate Point.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="84cb-a8b8-e679-dcd3" name="Magical Flames" 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="a6ac-e052-2a40-8f22" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="df21-809d-f48a-3bd9" type="max"/>
</constraints>
<profiles>
<profile id="bf7c-5a35-6cef-e739" name="Magical Flames" 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">3 (6 Iridescent)</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">5+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="0cca-1bbd-1be0-ccac" name="Taloned Hands" 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="24e2-2b4e-ef00-cc65" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f264-bbe7-5ed2-31a7" type="max"/>
</constraints>
<profiles>
<profile id="6af2-a82e-26aa-99f5" name="Taloned Hands" 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 (2 Iridescent)</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="0584-1604-2cfe-42c7" name="Petty Vengeance" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="a41c-6041-ca9d-7597" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="698b-1334-408a-b0fa" type="min"/>
</constraints>
<profiles>
<profile id="3256-3155-1200-e004" name="Petty Vengeance" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">If a model in this unit is slain, you can pick 1 enemy unit within 1" of this unit and roll a dice. On a 4+ (3+ for Iridescent), that enemy unit suffers 1 mortal wound.</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="7ad8-9f90-c8cc-318b" name="Ogroid Myrmidon" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="add" field="category" value="89f7-d50b-0aa9-01ce">
<conditions>
<condition field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9f18-9ffb-0267-3e08" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="adc3-9a5b-59e4-d2f9" name="Arcane Fury" 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 melee weapon by this model is 6, that attack scores 2 hits on the target instead of 1. Make a wound and save roll for each hit.</characteristic>
</characteristics>
</profile>
<profile id="018a-a4c3-4acd-ca9d" name="Berserk Rage" 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 with melee weapons by this unit if any wounds or mortal wounds were allocated to it earlier in the same phase.</characteristic>
</characteristics>
</profile>
<profile id="32dd-0eec-b2f0-969e" name="Ogroid Myrmidon" 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">8</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">8</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">4+</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="f959-7ec1-754f-7f20" name="Leader" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="2dc5-38b3-845f-fb64" name="9 or less wounds Leader" hidden="false" targetId="a8ed-ca35-24e0-cf2e" primary="false"/>
<categoryLink id="bbc7-33b4-0831-4daa" name="CHAOS" hidden="false" targetId="7cdd-80ea-cbeb-8e16" primary="false"/>
<categoryLink id="1888-55a5-baca-45bb" name="SLAVES TO DARKNESS" hidden="false" targetId="4ba7-618a-4e30-2e0c" primary="false"/>
<categoryLink id="e67b-1c10-4e27-29c5" name="HERO" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="6c99-d82b-d857-a679" name="MARK OF CHAOS" hidden="false" targetId="3401-2eab-fed1-5703" primary="false"/>
<categoryLink id="d2da-a127-ef19-6239" name="OGROID" hidden="false" targetId="8c80-abf4-9f13-c2b2" primary="false"/>
<categoryLink id="8c6a-6d52-76a5-4dc8" name="OGROID MYRMIDON" hidden="false" targetId="7755-b468-1bf2-7ff0" primary="false"/>
<categoryLink id="4397-15e1-9dc4-d226" name="EYE OF THE GODS" hidden="false" targetId="ca1a-3c94-9571-0997" primary="false"/>
<categoryLink id="49cd-e24f-5fc9-872d" name="REGIMENT OF RENOWN" hidden="false" targetId="e41b-4270-3cf6-e397" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="834d-8c9e-0f5f-3e00" name="Gladiator Spear" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5622-1bbf-daad-f491" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ff48-30ff-1597-9df3" type="max"/>
</constraints>
<profiles>
<profile id="4302-b69b-8b2a-27b2" name="Gladiator Spear" 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">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">D3</characteristic>
</characteristics>
</profile>
<profile id="23ac-2582-b5c0-7529" name="Gladiator Spear (Melee)" 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">-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="4188-7a04-67c8-c2de" name="Fomoroid Crusher" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="34b6-50e5-e552-1ee3" name="Cursed Destroyers" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">In your hero phase, pick 1 terrain feature within 6" of this model and roll a dice for each other unit within 6" of that terrain feature and any that garrison it. On a 3+, that unit suffers D3 mortal wounds. In addition, if the terrain feature picked is a faction terrain feature or defensible terrain feature and the roll was a 3 or more, the terrain feature is demolished if it was defensible (see 17.2.3), and the scenery rules on its warscroll cannot be used for the rest of the battle if it was a faction terrain feature.</characteristic>
</characteristics>
</profile>
<profile id="c444-1637-855c-a1eb" name="Hewn Rocks and Rubble" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Add 1 to the Damage characteristic of this unit's weapons while it is within 1" of any terrain features.</characteristic>
</characteristics>
</profile>
<profile id="10bc-ee61-363d-5e1a" name="Fomoroid Crusher" 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">10</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">6</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">5+</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="a901-d22d-69f3-0194" name="Other" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
<categoryLink id="81be-1714-3f36-2003" name="CHAOS" hidden="false" targetId="7cdd-80ea-cbeb-8e16" primary="false"/>
<categoryLink id="b74c-d9b0-844a-8db2" name="SLAVES TO DARKNESS" hidden="false" targetId="4ba7-618a-4e30-2e0c" primary="false"/>
<categoryLink id="3c9d-b1f0-934c-af5f" name="UNDIVIDED" hidden="false" targetId="9d00-4a54-aad5-d4c8" primary="false"/>
<categoryLink id="fdee-516a-920b-8691" name="FOMOROID" hidden="false" targetId="2ca0-5b33-3724-79d7" primary="false"/>
<categoryLink id="ef89-9093-025e-b7f6" name="FOMOROID CRUSHER" hidden="false" targetId="78e7-adc8-caa4-c1e4" primary="false"/>
<categoryLink id="771e-d8a4-f7ce-99f4" name="REGIMENT OF RENOWN" hidden="false" targetId="e41b-4270-3cf6-e397" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="6b57-c4bf-0710-7880" name="Crushing Fists and Swinging Masonry" 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="3578-8aa6-5f5e-fb4b" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="457b-eee6-8df0-495d" type="max"/>
</constraints>
<profiles>
<profile id="7c79-d874-16ef-a816" name="Crushing Fists and Swinging Masonry" 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">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">-</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="7448-89a8-4eb3-7844" name="Hurled Terrain" 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="4794-776e-3bde-21f6" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="db6b-f3eb-a2f9-b98c" type="max"/>
</constraints>
<profiles>
<profile id="3e6d-9a68-b76c-e0f6" name="Hurled Terrain" 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">-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="a7ea-37fa-041d-6508" name="Mindstealer Sphiranx" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="a59f-b050-4e38-3ae3" name="Dominate Mind" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">At the start of each combat phase, pick 1 enemy unit within 9" of this unit that is visible to it and roll 2D6. If the roll equals to exceeds the Bravery characteristic of that enemy unit, the strike-last effect applies to it until the end of that phase. You cannot pick the same unit as the target for this ability more than once in the same phase.</characteristic>
</characteristics>
</profile>
<profile id="fae7-a9e2-4c19-2a9a" name="Mindstealer Sphiranx" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">10"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">10</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">9</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">5+</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="7185-0d23-c6ff-8cca" name="Other" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
<categoryLink id="71a3-f414-4b28-9a31" name="CHAOS" hidden="false" targetId="7cdd-80ea-cbeb-8e16" primary="false"/>
<categoryLink id="e578-24c8-3073-16b4" name="SLAVES TO DARKNESS" hidden="false" targetId="4ba7-618a-4e30-2e0c" primary="false"/>
<categoryLink id="fea8-be38-1715-7fd8" name="UNDIVIDED" hidden="false" targetId="9d00-4a54-aad5-d4c8" primary="false"/>
<categoryLink id="caa5-e669-ac09-7a84" name="MINDSTEALER SPHIRANX" hidden="false" targetId="4eba-038e-39b0-c5c7" primary="false"/>
<categoryLink id="c614-8127-ed9e-fba2" name="REGIMENT OF RENOWN" hidden="false" targetId="e41b-4270-3cf6-e397" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="18da-7349-6e19-8cee" name="Shredding Claws" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a23b-9a61-a2e3-a8f2" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cbfb-7fd5-7bb6-6254" type="max"/>
</constraints>
<profiles>
<profile id="fcb8-05ac-af5e-2245" name="Shredding Claws" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">5</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">2</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="pts" typeId="points" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="7836-fd33-36d8-9a7a" name="Regiment of Renown - Jerrion's Delegation" hidden="false" collective="false" import="true" type="unit">
<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="6315-8fca-4ab4-8c60" name="Deathless Courtiers" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">Units in this regiment of renown have a ward of 6+.</characteristic>
</characteristics>
</profile>
<profile id="1c26-8358-b705-6add" name="Urgent Missive" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">Units in this regiment of renown can run and still charge later in the turn.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="4dbd-a0ba-1f3b-2445" name="Unified" hidden="false" targetId="9439-c5f6-945d-2d65" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="17f9-5967-b46e-b18a" name="Core Battalion" hidden="false" targetId="6575-7d6c-ce4d-ada4" primary="true"/>
<categoryLink targetId="1111-11dc-777-cf35" id="166d-e99b-f659-b6f9" primary="false" name="Ally"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="460"/>
</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>
<entryLinks>
<entryLink import="true" name="Crypt Flayers" hidden="false" id="fc6d-8849-78c0-e46f" type="selectionEntry" targetId="aafa-9c9d-1f97-f698">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="830-7ea5-2ec4-94e" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1417-4c1-9ed1-c1b9" type="max"/>
</constraints>
</entryLink>
<entryLink import="true" name="Crypt Horrors" hidden="false" id="9feb-a90c-5bef-8fb5" type="selectionEntry" targetId="1c79-53c3-cbef-17fc">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ed6d-b58d-59a2-19a0" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="480d-e433-9b36-5548" type="max"/>
</constraints>
</entryLink>
<entryLink import="true" name="Crypt Ghouls" hidden="false" id="6814-ac95-d72d-d5b4" type="selectionEntry" targetId="7c82-d5e1-2bfb-c2ff">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cb9f-d62d-5ead-41d4" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9abd-39a9-979f-fbbf" type="max"/>
</constraints>
</entryLink>
<entryLink import="true" name="Marrowscroll Herald" hidden="false" id="b401-5a19-b9e2-15ba" type="selectionEntry" targetId="7890-3f5f-a52f-aa08">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cd51-1284-d0b1-b0f8" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9bee-524c-ca60-3709" type="max"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntry>
<selectionEntry id="7890-3f5f-a52f-aa08" name="Marrowscroll Herald" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="85e3-603e-19a7-f821" name="Don't Shoot the Messenger" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">This unit is not visible to enemy models while it is wholly within 6" of 5 or more other friendly FLESH-EATER COURTS models.</characteristic>
</characteristics>
</profile>
<profile id="e967-98b7-2dd4-5201" name="The King's Entreaty" 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 charge phase, you can pick 1 enemy unit within 3" of this unit and say that this unit will offer it an infected bone. If you do so, your opponent must choose whether that enemy unit accepts or refuses the bone.
If it refuses, the strike-first effect applies to friendly FLESH-EATER COURTS units within 3" of this unit until the end of the following combat phase.
If it accepts, that enemy unit becomes infected. For the rest of the battle, roll 2D6 before an infected unit issues or receives a command, attempts to cast a spell, or chants a prayer. Make the roll before the action is carried out. If the roll is greater than that unit's Bravery characteristic, that unit cannot perform that action in that phase.</characteristic>
</characteristics>
</profile>
<profile id="6716-c02-75f5-fa03" name="Marrowscroll Herald" 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">10</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">5+</characteristic>
</characteristics>
</profile>
<profile name="Bone Scythe" typeId="96df-ab28-5d72-bbb3" typeName="Weapon" hidden="false" id="5a11-e988-9fed-27e4">
<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">5</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">2</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="b9ed-9de-e034-1d18" name="9 or less wounds Leader" hidden="false" targetId="a8ed-ca35-24e0-cf2e" primary="false"/>
<categoryLink id="bead-f70-7f1c-2151" name="Leader" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="1748-cb33-6474-d0de" name="HERO" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="ec2c-7ad9-623f-33d7" name="REGIMENT OF RENOWN" hidden="false" targetId="e41b-4270-3cf6-e397" primary="false"/>
<categoryLink targetId="6b35-0508-c6cc-6592" id="9f54-5b76-faaa-df1e" primary="false" name="FLESH-EATER COURTS"/>
<categoryLink targetId="53f6-aa54-91a5-fcfb" id="bfc8-2f55-d055-e3d2" primary="false" name="MORDANT"/>
<categoryLink targetId="6cdf-dd4f-0e91-e9c4" id="9069-f36f-2e0f-15c6" primary="false" name="DEATH"/>
<categoryLink targetId="aabf-1ee9-60e2-638" id="a0e2-9763-4bce-99f1" primary="false" name="COURTIER"/>
<categoryLink targetId="5fca-46aa-3eee-233f" id="b6e5-98e3-341b-ecec" primary="false" name="MARROWSCROLL HERALD"/>
</categoryLinks>
</selectionEntry>
<selectionEntry id="fab9-a5ff-f601-b712" name="Auric Hearthguard" publicationId="e67a-06d2-pubN65537" page="84" hidden="false" collective="false" import="true" type="unit">
<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>
<profiles>
<profile id="f23-e4a6-e94d-e484" 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 Karl. Add 1 to the Attacks characteristic of that model’s Magmapike.</characteristic>
</characteristics>
</profile>
<profile id="d0e9-31a7-a3c8-599b" name="Auric Hearthguard" 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">2</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">8</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">5+</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="9483-32cb-b90c-c11c" name="New CategoryLink" hidden="false" targetId="0a47-97b4-1a41-f63d" primary="false"/>
<categoryLink id="74c8-d46c-a98e-e438" name="New CategoryLink" hidden="false" targetId="945b-2f5e-58f0-75e2" primary="false"/>
<categoryLink id="3417-df63-170-6f3a" name="ORDER" hidden="false" targetId="b970-b3bf-e1a4-a6fc" primary="false"/>
<categoryLink id="50b-e466-cb53-75c1" name="FYRESLAYERS" hidden="false" targetId="4ec3-efa9-35ba-d55f" primary="false"/>
<categoryLink id="7251-43c8-23f8-7b15" name="Other" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
<categoryLink targetId="1960-a38b-f703-bc39" id="153c-a744-c970-941a" primary="false" name="AURIC HEARTHGUARD"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="ad35-1e85-65a8-943b" name="5 Auric Hearthguards" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="name" value="15 Auric Hearthguards">
<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>
<modifier type="set" field="name" value="10 Auric Hearthguards">
<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>
</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="fa21-315d-253-95c7" name="Magmapike" 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="7eb1-437f-f0f1-79a8" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="763a-0c00-57d1-1b34" type="min"/>
</constraints>
<profiles>
<profile id="cb01-37f3-bc52-8a0" name="Magmapike" 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">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry id="e9a2-bb61-37b0-f976" name="Molten Rockbolts" 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="bf2e-4c64-fd51-b179" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="045b-3880-fca5-de65" type="min"/>
</constraints>
<profiles>
<profile id="9b11-e48e-61e2-b9ff" name="Magmapike (Missile)" 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">2</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
<profile id="a67c-5a39-58cf-a68b" name="Molten Rockbolts" 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 a shooting attack made with a Magmapike is 6, subtract 1" from the target's Move characteristic until the end of your opponent's next turn. This ability cannot reduce the target unit's Move characteristic below half.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry id="70fe-3098-21a0-959b" name="Fyresteel Throwing Axe" 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="9e38-766a-a78e-d510" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fb05-252e-dcb7-4190" type="min"/>
</constraints>
<profiles>
<profile id="a432-a402-19cb-ba68" name="Fyresteel Throwing Axe (Unit)" 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">8"</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>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry id="8206-9d33-98c6-66e5" name="Hearthguard Berzerkers" publicationId="e67a-06d2-pubN65537" page="84" hidden="false" collective="false" import="true" type="unit">
<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>
<profiles>
<profile id="9408-6a1a-104b-cd38" name="Hearthguard Berzerkers" 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">2</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">8</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">5+</characteristic>
</characteristics>
</profile>
<profile id="26bc-9baf-fa92-6282" 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 Karl. Add 1 to the Attacks characteristic of that model’s melee weapons.</characteristic>
</characteristics>
</profile>
<profile id="a827-dd34-bfb2-eda2" name="Duty Unto Death" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">