This repository has been archived by the owner on Nov 13, 2018. It is now read-only.
forked from BSData/hobbit
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Arnor.cat
1166 lines (1165 loc) · 56.9 KB
/
Arnor.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="2587-8b93-97a0-ad95" name="Arnor" book="Kingdoms of Men" revision="4" authorName="Christian Sørup Jensen" authorContact="christiansorup@me.com" gameSystemId="16cf-760b-7965-6537" gameSystemRevision="1">
<categoryEntries/>
<profiles/>
<rules>
<rule id="f184-b3da-e7aa-48fa" name="The Grey Company" book="Kingdoms of Men" page="36" hidden="false">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<description>The Grey Company of Arnor is famed for training every warrior in the use of bows.
You may opt to take a Grey Company force. If you do so, your force (or an allied contingent in your force) that contains only models from the Arnor list can take up to 4 Rangers of Arnor for each Ranger of the North or Dúnedain it contains. It can do so even if this would take it above the normal bow limit.</description>
</rule>
</rules>
<infoLinks/>
<costTypes/>
<profileTypes/>
<forceEntries/>
<selectionEntries>
<selectionEntry id="d2c2-2839-a876-168e" name="Aragorn, Isildur's Heir" book="Kingdoms of Men" page="38" hidden="false" collective="false" type="model">
<categoryLinks>
<categoryLink id="d2c2-2839-a876-168e-8e06-cb8f-41c0-09a4" targetId="8e06-cb8f-41c0-09a4" primary="true"/>
</categoryLinks>
<profiles>
<profile id="ff3c-bf0d-dfe6-70a0" name="Aragorn, Isildur's Heir" book="Kingdoms of Men" page="38" 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="5"/>
<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="4f04-45cc-1ad6-b265" name="*Mighty Hero" book="Kingdoms of Men" page="38" 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>
<rule id="2ce8-408d-c731-2195" name="Chieftain of Forgotten Arnor" book="Kingdoms of Men" page="38" hidden="false">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<description>Legolas, Gimli and both Heroes and Warriors of Arnor count as being in range of a banner if Aragorn, Isildur's Heir, is within 3"/7cm.</description>
</rule>
<rule id="e302-8789-a1b2-501a" name="Master of the Wilderness" book="Kingdoms of Men" page="38" hidden="false">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<description>Aragorn, Isildur's Heir, moved through difficult terrain without penalty, as do Legolas, Gimli and both Heroes and Warriors of Arnor, if they are on foot and within 6"/14cm of Aragorn.</description>
</rule>
</rules>
<infoLinks>
<infoLink id="6f8e-8248-8692-418e" name="New InfoLink" hidden="false" targetId="5ae7-455d-aa7e-032a" type="rule">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
</infoLink>
</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="f3c6-9a39-374b-164e" name="Elven Cloak" book="Kingdoms of Men" page="38" hidden="false" collective="false" type="upgrade">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="338a-cc23-0740-694f" type="max"/>
</constraints>
<selectionEntries/>
<selectionEntryGroups/>
<entryLinks/>
<costs>
<cost name="pts" costTypeId="points" value="10.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups/>
<entryLinks>
<entryLink id="a7b0-eedd-5050-4133" name="New EntryLink" hidden="false" targetId="f224-8657-e59f-3d8c" type="selectionEntry">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" costTypeId="points" value="200.0"/>
</costs>
</selectionEntry>
<selectionEntry id="d37b-7a26-1c00-fa61" name="Arathorn" book="Kingdoms of Men" page="37" hidden="false" collective="false" type="model">
<categoryLinks>
<categoryLink id="d37b-7a26-1c00-fa61-8e06-cb8f-41c0-09a4" targetId="8e06-cb8f-41c0-09a4" primary="true"/>
</categoryLinks>
<profiles>
<profile id="99e5-4a30-3eed-52e4" name="Arathorn" book="Kingdoms of Men" page="37" 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="5/3+"/>
<characteristic name="Strength" characteristicTypeId="831d-46e6-7fc1-05a3" value="4"/>
<characteristic name="Defence" characteristicTypeId="fba1-bb39-c1ba-ecc5" value="5"/>
<characteristic name="Attack" characteristicTypeId="c687-7ea3-0136-2709" value="3"/>
<characteristic name="Wounds" characteristicTypeId="d47a-e35a-5537-db08" value="2"/>
<characteristic name="Courage" characteristicTypeId="e454-648f-e035-2d38" value="5"/>
<characteristic name="Might" characteristicTypeId="d58c-1700-0746-eb70" value="3"/>
<characteristic name="Will" characteristicTypeId="2901-329c-81a2-38c6" value="2"/>
<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="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/>
<selectionEntryGroups/>
<entryLinks>
<entryLink id="eba7-b49d-7be4-5b2a" name="New EntryLink" hidden="false" targetId="f224-8657-e59f-3d8c" type="selectionEntry">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
</entryLink>
<entryLink id="c083-1ae7-8dba-8b69" name="New EntryLink" hidden="false" targetId="aff2-252e-06a2-80e9" type="selectionEntry">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" costTypeId="points" value="75.0"/>
</costs>
</selectionEntry>
<selectionEntry id="b15d-72a0-f515-c4b0" name="Arvedui, Last King of Arnor" book="Kingdoms of Men" page="37" hidden="false" collective="false" type="model">
<categoryLinks>
<categoryLink id="b15d-72a0-f515-c4b0-8e06-cb8f-41c0-09a4" targetId="8e06-cb8f-41c0-09a4" primary="true"/>
</categoryLinks>
<profiles>
<profile id="c1cd-1e23-f8a6-3490" name="Arvedui, Last King of Arnor" book="Kingdoms of Men" page="37" 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="5/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="5"/>
<characteristic name="Might" characteristicTypeId="d58c-1700-0746-eb70" value="3"/>
<characteristic name="Will" characteristicTypeId="2901-329c-81a2-38c6" value="2"/>
<characteristic name="Fate" characteristicTypeId="9560-1b5e-8403-8e23" value="0"/>
<characteristic name="Type" characteristicTypeId="5fc6-5066-6538-7e3b" value="Man"/>
</characteristics>
</profile>
</profiles>
<rules>
<rule id="b89a-bfcc-beda-ab2c" name="The King in the North" book="Kingdoms of Men" page="37" hidden="false">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<description>Arvedui's Stand Fast! rule has a range of 12"/28cm.</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/>
<selectionEntryGroups/>
<entryLinks>
<entryLink id="59c9-d16f-8dd7-332e" name="New EntryLink" hidden="false" targetId="c45d-8342-8e1b-6cb2" type="selectionEntry">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" costTypeId="points" value="70.0"/>
</costs>
</selectionEntry>
<selectionEntry id="2127-8052-2870-b832" name="Captain of Arnor" book="Kingdoms of Men" page="37" hidden="false" collective="false" type="model">
<categoryLinks>
<categoryLink id="2127-8052-2870-b832-8e06-cb8f-41c0-09a4" targetId="8e06-cb8f-41c0-09a4" primary="true"/>
</categoryLinks>
<profiles>
<profile id="54e0-fd30-f8bf-44f5" name="Captain of Arnor" book="Kingdoms of Men" page="37" 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="5/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="3"/>
<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="2ef1-f91b-3e00-691d" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="21e5-9cea-e0e8-9ec1" name="Bow" book="Kingdoms of Men" page="37" hidden="false" collective="false" type="upgrade">
<profiles/>
<rules/>
<infoLinks>
<infoLink id="b5cc-b165-c9ab-497f" 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="true" includeChildSelections="false" includeChildForces="false" id="eeb6-7094-1a34-79a7" type="max"/>
</constraints>
<selectionEntries/>
<selectionEntryGroups/>
<entryLinks/>
<costs>
<cost name="pts" costTypeId="points" value="5.0"/>
</costs>
</selectionEntry>
<selectionEntry id="327e-4d47-7ee2-0fb4" name="Shield" book="Kingdoms of Men" page="37" hidden="false" collective="false" type="upgrade">
<profiles/>
<rules/>
<infoLinks>
<infoLink id="589e-3ecb-b91b-25e9" name="New InfoLink" hidden="false" targetId="b934-e865-e199-a7ae" type="rule">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
</infoLink>
<infoLink id="e32a-8da5-10ad-d811" 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="true" includeChildSelections="false" includeChildForces="false" id="f015-eaef-efde-478a" type="max"/>
</constraints>
<selectionEntries/>
<selectionEntryGroups/>
<entryLinks/>
<costs>
<cost name="pts" costTypeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups/>
<entryLinks>
<entryLink id="7652-5067-8ccc-8cf5" name="New EntryLink" hidden="false" targetId="c45d-8342-8e1b-6cb2" type="selectionEntry">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" costTypeId="points" value="50.0"/>
</costs>
</selectionEntry>
<selectionEntry id="f6c1-861a-fb76-4bee" name="Dúnedain" book="Kingdoms of Men" page="38" hidden="false" collective="false" type="model">
<categoryLinks>
<categoryLink id="f6c1-861a-fb76-4bee-e059-5f8f-1ab2-017e" targetId="e059-5f8f-1ab2-017e" primary="true"/>
</categoryLinks>
<profiles>
<profile id="1259-10d3-9963-2483" name="Dúnedain" book="Kingdoms of Men" page="38" 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="4"/>
<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="5"/>
<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/>
<infoLinks/>
<modifiers/>
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="725d-1c14-e621-eabe" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="e536-8b5a-3c66-d760" name="Spear" book="Kingdoms of Men" page="38" hidden="false" collective="false" type="upgrade">
<profiles/>
<rules/>
<infoLinks>
<infoLink id="1524-cc29-7b0d-ccb8" name="New InfoLink" hidden="false" targetId="644a-02f5-9e09-a4a9" type="rule">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
</infoLink>
</infoLinks>
<modifiers/>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="392d-df1e-3ed9-cd06" type="max"/>
</constraints>
<selectionEntries/>
<selectionEntryGroups/>
<entryLinks/>
<costs>
<cost name="pts" costTypeId="points" value="1.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups/>
<entryLinks>
<entryLink id="136a-8659-80bc-439d" name="New EntryLink" hidden="false" targetId="f224-8657-e59f-3d8c" type="selectionEntry">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" costTypeId="points" value="24.0"/>
</costs>
</selectionEntry>
<selectionEntry id="3338-ca4f-8767-6b0e" name="Elladan and Elrohir" book="Kingdoms of Men" page="38" hidden="false" collective="false" type="model">
<categoryLinks>
<categoryLink id="3338-ca4f-8767-6b0e-8e06-cb8f-41c0-09a4" targetId="8e06-cb8f-41c0-09a4" primary="true"/>
</categoryLinks>
<profiles>
<profile id="89a4-b998-1d1a-9044" name="Elladan" book="Kingdoms of Men" page="38" 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="5"/>
<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="6"/>
<characteristic name="Might" characteristicTypeId="d58c-1700-0746-eb70" value="3"/>
<characteristic name="Will" characteristicTypeId="2901-329c-81a2-38c6" value="2"/>
<characteristic name="Fate" characteristicTypeId="9560-1b5e-8403-8e23" value="2"/>
<characteristic name="Type" characteristicTypeId="5fc6-5066-6538-7e3b" value="Elf"/>
</characteristics>
</profile>
<profile id="c4e7-3d6a-5359-6697" name="Elrohir" book="Kingdoms of Men" page="38" 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="5"/>
<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="6"/>
<characteristic name="Might" characteristicTypeId="d58c-1700-0746-eb70" value="3"/>
<characteristic name="Will" characteristicTypeId="2901-329c-81a2-38c6" value="2"/>
<characteristic name="Fate" characteristicTypeId="9560-1b5e-8403-8e23" value="2"/>
<characteristic name="Type" characteristicTypeId="5fc6-5066-6538-7e3b" value="Elf"/>
</characteristics>
</profile>
</profiles>
<rules>
<rule id="06fe-6f5f-b781-3647" name="Twin Elven Blades" book="Kingdoms of Men" page="38" hidden="false">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<description>When fighting on foot, the brothers must choose to fight in one of three different ways in each Fight phase.
Each brother may fight either with a single sword (counts as two-handed weapon), fight with two swords (for +1 attack), or parry (counts as shielding).</description>
</rule>
<rule id="9ea8-a069-d74d-74fc" name="Unbreakable Bond" book="Kingdoms of Men" page="38" hidden="false">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<description>If one of the twins is killed, the other will be driven mad with grief.
To represent this, the surviving twin's Strength is increased to 5 and his Defends is reduced to 4. The survivor always passes Courage teste and must do everything he can to charge the model that killed his brother as quickly as possible. Once that model is killed, the surviving twin will then move as fast as possible towards the closest visible enemy for the rest of the game, charging it if able.</description>
</rule>
</rules>
<infoLinks>
<infoLink id="66cc-17ff-e3e5-39aa" name="New InfoLink" hidden="false" targetId="25e0-58f0-ebb0-4420" type="rule">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
</infoLink>
</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="3314-70c2-e855-2ab4" name="Elven Cloaks" book="Kingdoms of Men" page="38" hidden="false" collective="false" type="upgrade">
<profiles/>
<rules/>
<infoLinks>
<infoLink id="d9a9-d80a-cc71-1459" name="New InfoLink" hidden="false" targetId="4d2b-177f-7240-6734" type="rule">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
</infoLink>
</infoLinks>
<modifiers/>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ae55-104a-79ea-faa6" type="max"/>
</constraints>
<selectionEntries/>
<selectionEntryGroups/>
<entryLinks/>
<costs>
<cost name="pts" costTypeId="points" value="20.0"/>
</costs>
</selectionEntry>
<selectionEntry id="fedf-dd2c-5434-d12a" name="Horses" book="Kingdoms of Men" page="38" hidden="false" collective="false" type="upgrade">
<profiles/>
<rules/>
<infoLinks>
<infoLink id="8beb-ca25-9b76-b4a6" 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="true" includeChildSelections="false" includeChildForces="false" id="750b-b0ef-bfbc-2d88" type="max"/>
</constraints>
<selectionEntries/>
<selectionEntryGroups/>
<entryLinks/>
<costs>
<cost name="pts" costTypeId="points" value="20.0"/>
</costs>
</selectionEntry>
<selectionEntry id="f40f-675f-dfa3-b61b" name="Elf Bows" book="Kingdoms of Men" page="38" hidden="false" collective="false" type="upgrade">
<profiles/>
<rules/>
<infoLinks>
<infoLink id="a854-3b1a-d440-0bb8" 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="true" includeChildSelections="false" includeChildForces="false" id="61f7-dcf0-20cf-6790" type="max"/>
</constraints>
<selectionEntries/>
<selectionEntryGroups/>
<entryLinks/>
<costs>
<cost name="pts" costTypeId="points" value="10.0"/>
</costs>
</selectionEntry>
<selectionEntry id="82d5-8f80-748a-b022" name="Heavy Armour" book="Kingdoms of Men" page="38" hidden="false" collective="false" type="upgrade">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="96ac-fb19-7641-eceb" type="max"/>
</constraints>
<selectionEntries/>
<selectionEntryGroups/>
<entryLinks/>
<costs>
<cost name="pts" costTypeId="points" value="10.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups/>
<entryLinks>
<entryLink id="56f6-9b1e-e621-7f4d" name="New EntryLink" hidden="false" targetId="aff2-252e-06a2-80e9" type="selectionEntry">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
</entryLink>
<entryLink id="6b95-dde2-146e-7d74" name="New EntryLink" hidden="false" targetId="5d34-a607-d56a-7ff9" type="selectionEntry">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" costTypeId="points" value="140.0"/>
</costs>
</selectionEntry>
<selectionEntry id="f58a-2d37-e061-afb0" name="Halbarad Dúnadan" book="Kingdoms of Men" page="39" hidden="false" collective="false" type="model">
<categoryLinks>
<categoryLink id="f58a-2d37-e061-afb0-8e06-cb8f-41c0-09a4" targetId="8e06-cb8f-41c0-09a4" primary="true"/>
</categoryLinks>
<profiles>
<profile id="7b96-b211-72e5-70a8" name="Halbarad Dúnadan" book="Kingdoms of Men" page="39" 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="5/3+"/>
<characteristic name="Strength" characteristicTypeId="831d-46e6-7fc1-05a3" value="4"/>
<characteristic name="Defence" characteristicTypeId="fba1-bb39-c1ba-ecc5" value="5"/>
<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="6"/>
<characteristic name="Might" characteristicTypeId="d58c-1700-0746-eb70" value="3"/>
<characteristic name="Will" characteristicTypeId="2901-329c-81a2-38c6" value="2"/>
<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="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="a222-002e-5c32-e4bd" name="Banner of Arwen Evenstar" book="Kingdoms of Men" page="39" hidden="false" collective="false" type="upgrade">
<profiles/>
<rules>
<rule id="194e-2174-3870-3efb" name="Banner of Arwen Evenstar" book="Kingdoms of Men" page="39" hidden="false">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<description>The Banner of Arwen Evenstar is a banner but affects all friendly models with 6"/14cm, not 3"/8cm. Good models within 6"/14cm of the banner automatically pass any Courage test they are required to take. Halbarad can still use his bow if he carries this banner.</description>
</rule>
</rules>
<infoLinks>
<infoLink id="60f3-546a-367b-4a08" name="New InfoLink" hidden="false" targetId="5ae7-455d-aa7e-032a" type="rule">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
</infoLink>
</infoLinks>
<modifiers/>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="680f-984c-31cf-4c3a" type="max"/>
</constraints>
<selectionEntries/>
<selectionEntryGroups/>
<entryLinks/>
<costs>
<cost name="pts" costTypeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="425f-f822-ba83-4571" name="Horse" book="Kingdoms of Men" page="39" hidden="false" collective="false" type="upgrade">
<profiles/>
<rules/>
<infoLinks>
<infoLink id="2ec0-73bb-c2ea-ef5d" 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="true" includeChildSelections="false" includeChildForces="false" id="6247-606d-b150-9ee3" type="max"/>
</constraints>
<selectionEntries/>
<selectionEntryGroups/>
<entryLinks/>
<costs>
<cost name="pts" costTypeId="points" value="10.0"/>
</costs>
</selectionEntry>
<selectionEntry id="7346-89ee-9bc1-cc7b" name="Spear" book="Kingdoms of Men" page="39" hidden="false" collective="false" type="upgrade">
<profiles/>
<rules/>
<infoLinks>
<infoLink id="6493-cc94-cb08-e5f3" name="New InfoLink" hidden="false" targetId="644a-02f5-9e09-a4a9" type="rule">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
</infoLink>
</infoLinks>
<modifiers/>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f02e-2b5a-41f6-e0dd" type="max"/>
</constraints>
<selectionEntries/>
<selectionEntryGroups/>
<entryLinks/>
<costs>
<cost name="pts" costTypeId="points" value="1.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups/>
<entryLinks>
<entryLink id="6de3-20cf-083e-2960" name="New EntryLink" hidden="false" targetId="aff2-252e-06a2-80e9" type="selectionEntry">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
</entryLink>
<entryLink id="ad74-070f-34d7-d6eb" name="New EntryLink" hidden="false" targetId="f224-8657-e59f-3d8c" type="selectionEntry">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" costTypeId="points" value="65.0"/>
</costs>
</selectionEntry>
<selectionEntry id="d56f-13af-8feb-0af9" name="Malbeth the Seer" book="Kingdoms of Men" page="37" hidden="false" collective="false" type="model">
<categoryLinks>
<categoryLink id="d56f-13af-8feb-0af9-8e06-cb8f-41c0-09a4" targetId="8e06-cb8f-41c0-09a4" primary="true"/>
</categoryLinks>
<profiles>
<profile id="56ff-3757-7ac9-f922" name="Malbeth the Seer" book="Kingdoms of Men" page="37" 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="3/4+"/>
<characteristic name="Strength" characteristicTypeId="831d-46e6-7fc1-05a3" value="4"/>
<characteristic name="Defence" characteristicTypeId="fba1-bb39-c1ba-ecc5" value="5"/>
<characteristic name="Attack" characteristicTypeId="c687-7ea3-0136-2709" value="1"/>
<characteristic name="Wounds" characteristicTypeId="d47a-e35a-5537-db08" value="2"/>
<characteristic name="Courage" characteristicTypeId="e454-648f-e035-2d38" value="5"/>
<characteristic name="Might" characteristicTypeId="d58c-1700-0746-eb70" value="1"/>
<characteristic name="Will" characteristicTypeId="2901-329c-81a2-38c6" value="2"/>
<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="98f3-0cd8-9b59-99c8" name="Gift of Foresight" book="Kingdoms of Men" page="37" hidden="false">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<description>Every time a Good model within 6"/14cm of Malbeth suffers a Wound, roll a D6. On the roll on a 5+, the Wound is prevented, exactly as if a point of Fate had been expended. Note that if this roll is failed, Fate points may still be expended 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/>
<selectionEntryGroups/>
<entryLinks>
<entryLink id="363c-4db7-48fa-be57" name="New EntryLink" hidden="false" targetId="aff2-252e-06a2-80e9" type="selectionEntry">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" costTypeId="points" value="80.0"/>
</costs>
</selectionEntry>
<selectionEntry id="d4bd-7dd3-4d04-0666" name="Ranger of Arnor" book="Kingdoms of Men" page="39" hidden="false" collective="false" type="unit">
<categoryLinks>
<categoryLink id="d4bd-7dd3-4d04-0666-e07a-883e-1b26-d891" targetId="e07a-883e-1b26-d891" primary="true"/>
</categoryLinks>
<profiles>
<profile id="ec2f-37b7-1331-b913" name="Ranger of Arnor" book="Kingdoms of Men" page="39" hidden="false" profileTypeId="c77f-e6ae-b63d-62d2">
<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="4/3+"/>
<characteristic name="Strength" characteristicTypeId="dec8-2675-ef6e-49c0" value="3"/>
<characteristic name="Defence" characteristicTypeId="cddc-0d63-2e80-720a" value="4"/>
<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/>
<infoLinks/>
<modifiers/>
<constraints/>
<selectionEntries>
<selectionEntry id="ae5d-35f3-c809-9336" name="Spear" book="Kingdoms of Men" page="39" hidden="false" collective="false" type="upgrade">
<profiles/>
<rules/>
<infoLinks>
<infoLink id="4258-14cc-7b32-7d46" name="New InfoLink" hidden="false" targetId="644a-02f5-9e09-a4a9" type="rule">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
</infoLink>
</infoLinks>
<modifiers/>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="af2e-9ba4-22fd-e8a1" type="max"/>
</constraints>
<selectionEntries/>
<selectionEntryGroups/>
<entryLinks/>
<costs>
<cost name="pts" costTypeId="points" value="1.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups/>
<entryLinks>
<entryLink id="6cdf-b681-5065-7607" name="New EntryLink" hidden="false" targetId="aff2-252e-06a2-80e9" type="selectionEntry">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
</entryLink>
<entryLink id="89a8-f809-b932-d2e6" name="New EntryLink" hidden="false" targetId="f224-8657-e59f-3d8c" type="selectionEntry">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" costTypeId="points" value="8.0"/>
</costs>
</selectionEntry>
<selectionEntry id="867f-804b-8f7f-5f23" name="Ranger of the North" book="Kingdoms of Men" page="39" hidden="false" collective="false" type="model">
<categoryLinks>
<categoryLink id="867f-804b-8f7f-5f23-e059-5f8f-1ab2-017e" targetId="e059-5f8f-1ab2-017e" primary="true"/>
</categoryLinks>
<profiles>
<profile id="a02e-3933-81aa-94ab" name="Ranger of the North" book="Kingdoms of Men" page="39" 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="5"/>
<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="5"/>
<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>
<profile id="67b7-a76e-1bea-d2a7" name="Armour and Bow" book="Kingdoms of Men" page="39" hidden="false" profileTypeId="56bc-db0c-4ea3-bafb" profileTypeName="Wargear Item">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<characteristics/>
</profile>
</profiles>
<rules/>
<infoLinks/>
<modifiers/>
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5825-2f87-24b1-83e2" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="c131-f3c1-2f66-1f41" name="Horse" book="Kingdoms of Men" page="39" hidden="false" collective="false" type="upgrade">
<profiles/>
<rules/>
<infoLinks>
<infoLink id="e304-6408-6e0e-33ea" 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="true" includeChildSelections="false" includeChildForces="false" id="5cd9-3d56-f173-e97b" type="max"/>
</constraints>
<selectionEntries/>
<selectionEntryGroups/>
<entryLinks/>
<costs>
<cost name="pts" costTypeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="567a-fa90-8e83-996c" name="Spear" book="Kingdoms of Men" page="39" hidden="false" collective="false" type="upgrade">
<profiles/>
<rules/>
<infoLinks>
<infoLink id="6e5c-7bdf-57e6-e129" name="New InfoLink" hidden="false" targetId="644a-02f5-9e09-a4a9" type="rule">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
</infoLink>
</infoLinks>
<modifiers/>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8305-ac2a-edc8-62eb" type="max"/>
</constraints>
<selectionEntries/>
<selectionEntryGroups/>
<entryLinks/>
<costs>
<cost name="pts" costTypeId="points" value="1.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups/>
<entryLinks>
<entryLink id="c43a-891d-193c-ef4a" name="New EntryLink" hidden="false" targetId="aff2-252e-06a2-80e9" type="selectionEntry">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
</entryLink>
<entryLink id="2dd3-81be-a444-3fe3" name="New EntryLink" hidden="false" targetId="f224-8657-e59f-3d8c" type="selectionEntry">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" costTypeId="points" value="25.0"/>
</costs>
</selectionEntry>
<selectionEntry id="a8a4-7e11-48e2-48a8" name="Warrior of Arnor" book="Kingdoms of Men" page="39" hidden="false" collective="false" type="model">
<categoryLinks>
<categoryLink id="a8a4-7e11-48e2-48a8-e07a-883e-1b26-d891" targetId="e07a-883e-1b26-d891" primary="true"/>
</categoryLinks>
<profiles>
<profile id="1300-1e9f-3532-0666" name="Warrior of Arnor" book="Kingdoms of Men" page="39" hidden="false" profileTypeId="c77f-e6ae-b63d-62d2">
<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="4/4+"/>
<characteristic name="Strength" characteristicTypeId="dec8-2675-ef6e-49c0" value="3"/>
<characteristic name="Defence" characteristicTypeId="cddc-0d63-2e80-720a" value="6"/>
<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="2"/>
<characteristic name="Type" characteristicTypeId="db72-8cd8-395a-78e6" value="Man"/>
</characteristics>
</profile>
</profiles>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
<selectionEntries>
<selectionEntry id="d510-e6bf-7403-e8c4" name="Banner" book="Kingdoms of Men" page="39" hidden="false" collective="false" type="upgrade">
<profiles/>
<rules/>
<infoLinks>
<infoLink id="919a-ed5b-17d6-0374" name="New InfoLink" hidden="false" targetId="5ae7-455d-aa7e-032a" type="rule">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
</infoLink>
</infoLinks>
<modifiers/>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="382a-de4d-f8a7-f030" type="max"/>
</constraints>
<selectionEntries/>
<selectionEntryGroups/>
<entryLinks/>
<costs>
<cost name="pts" costTypeId="points" value="25.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups/>
<entryLinks>
<entryLink id="c8a9-a69d-e890-6428" name="New EntryLink" hidden="false" targetId="c45d-8342-8e1b-6cb2" type="selectionEntry">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
</entryLink>
<entryLink id="f2af-545b-c5c6-5436" name="New EntryLink" hidden="false" targetId="c830-aacc-8dcf-c4eb" type="selectionEntry">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
</entryLink>
<entryLink id="5a83-8fad-4cf0-b32b" name="New EntryLink" hidden="false" targetId="e396-6a7d-e74d-48e1" type="selectionEntry">
<profiles/>
<rules/>
<infoLinks/>
<modifiers/>
<constraints/>
</entryLink>
</entryLinks>
<costs>