-
Notifications
You must be signed in to change notification settings - Fork 82
/
Copy pathZZ - Order - Bretonnia.cat
2258 lines (2258 loc) · 166 KB
/
ZZ - Order - Bretonnia.cat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<catalogue id="5011-3921-c357-b322" name="ZZ - Order - Bretonnia" revision="13" battleScribeVersion="2.03" authorName="" authorContact="@BSData" authorUrl="https://github.com/BSData/warhammer-age-of-sigmar" library="false" gameSystemId="e51d-b1a3-75fc-dc33" gameSystemRevision="146" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<publications>
<publication id="5011-3921-pubN65537" name="Bretonnia Warscrolls Compendium"/>
</publications>
<profileTypes>
<profileType id="d4d0-1c3a-72c2-6324" name="Crew Table">
<characteristicTypes>
<characteristicType id="e8d6-f92d-a12a-1094" name="Variable1"/>
<characteristicType id="9c8c-18aa-8173-c464" name="Variable2"/>
<characteristicType id="9eb2-a763-8353-3675" name="Variable3"/>
</characteristicTypes>
</profileType>
</profileTypes>
<categoryEntries>
<categoryEntry id="641b-5071-7e8b-dc57" name="BRETONNIAN" hidden="false"/>
<categoryEntry id="3419-ea69-04b7-48a5" name="NOBILITY" hidden="false"/>
<categoryEntry id="de85-fb57-df7d-1b8f" name="KING ON HIPPOGRYPH" hidden="false"/>
<categoryEntry id="7750-7bae-100c-43ed" name="DAMSEL" hidden="false"/>
<categoryEntry id="772f-0e3a-763b-c3be" name="ENCHANTRESS" hidden="false"/>
<categoryEntry id="4b9a-e5ef-0b2a-1826" name="SACRED PROTECTOR" hidden="false"/>
<categoryEntry id="cca3-98d0-f0f5-bdd2" name="BRETONNIAN LORD" hidden="false"/>
<categoryEntry id="ad9f-e265-7775-076d" name="NOBLE CHAMPION" hidden="false"/>
<categoryEntry id="37c6-2bed-e5d8-bd26" name="NOBLE STANDARD BEARER" hidden="false"/>
<categoryEntry id="ed72-4376-42fe-0b65" name="KNIGHTS ERRANT" hidden="false"/>
<categoryEntry id="b89e-4b77-4bf9-bc14" name="KNIGHTS OF THE REALM" hidden="false"/>
<categoryEntry id="52db-8c70-eeaf-6d18" name="QUESTING KNIGHTS" hidden="false"/>
<categoryEntry id="ef96-480d-af09-d0c5" name="GRAIL KNIGHTS" hidden="false"/>
<categoryEntry id="5647-f34c-6515-2596" name="PEGASUS KNIGHTS" hidden="false"/>
<categoryEntry id="786b-b196-62c5-2249" name="PEASANTRY" hidden="false"/>
<categoryEntry id="ca19-8fcf-be7a-fe7b" name="BATTLE PILGRIMS" hidden="false"/>
<categoryEntry id="d2f1-ba4b-c495-f64a" name="MEN-AT-ARMS" hidden="false"/>
<categoryEntry id="5b2e-c5c7-4c4a-5ddc" name="PEASANT BOWMEN" hidden="false"/>
<categoryEntry id="8549-8ff0-4ae8-c7f5" name="MOUNTED YEOMAN" hidden="false"/>
<categoryEntry id="02d2-4a27-cb07-e538" name="FIELD TREBUCHET" hidden="false"/>
<categoryEntry id="6d58-3645-96dc-c60a" name="HUMAN" hidden="false"/>
</categoryEntries>
<entryLinks>
<entryLink id="1b2b-5c75-9cf7-4ad7" name="Battle Pilgrims" hidden="false" collective="false" import="true" targetId="8fc5-d149-da90-047b" type="selectionEntry">
<categoryLinks>
<categoryLink id="e0b0-274e-22ce-47ba" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="9418-bcd4-79fb-b483" name="Bretonnian Lord" hidden="false" collective="false" import="true" targetId="e1a9-89e3-72d6-885e" type="selectionEntry">
<categoryLinks>
<categoryLink id="9eec-bbac-8880-7d62" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="a2af-f700-ff32-61d0" name="Damsel" hidden="false" collective="false" import="true" targetId="9c97-1e51-0c60-bfab" type="selectionEntry">
<categoryLinks>
<categoryLink id="5537-7215-087c-4bfa" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="cf45-f77b-dc51-60f2" name="Enchantress" hidden="false" collective="false" import="true" targetId="03d5-11b2-81a0-ed7d" type="selectionEntry">
<categoryLinks>
<categoryLink id="b712-f3d2-3786-9202" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="0ebc-cc69-cf7b-5054" name="Field Trebuchet" hidden="false" collective="false" import="true" targetId="f4cc-b47a-eced-c711" type="selectionEntry">
<categoryLinks>
<categoryLink id="646e-5eb9-df89-e96f" name="New CategoryLink" hidden="false" targetId="1d26-07fc-6a66-d73e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="ceaf-cda2-8f84-c047" name="Grail Knights" hidden="false" collective="false" import="true" targetId="69d0-ca16-34ce-8951" type="selectionEntry">
<categoryLinks>
<categoryLink id="e75b-3baa-3a5f-c863" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="e5a0-892e-99ff-399f" name="King on Hippogryph" hidden="false" collective="false" import="true" targetId="20e0-a8ed-2e3c-484d" type="selectionEntry">
<categoryLinks>
<categoryLink id="1129-72e6-9287-e56f" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="21ce-5c59-451b-6498" name="Knights Errant" hidden="false" collective="false" import="true" targetId="8608-f85e-1db2-2973" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="d6ae-57bd-9239-d5e9" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="e4f9-fcfa-d6ee-705e" name="Knights of the Realm" hidden="false" collective="false" import="true" targetId="a4a4-a8dc-6838-fc3d" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="d680-e60e-3086-8af2" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="b692-b64f-1c4a-55bf" name="Men-at-Arms" hidden="false" collective="false" import="true" targetId="c3ba-5052-a7f0-6d00" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="731a-3c8b-36d5-4c75" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="8a66-0363-0647-caa7" name="Mounted Yeoman" hidden="false" collective="false" import="true" targetId="fffc-e00d-2a2e-8aee" type="selectionEntry">
<categoryLinks>
<categoryLink id="3dae-1839-8f08-1320" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="c911-d1e5-aa5d-2546" name="Noble Champion" hidden="false" collective="false" import="true" targetId="65d7-df1a-a558-4212" type="selectionEntry">
<categoryLinks>
<categoryLink id="215e-4556-b82f-2626" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="7f4c-d6bd-6dd8-bfe0" name="Noble Standard Bearer" hidden="false" collective="false" import="true" targetId="0b5f-de66-11ea-39fc" type="selectionEntry">
<categoryLinks>
<categoryLink id="1cd9-8c7d-4234-cb17" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="6ee9-f051-a645-944e" name="Peasant Bowmen" hidden="false" collective="false" import="true" targetId="e70d-7a9a-5f12-a9ad" type="selectionEntry">
<categoryLinks>
<categoryLink id="181a-2196-4cb5-08e7" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="c6f0-aa7e-b1fe-874c" name="Pegasus Knights" hidden="false" collective="false" import="true" targetId="1ef2-cd45-ab43-ff58" type="selectionEntry">
<categoryLinks>
<categoryLink id="3e50-7508-d799-6486" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="b32b-d4e1-5558-afc4" name="Questing Knights" hidden="false" collective="false" import="true" targetId="fd9f-ef7a-922e-b95d" type="selectionEntry">
<categoryLinks>
<categoryLink id="1dcc-e1a9-6b0f-6363" name="New CategoryLink" hidden="false" targetId="065e-fda7-fd27-1f40" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="04b2-8e34-64be-54f4" name="Sacred Protector" hidden="false" collective="false" import="true" targetId="d224-7a58-a487-5354" type="selectionEntry">
<categoryLinks>
<categoryLink id="50b3-e34a-d75c-819d" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="2434-8867-a7ad-2497" name="Allegiance" hidden="false" collective="false" import="true" targetId="e7e9-7303-aa57-9301" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="ancestor" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="cd35-b5ae-4334-17f0" name="New CategoryLink" hidden="false" targetId="87e8-c095-f059-5f7b" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="0d10-2674-643c-19aa" name="Knights Errant" hidden="false" collective="false" import="true" targetId="8608-f85e-1db2-2973" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="1187-7e5e-281d-bc6d" name="New CategoryLink" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="d9b0-122d-39f1-8974" name="Knights of the Realm" hidden="false" collective="false" import="true" targetId="a4a4-a8dc-6838-fc3d" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="92c6-77db-ded2-2b28" name="New CategoryLink" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="3ed5-300d-1096-74f4" name="Men-at-Arms" hidden="false" collective="false" import="true" targetId="c3ba-5052-a7f0-6d00" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="6ff7-164d-5485-38e9" name="New CategoryLink" hidden="false" targetId="e9f2-765a-b7b8-ce8e" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
<sharedSelectionEntries>
<selectionEntry id="20e0-a8ed-2e3c-484d" name="King on Hippogryph" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="3546-f532-ce2b-86fb" name="King on Hippogryph" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">*</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">3+</characteristic>
</characteristics>
</profile>
<profile id="012c-05ea-f101-fe28" name="Wounds0" hidden="false" typeId="90d1-a434-348d-a861" typeName="Damage Table">
<characteristics>
<characteristic name="Variable 1" typeId="420a-645a-ab28-93a0">Wounds Suffered</characteristic>
<characteristic name="Variable 2" typeId="4cdd-1e03-530f-0ff7">Move</characteristic>
<characteristic name="Variable 3" typeId="b1ea-56be-ba52-16e9">Hippogryph's Talons</characteristic>
<characteristic name="Variable 4" typeId="ad26-bf56-95c4-80f1">Razor-sharp Beak</characteristic>
</characteristics>
</profile>
<profile id="78b6-1182-7770-d2e5" name="Wounds1" hidden="false" typeId="90d1-a434-348d-a861" typeName="Damage Table">
<characteristics>
<characteristic name="Variable 1" typeId="420a-645a-ab28-93a0">0-2</characteristic>
<characteristic name="Variable 2" typeId="4cdd-1e03-530f-0ff7">14"</characteristic>
<characteristic name="Variable 3" typeId="b1ea-56be-ba52-16e9">3+</characteristic>
<characteristic name="Variable 4" typeId="ad26-bf56-95c4-80f1">3+</characteristic>
</characteristics>
</profile>
<profile id="0302-053b-aa23-dbd5" name="Wounds2" hidden="false" typeId="90d1-a434-348d-a861" typeName="Damage Table">
<characteristics>
<characteristic name="Variable 1" typeId="420a-645a-ab28-93a0">3-4</characteristic>
<characteristic name="Variable 2" typeId="4cdd-1e03-530f-0ff7">12"</characteristic>
<characteristic name="Variable 3" typeId="b1ea-56be-ba52-16e9">3+</characteristic>
<characteristic name="Variable 4" typeId="ad26-bf56-95c4-80f1">4+</characteristic>
</characteristics>
</profile>
<profile id="fa17-f40d-817a-f9f7" name="Wounds3" hidden="false" typeId="90d1-a434-348d-a861" typeName="Damage Table">
<characteristics>
<characteristic name="Variable 1" typeId="420a-645a-ab28-93a0">5-6</characteristic>
<characteristic name="Variable 2" typeId="4cdd-1e03-530f-0ff7">10"</characteristic>
<characteristic name="Variable 3" typeId="b1ea-56be-ba52-16e9">4+</characteristic>
<characteristic name="Variable 4" typeId="ad26-bf56-95c4-80f1">4+</characteristic>
</characteristics>
</profile>
<profile id="af60-3f07-1f64-4088" name="Wounds4" hidden="false" typeId="90d1-a434-348d-a861" typeName="Damage Table">
<characteristics>
<characteristic name="Variable 1" typeId="420a-645a-ab28-93a0">7-8</characteristic>
<characteristic name="Variable 2" typeId="4cdd-1e03-530f-0ff7">8"</characteristic>
<characteristic name="Variable 3" typeId="b1ea-56be-ba52-16e9">4+</characteristic>
<characteristic name="Variable 4" typeId="ad26-bf56-95c4-80f1">5+</characteristic>
</characteristics>
</profile>
<profile id="5926-3685-50e6-a5e8" name="Wounds5" hidden="false" typeId="90d1-a434-348d-a861" typeName="Damage Table">
<characteristics>
<characteristic name="Variable 1" typeId="420a-645a-ab28-93a0">9+</characteristic>
<characteristic name="Variable 2" typeId="4cdd-1e03-530f-0ff7">6"</characteristic>
<characteristic name="Variable 3" typeId="b1ea-56be-ba52-16e9">5+</characteristic>
<characteristic name="Variable 4" typeId="ad26-bf56-95c4-80f1">5+</characteristic>
</characteristics>
</profile>
<profile id="63d6-0812-5a13-ee77" name="Regal Crown" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Do not take battleshock tests for friendly Bretonnian units while they are within 24" of this model.</characteristic>
</characteristics>
</profile>
<profile id="3620-7498-062d-10cb" name="Lion Shield" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">This model can attempt to unbind 1 spell in each enemy hero phase. In addition, in the combat phase, re-roll save rolls of 1 for this model if it made a charge move in the same turn.</characteristic>
</characteristics>
</profile>
<profile id="4b00-2ec3-5edf-5bb2" name="Sword of the King" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Re-roll failed hit rolls for the Sword of the King if the target is a Hero or Monster.</characteristic>
</characteristics>
</profile>
<profile id="c649-f829-4333-e24d" name="Champion of the People" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">At the start of your hero phase, heal D3 wounds that have been allocated to this model.</characteristic>
</characteristics>
</profile>
<profile id="3a6d-df18-0e4c-cdea" name="King of the Realm" hidden="false" typeId="c749-bae4-71a8-0c36" typeName="Command Trait">
<characteristics>
<characteristic name="Command Trait Details" typeId="ee96-6f3a-e5ca-2350">If this model uses this ability, then in your next combat phase add 1 to hit rolls for friendly NOBILITY units within 24" of this model that made a charge move in the same turn.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="5855-3cb8-e880-37ab" name="Fly" hidden="false" targetId="8e0c-cbe4-27be-8a30" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="4a50-e745-bb35-18df" name="New CategoryLink" hidden="false" targetId="641b-5071-7e8b-dc57" primary="false"/>
<categoryLink id="5f8a-7d39-872b-8f74" name="New CategoryLink" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="ee48-b3f3-60a3-34fb" name="New CategoryLink" hidden="false" targetId="de85-fb57-df7d-1b8f" primary="false"/>
<categoryLink id="f313-4d6e-86cb-72fe" name="New CategoryLink" hidden="false" targetId="6d58-3645-96dc-c60a" primary="false"/>
<categoryLink id="c165-8745-073f-f9d8" name="New CategoryLink" hidden="false" targetId="3419-ea69-04b7-48a5" primary="false"/>
<categoryLink id="347e-0f97-cd23-92ae" name="New CategoryLink" hidden="false" targetId="b970-b3bf-e1a4-a6fc" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="0bec-26c9-6de1-5826" name="Hippogryph's Razor-sharp Beak" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5095-6f42-915b-ecca" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c493-e223-a43c-ab2f" type="min"/>
</constraints>
<profiles>
<profile id="f4b3-7a1c-e688-01cb" name="Hippogryph's Razor-sharp Beak" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">2"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">1</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">*</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">D6</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="7dfc-b415-223b-60de" name="Hippogryph's Talons" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cf2f-f3f3-d08c-ed3e" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fec0-2ac9-bee9-7ca2" type="min"/>
</constraints>
<profiles>
<profile id="5f67-5f14-9962-fbbd" name="Hippogryph's 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">2"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">5</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">*</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="2107-f4b0-40c2-e740" name="Sword of the King" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8bd2-7483-9458-86d8" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ab3a-d85a-6f17-3ba5" type="min"/>
</constraints>
<profiles>
<profile id="5aea-578e-1d7b-45cc" name="Sword of the King" 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">6</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">D3</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="96f1-9b64-d6a2-1391" name="General" hidden="false" collective="false" import="true" targetId="09e0-1ae8-cb05-a399" type="selectionEntry"/>
<entryLink id="07fc-bed1-a532-32e8" name="Artefacts" hidden="false" collective="false" import="true" targetId="7297-d66c-76f5-8366" type="selectionEntryGroup"/>
<entryLink id="bd22-6177-da9f-4f81" name="Command Traits" hidden="false" collective="false" import="true" targetId="5658-537a-90a6-8eed" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="400.0"/>
</costs>
</selectionEntry>
<selectionEntry id="03d5-11b2-81a0-ed7d" name="Enchantress" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="c155-30ab-59ce-0388" name="Enchantress" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">14"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">5</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="3881-f3ee-1e67-f0f2" name="Chalice of Potions" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">In your hero phase, you can re-roll one failed casting roll for this model. If you do and the result of the re-roll is a 2 before any modifiers are applied, then you cannot use this ability again for the rest of the battle.</characteristic>
</characteristics>
</profile>
<profile id="1299-6bf1-47fd-fdc2" name="Saintly Guardians" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">In the combat phase, re-roll failed hit rolls for friendly GRAIL KNIGHTS units while they are within 10" of this model.</characteristic>
</characteristics>
</profile>
<profile id="99b7-5621-5109-d85c" name="Spiteful Glance" 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, pick an enemy unit within 3" of this model and roll 2D6. The enemy unit suffers 1 mortal wound if the result of the roll is equal to or higher than its Bravery characteristic.</characteristic>
</characteristics>
</profile>
<profile id="2046-3a7b-243c-f374" name="Blessed" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">In your hero phase, heal D3 wounds that have been allocated to this model.</characteristic>
</characteristics>
</profile>
<profile id="c45b-8601-4185-fc8c" name="Divine Favour" hidden="false" typeId="2e81-5e22-c6e1-73cb" typeName="Spell">
<characteristics>
<characteristic name="Casting Value" typeId="2508-b604-1258-a920">6</characteristic>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">If successfully cast, pick a friendly BRETONNIAN unit that is visible to the caster and within 16" of them. Until your next hero phase, add 1 to hit rolls for that unit’s melee weapons.</characteristic>
<characteristic name="Range" typeId="5b5c-1fd1-4c0f-5705"/>
</characteristics>
</profile>
<profile id="6967-8a96-5fef-25b9" name="Enchantress" hidden="false" typeId="f55d-ee3a-1597-110f" typeName="Magic">
<characteristics>
<characteristic name="Cast/Unbind" typeId="8294-f605-2c0f-8f92">2/2</characteristic>
<characteristic name="Spells Known" typeId="dc9c-47d3-6931-859c">Arcane Bolt, Mystic Shield, Divine Favour</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="3b7b-47ec-8239-5e5d" name="Arcane Bolt" hidden="false" targetId="ae02-a84f-a903-1ff8" type="profile"/>
<infoLink id="b730-4d3f-7667-a6cf" name="Mystic Shield" hidden="false" targetId="b41f-f1ce-7aa5-4f81" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="4045-7190-01c9-a851" name="New CategoryLink" hidden="false" targetId="641b-5071-7e8b-dc57" primary="false"/>
<categoryLink id="8c6f-dc1d-20e3-bb03" name="New CategoryLink" hidden="false" targetId="7750-7bae-100c-43ed" primary="false"/>
<categoryLink id="4130-fea0-7aed-59ed" name="New CategoryLink" hidden="false" targetId="772f-0e3a-763b-c3be" primary="false"/>
<categoryLink id="e5f7-bfd9-4c92-4221" name="New CategoryLink" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="33df-b250-f0f3-131d" name="New CategoryLink" hidden="false" targetId="6d58-3645-96dc-c60a" primary="false"/>
<categoryLink id="459a-65b9-1585-d97e" name="New CategoryLink" hidden="false" targetId="3419-ea69-04b7-48a5" primary="false"/>
<categoryLink id="2a03-d632-1eeb-e52e" name="New CategoryLink" hidden="false" targetId="b970-b3bf-e1a4-a6fc" primary="false"/>
<categoryLink id="0c53-eede-d0f1-f0c7" name="New CategoryLink" hidden="false" targetId="4f53-8230-2f02-9639" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="646e-05c1-3599-b6ca" name="Enchantress' Blessed Blade" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e2d4-116e-ae61-61c7" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6459-7db6-3562-234b" type="min"/>
</constraints>
<profiles>
<profile id="f9f0-18a4-b9e1-b6d9" name="Enchantress' Blessed 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">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">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="a2a3-3986-a2d7-df9e" name="Unicorn's Enchanted Horn" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="507e-f4da-4981-02da" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4118-0a87-6f99-091f" type="min"/>
</constraints>
<profiles>
<profile id="87f8-06c2-5a69-16fd" name="Unicorn's Enchanted Horn" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">1</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">2</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="170b-1cc6-244d-17a0" name="Unicorn's Silvershod Hooves" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d323-6194-8ef5-de19" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3259-a8fa-2e58-1ba3" type="min"/>
</constraints>
<profiles>
<profile id="be81-6224-2ee2-9590" name="Unicorn's Silvershod Hooves" 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.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="aed7-9413-a49e-be62" name="General" hidden="false" collective="false" import="true" targetId="09e0-1ae8-cb05-a399" type="selectionEntry"/>
<entryLink id="1b23-6025-b832-981e" name="Artefacts" hidden="false" collective="false" import="true" targetId="7297-d66c-76f5-8366" type="selectionEntryGroup"/>
<entryLink id="9a95-a7a5-55f1-cfd9" name="Command Traits" hidden="false" collective="false" import="true" targetId="5658-537a-90a6-8eed" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="160.0"/>
</costs>
</selectionEntry>
<selectionEntry id="d224-7a58-a487-5354" name="Sacred Protector" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="43a1-7006-1186-3f92" name="Sacred Protector" 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">5</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">9</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">3+</characteristic>
</characteristics>
</profile>
<profile id="80c2-d49b-7ad0-c360" name="Ethereal" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">When making save rolls for this unit, ignore the attacking weapon’s Rend characteristic.</characteristic>
</characteristics>
</profile>
<profile id="4f6c-28fd-4425-58a0" name="Shield of the Ancient Forests" 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 you allocate a wound or mortal wound to this model. On a roll of 6+ that wound is negated and has no effect.</characteristic>
</characteristics>
</profile>
<profile id="4230-3dc6-b42c-b286" name="Summoned from the Mists" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Instead of setting up this model on the battlefield, you must place it to one side and say that it is set up in the mists. In each of your movement phases, roll a dice for this model. On a roll of 3 or less the model remains in the mists – you must roll again in your next movement phase. On a roll of 4+, set up this model anywhere on the battlefield, more than 9" from any enemy models. This counts as its move for that movement phase.</characteristic>
</characteristics>
</profile>
<profile id="9bbc-83e6-bcf3-4e3c" name="Fly" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">This model passes through physical barriers as though they were not there. It moves in the same manner as a model that can fly.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="24be-bf2c-7bdd-e105" name="Fly" hidden="false" targetId="8e0c-cbe4-27be-8a30" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="1869-afe8-4cf0-c8c3" name="New CategoryLink" hidden="false" targetId="641b-5071-7e8b-dc57" primary="false"/>
<categoryLink id="2220-3e12-3366-2255" name="New CategoryLink" hidden="false" targetId="6d58-3645-96dc-c60a" primary="false"/>
<categoryLink id="3f4b-4e99-1447-afe8" name="New CategoryLink" hidden="false" targetId="3419-ea69-04b7-48a5" primary="false"/>
<categoryLink id="c41b-c2ba-ded3-4449" name="New CategoryLink" hidden="false" targetId="b970-b3bf-e1a4-a6fc" primary="false"/>
<categoryLink id="ec6d-3de8-02fa-c9ec" name="New CategoryLink" hidden="false" targetId="4b9a-e5ef-0b2a-1826" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="681a-d003-2e5f-6dfb" name="Shadow Steed" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a93d-d176-6b0d-50b1" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="86cd-0508-468f-0e26" type="min"/>
</constraints>
<profiles>
<profile id="1439-6b8c-2e94-47d7" name="Shadow Steed" 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">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.0"/>
</costs>
</selectionEntry>
<selectionEntry id="85af-77cd-f999-3f24" name="Glowing Blade" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fe4a-d71e-79e8-9059" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="feb3-ff1d-8a6b-6bc7" type="min"/>
</constraints>
<profiles>
<profile id="8e88-52d6-8fc2-8f1f" name="Glowing 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">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.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="55ef-2bcf-e970-4ca5" name="General" hidden="false" collective="false" import="true" targetId="09e0-1ae8-cb05-a399" type="selectionEntry"/>
<entryLink id="448f-5464-92ae-0d54" name="Artefacts" hidden="false" collective="false" import="true" targetId="7297-d66c-76f5-8366" type="selectionEntryGroup"/>
<entryLink id="8290-f746-1df5-00af" name="Command Traits" hidden="false" collective="false" import="true" targetId="5658-537a-90a6-8eed" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="200.0"/>
</costs>
</selectionEntry>
<selectionEntry id="e1a9-89e3-72d6-885e" name="Bretonnian Lord" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="1ce6-85cf-79e8-17da" name="Dragonbane" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Add 1 to hit rolls for the Ducal Sword and Dragonbane Lance if this model made a charge move in the same turn. In addition, re-roll failed hit rolls for the Ducal Sword and Dragonbane Lance if the target is a MONSTER.</characteristic>
</characteristics>
</profile>
<profile id="f967-043a-0dda-453c" name="Ducal Shield" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">In the combat phase, re-roll save rolls of 1 for this model if it made a charge move in the same turn.</characteristic>
</characteristics>
</profile>
<profile id="c198-b938-b98c-a8c3" name="Lord of the Realm" hidden="false" typeId="c749-bae4-71a8-0c36" typeName="Command Trait">
<characteristics>
<characteristic name="Command Trait Details" typeId="ee96-6f3a-e5ca-2350">If this model uses this ability, until your next hero phase re-roll failed charge rolls for friendly NOBILITY units that are within 15" of this model when the charge roll is made.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="6973-55d6-dc65-4999" name="New CategoryLink" hidden="false" targetId="641b-5071-7e8b-dc57" primary="false"/>
<categoryLink id="b4ed-1713-8804-4768" name="New CategoryLink" hidden="false" targetId="cca3-98d0-f0f5-bdd2" primary="false"/>
<categoryLink id="91c8-c9d6-c0e2-76a8" name="New CategoryLink" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="57fd-9b0d-f633-8937" name="New CategoryLink" hidden="false" targetId="6d58-3645-96dc-c60a" primary="false"/>
<categoryLink id="56b1-642c-b35a-8d32" name="New CategoryLink" hidden="false" targetId="3419-ea69-04b7-48a5" primary="false"/>
<categoryLink id="b6de-bacc-3948-893e" name="New CategoryLink" hidden="false" targetId="b970-b3bf-e1a4-a6fc" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="8f21-b396-6cf6-190c" name="Ducal Sword and Dragonbane Lance" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="bd5d-ff0a-5e38-10dd" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2849-3141-ead3-ad03" type="min"/>
</constraints>
<profiles>
<profile id="628c-4f12-d01c-17b3" name="Ducal Sword and Dragonbane Lance" 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">5</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">D3</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="dfe4-a352-15ab-551c" name="Steed's Hooves" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d75b-538a-ac47-8e15" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b76d-f94a-ce5d-aa71" type="min"/>
</constraints>
<profiles>
<profile id="546c-b9a1-b8f2-38c4" name="Steed's Hooves" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">2</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="c8d5-2f52-ffc0-749d" name="Mount" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5338-728e-4751-3045" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3d80-c438-1277-7bfe" type="min"/>
</constraints>
<selectionEntries>
<selectionEntry id="26d2-293d-51fb-5757" name="Steed" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="0b51-fcd6-6a06-d914" name="Bretonnian Lord" 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">5</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">9</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">3+</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="4370-a32a-38df-a995" name="Pegasus" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="2dce-cdf6-fd83-10c1" name="Bretonnian Lord" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">16"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">5</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">9</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">3+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="de0b-a58a-ddd6-d342" name="Fly" hidden="false" targetId="8e0c-cbe4-27be-8a30" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="2537-a1dd-64ff-2d3e" name="General" hidden="false" collective="false" import="true" targetId="09e0-1ae8-cb05-a399" type="selectionEntry"/>
<entryLink id="90a2-54b2-8d96-3234" name="Artefacts" hidden="false" collective="false" import="true" targetId="7297-d66c-76f5-8366" type="selectionEntryGroup"/>
<entryLink id="806c-89e0-844b-99b6" name="Command Traits" hidden="false" collective="false" import="true" targetId="5658-537a-90a6-8eed" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="140.0"/>
</costs>
</selectionEntry>
<selectionEntry id="65d7-df1a-a558-4212" name="Noble Champion" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="ec55-186c-e508-c42d" name="Noble Champion" 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">7</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">3+</characteristic>
</characteristics>
</profile>
<profile id="9096-abf4-3fb1-4ffe" name="Relic Weapon" 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 the Relic Weapon if the target is a DAEMON or DEATH unit.</characteristic>
</characteristics>
</profile>
<profile id="82fa-38d1-73a1-3654" name="Virtue of Empathy" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">In the battleshock phase, friendly PEASANTRY units can use this model’s Bravery characteristic when they take a battleshock test if they are within 6" of this model when the test is taken.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="4983-9604-ef3e-7ba7" name="New CategoryLink" hidden="false" targetId="641b-5071-7e8b-dc57" primary="false"/>
<categoryLink id="b1df-b519-0e02-784f" name="New CategoryLink" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="7d94-ef78-a443-cc41" name="New CategoryLink" hidden="false" targetId="6d58-3645-96dc-c60a" primary="false"/>
<categoryLink id="452c-3b8e-2b21-0079" name="New CategoryLink" hidden="false" targetId="3419-ea69-04b7-48a5" primary="false"/>
<categoryLink id="9e90-772d-47aa-886b" name="New CategoryLink" hidden="false" targetId="ad9f-e265-7775-076d" primary="false"/>
<categoryLink id="f3b7-629f-ce80-5794" name="New CategoryLink" hidden="false" targetId="b970-b3bf-e1a4-a6fc" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="e4ed-17c8-89f1-384c" name="Relic Weapon" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3085-86e5-fd2a-427e" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="05d3-ca34-9382-7d31" type="min"/>
</constraints>
<profiles>
<profile id="a40c-9c93-6a50-142c" name="Relic Weapon" 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">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="36bd-ee44-a001-ef4b" name="General" hidden="false" collective="false" import="true" targetId="09e0-1ae8-cb05-a399" type="selectionEntry"/>
<entryLink id="759c-faaa-dddb-200b" name="Artefacts" hidden="false" collective="false" import="true" targetId="7297-d66c-76f5-8366" type="selectionEntryGroup"/>
<entryLink id="422b-e59a-0a07-2eb8" name="Command Traits" hidden="false" collective="false" import="true" targetId="5658-537a-90a6-8eed" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="80.0"/>
</costs>
</selectionEntry>
<selectionEntry id="0b5f-de66-11ea-39fc" name="Noble Standard Bearer" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="dc50-17ef-943c-8daa" name="Noble Standard Bearer" 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">5</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">7</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">3+</characteristic>
</characteristics>
</profile>
<profile id="9efe-2bde-740f-4beb" name="Relic Weapon" 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 the Relic Weapon if the target is a DAEMON or DEATH unit.</characteristic>
</characteristics>
</profile>
<profile id="513c-92b0-bc9e-7e67" name="Valorous Banner" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">In the battleshock phase, you can re-roll battleshock tests for friendly NOBILITY units that were within 12" of this model when the test was taken.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="99a1-4639-83b9-8548" name="New CategoryLink" hidden="false" targetId="641b-5071-7e8b-dc57" primary="false"/>
<categoryLink id="6983-fad6-8ede-51eb" name="New CategoryLink" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="af78-86a9-f396-166d" name="New CategoryLink" hidden="false" targetId="6d58-3645-96dc-c60a" primary="false"/>
<categoryLink id="421e-d3a1-27f6-f139" name="New CategoryLink" hidden="false" targetId="3419-ea69-04b7-48a5" primary="false"/>
<categoryLink id="bc84-b919-c2c4-f41e" name="New CategoryLink" hidden="false" targetId="37c6-2bed-e5d8-bd26" primary="false"/>
<categoryLink id="0b18-524e-33f6-8070" name="New CategoryLink" hidden="false" targetId="b970-b3bf-e1a4-a6fc" primary="false"/>
<categoryLink id="23dc-7437-18f6-baa9" name="New CategoryLink" hidden="false" targetId="3504-ea8e-28ec-5150" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="44c8-54be-7989-5d4a" name="Relic Weapon" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d356-8fda-b265-ce51" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="05dc-60e7-0c74-4efa" type="min"/>
</constraints>
<profiles>
<profile id="bbb6-05c5-ae0c-aa34" name="Relic Weapon" 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">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="9859-ec30-2e9c-5368" name="General" hidden="false" collective="false" import="true" targetId="09e0-1ae8-cb05-a399" type="selectionEntry"/>
<entryLink id="7224-db6d-e73f-25dc" name="Artefacts" hidden="false" collective="false" import="true" targetId="7297-d66c-76f5-8366" type="selectionEntryGroup"/>
<entryLink id="9b7c-6657-ca63-40ad" name="Command Traits" hidden="false" collective="false" import="true" targetId="5658-537a-90a6-8eed" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="80.0"/>
</costs>
</selectionEntry>
<selectionEntry id="9c97-1e51-0c60-bfab" name="Damsel" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="e486-44b5-707f-6366" name="Soothing Aura" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">In your hero phase, you can heal 1 wound allocated to a friendly BRETONNIAN model that is within 6" of this model.</characteristic>
</characteristics>
</profile>
<profile id="8fc2-0b02-dca4-3963" name="Divine Blessing" hidden="false" typeId="2e81-5e22-c6e1-73cb" typeName="Spell">
<characteristics>
<characteristic name="Casting Value" typeId="2508-b604-1258-a920">5</characteristic>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">If successfully cast, pick a friendly BRETONNIAN unit that is within 16" of the caster. Until your next hero phase, roll a dice each time you allocate a wound or mortal wound to that unit. Add 1 to the dice roll if the unit has NOBILITY keyword. On a roll of 6+, the wound is negated and has no effect.</characteristic>
<characteristic name="Range" typeId="5b5c-1fd1-4c0f-5705"/>
</characteristics>
</profile>
<profile id="0c27-a38f-af2f-ca0b" name="Damsel" 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, Divine Blessing </characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="8d99-720c-cbaf-6c8c" name="Arcane Bolt" hidden="false" targetId="ae02-a84f-a903-1ff8" type="profile"/>
<infoLink id="ddbc-f686-2c30-810a" name="Mystic Shield" hidden="false" targetId="b41f-f1ce-7aa5-4f81" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="edaf-ba22-6a79-28f2" name="New CategoryLink" hidden="false" targetId="641b-5071-7e8b-dc57" primary="false"/>
<categoryLink id="10a5-a712-f3fa-c8a0" name="New CategoryLink" hidden="false" targetId="7750-7bae-100c-43ed" primary="false"/>
<categoryLink id="e618-7ca8-0a8f-123b" name="New CategoryLink" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="b106-c59d-b2ec-6a15" name="New CategoryLink" hidden="false" targetId="6d58-3645-96dc-c60a" primary="false"/>
<categoryLink id="120a-eb93-8a8d-8922" name="New CategoryLink" hidden="false" targetId="3419-ea69-04b7-48a5" primary="false"/>
<categoryLink id="a4ea-2cc3-1ef7-2f24" name="New CategoryLink" hidden="false" targetId="4f53-8230-2f02-9639" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="07d8-bb86-5181-fe6c" name="Staff of Purity" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1738-4e93-2070-6902" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9395-8a39-049c-d8f2" type="min"/>
</constraints>
<profiles>
<profile id="86e6-3be0-835a-6f5b" name="Staff of Purity" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">1</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">D3</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="842c-40ff-2fc9-dde6" name="Mount" hidden="false" collective="false" import="true" defaultSelectionEntryId="c6e7-f982-f4e2-ace5">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d708-66f3-0e24-e204" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4e91-89d0-c804-46fa" type="min"/>
</constraints>
<selectionEntries>
<selectionEntry id="c6e7-f982-f4e2-ace5" name="None" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="13ee-37fa-faf1-9f3b" name="Damsel" 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">6</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">6+</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="a02c-d4c2-8e26-b52a" name="Purebred Horse" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="8044-a9d8-d8f2-f95a" name="Damsel" 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">5</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">6</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">6+</characteristic>
</characteristics>
</profile>
<profile id="bc21-9b03-66da-e97b" name="Mount's Hooves" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">2</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="b875-9433-74cb-b3d8" name="Pegasus" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="681c-14ac-944c-fb0b" name="Damsel" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">16"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">5</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">6</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">6+</characteristic>
</characteristics>
</profile>
<profile id="bfd8-9329-c9e7-4b01" name="Mount's Hooves" 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>
<infoLinks>
<infoLink id="ed08-3299-bd49-5abe" name="Fly" hidden="false" targetId="8e0c-cbe4-27be-8a30" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="09aa-f318-86ff-2e32" name="General" hidden="false" collective="false" import="true" targetId="09e0-1ae8-cb05-a399" type="selectionEntry"/>
<entryLink id="5a02-3006-1585-5b78" name="Artefacts" hidden="false" collective="false" import="true" targetId="7297-d66c-76f5-8366" type="selectionEntryGroup"/>
<entryLink id="1f55-c260-9df2-ead1" name="Command Traits" hidden="false" collective="false" import="true" targetId="5658-537a-90a6-8eed" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="100.0"/>
</costs>
</selectionEntry>
<selectionEntry id="8608-f85e-1db2-2973" name="Knights Errant" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="9fde-a4d3-0c60-94db" name="Knights Errant" 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">2</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">5</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">4+</characteristic>