This repository has been archived by the owner on Apr 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Minas_Tirith.cat
2739 lines (2738 loc) · 139 KB
/
Minas_Tirith.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"?><catalogue xmlns="http://www.battlescribe.net/schema/catalogueSchema" battleScribeVersion="2.01" id="2d85-84b6-487d-b636" name="Minas Tirith" book="Kingdoms of Men" revision="3" authorName="Christian Sørup Jensen" authorContact="christiansorup@me.com" gameSystemId="16cf-760b-7965-6537" gameSystemRevision="1">
<categoryEntries/>
<profiles/>
<rules/>
<infoLinks/>
<costTypes/>
<profileTypes/>
<forceEntries/>
<selectionEntries>
<selectionEntry id="3a4f-6b7e-67cd-00f8" name="Aragorn, King Elessar" book="Kingdoms of Men" page="17" hidden="false" collective="false" type="model">
<categoryLinks>
<categoryLink id="3a4f-6b7e-67cd-00f8-8e06-cb8f-41c0-09a4" targetId="8e06-cb8f-41c0-09a4" primary="true"/>
</categoryLinks>
<profiles>
<profile id="cfa5-7240-52f6-35a5" name="Aragorn, King Elessar" book="Kingdoms of Men" page="17" hidden="false" profileTypeId="07d0-bd3a-4a2e-7fc3">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<characteristics>
<characteristic name="Move" characteristicTypeId="9aa1-0558-afe7-c4cd" value="6"/14cm"/>
<characteristic name="Fight" characteristicTypeId="994d-f52a-5bd3-3999" value="6/3+"/>
<characteristic name="Strength" characteristicTypeId="831d-46e6-7fc1-05a3" value="4"/>
<characteristic name="Defence" characteristicTypeId="fba1-bb39-c1ba-ecc5" value="7"/>
<characteristic name="Attack" characteristicTypeId="c687-7ea3-0136-2709" value="3"/>
<characteristic name="Wounds" characteristicTypeId="d47a-e35a-5537-db08" value="3"/>
<characteristic name="Courage" characteristicTypeId="e454-648f-e035-2d38" value="6"/>
<characteristic name="Might" characteristicTypeId="d58c-1700-0746-eb70" value="3*"/>
<characteristic name="Will" characteristicTypeId="2901-329c-81a2-38c6" value="3"/>
<characteristic name="Fate" characteristicTypeId="9560-1b5e-8403-8e23" value="3"/>
<characteristic name="Type" characteristicTypeId="5fc6-5066-6538-7e3b" value="Man"/>
</characteristics>
</profile>
</profiles>
<rules>
<rule id="2393-72dc-a060-980c" name="*Mighty Hero" book="Kingdoms of Men" page="17" hidden="false">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<description>Aragorn can expend 1 point of Might per turn without reducing his Might store. Any additional points of Might expended during his turn reduce his Might store as normal.</description>
</rule>
</rules>
<infoLinks/>
<modifiers/>
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="maxInForce" type="max"/>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="maxInRoster" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="23b8-3129-848f-056f" name="Andúril, Flame of the West" book="Kingdoms of Men" page="17" hidden="false" collective="false" type="upgrade">
<profiles/>
<rules>
<rule id="8e60-5bd5-825f-eddc" name="Andúril, Flame of the West" book="Kingdoms of Men" page="17" hidden="false">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<description>When fighting with Andúril, Aragorn never needs to roll more than 4+ to score a Wound, regardless of the opponents Defence (this rule has no effect against targets that have Batter Points instead of Wounds). His rolls To Wound can be modified by using Might as normal.</description>
</rule>
</rules>
<infoLinks/>
<modifiers/>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="df4a-f076-c9ff-7d4e" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="4d8f-3db2-2098-5dc1" type="max"/>
</constraints>
<selectionEntries/>
<selectionEntryGroups/>
<entryLinks/>
<costs>
<cost name="pts" costTypeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="31c8-2a18-6553-6cb1" name="Heavy armour" book="Kingdoms of Men" page="17" hidden="false" collective="false" type="upgrade">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="bde5-71cb-07c3-227e" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="16cc-9e8a-6631-6f5c" type="max"/>
</constraints>
<selectionEntries/>
<selectionEntryGroups/>
<entryLinks/>
<costs>
<cost name="pts" costTypeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="3da2-c613-bd6f-837f" name="Armoured horse" book="Kingdoms of Men" page="17" hidden="false" collective="false" type="upgrade">
<profiles/>
<rules/>
<infoLinks>
<infoLink id="2fed-5b8f-47c2-d8b0" name="New InfoLink" hidden="false" targetId="9d3e-edce-5c71-931b" type="profile">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
</infoLink>
</infoLinks>
<modifiers/>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="c515-55c9-46a1-7f33" type="max"/>
</constraints>
<selectionEntries/>
<selectionEntryGroups/>
<entryLinks/>
<costs>
<cost name="pts" costTypeId="points" value="15.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups/>
<entryLinks/>
<costs>
<cost name="pts" costTypeId="points" value="260.0"/>
</costs>
</selectionEntry>
<selectionEntry id="06a2-dfd4-1c52-a4b2" name="Avenger Bolt Thrower" book="Kingdoms of Men" page="23" hidden="false" collective="false" type="model">
<categoryLinks>
<categoryLink id="06a2-dfd4-1c52-a4b2-c892-016b-5298-f37d" targetId="c892-016b-5298-f37d" primary="true"/>
</categoryLinks>
<profiles>
<profile id="ffa9-ee37-77fc-9a36" name="Avenger Bolt Thrower" book="Kingdoms of Men" page="23" hidden="false" profileTypeId="8dae-e592-675b-e608">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<characteristics>
<characteristic name="Strength" characteristicTypeId="3684-4bad-79f7-2a2c" value="(7)"/>
<characteristic name="Defence" characteristicTypeId="7017-e823-5773-12b4" value="10"/>
<characteristic name="Wounds" characteristicTypeId="b509-5974-0a4a-b2a2" value="3"/>
<characteristic name="Type" characteristicTypeId="d4dd-3731-7350-033f" value="Siege Engine"/>
</characteristics>
</profile>
<profile id="c8ac-e411-80bb-c0cd" name="Warrior of Minas Tirith" book="The Kingdoms of Man" page="23" hidden="false" profileTypeId="c77f-e6ae-b63d-62d2" profileTypeName="Warrior">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<characteristics>
<characteristic name="Move" characteristicTypeId="196b-a97b-5c5f-dee8" value="6"/14cm"/>
<characteristic name="Fight" characteristicTypeId="3d78-8110-7697-953f" value="3/4+"/>
<characteristic name="Strength" characteristicTypeId="dec8-2675-ef6e-49c0" value="3"/>
<characteristic name="Defence" characteristicTypeId="cddc-0d63-2e80-720a" value="5"/>
<characteristic name="Attack" characteristicTypeId="fad9-e38b-321f-e9f0" value="1"/>
<characteristic name="Wounds" characteristicTypeId="901e-fb27-2b16-cfe6" value="1"/>
<characteristic name="Courage" characteristicTypeId="0274-aa2c-00fa-faf0" value="3"/>
<characteristic name="Type" characteristicTypeId="db72-8cd8-395a-78e6" value="Man"/>
</characteristics>
</profile>
</profiles>
<rules>
<rule id="8067-3cc6-67ec-b588" name="Short Range" book="The Kingdoms of Man" page="23" hidden="false">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<description>An Avenger Bolt Thrower has a Range of 24"/56cm rather than the normal 48"/112cm</description>
</rule>
<rule id="dacb-9f4d-93f1-bc30" name="Rapid Fire" book="The Kingdoms of Man" page="23" hidden="false">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<description>An Avenger Bolt Thrower fires D6 shots each turn rather than one. Resolve each shot individually, rolling To Hit, to scatter, and To Wound for each before proceeding with the next. Shots from an Avenger Bolt Thrower do not kill Battlefield targets outright nor knock them to the ground. The usual restrictions on targeting apply. In addition, the second and following shots must be at models within 3"/8cm of the first target.</description>
</rule>
<rule id="9f76-5257-066c-8832" name="Accurate" book="The Kingdoms of Man" page="23" hidden="false">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<description>When firing an Avenger at a Battlefield target, the shot will only scatter 3"/8cm rather than 6"/14cm</description>
</rule>
</rules>
<infoLinks/>
<modifiers/>
<constraints/>
<selectionEntries>
<selectionEntry id="de04-1795-7652-3e8c" name="Crew: Two Warriors of Minas Tirith with heavy armour" book="Kingdoms of Men" page="23" hidden="false" collective="false" type="upgrade">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="03f7-0eb0-e1fe-655f" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="2e6a-2401-072a-9e05" type="max"/>
</constraints>
<selectionEntries/>
<selectionEntryGroups/>
<entryLinks/>
<costs>
<cost name="pts" costTypeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="4414-26e1-58af-7de8" name="Additional Warrior of Minas Tirith crew" hidden="false" collective="false" type="upgrade">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints>
<constraint field="selections" scope="parent" value="9.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1ec0-f3f6-38e5-afa0" type="max"/>
</constraints>
<selectionEntries/>
<selectionEntryGroups/>
<entryLinks/>
<costs>
<cost name="pts" costTypeId="points" value="7.0"/>
</costs>
</selectionEntry>
<selectionEntry id="8ea4-372b-598d-0062" name="Flaming ammunition" book="Kingdoms of Men" page="23" hidden="false" collective="false" type="upgrade">
<profiles/>
<rules/>
<infoLinks>
<infoLink id="bce4-25b5-b832-8b43" name="New InfoLink" hidden="false" targetId="85a3-5fcb-6505-b79c" type="rule">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
</infoLink>
</infoLinks>
<modifiers/>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="953b-52f1-62cc-b1a7" type="max"/>
</constraints>
<selectionEntries/>
<selectionEntryGroups/>
<entryLinks/>
<costs>
<cost name="pts" costTypeId="points" value="15.0"/>
</costs>
</selectionEntry>
<selectionEntry id="36d0-6e7a-2480-f949" name="Minas Tirith Engineer Captain" book="Kingdoms of Men" page="23" hidden="false" collective="false" type="upgrade">
<profiles/>
<rules/>
<infoLinks>
<infoLink id="38bc-aa9b-fde4-75f0" name="New InfoLink" hidden="false" targetId="2507-c351-8e85-f546" type="rule">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
</infoLink>
</infoLinks>
<modifiers/>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="b6c4-6d9c-c469-d059" type="max"/>
</constraints>
<selectionEntries/>
<selectionEntryGroups/>
<entryLinks/>
<costs>
<cost name="pts" costTypeId="points" value="75.0"/>
</costs>
</selectionEntry>
<selectionEntry id="3287-215f-2abe-ff23" name="Siege Veterans" book="Kingdoms of Men" page="23" hidden="false" collective="false" type="upgrade">
<profiles/>
<rules/>
<infoLinks>
<infoLink id="389a-f3df-f100-22e0" name="New InfoLink" hidden="false" targetId="026d-9114-92bf-15fd" type="rule">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
</infoLink>
</infoLinks>
<modifiers/>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="8be4-fb8f-8ec5-a58e" type="max"/>
</constraints>
<selectionEntries/>
<selectionEntryGroups/>
<entryLinks/>
<costs>
<cost name="pts" costTypeId="points" value="15.0"/>
</costs>
</selectionEntry>
<selectionEntry id="c374-45be-4632-c451" name="Superior construction" book="Kingdoms of Men" page="23" hidden="false" collective="false" type="upgrade">
<profiles/>
<rules/>
<infoLinks>
<infoLink id="9581-1462-69ca-633e" name="New InfoLink" hidden="false" targetId="3679-eb54-bca1-3551" type="rule">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
</infoLink>
</infoLinks>
<modifiers/>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="08df-806c-6d7a-3430" type="max"/>
</constraints>
<selectionEntries/>
<selectionEntryGroups/>
<entryLinks/>
<costs>
<cost name="pts" costTypeId="points" value="20.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups/>
<entryLinks/>
<costs>
<cost name="pts" costTypeId="points" value="70.0"/>
</costs>
</selectionEntry>
<selectionEntry id="5baf-1367-8acc-c493" name="Battlecry Trebuchet" book="Kingdoms of Men" page="23" hidden="false" collective="false" type="model">
<categoryLinks>
<categoryLink id="5baf-1367-8acc-c493-c892-016b-5298-f37d" targetId="c892-016b-5298-f37d" primary="true"/>
</categoryLinks>
<profiles>
<profile id="633d-354d-af0a-c6d9" name="Battlecry Trebuchet" book="Kingdoms of Men" page="23" hidden="false" profileTypeId="8dae-e592-675b-e608">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<characteristics>
<characteristic name="Strength" characteristicTypeId="3684-4bad-79f7-2a2c" value="(10)"/>
<characteristic name="Defence" characteristicTypeId="7017-e823-5773-12b4" value="10"/>
<characteristic name="Wounds" characteristicTypeId="b509-5974-0a4a-b2a2" value="4"/>
<characteristic name="Type" characteristicTypeId="d4dd-3731-7350-033f" value="Siege Engine"/>
</characteristics>
</profile>
<profile id="380d-1470-985f-4af6" name="Warrior of Minas Tirith" book="The Kingdoms of Man" page="23" hidden="false" profileTypeId="c77f-e6ae-b63d-62d2" profileTypeName="Warrior">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<characteristics>
<characteristic name="Move" characteristicTypeId="196b-a97b-5c5f-dee8" value="6"/14cm"/>
<characteristic name="Fight" characteristicTypeId="3d78-8110-7697-953f" value="3/4+"/>
<characteristic name="Strength" characteristicTypeId="dec8-2675-ef6e-49c0" value="3"/>
<characteristic name="Defence" characteristicTypeId="cddc-0d63-2e80-720a" value="5"/>
<characteristic name="Attack" characteristicTypeId="fad9-e38b-321f-e9f0" value="1"/>
<characteristic name="Wounds" characteristicTypeId="901e-fb27-2b16-cfe6" value="1"/>
<characteristic name="Courage" characteristicTypeId="0274-aa2c-00fa-faf0" value="3"/>
<characteristic name="Type" characteristicTypeId="db72-8cd8-395a-78e6" value="Man"/>
</characteristics>
</profile>
</profiles>
<rules>
<rule id="0784-18ec-b103-ab78" name="Inderect Fire" book="Kingdoms of Men" page="23" hidden="false">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<description>A Trebuchet always follows the rules for Volley Fire, giving it a a range of 18-96"/42-224cm. When firing a Trebuchet, follow the rules for siege engines in the main rules manual, with the following exceptions:
- A Trebuchet hits the target on the roll of a 4+
- If a hit is rolled and the target is a Siege target, the shot will hit it autocamatically (no scattering)
- If the target is a Battlefield target, roll on the Siege Engine's Scatter chart instead of following the nomrla rules for allocating hits with a volley.</description>
</rule>
<rule id="eb4a-e18a-e0fc-3e11" name="Area Effect" book="Kingdoms of Men" page="23" hidden="false">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<description>If the Trebuchet scores a hit against a Battlefield target, all models withing 2"/4cm of the target take a hit of Strength 5 (this hit does not kill Battlefield targets outright).</description>
</rule>
<rule id="6ea0-df17-0d23-4fc2" name="Wall-breaker" book="Kingdoms of Men" page="23" hidden="false">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<description>When a Trebuchet rolls to Wound against a Siege target, the controlling player may roll two dice and pick the highest. If a Wound is caused, roll on the Batter chart as normal.</description>
</rule>
</rules>
<infoLinks/>
<modifiers/>
<constraints/>
<selectionEntries>
<selectionEntry id="5eac-3d10-a750-92fe" name="Crew: Three warriors of Minas Tirith with heavy amour" book="Kingdoms of Men" page="23" hidden="false" collective="false" type="upgrade">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="44c4-eb7c-6edf-54e8" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="a118-ace7-4364-1b9c" type="max"/>
</constraints>
<selectionEntries/>
<selectionEntryGroups/>
<entryLinks/>
<costs>
<cost name="pts" costTypeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="e899-bd30-0038-48d4" name="Additional Warrior of Minas Tirith crew" hidden="false" collective="false" type="upgrade">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints>
<constraint field="selections" scope="force" value="8.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5878-5cff-a97f-b95a" type="max"/>
</constraints>
<selectionEntries/>
<selectionEntryGroups/>
<entryLinks/>
<costs>
<cost name="pts" costTypeId="points" value="7.0"/>
</costs>
</selectionEntry>
<selectionEntry id="b912-5d16-3d09-d3a7" name="Flaming ammunition" book="Kingdoms of Men" page="23" hidden="false" collective="false" type="upgrade">
<profiles/>
<rules/>
<infoLinks>
<infoLink id="93ef-7ad6-bee6-86af" name="New InfoLink" hidden="false" targetId="85a3-5fcb-6505-b79c" type="rule">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
</infoLink>
</infoLinks>
<modifiers/>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="65a7-0f3c-2dc7-8722" type="max"/>
</constraints>
<selectionEntries/>
<selectionEntryGroups/>
<entryLinks/>
<costs>
<cost name="pts" costTypeId="points" value="15.0"/>
</costs>
</selectionEntry>
<selectionEntry id="3f9e-efe3-564a-250d" name="Minas Tirith Engineer Captain" book="Kingdoms of Men" page="23" hidden="false" collective="false" type="upgrade">
<profiles/>
<rules/>
<infoLinks>
<infoLink id="0c46-25c7-f48b-79b5" name="New InfoLink" hidden="false" targetId="2507-c351-8e85-f546" type="rule">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
</infoLink>
</infoLinks>
<modifiers/>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="bbfa-16f6-0922-69f1" type="max"/>
</constraints>
<selectionEntries/>
<selectionEntryGroups/>
<entryLinks/>
<costs>
<cost name="pts" costTypeId="points" value="75.0"/>
</costs>
</selectionEntry>
<selectionEntry id="6fda-1496-b985-aeaf" name="Siege Veterans" book="Kingdoms of Men" page="23" hidden="false" collective="false" type="upgrade">
<profiles/>
<rules/>
<infoLinks>
<infoLink id="86fd-2609-d3c9-46de" name="New InfoLink" hidden="false" targetId="026d-9114-92bf-15fd" type="rule">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
</infoLink>
</infoLinks>
<modifiers/>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="383c-0f3a-d90d-fa1a" type="max"/>
</constraints>
<selectionEntries/>
<selectionEntryGroups/>
<entryLinks/>
<costs>
<cost name="pts" costTypeId="points" value="15.0"/>
</costs>
</selectionEntry>
<selectionEntry id="e146-5a0d-40ef-ae9f" name="Superior construction" book="Kingdoms of Men" page="23" hidden="false" collective="false" type="upgrade">
<profiles/>
<rules/>
<infoLinks>
<infoLink id="98f7-63e7-a879-396f" name="New InfoLink" hidden="false" targetId="3679-eb54-bca1-3551" type="rule">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
</infoLink>
</infoLinks>
<modifiers/>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="5c8d-e8ae-0c0d-0ceb" type="max"/>
</constraints>
<selectionEntries/>
<selectionEntryGroups/>
<entryLinks/>
<costs>
<cost name="pts" costTypeId="points" value="20.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups/>
<entryLinks/>
<costs>
<cost name="pts" costTypeId="points" value="110.0"/>
</costs>
</selectionEntry>
<selectionEntry id="f8ee-33b1-bb83-232d" name="Beregond" book="Kingdoms of Men" page="19" hidden="false" collective="false" type="model">
<categoryLinks>
<categoryLink id="f8ee-33b1-bb83-232d-8e06-cb8f-41c0-09a4" targetId="8e06-cb8f-41c0-09a4" primary="true"/>
</categoryLinks>
<profiles>
<profile id="783c-3be6-a25a-ef2b" name="Beregond" book="Kingdoms of Men" page="19" hidden="false" profileTypeId="07d0-bd3a-4a2e-7fc3">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<characteristics>
<characteristic name="Move" characteristicTypeId="9aa1-0558-afe7-c4cd" value="6"/14cm"/>
<characteristic name="Fight" characteristicTypeId="994d-f52a-5bd3-3999" value="4/3+"/>
<characteristic name="Strength" characteristicTypeId="831d-46e6-7fc1-05a3" value="4"/>
<characteristic name="Defence" characteristicTypeId="fba1-bb39-c1ba-ecc5" value="6"/>
<characteristic name="Attack" characteristicTypeId="c687-7ea3-0136-2709" value="1"/>
<characteristic name="Wounds" characteristicTypeId="d47a-e35a-5537-db08" value="1"/>
<characteristic name="Courage" characteristicTypeId="e454-648f-e035-2d38" value="4"/>
<characteristic name="Might" characteristicTypeId="d58c-1700-0746-eb70" value="1"/>
<characteristic name="Will" characteristicTypeId="2901-329c-81a2-38c6" value="1"/>
<characteristic name="Fate" characteristicTypeId="9560-1b5e-8403-8e23" value="1"/>
<characteristic name="Type" characteristicTypeId="5fc6-5066-6538-7e3b" value="Man"/>
</characteristics>
</profile>
</profiles>
<rules>
<rule id="bc24-66f6-eee1-2f31" name="Bodyguard (Gondor)" book="Kingdoms of Men" hidden="false">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<description>At the start of the game, choose another Hero of Gondor among those in your force for all your models with the Bodyguard (Gondor) special rule to protect. As long as this Hero is alive and on the board, models with this special rule automatically pass all Courage tests they have to take.</description>
</rule>
</rules>
<infoLinks/>
<modifiers/>
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="maxInForce" type="max"/>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="maxInRoster" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="e68b-21da-5e53-1c6d" name="Heavy armour" book="Kingdoms of Men" page="19" hidden="false" collective="false" type="upgrade">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="fe22-94f2-cd7b-d0b8" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="ea00-2f95-52fa-62ba" type="max"/>
</constraints>
<selectionEntries/>
<selectionEntryGroups/>
<entryLinks/>
<costs>
<cost name="pts" costTypeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="65e8-8b8d-715b-1c56" name="Longbow (elf bow)" book="Kingdoms of Men" page="19" hidden="false" collective="false" type="upgrade">
<profiles/>
<rules/>
<infoLinks>
<infoLink id="b478-c9c0-4809-e8e5" name="New InfoLink" hidden="false" targetId="2130-9089-8afe-22a4" type="profile">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
</infoLink>
</infoLinks>
<modifiers/>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="fadd-aa51-8f4d-b435" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="f514-8ca7-3841-d625" type="max"/>
</constraints>
<selectionEntries/>
<selectionEntryGroups/>
<entryLinks/>
<costs>
<cost name="pts" costTypeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="bba3-fde2-a37c-3a80" name="Horse" book="Kingdoms of Men" page="19" hidden="false" collective="false" type="upgrade">
<profiles/>
<rules/>
<infoLinks>
<infoLink id="bb8c-df1d-f1c3-719a" name="New InfoLink" hidden="false" targetId="6ce1-5ee7-4e92-16a0" type="profile">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
</infoLink>
</infoLinks>
<modifiers/>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="dfee-348a-b588-82c0" type="max"/>
</constraints>
<selectionEntries/>
<selectionEntryGroups/>
<entryLinks/>
<costs>
<cost name="pts" costTypeId="points" value="6.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups/>
<entryLinks/>
<costs>
<cost name="pts" costTypeId="points" value="25.0"/>
</costs>
</selectionEntry>
<selectionEntry id="52cd-3acb-3269-ee23" name="Boromir, Captain of the White Tower" book="Kingdoms of Men" page="18" hidden="false" collective="false" type="model">
<categoryLinks>
<categoryLink id="52cd-3acb-3269-ee23-8e06-cb8f-41c0-09a4" targetId="8e06-cb8f-41c0-09a4" primary="true"/>
</categoryLinks>
<profiles>
<profile id="40e4-f4e7-42b9-3ed6" name="Boromir, Captain of the White Tower" book="Kingdoms of Men" page="18" hidden="false" profileTypeId="07d0-bd3a-4a2e-7fc3">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<characteristics>
<characteristic name="Move" characteristicTypeId="9aa1-0558-afe7-c4cd" value="6"/14cm"/>
<characteristic name="Fight" characteristicTypeId="994d-f52a-5bd3-3999" value="6/4+"/>
<characteristic name="Strength" characteristicTypeId="831d-46e6-7fc1-05a3" value="4"/>
<characteristic name="Defence" characteristicTypeId="fba1-bb39-c1ba-ecc5" value="6"/>
<characteristic name="Attack" characteristicTypeId="c687-7ea3-0136-2709" value="3"/>
<characteristic name="Wounds" characteristicTypeId="d47a-e35a-5537-db08" value="3"/>
<characteristic name="Courage" characteristicTypeId="e454-648f-e035-2d38" value="6"/>
<characteristic name="Might" characteristicTypeId="d58c-1700-0746-eb70" value="6"/>
<characteristic name="Will" characteristicTypeId="2901-329c-81a2-38c6" value="3"/>
<characteristic name="Fate" characteristicTypeId="9560-1b5e-8403-8e23" value="3"/>
<characteristic name="Type" characteristicTypeId="5fc6-5066-6538-7e3b"/>
</characteristics>
</profile>
</profiles>
<rules/>
<infoLinks/>
<modifiers/>
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="maxInForce" type="max"/>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0d5b-85ca-384b-4a84" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="c80e-714d-11ed-aca5" name="Heavy armour" book="Kingdoms of Men" page="18" hidden="false" collective="false" type="upgrade">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="c56f-a71d-283e-2323" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="8efa-0d64-f72b-8242" type="max"/>
</constraints>
<selectionEntries/>
<selectionEntryGroups/>
<entryLinks/>
<costs>
<cost name="pts" costTypeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="9b72-24d1-5bfc-89ec" name="The Horn of Gondor" book="Kingdoms of Men" page="18" hidden="false" collective="false" type="upgrade">
<profiles/>
<rules>
<rule id="01b9-d9e2-2564-108d" name="The Horn of Gondor" book="The Kingdoms of Men" page="18" hidden="false">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<description>Boromir can blow the horn at the start of a fight if he is outnumbered by two-to-one or more. The enemy combatant with the highest Courage must take a Courage test. If this is passed, the combat is fought as normal. If the test is failed, Boromir automatically wins the fight and can strike blows against his enemies.</description>
</rule>
</rules>
<infoLinks/>
<modifiers/>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="356d-fac5-162e-9028" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="50e6-9bb5-562d-f5fc" type="max"/>
</constraints>
<selectionEntries/>
<selectionEntryGroups/>
<entryLinks/>
<costs>
<cost name="pts" costTypeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="fe9d-c07a-16ab-785c" name="Horse" book="The Kingdoms of Men" page="18" hidden="false" collective="false" type="upgrade">
<profiles/>
<rules/>
<infoLinks>
<infoLink id="50ea-5180-a937-3af4" name="New InfoLink" hidden="false" targetId="6ce1-5ee7-4e92-16a0" type="profile">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
</infoLink>
</infoLinks>
<modifiers/>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="7448-f089-3825-c60b" type="max"/>
</constraints>
<selectionEntries/>
<selectionEntryGroups/>
<entryLinks/>
<costs>
<cost name="pts" costTypeId="points" value="10.0"/>
</costs>
</selectionEntry>
<selectionEntry id="66b6-52ab-d8f5-d845" name="Lance" book="The Kingdoms of Men" page="18" hidden="true" collective="false" type="upgrade">
<profiles/>
<rules/>
<infoLinks>
<infoLink id="d942-60e6-91ae-2f9a" name="New InfoLink" hidden="false" targetId="514f-ef5e-91a6-fb55" type="rule">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
</infoLink>
</infoLinks>
<modifiers>
<modifier type="set" field="hidden" value="false">
<repeats/>
<conditions>
<condition field="selections" scope="52cd-3acb-3269-ee23" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="fe9d-c07a-16ab-785c" type="equalTo"/>
</conditions>
<conditionGroups/>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="6a44-dc83-7f27-7995" type="max"/>
</constraints>
<selectionEntries/>
<selectionEntryGroups/>
<entryLinks/>
<costs>
<cost name="pts" costTypeId="points" value="5.0"/>
</costs>
</selectionEntry>
<selectionEntry id="bed4-2548-59fa-8b75" name="Shield" book="Kingdoms of Men" page="18" hidden="false" collective="false" type="upgrade">
<profiles/>
<rules/>
<infoLinks>
<infoLink id="8a42-7ddf-7363-951a" name="New InfoLink" hidden="false" targetId="b934-e865-e199-a7ae" type="rule">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
</infoLink>
<infoLink id="b1c3-01cd-3b4e-dbbd" name="New InfoLink" hidden="false" targetId="e0df-99a8-fc55-3419" type="rule">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
</infoLink>
</infoLinks>
<modifiers/>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="e37e-907f-9b75-2dee" type="max"/>
</constraints>
<selectionEntries/>
<selectionEntryGroups/>
<entryLinks/>
<costs>
<cost name="pts" costTypeId="points" value="5.0"/>
</costs>
</selectionEntry>
<selectionEntry id="dd02-7a52-cf88-e4c6" name="The Banner of Minas Tirith" book="The Kingdoms of Men" page="18" hidden="false" collective="false" type="upgrade">
<profiles/>
<rules>
<rule id="6d53-2d29-5ca7-1cb1" name="The Banner of Minas Tirith" book="The Kingdoms of Men" page="1" hidden="false">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<description>The Banner of Minas Tirith is a banner. If Boromir carries the Banner of Minas Tirith, all Warriors from the Gondor army list within 3"/8cm receive a +1 bonus to their Fight value. Boromir also receives this bonus, although other Heroes do not. Unlike other banner bearers, such is Boromir's skill in battle that he suffers no -1 penalty to his dice roll when determining who wins the combat, although he gains no benefit from carrying a shield or a lance. If you wish to model Boromir with a shield he will gain no benefit from it if he also carries the banner, so you need not pay the points. Note that this bonus is cumulative with other fight value bonuses.</description>
</rule>
</rules>
<infoLinks/>
<modifiers/>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="6330-fd16-6f8a-b52b" type="max"/>
</constraints>
<selectionEntries/>
<selectionEntryGroups/>
<entryLinks/>
<costs>
<cost name="pts" costTypeId="points" value="50.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups/>
<entryLinks/>
<costs>
<cost name="pts" costTypeId="points" value="175.0"/>
</costs>
</selectionEntry>
<selectionEntry id="26c8-7da5-2898-d143" name="Captain of Minas Tirith" book="Kingdoms of Men" page="20" hidden="false" collective="false" type="model">
<categoryLinks>
<categoryLink id="26c8-7da5-2898-d143-8e06-cb8f-41c0-09a4" targetId="8e06-cb8f-41c0-09a4" primary="true"/>
</categoryLinks>
<profiles>
<profile id="1979-4e7c-6138-99a4" name="Captain of Minas Tirith" book="Kingdoms of Men" page="20" hidden="false" profileTypeId="07d0-bd3a-4a2e-7fc3">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<characteristics>
<characteristic name="Move" characteristicTypeId="9aa1-0558-afe7-c4cd" value="6"/14cm"/>
<characteristic name="Fight" characteristicTypeId="994d-f52a-5bd3-3999" value="4/4+"/>
<characteristic name="Strength" characteristicTypeId="831d-46e6-7fc1-05a3" value="4"/>
<characteristic name="Defence" characteristicTypeId="fba1-bb39-c1ba-ecc5" value="6"/>
<characteristic name="Attack" characteristicTypeId="c687-7ea3-0136-2709" value="2"/>
<characteristic name="Wounds" characteristicTypeId="d47a-e35a-5537-db08" value="2"/>
<characteristic name="Courage" characteristicTypeId="e454-648f-e035-2d38" value="4"/>
<characteristic name="Might" characteristicTypeId="d58c-1700-0746-eb70" value="2"/>
<characteristic name="Will" characteristicTypeId="2901-329c-81a2-38c6" value="1"/>
<characteristic name="Fate" characteristicTypeId="9560-1b5e-8403-8e23" value="1"/>
<characteristic name="Type" characteristicTypeId="5fc6-5066-6538-7e3b" value="Man"/>
</characteristics>
</profile>
</profiles>
<rules/>
<infoLinks/>
<modifiers/>
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f10b-9365-0064-4396" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="9616-adfa-db6f-076f" name="Heavy armour" book="Kingdoms of Men" page="20" hidden="false" collective="false" type="upgrade">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="4570-9080-0483-11a7" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="f061-1866-734d-af72" type="max"/>
</constraints>
<selectionEntries/>
<selectionEntryGroups/>
<entryLinks/>
<costs>
<cost name="pts" costTypeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="dd03-4c5c-10bc-055c" name="Bow" book="Kingdoms of Men" page="20" hidden="false" collective="false" type="upgrade">
<profiles/>
<rules/>
<infoLinks>
<infoLink id="19b7-a9ca-b901-b5db" name="New InfoLink" hidden="false" targetId="5134-d1bd-1c25-a3cf" type="profile">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
</infoLink>
</infoLinks>
<modifiers/>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="7a73-80b3-1138-2a57" type="max"/>
</constraints>
<selectionEntries/>
<selectionEntryGroups/>
<entryLinks/>
<costs>
<cost name="pts" costTypeId="points" value="5.0"/>
</costs>
</selectionEntry>
<selectionEntry id="d807-22a5-27ae-e042" name="Horse" book="Kingdoms of Men" page="20" hidden="false" collective="false" type="upgrade">
<profiles/>
<rules/>
<infoLinks>
<infoLink id="3d43-d2f9-52ee-e603" name="New InfoLink" hidden="false" targetId="6ce1-5ee7-4e92-16a0" type="profile">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
</infoLink>
</infoLinks>
<modifiers/>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="e19d-b604-578e-8ee8" type="max"/>
</constraints>
<selectionEntries/>
<selectionEntryGroups/>
<entryLinks/>
<costs>
<cost name="pts" costTypeId="points" value="10.0"/>
</costs>
</selectionEntry>
<selectionEntry id="7f51-b917-8b9b-e95c" name="Lance" book="Kingdoms of Men" page="20" hidden="true" collective="false" type="upgrade">
<profiles/>
<rules/>
<infoLinks>
<infoLink id="b722-8236-0380-247b" name="New InfoLink" hidden="false" targetId="514f-ef5e-91a6-fb55" type="rule">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
</infoLink>
</infoLinks>
<modifiers>
<modifier type="set" field="hidden" value="false">
<repeats/>
<conditions>
<condition field="selections" scope="26c8-7da5-2898-d143" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="d807-22a5-27ae-e042" type="equalTo"/>
</conditions>
<conditionGroups/>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="0d6f-e32c-e359-6f51" type="max"/>
</constraints>
<selectionEntries/>
<selectionEntryGroups/>
<entryLinks/>
<costs>
<cost name="pts" costTypeId="points" value="5.0"/>
</costs>
</selectionEntry>
<selectionEntry id="a766-7aff-8dfb-cff0" name="Shield" book="Kingdoms of Men" page="20" hidden="false" collective="false" type="upgrade">
<profiles/>
<rules/>
<infoLinks>
<infoLink id="5f18-23a3-6c40-b370" name="New InfoLink" hidden="false" targetId="b934-e865-e199-a7ae" type="rule">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
</infoLink>
<infoLink id="69ab-5856-6e2c-f2d7" name="New InfoLink" hidden="false" targetId="e0df-99a8-fc55-3419" type="rule">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
</infoLink>
</infoLinks>
<modifiers/>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="3dde-a871-40a3-f223" type="max"/>
</constraints>
<selectionEntries/>
<selectionEntryGroups/>
<entryLinks/>
<costs>
<cost name="pts" costTypeId="points" value="5.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups/>
<entryLinks/>
<costs>
<cost name="pts" costTypeId="points" value="50.0"/>
</costs>
</selectionEntry>
<selectionEntry id="cd1b-747a-4ba4-444e" name="Cirion, Lieutenant of Amon Barad" book="Kingdoms of Men" page="20" hidden="false" collective="false" type="model">
<categoryLinks>
<categoryLink id="cd1b-747a-4ba4-444e-8e06-cb8f-41c0-09a4" targetId="8e06-cb8f-41c0-09a4" primary="true"/>
</categoryLinks>
<profiles>
<profile id="138e-6b0c-428e-e483" name="Cirion, Lieutenant of Amon Barad" book="Kingdoms of Men" page="20" hidden="false" profileTypeId="07d0-bd3a-4a2e-7fc3">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<characteristics>
<characteristic name="Move" characteristicTypeId="9aa1-0558-afe7-c4cd" value="6"/14cm"/>
<characteristic name="Fight" characteristicTypeId="994d-f52a-5bd3-3999" value="4/4+"/>
<characteristic name="Strength" characteristicTypeId="831d-46e6-7fc1-05a3" value="4"/>
<characteristic name="Defence" characteristicTypeId="fba1-bb39-c1ba-ecc5" value="6"/>
<characteristic name="Attack" characteristicTypeId="c687-7ea3-0136-2709" value="2"/>
<characteristic name="Wounds" characteristicTypeId="d47a-e35a-5537-db08" value="2"/>
<characteristic name="Courage" characteristicTypeId="e454-648f-e035-2d38" value="4"/>
<characteristic name="Might" characteristicTypeId="d58c-1700-0746-eb70" value="3"/>
<characteristic name="Will" characteristicTypeId="2901-329c-81a2-38c6" value="1"/>
<characteristic name="Fate" characteristicTypeId="9560-1b5e-8403-8e23" value="1"/>
<characteristic name="Type" characteristicTypeId="5fc6-5066-6538-7e3b" value="Man"/>
</characteristics>
</profile>
</profiles>
<rules>
<rule id="9c32-2d8d-4c73-5c7c" name="Boldest of the Bold" book="Kingdoms of Men" page="20" hidden="false">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<description>When attempting to charge an enemy that causes Terror, Cirion receives a +2 bonus to his Courage.</description>
</rule>
</rules>
<infoLinks/>
<modifiers/>
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="maxInForce" type="max"/>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="maxInRoster" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="3ef4-e5b1-8cc5-7dae" name="Armour" book="Kingdoms of Men" page="20" hidden="false" collective="false" type="upgrade">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="ed55-fdb7-b4c5-5990" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="d6e9-a81a-32f3-dd8e" type="max"/>
</constraints>
<selectionEntries/>
<selectionEntryGroups/>
<entryLinks/>
<costs>