-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathMerchant Caravans.cat
2976 lines (2919 loc) · 206 KB
/
Merchant Caravans.cat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<catalogue library="false" id="3990-6810-2651-81b0" name="Merchant Caravans (1c)" gameSystemId="9481a749-7900-614b-1695-bdc2899069c1" gameSystemRevision="15" revision="1" battleScribeVersion="2.03" type="catalogue" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<catalogueLinks>
<catalogueLink type="catalogue" name="common-data" id="3418-3f66-a3bc-d41e" targetId="e020-c282-277b-b173"/>
<catalogueLink type="catalogue" name="New Catalogue (link)" id="87e6-d8d1-6fc3-6290" targetId="9bf78c55-7dba-4a44-90ce-10ed57d8b3a1"/>
</catalogueLinks>
<rules>
<rule name="Trade" id="a885-8141-ecfe-ca1d" hidden="false">
<description>Instead of searching for rare items the Merchant may sell a rare item that has been stored in the Trade Cart during the preceding battle.
This must be done before Heroes of either warband search for rare items.
Roll a D6 to determine how many gold coins the Merchant would get for the item.
D6 Gold coins
1-2 Half the item's basic price
3-4 The item's full basic price
5-6 Full plus half the item's basic price
Note that the Merchant may decide whether he wants to sell the item for that price or if he wants to try again after the next battle.
This can be combined with the wholesale skill to sell up to D3+1 items each game.</description>
</rule>
<rule name="Open for Business" id="5653-fd1e-1c18-3b77" hidden="false">
<description>All players may choose to send any of their Heroes to the Merchant instead of having them search for rare items.
A Hero doing so may buy one item from the warband's stored equipment if the players can agree on a price (including exchange deals with items and Treasures).
Instead of buying an item a Hero may also go to the Merchant to sell any one item (rare, common, magical, treasure counters) to him.
If players cannot agree on a price no deal is closed and the visit is wasted.</description>
</rule>
<rule name="Rarity" id="3d1a-b927-2ec4-ca16" hidden="false">
<description>Any rare item that is reduced to Rare 2 or below by the Trade Wagon's Reputation rule, the Streetwise skill etc., can be bought as Common items.</description>
</rule>
<rule name="Hired Swords" id="9b2f-f53f-754c-28b6" hidden="false">
<description>Merchant Caravans may hire every Hired Sword that is available to Mercenary warbands.</description>
</rule>
</rules>
<sharedSelectionEntryGroups>
<selectionEntryGroup name="Heroes Equipment" id="95be-e467-7d58-5b" hidden="false">
<selectionEntryGroups>
<selectionEntryGroup name="Hand-to-hand Weapons" id="7083-411-c2b0-e6b3" hidden="false" sortIndex="1">
<entryLinks>
<entryLink import="true" name="Free Dagger" hidden="false" id="4392-49da-eeb6-1c18" type="selectionEntry" targetId="0d0b-ed37-d8b0-4cbf" sortIndex="1"/>
<entryLink import="true" name="Dagger" hidden="false" id="7d69-3aff-825d-6d54" type="selectionEntry" targetId="64e0-0bb6-542b-4beb" sortIndex="2"/>
<entryLink import="true" name="Hammer, staff, mace or club" hidden="false" id="1987-479-6a0a-60be" type="selectionEntry" targetId="cfcc-39fd-aeb4-876a" sortIndex="3">
<modifiers>
<modifier type="set" value="Hammer" field="name"/>
</modifiers>
</entryLink>
<entryLink import="true" name="Sword" hidden="false" id="16e6-9916-7305-7c66" type="selectionEntry" targetId="34fd-d6a3-50ee-ee06" sortIndex="4"/>
<entryLink import="true" name="Rapier" hidden="false" id="3d19-2bb9-51a0-2f10" type="selectionEntry" targetId="1cad-3ea5-f379-1040" sortIndex="5"/>
</entryLinks>
<constraints>
<constraint type="max" value="2" field="selections" scope="parent" shared="true" id="7414-ffdf-5d28-2024"/>
</constraints>
<modifiers>
<modifier type="set" value="3" field="7414-ffdf-5d28-2024">
<conditions>
<condition type="equalTo" value="1" field="selections" scope="parent" childId="0d0b-ed37-d8b0-4cbf" shared="true"/>
</conditions>
</modifier>
</modifiers>
</selectionEntryGroup>
<selectionEntryGroup name="Armor" id="2130-9379-5725-c0a" hidden="false" sortIndex="3">
<entryLinks>
<entryLink import="true" name="Light Armor" hidden="false" id="19f-513d-4f9f-bc16" type="selectionEntry" targetId="3d2a-426a-c350-2a03" sortIndex="1"/>
<entryLink import="true" name="Heavy Armor" hidden="false" id="73d3-ef05-29a6-8b5c" type="selectionEntry" targetId="4e34-bbc5-c7ef-6bd6" sortIndex="2">
<modifiers>
<modifier type="set" value="10" field="points"/>
</modifiers>
</entryLink>
<entryLink import="true" name="Shield" hidden="false" id="9ca-44-fa66-3717" type="selectionEntry" targetId="74fb-cc90-1361-df26" sortIndex="3"/>
<entryLink import="true" name="Helmet" hidden="false" id="8422-e897-f70c-2801" type="selectionEntry" targetId="d0e5-ca89-5f0d-f5d2" sortIndex="4"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup name="Missile weapons" id="7753-91dd-c5bc-622a" hidden="false" sortIndex="2">
<entryLinks>
<entryLink import="true" name="Dueling Pistol" hidden="false" id="eb2f-5342-6ae2-679f" type="selectionEntry" targetId="da24-6a7f-725b-5bcb" sortIndex="2"/>
<entryLink import="true" name="Pistol" hidden="false" id="b033-ad7e-b3e8-9d98" type="selectionEntry" targetId="67e9-a4f5-8f76-168c" sortIndex="1"/>
</entryLinks>
<constraints>
<constraint type="max" value="2" field="selections" scope="parent" shared="true" id="df58-229a-f973-db28"/>
</constraints>
</selectionEntryGroup>
<selectionEntryGroup name="Miscellaneous Equipment" id="62ff-e1d3-e74-c17c" hidden="false" sortIndex="4">
<entryLinks>
<entryLink import="true" name="Cathayan Silk Clothes" hidden="false" id="1721-c966-8884-3122" type="selectionEntry" targetId="20d2-d2ae-1881-de73" sortIndex="1">
<modifiers>
<modifier type="set" value="Cathayan Silk Cloak" field="name"/>
<modifier type="set" value="40" field="points"/>
</modifiers>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
</selectionEntryGroup>
<selectionEntryGroup name="Henchman Equipment" id="e668-23f2-311b-e82c" hidden="false">
<selectionEntryGroups>
<selectionEntryGroup name="Hand-to-hand Weapons" id="c7c8-24ed-7177-6558" hidden="false" sortIndex="1">
<entryLinks>
<entryLink import="true" name="Free Dagger" hidden="false" id="f0bd-eabb-f7ec-86e4" type="selectionEntry" targetId="0d0b-ed37-d8b0-4cbf" sortIndex="1"/>
<entryLink import="true" name="Dagger" hidden="false" id="85df-4f2-1585-493b" type="selectionEntry" targetId="64e0-0bb6-542b-4beb" sortIndex="2"/>
<entryLink import="true" name="Hammer, staff, mace or club" hidden="false" id="96b1-49a8-60a6-ddfc" type="selectionEntry" targetId="cfcc-39fd-aeb4-876a" sortIndex="3">
<modifiers>
<modifier type="set" value="Hammer" field="name"/>
</modifiers>
</entryLink>
<entryLink import="true" name="Sword" hidden="false" id="76d3-8095-5ccb-2dcd" type="selectionEntry" targetId="34fd-d6a3-50ee-ee06" sortIndex="5"/>
<entryLink import="true" name="Pike" hidden="false" id="2e83-d903-b2e0-8f25" type="selectionEntry" targetId="3d1d-e28c-3b5e-a331" sortIndex="6"/>
<entryLink import="true" name="Axe" hidden="false" id="f9d4-bf4b-81be-92a9" type="selectionEntry" targetId="5d01-06b9-3a86-73c9" sortIndex="4"/>
<entryLink import="true" name="Halberd" hidden="false" id="c3f4-d823-df60-4b7" type="selectionEntry" targetId="3c52-9e92-25ec-1939" sortIndex="7"/>
</entryLinks>
<constraints>
<constraint type="max" value="2" field="selections" scope="parent" shared="true" id="cfa9-2e1c-7f8-f848"/>
</constraints>
<modifiers>
<modifier type="set" value="3" field="cfa9-2e1c-7f8-f848">
<conditions>
<condition type="equalTo" value="1" field="selections" scope="parent" childId="0d0b-ed37-d8b0-4cbf" shared="true"/>
</conditions>
</modifier>
</modifiers>
</selectionEntryGroup>
<selectionEntryGroup name="Armor" id="980c-80ba-e038-20b8" hidden="false" sortIndex="3">
<entryLinks>
<entryLink import="true" name="Light Armor" hidden="false" id="6dca-5f13-8848-caa0" type="selectionEntry" targetId="3d2a-426a-c350-2a03" sortIndex="1"/>
<entryLink import="true" name="Heavy Armor" hidden="false" id="8e48-d39f-e456-c5a3" type="selectionEntry" targetId="4e34-bbc5-c7ef-6bd6" sortIndex="2">
<modifiers>
<modifier type="set" value="10" field="points"/>
</modifiers>
</entryLink>
<entryLink import="true" name="Shield" hidden="false" id="c76c-2acf-40ef-367" type="selectionEntry" targetId="74fb-cc90-1361-df26" sortIndex="3"/>
<entryLink import="true" name="Helmet" hidden="false" id="4c09-ad01-f40-60f4" type="selectionEntry" targetId="d0e5-ca89-5f0d-f5d2" sortIndex="4"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup name="Missile weapons" id="e304-76ce-d2d3-5e7e" hidden="false" sortIndex="2">
<entryLinks>
<entryLink import="true" name="Crossbow" hidden="false" id="e362-4206-6473-81dc" type="selectionEntry" targetId="38cc-bc0b-7f19-8039" sortIndex="1"/>
</entryLinks>
<constraints>
<constraint type="max" value="2" field="selections" scope="parent" shared="true" id="b0f3-4025-de0d-ea56"/>
</constraints>
</selectionEntryGroup>
</selectionEntryGroups>
</selectionEntryGroup>
<selectionEntryGroup name="Cathayan Equipment" id="99e9-b91e-70d9-376f" hidden="false">
<selectionEntryGroups>
<selectionEntryGroup name="Hand-to-hand Weapons" id="1ac8-b193-2d98-7940" hidden="false" sortIndex="1">
<entryLinks>
<entryLink import="true" name="Free Dagger" hidden="false" id="cb1-1d2-d158-c64b" type="selectionEntry" targetId="0d0b-ed37-d8b0-4cbf" sortIndex="1"/>
<entryLink import="true" name="Dagger" hidden="false" id="8744-e0ae-bdce-2895" type="selectionEntry" targetId="64e0-0bb6-542b-4beb" sortIndex="2"/>
<entryLink import="true" name="Hammer, staff, mace or club" hidden="false" id="b08a-1a64-2c0d-4421" type="selectionEntry" targetId="cfcc-39fd-aeb4-876a" sortIndex="3">
<modifiers>
<modifier type="set" value="Club" field="name"/>
</modifiers>
</entryLink>
<entryLink import="true" name="Sword" hidden="false" id="3020-5bf8-2829-3233" type="selectionEntry" targetId="34fd-d6a3-50ee-ee06" sortIndex="5"/>
<entryLink import="true" name="Double Handed Weapon" hidden="false" id="37e8-f829-162f-1ce2" type="selectionEntry" targetId="a0a1-b311-e3aa-6c3b" sortIndex="6"/>
<entryLink import="true" name="Dragon Sword (Katana)" hidden="false" id="38a7-1bef-93b0-56e" type="selectionEntry" targetId="b6d9-7260-674e-ec68" sortIndex="7"/>
</entryLinks>
<constraints>
<constraint type="max" value="2" field="selections" scope="parent" shared="true" id="9271-b087-2906-61a3"/>
</constraints>
<modifiers>
<modifier type="set" value="3" field="9271-b087-2906-61a3">
<conditions>
<condition type="equalTo" value="1" field="selections" scope="parent" childId="0d0b-ed37-d8b0-4cbf" shared="true"/>
</conditions>
</modifier>
</modifiers>
</selectionEntryGroup>
<selectionEntryGroup name="Armor" id="98a9-6e0f-ea2d-9e9a" hidden="false" sortIndex="2">
<entryLinks>
<entryLink import="true" name="Light Armor" hidden="false" id="ff13-226f-4bf1-8020" type="selectionEntry" targetId="3d2a-426a-c350-2a03" sortIndex="1"/>
<entryLink import="true" name="Heavy Armor" hidden="false" id="6857-2d2d-1752-2d6b" type="selectionEntry" targetId="4e34-bbc5-c7ef-6bd6" sortIndex="2">
<modifiers>
<modifier type="set" value="10" field="points"/>
</modifiers>
</entryLink>
<entryLink import="true" name="Shield" hidden="false" id="d9f4-a626-80b2-5584" type="selectionEntry" targetId="74fb-cc90-1361-df26" sortIndex="3"/>
<entryLink import="true" name="Helmet" hidden="false" id="1dec-17d-9295-5396" type="selectionEntry" targetId="d0e5-ca89-5f0d-f5d2" sortIndex="4"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
</selectionEntryGroup>
<selectionEntryGroup name="Special Skills (Merchant Caravans)" id="4823-7603-de46-3b2b" hidden="false">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Bribery" hidden="false" id="5a79-ffc6-c0cc-d21d">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="19c4-35f3-b365-3474"/>
</constraints>
<rules>
<rule name="Bribery" id="8c96-49c2-253a-1869" hidden="false">
<description>Whenever the warband has to take a Rout test, the Merchant may talk his hirelings into staying a little longer and face the danger.
He may immediately pay 5 gc per non-Hero warband member (including Hired Swords!) still in the game.
If he does, one member taken out of action already, does not count for Rout tests.
If after that a Rout test is still required, test as normal.
This skill may be used as many times as required so long as the coffers aren’t empty!</description>
</rule>
</rules>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Dubious Income" hidden="false" id="43a3-6ecd-7ce5-6639">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="2b47-7580-7809-fc68"/>
</constraints>
<rules>
<rule name="Dubious Income" id="2126-8d1c-d6ef-d169" hidden="false">
<description>The Merchant has set up an underground business that proves to be quite profitable.
After every battle in which the Merchant was not taken out of action he may choose to use this skill before the trading phase (i.e. before any gold is spent).
If he does, he must pass a Ld test.
If the test is successful, the warband receives one gold coin per Experience point the Merchant has.
If the test is failed, the warband loses up to the same amount of gold coins.</description>
</rule>
</rules>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Wholesale" hidden="false" id="ac66-9fb-99e5-cb45">
<rules>
<rule name="Wholesale" id="6c9a-c14-7d7f-499e" hidden="false">
<description>The Merchant is known for buying items in greater numbers and so is especially welcome at the other merchants.
He may search for D3+1 rare items after each battle instead of one item only (if he was not taken out of action, of course!).</description>
</rule>
</rules>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="2894-18fd-5976-ec9c"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Deal Breaker" hidden="false" id="fd24-d7b1-842c-542c">
<rules>
<rule name="Deal Breaker" id="62bc-db7-7b88-ad89" hidden="false">
<description>When trying to sell items through the Trade special rule, the Merchant gets a +1 bonus on the roll to see what the item would fetch.</description>
</rule>
</rules>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="bcb0-5ba0-d30a-3808"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Connected" hidden="false" id="c93e-4ab5-737-6a63">
<rules>
<rule name="Connected" id="48f9-883e-8cc-a66c" hidden="false">
<description>The Merchant knows many retailers and ways of getting hold of rare items.
Instead of searching for rare items as normal he may visit the local black market and its fencers. If he does, he may search for items from the following table, applying the normal rules.
Item Cost Availability
Dispel Scroll 50 + 4D6 gc Rare 12
see Mordheim Annual 2002, p. 31
Lesser Artefact 200 + D6x15 gc Rare 16
roll on the Lesser Artefacts table
Magical Artefact 350 + D6x25 gc Rare 18
roll on the Magical Artefact Table from the Mordheim rulebook, p. 141
Magical Scroll 100 gc Rare 14
roll on the Lesser Artefacts table
Note that though the Merchant may buy items using the table above he can never sell them back again (and must hope for other players to be interested in them).</description>
</rule>
</rules>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="c672-7f5a-da15-2616"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
<selectionEntryGroup name="Knights Equipment" id="bc57-3c18-99c7-f420" hidden="false">
<selectionEntryGroups>
<selectionEntryGroup name="Hand-to-hand Weapons" id="568a-95e5-dc34-1a29" hidden="false" sortIndex="1">
<entryLinks>
<entryLink import="true" name="Free Dagger" hidden="false" id="184-bbd9-68cd-5062" type="selectionEntry" targetId="0d0b-ed37-d8b0-4cbf" sortIndex="1"/>
<entryLink import="true" name="Dagger" hidden="false" id="3446-c2f-bb23-c8fb" type="selectionEntry" targetId="64e0-0bb6-542b-4beb" sortIndex="2"/>
<entryLink import="true" name="Hammer, staff, mace or club" hidden="false" id="e12f-fa46-8117-cef9" type="selectionEntry" targetId="cfcc-39fd-aeb4-876a" sortIndex="3">
<modifiers>
<modifier type="set" value="Hammer" field="name"/>
</modifiers>
</entryLink>
<entryLink import="true" name="Sword" hidden="false" id="90a2-a89b-b287-918b" type="selectionEntry" targetId="34fd-d6a3-50ee-ee06" sortIndex="4"/>
<entryLink import="true" name="Rapier" hidden="false" id="8492-1afb-7722-39a6" type="selectionEntry" targetId="1cad-3ea5-f379-1040" sortIndex="5"/>
<entryLink import="true" name="Double Handed Weapon" hidden="false" id="7c17-4034-6144-73e7" type="selectionEntry" targetId="a0a1-b311-e3aa-6c3b" sortIndex="6"/>
<entryLink import="true" name="Dragon Sword (Katana)" hidden="false" id="30a1-1a82-d051-75b" type="selectionEntry" targetId="b6d9-7260-674e-ec68" sortIndex="7"/>
</entryLinks>
<constraints>
<constraint type="max" value="2" field="selections" scope="parent" shared="true" id="492d-cb3a-117c-899f"/>
</constraints>
<modifiers>
<modifier type="set" value="3" field="492d-cb3a-117c-899f">
<conditions>
<condition type="equalTo" value="1" field="selections" scope="parent" childId="0d0b-ed37-d8b0-4cbf" shared="true"/>
</conditions>
</modifier>
</modifiers>
</selectionEntryGroup>
<selectionEntryGroup name="Armor" id="92c1-4af9-1a58-4520" hidden="false" sortIndex="3">
<entryLinks>
<entryLink import="true" name="Light Armor" hidden="false" id="5b67-7ce7-d51c-2b27" type="selectionEntry" targetId="3d2a-426a-c350-2a03" sortIndex="1"/>
<entryLink import="true" name="Heavy Armor" hidden="false" id="21f9-33d1-e079-d09" type="selectionEntry" targetId="4e34-bbc5-c7ef-6bd6" sortIndex="2">
<modifiers>
<modifier type="set" value="10" field="points"/>
</modifiers>
</entryLink>
<entryLink import="true" name="Shield" hidden="false" id="881b-9bb4-1483-7e60" type="selectionEntry" targetId="74fb-cc90-1361-df26" sortIndex="3"/>
<entryLink import="true" name="Helmet" hidden="false" id="4d87-c02c-44a7-9649" type="selectionEntry" targetId="d0e5-ca89-5f0d-f5d2" sortIndex="4"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup name="Missile weapons" id="a6aa-c1f1-1cb-dbeb" hidden="false" sortIndex="2">
<entryLinks>
<entryLink import="true" name="Dueling Pistol" hidden="false" id="64c5-d533-1624-ef1b" type="selectionEntry" targetId="da24-6a7f-725b-5bcb" sortIndex="2"/>
<entryLink import="true" name="Pistol" hidden="false" id="8d7a-3133-3090-826e" type="selectionEntry" targetId="67e9-a4f5-8f76-168c" sortIndex="1"/>
</entryLinks>
<constraints>
<constraint type="max" value="2" field="selections" scope="parent" shared="true" id="691e-769d-d5a1-b38e"/>
</constraints>
</selectionEntryGroup>
<selectionEntryGroup name="Miscellaneous Equipment" id="e742-82b8-6457-dce" hidden="false" sortIndex="4">
<entryLinks>
<entryLink import="true" name="Cathayan Silk Clothes" hidden="false" id="a8f9-6555-6699-9d90" type="selectionEntry" targetId="20d2-d2ae-1881-de73" sortIndex="1">
<modifiers>
<modifier type="set" value="Cathayan Silk Cloak" field="name"/>
<modifier type="set" value="40" field="points"/>
</modifiers>
</entryLink>
<entryLink import="true" name="Warhorse" hidden="false" id="f951-a430-ea1e-a807" type="selectionEntry" targetId="7863-e620-5c6e-7eee" sortIndex="2">
<modifiers>
<modifier type="set" value="40" field="points"/>
</modifiers>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
</selectionEntryGroup>
</sharedSelectionEntryGroups>
<sharedSelectionEntries>
<selectionEntry type="upgrade" import="true" name="Pike" hidden="false" id="3d1d-e28c-3b5e-a331">
<costs>
<cost name="pts" typeId="points" value="10"/>
<cost name="Warband Rating" typeId="wb-rating" value="0"/>
</costs>
<rules>
<rule name="Rarity" id="e8b4-710d-eba1-7da6" hidden="false">
<description>Rarity 8</description>
</rule>
<rule name="Strike First" id="1b74-5f0f-deec-ab2e" hidden="false">
<description>A warrior with a pike strikes first in the first turn of a hand-to-hand combat.
For that turn he gains +1 Initiative representing the pike's long shaft that allows him to attack even before the enemy reaches him.</description>
</rule>
</rules>
<infoLinks>
<infoLink name="Two Handed" id="5201-bc05-612e-71e9" hidden="false" type="rule" targetId="2fb3-525b-86c3-2cd6"/>
</infoLinks>
<profiles>
<profile name="Pike" typeId="9db87680-6ee5-b46c-48ca-dcd1c5de1bad" typeName="HtH Weapon" hidden="false" id="d8c1-8511-db74-eaee" page="0">
<characteristics>
<characteristic name="Str" id="b96c-b97c-52e-3763" hidden="false" typeId="f10cfcb7-b71e-4c27-9836-75d341e28f68">As User</characteristic>
<characteristic name="Special" id="6d4f-2825-d05d-edab" hidden="false" typeId="80dd3fd5-3811-af0b-e182-2ecbc7ad5d8e">Two-handed, Strike First</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</sharedSelectionEntries>
<selectionEntries>
<selectionEntry type="model" import="true" name="Merchant" hidden="false" id="7e1e-124c-a0a-a465" collective="false">
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="7313-cd9b-a754-9357" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
<constraint type="min" value="1" field="selections" scope="roster" shared="true" id="ad33-98aa-39c2-88ac" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
</constraints>
<profiles>
<profile name="Merchant" typeId="e1beaa44-e54d-dd6b-d1f2-446b333c9bb9" typeName="Model" hidden="false" id="e4b7-3d72-e881-457a">
<characteristics>
<characteristic name="M" id="f680-df24-57d0-d115" hidden="false" typeId="2a0bcc4c-8266-418f-13d6-a6b44def5e92">4</characteristic>
<characteristic name="WS" id="e3ca-6a5f-8b0a-1392" hidden="false" typeId="d5aca8ba-0204-b324-b976-c2b536e09924">2</characteristic>
<characteristic name="BS" id="f8b6-fdad-d217-53f9" hidden="false" typeId="5b4d181b-23ae-5ed7-9262-c1d2f79246a8">3</characteristic>
<characteristic name="S" id="924a-7373-6f77-7712" hidden="false" typeId="7f1f0a4d-68dc-b0df-5703-c4d0d91a93b9">3</characteristic>
<characteristic name="T" id="3563-35ee-b2d8-8463" hidden="false" typeId="54f4796b-dedb-c296-8b1a-ff7f8043293a">3</characteristic>
<characteristic name="W" id="beef-6bb1-fd59-d2cd" hidden="false" typeId="3172c8dc-ebe4-0c40-72ab-8fd0076b9442">1</characteristic>
<characteristic name="I" id="4145-e907-beb0-4cad" hidden="false" typeId="a6fd52b0-be0a-655e-6314-87b392c9c90e">3</characteristic>
<characteristic name="A" id="8e35-47f-3b37-3a17" hidden="false" typeId="bf393c37-9d10-fc85-c147-62b1c01a89fe">1</characteristic>
<characteristic name="LD" id="5815-6260-4e08-85fa" hidden="false" typeId="e234eaea-a02a-2fb7-3e1f-605392aabb89">8</characteristic>
</characteristics>
<modifiers>
<modifier type="increment" value="1" field="d5aca8ba-0204-b324-b976-c2b536e09924">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="7e1e-124c-a0a-a465" childId="7418-394e-fe13-2a96" shared="true" roundUp="false" percentValue="false" includeChildSelections="true" includeChildForces="false"/>
</repeats>
</modifier>
<modifier type="increment" value="1" field="3172c8dc-ebe4-0c40-72ab-8fd0076b9442">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="7e1e-124c-a0a-a465" childId="7918-b440-5d63-bd5e" shared="true" roundUp="false" percentValue="false" includeChildSelections="true" includeChildForces="false"/>
</repeats>
</modifier>
<modifier type="increment" value="1" field="bf393c37-9d10-fc85-c147-62b1c01a89fe">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="7e1e-124c-a0a-a465" childId="37c4-dcb1-8949-d4eb" shared="true" roundUp="false" percentValue="false" includeChildSelections="true" includeChildForces="false"/>
</repeats>
</modifier>
<modifier type="increment" value="1" field="2a0bcc4c-8266-418f-13d6-a6b44def5e92">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="7e1e-124c-a0a-a465" childId="c4db-7b50-a4f9-cd5f" shared="true" roundUp="false" percentValue="false" includeChildSelections="true" includeChildForces="false"/>
</repeats>
</modifier>
<modifier type="increment" value="1" field="5b4d181b-23ae-5ed7-9262-c1d2f79246a8">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="7e1e-124c-a0a-a465" childId="5a83-274a-bba8-f498" shared="true" roundUp="false" percentValue="false" includeChildSelections="true" includeChildForces="false"/>
</repeats>
</modifier>
<modifier type="increment" value="1" field="a6fd52b0-be0a-655e-6314-87b392c9c90e">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="7e1e-124c-a0a-a465" childId="da26-8381-781a-6149" shared="true" roundUp="false" percentValue="false" includeChildSelections="true" includeChildForces="false"/>
</repeats>
</modifier>
<modifier type="increment" value="1" field="e234eaea-a02a-2fb7-3e1f-605392aabb89">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="7e1e-124c-a0a-a465" childId="27d8-c790-a4c1-b9cc" shared="true" roundUp="false" percentValue="false" includeChildSelections="true" includeChildForces="false"/>
</repeats>
</modifier>
<modifier type="increment" value="1" field="54f4796b-dedb-c296-8b1a-ff7f8043293a">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="7e1e-124c-a0a-a465" childId="6fe1-7bba-3ca0-06b7" shared="true" roundUp="false" percentValue="false" includeChildSelections="true" includeChildForces="false"/>
</repeats>
</modifier>
<modifier type="increment" value="1" field="7f1f0a4d-68dc-b0df-5703-c4d0d91a93b9">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="7e1e-124c-a0a-a465" childId="9368-3616-516f-5178" shared="true" roundUp="false" percentValue="false" includeChildSelections="true" includeChildForces="false"/>
</repeats>
</modifier>
<modifier type="decrement" value="1" field="bf393c37-9d10-fc85-c147-62b1c01a89fe">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="7e1e-124c-a0a-a465" childId="9faf-d3bf-a2ba-411e" shared="true" roundUp="false" percentValue="false" includeChildSelections="true" includeChildForces="false"/>
</repeats>
</modifier>
<modifier type="decrement" value="1" field="7f1f0a4d-68dc-b0df-5703-c4d0d91a93b9">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="7e1e-124c-a0a-a465" childId="8e57-5d0b-5279-b4ab" shared="true" roundUp="false" percentValue="false" includeChildSelections="true" includeChildForces="false"/>
</repeats>
</modifier>
<modifier type="decrement" value="1" field="5b4d181b-23ae-5ed7-9262-c1d2f79246a8">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="7e1e-124c-a0a-a465" childId="0e79-80b9-77e3-fcc9" shared="true" roundUp="false" percentValue="false" includeChildSelections="true" includeChildForces="false"/>
</repeats>
</modifier>
<modifier type="decrement" value="1" field="3172c8dc-ebe4-0c40-72ab-8fd0076b9442">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="7e1e-124c-a0a-a465" childId="9209-0067-18d2-b78c" shared="true" roundUp="false" percentValue="false" includeChildSelections="true" includeChildForces="false"/>
</repeats>
</modifier>
<modifier type="decrement" value="1" field="e234eaea-a02a-2fb7-3e1f-605392aabb89">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="7e1e-124c-a0a-a465" childId="a519-13dc-1b04-e39e" shared="true" roundUp="false" percentValue="false" includeChildSelections="true" includeChildForces="false"/>
</repeats>
</modifier>
<modifier type="decrement" value="1" field="2a0bcc4c-8266-418f-13d6-a6b44def5e92">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="7e1e-124c-a0a-a465" childId="7dee-74f8-7707-ce64" shared="true" roundUp="false" percentValue="false" includeChildSelections="true" includeChildForces="false"/>
</repeats>
</modifier>
<modifier type="decrement" value="1" field="54f4796b-dedb-c296-8b1a-ff7f8043293a">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="7e1e-124c-a0a-a465" childId="ca62-64c2-488a-f17c" shared="true" roundUp="false" percentValue="false" includeChildSelections="true" includeChildForces="false"/>
</repeats>
</modifier>
<modifier type="decrement" value="1" field="a6fd52b0-be0a-655e-6314-87b392c9c90e">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="7e1e-124c-a0a-a465" childId="7531-eebe-fabf-7cf5" shared="true" roundUp="false" percentValue="false" includeChildSelections="true" includeChildForces="false"/>
</repeats>
</modifier>
<modifier type="decrement" value="1" field="d5aca8ba-0204-b324-b976-c2b536e09924">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="7e1e-124c-a0a-a465" childId="ae44-58f4-4440-5777" shared="true" roundUp="false" percentValue="false" includeChildSelections="true" includeChildForces="false"/>
</repeats>
</modifier>
</modifiers>
</profile>
</profiles>
<infoLinks>
<infoLink name="Merchant" id="effd-3a23-4fa0-17cf" hidden="false" targetId="9f94-193b-fff6-d172" type="rule"/>
<infoLink name="Human max" id="55c-bd8c-a65d-9dd7" hidden="false" targetId="d9c2-4427-8e2b-586a" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink name="Heroes" hidden="false" id="1790-19ea-5453-9f4a" targetId="a0fce0bc-02e0-a064-7a39-5b97ff8a9c94" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Extra Equipment" hidden="false" id="2921-e2f6-ccb-45f2" collective="false" sortIndex="6">
<constraints>
<constraint type="min" value="0" field="selections" scope="parent" shared="true" id="9fbd-fbce-e48-ecf1" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="19a4-6997-e0f7-b6e0" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Equipment" hidden="false" id="ae91-bcdb-321a-7dbe" collective="false" targetId="2247-1f56-bc59-0ead" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" id="7129-5b93-efe3-5167" hidden="false" typeId="points" value="0"/>
<cost name="Warband Rating" id="a818-9b49-f304-d1be" hidden="false" typeId="wb-rating" value="0"/>
</costs>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Skills" hidden="false" id="1d81-95dd-46ab-5c48" collective="false" sortIndex="5">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="7b53-ee1f-bff2-62e8" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="2149-d632-6bb3-4d55" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Special Skills (Merchant Caravans)" hidden="false" id="73cc-2f75-afb5-8520" collective="false" targetId="4823-7603-de46-3b2b" type="selectionEntryGroup" sortIndex="3"/>
<entryLink import="true" name="Shooting Skills" hidden="false" id="26bd-39f1-f88-f25a" collective="false" targetId="0073-d2d6-15c0-45b1" type="selectionEntryGroup" sortIndex="1"/>
<entryLink import="true" name="Academic Skills" hidden="false" id="dcca-7de8-f99c-f5ad" type="selectionEntryGroup" targetId="df9d-8724-d362-9d7c" sortIndex="2"/>
</entryLinks>
<costs>
<cost name="pts" id="b767-9d30-522c-56ab" hidden="false" typeId="points" value="0"/>
<cost name="Warband Rating" id="a356-9cf0-40ce-6a84" hidden="false" typeId="wb-rating" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink import="true" name="Experience" hidden="false" id="b054-d09c-d896-e8b8" collective="false" targetId="d769-0d85-e810-df60" type="selectionEntry" sortIndex="1">
<constraints>
<constraint type="min" value="20" field="selections" scope="parent" shared="true" id="eec6-a689-d06-5bbd" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
</constraints>
</entryLink>
<entryLink import="true" name="Heroes Equipment" hidden="false" id="4862-c77c-2f6e-9b5" collective="false" targetId="95be-e467-7d58-5b" type="selectionEntryGroup" sortIndex="3"/>
<entryLink import="true" name="Characteristic Increases" hidden="false" id="8ad6-5679-2d6c-207e" collective="false" targetId="7879-46ac-5598-aa00" type="selectionEntryGroup" sortIndex="4"/>
<entryLink import="true" name="Serious Injuries" hidden="false" id="6a57-c35e-5f0c-6c43" collective="false" targetId="313b-a816-0a89-926c" type="selectionEntryGroup" sortIndex="7"/>
<entryLink import="true" name="Advancement (Hero)" hidden="false" id="ca75-9686-11a3-a17e" type="selectionEntry" targetId="c26e-414e-293-2621" sortIndex="2">
<modifiers>
<modifier type="increment" value="1" field="f983-fe4b-65c8-b54f">
<conditions>
<condition type="greaterThan" value="23" field="selections" scope="parent" childId="d769-0d85-e810-df60" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
<modifier type="increment" value="1" field="f983-fe4b-65c8-b54f">
<conditions>
<condition type="greaterThan" value="27" field="selections" scope="parent" childId="d769-0d85-e810-df60" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
<modifier type="increment" value="1" field="f983-fe4b-65c8-b54f">
<conditions>
<condition type="greaterThan" value="31" field="selections" scope="parent" childId="d769-0d85-e810-df60" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
<modifier type="increment" value="1" field="f983-fe4b-65c8-b54f">
<conditions>
<condition type="greaterThan" value="35" field="selections" scope="parent" childId="d769-0d85-e810-df60" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
<modifier type="increment" value="1" field="f983-fe4b-65c8-b54f">
<conditions>
<condition type="greaterThan" value="40" field="selections" scope="parent" childId="d769-0d85-e810-df60" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
<modifier type="increment" value="1" field="f983-fe4b-65c8-b54f">
<conditions>
<condition type="greaterThan" value="45" field="selections" scope="parent" childId="d769-0d85-e810-df60" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
<modifier type="increment" value="1" field="f983-fe4b-65c8-b54f">
<conditions>
<condition type="greaterThan" value="50" field="selections" scope="parent" childId="d769-0d85-e810-df60" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
<modifier type="increment" value="1" field="f983-fe4b-65c8-b54f">
<conditions>
<condition type="greaterThan" value="56" field="selections" scope="parent" childId="d769-0d85-e810-df60" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
<modifier type="increment" value="1" field="f983-fe4b-65c8-b54f">
<conditions>
<condition type="greaterThan" value="62" field="selections" scope="parent" childId="d769-0d85-e810-df60" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
<modifier type="increment" value="1" field="f983-fe4b-65c8-b54f">
<conditions>
<condition type="greaterThan" value="68" field="selections" scope="parent" childId="d769-0d85-e810-df60" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
<modifier type="increment" value="1" field="f983-fe4b-65c8-b54f">
<conditions>
<condition type="greaterThan" value="75" field="selections" scope="parent" childId="d769-0d85-e810-df60" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
<modifier type="increment" value="1" field="f983-fe4b-65c8-b54f">
<conditions>
<condition type="greaterThan" value="82" field="selections" scope="parent" childId="d769-0d85-e810-df60" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
<modifier type="increment" value="1" field="f983-fe4b-65c8-b54f">
<conditions>
<condition type="greaterThan" value="89" field="selections" scope="parent" childId="d769-0d85-e810-df60" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
<modifier type="increment" value="1" field="a79c-4fb2-4100-9f13">
<conditions>
<condition type="greaterThan" value="23" field="selections" scope="parent" childId="d769-0d85-e810-df60" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
<modifier type="increment" value="1" field="a79c-4fb2-4100-9f13">
<conditions>
<condition type="greaterThan" value="27" field="selections" scope="parent" childId="d769-0d85-e810-df60" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
<modifier type="increment" value="1" field="a79c-4fb2-4100-9f13">
<conditions>
<condition type="greaterThan" value="31" field="selections" scope="parent" childId="d769-0d85-e810-df60" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
<modifier type="increment" value="1" field="a79c-4fb2-4100-9f13">
<conditions>
<condition type="greaterThan" value="35" field="selections" scope="parent" childId="d769-0d85-e810-df60" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
<modifier type="increment" value="1" field="a79c-4fb2-4100-9f13">
<conditions>
<condition type="greaterThan" value="40" field="selections" scope="parent" childId="d769-0d85-e810-df60" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
<modifier type="increment" value="1" field="a79c-4fb2-4100-9f13">
<conditions>
<condition type="greaterThan" value="45" field="selections" scope="parent" childId="d769-0d85-e810-df60" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
<modifier type="increment" value="1" field="a79c-4fb2-4100-9f13">
<conditions>
<condition type="greaterThan" value="50" field="selections" scope="parent" childId="d769-0d85-e810-df60" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
<modifier type="increment" value="1" field="a79c-4fb2-4100-9f13">
<conditions>
<condition type="greaterThan" value="56" field="selections" scope="parent" childId="d769-0d85-e810-df60" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
<modifier type="increment" value="1" field="a79c-4fb2-4100-9f13">
<conditions>
<condition type="greaterThan" value="62" field="selections" scope="parent" childId="d769-0d85-e810-df60" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
<modifier type="increment" value="1" field="a79c-4fb2-4100-9f13">
<conditions>
<condition type="greaterThan" value="68" field="selections" scope="parent" childId="d769-0d85-e810-df60" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
<modifier type="increment" value="1" field="a79c-4fb2-4100-9f13">
<conditions>
<condition type="greaterThan" value="75" field="selections" scope="parent" childId="d769-0d85-e810-df60" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
<modifier type="increment" value="1" field="a79c-4fb2-4100-9f13">
<conditions>
<condition type="greaterThan" value="82" field="selections" scope="parent" childId="d769-0d85-e810-df60" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
<modifier type="increment" value="1" field="a79c-4fb2-4100-9f13">
<conditions>
<condition type="greaterThan" value="89" field="selections" scope="parent" childId="d769-0d85-e810-df60" shared="true" includeChildSelections="true"/>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="any" shared="true" includeChildSelections="false"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="50"/>
<cost name="Warband Rating" typeId="wb-rating" value="5"/>
</costs>
</selectionEntry>
<selectionEntry type="model" import="true" name="Apprentice" hidden="false" id="9aa5-5f49-f127-8fdd" collective="false">
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="a718-839c-cc04-b6ef" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
</constraints>
<profiles>
<profile name="Apprentice" typeId="e1beaa44-e54d-dd6b-d1f2-446b333c9bb9" typeName="Model" hidden="false" id="1a06-ec25-55e0-7ce2">
<characteristics>
<characteristic name="M" id="91b-7df5-a9f6-fb04" hidden="false" typeId="2a0bcc4c-8266-418f-13d6-a6b44def5e92">4</characteristic>
<characteristic name="WS" id="6470-4121-a849-7ed5" hidden="false" typeId="d5aca8ba-0204-b324-b976-c2b536e09924">2</characteristic>
<characteristic name="BS" id="3edb-671f-49fc-1733" hidden="false" typeId="5b4d181b-23ae-5ed7-9262-c1d2f79246a8">2</characteristic>
<characteristic name="S" id="17d5-a805-cf29-3041" hidden="false" typeId="7f1f0a4d-68dc-b0df-5703-c4d0d91a93b9">3</characteristic>
<characteristic name="T" id="bf64-c0a8-6067-5de8" hidden="false" typeId="54f4796b-dedb-c296-8b1a-ff7f8043293a">3</characteristic>
<characteristic name="W" id="47b5-1af9-e578-5db" hidden="false" typeId="3172c8dc-ebe4-0c40-72ab-8fd0076b9442">1</characteristic>
<characteristic name="I" id="a0c5-4fb8-c317-89af" hidden="false" typeId="a6fd52b0-be0a-655e-6314-87b392c9c90e">3</characteristic>
<characteristic name="A" id="ce52-6a49-52c8-be21" hidden="false" typeId="bf393c37-9d10-fc85-c147-62b1c01a89fe">1</characteristic>
<characteristic name="LD" id="f098-eb14-85a7-39ed" hidden="false" typeId="e234eaea-a02a-2fb7-3e1f-605392aabb89">6</characteristic>
</characteristics>
<modifiers>
<modifier type="increment" value="1" field="d5aca8ba-0204-b324-b976-c2b536e09924">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="9aa5-5f49-f127-8fdd" childId="7418-394e-fe13-2a96" shared="true" roundUp="false" percentValue="false" includeChildSelections="true" includeChildForces="false"/>
</repeats>
</modifier>
<modifier type="increment" value="1" field="3172c8dc-ebe4-0c40-72ab-8fd0076b9442">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="9aa5-5f49-f127-8fdd" childId="7918-b440-5d63-bd5e" shared="true" roundUp="false" percentValue="false" includeChildSelections="true" includeChildForces="false"/>
</repeats>
</modifier>
<modifier type="increment" value="1" field="bf393c37-9d10-fc85-c147-62b1c01a89fe">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="9aa5-5f49-f127-8fdd" childId="37c4-dcb1-8949-d4eb" shared="true" roundUp="false" percentValue="false" includeChildSelections="true" includeChildForces="false"/>
</repeats>
</modifier>
<modifier type="increment" value="1" field="2a0bcc4c-8266-418f-13d6-a6b44def5e92">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="9aa5-5f49-f127-8fdd" childId="c4db-7b50-a4f9-cd5f" shared="true" roundUp="false" percentValue="false" includeChildSelections="true" includeChildForces="false"/>
</repeats>
</modifier>
<modifier type="increment" value="1" field="5b4d181b-23ae-5ed7-9262-c1d2f79246a8">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="9aa5-5f49-f127-8fdd" childId="5a83-274a-bba8-f498" shared="true" roundUp="false" percentValue="false" includeChildSelections="true" includeChildForces="false"/>
</repeats>
</modifier>
<modifier type="increment" value="1" field="a6fd52b0-be0a-655e-6314-87b392c9c90e">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="9aa5-5f49-f127-8fdd" childId="da26-8381-781a-6149" shared="true" roundUp="false" percentValue="false" includeChildSelections="true" includeChildForces="false"/>
</repeats>
</modifier>
<modifier type="increment" value="1" field="e234eaea-a02a-2fb7-3e1f-605392aabb89">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="9aa5-5f49-f127-8fdd" childId="27d8-c790-a4c1-b9cc" shared="true" roundUp="false" percentValue="false" includeChildSelections="true" includeChildForces="false"/>
</repeats>
</modifier>
<modifier type="increment" value="1" field="54f4796b-dedb-c296-8b1a-ff7f8043293a">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="9aa5-5f49-f127-8fdd" childId="6fe1-7bba-3ca0-06b7" shared="true" roundUp="false" percentValue="false" includeChildSelections="true" includeChildForces="false"/>
</repeats>
</modifier>
<modifier type="increment" value="1" field="7f1f0a4d-68dc-b0df-5703-c4d0d91a93b9">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="9aa5-5f49-f127-8fdd" childId="9368-3616-516f-5178" shared="true" roundUp="false" percentValue="false" includeChildSelections="true" includeChildForces="false"/>
</repeats>
</modifier>
<modifier type="decrement" value="1" field="bf393c37-9d10-fc85-c147-62b1c01a89fe">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="9aa5-5f49-f127-8fdd" childId="9faf-d3bf-a2ba-411e" shared="true" roundUp="false" percentValue="false" includeChildSelections="true" includeChildForces="false"/>
</repeats>
</modifier>
<modifier type="decrement" value="1" field="7f1f0a4d-68dc-b0df-5703-c4d0d91a93b9">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="9aa5-5f49-f127-8fdd" childId="8e57-5d0b-5279-b4ab" shared="true" roundUp="false" percentValue="false" includeChildSelections="true" includeChildForces="false"/>
</repeats>
</modifier>
<modifier type="decrement" value="1" field="5b4d181b-23ae-5ed7-9262-c1d2f79246a8">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="9aa5-5f49-f127-8fdd" childId="0e79-80b9-77e3-fcc9" shared="true" roundUp="false" percentValue="false" includeChildSelections="true" includeChildForces="false"/>
</repeats>
</modifier>
<modifier type="decrement" value="1" field="3172c8dc-ebe4-0c40-72ab-8fd0076b9442">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="9aa5-5f49-f127-8fdd" childId="9209-0067-18d2-b78c" shared="true" roundUp="false" percentValue="false" includeChildSelections="true" includeChildForces="false"/>
</repeats>
</modifier>
<modifier type="decrement" value="1" field="e234eaea-a02a-2fb7-3e1f-605392aabb89">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="9aa5-5f49-f127-8fdd" childId="a519-13dc-1b04-e39e" shared="true" roundUp="false" percentValue="false" includeChildSelections="true" includeChildForces="false"/>
</repeats>
</modifier>
<modifier type="decrement" value="1" field="2a0bcc4c-8266-418f-13d6-a6b44def5e92">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="9aa5-5f49-f127-8fdd" childId="7dee-74f8-7707-ce64" shared="true" roundUp="false" percentValue="false" includeChildSelections="true" includeChildForces="false"/>
</repeats>
</modifier>
<modifier type="decrement" value="1" field="54f4796b-dedb-c296-8b1a-ff7f8043293a">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="9aa5-5f49-f127-8fdd" childId="ca62-64c2-488a-f17c" shared="true" roundUp="false" percentValue="false" includeChildSelections="true" includeChildForces="false"/>
</repeats>
</modifier>
<modifier type="decrement" value="1" field="a6fd52b0-be0a-655e-6314-87b392c9c90e">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="9aa5-5f49-f127-8fdd" childId="7531-eebe-fabf-7cf5" shared="true" roundUp="false" percentValue="false" includeChildSelections="true" includeChildForces="false"/>
</repeats>
</modifier>
<modifier type="decrement" value="1" field="d5aca8ba-0204-b324-b976-c2b536e09924">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="9aa5-5f49-f127-8fdd" childId="ae44-58f4-4440-5777" shared="true" roundUp="false" percentValue="false" includeChildSelections="true" includeChildForces="false"/>
</repeats>
</modifier>
</modifiers>
</profile>
</profiles>
<infoLinks>
<infoLink name="Human max" id="a9de-24be-b63f-cbc6" hidden="false" targetId="d9c2-4427-8e2b-586a" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink name="Heroes" hidden="false" id="5e32-d1ec-642-4484" targetId="a0fce0bc-02e0-a064-7a39-5b97ff8a9c94" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Extra Equipment" hidden="false" id="2a13-605-8f92-9379" collective="false" sortIndex="6">
<constraints>
<constraint type="min" value="0" field="selections" scope="parent" shared="true" id="f5b6-abc-ad62-f4c4" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="d384-b598-e82c-aefd" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Equipment" hidden="false" id="4066-b2a3-d141-a134" collective="false" targetId="2247-1f56-bc59-0ead" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" id="36c5-7f29-5703-403b" hidden="false" typeId="points" value="0"/>
<cost name="Warband Rating" id="f575-a919-d5d4-661e" hidden="false" typeId="wb-rating" value="0"/>
</costs>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Skills" hidden="false" id="cf7c-5008-42d2-7b80" collective="false" sortIndex="5">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="9877-cafb-a589-270c" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="55b9-b96a-ac0-1d65" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Speed Skills" hidden="false" id="5910-64d8-f240-64eb" collective="false" targetId="e134-0fdf-67a2-4684" type="selectionEntryGroup" sortIndex="4"/>
<entryLink import="true" name="Shooting Skills" hidden="false" id="ef32-f2e1-c3fd-ef5e" collective="false" targetId="0073-d2d6-15c0-45b1" type="selectionEntryGroup" sortIndex="2"/>
<entryLink import="true" name="Academic Skills" hidden="false" id="4ea-5042-2882-1671" type="selectionEntryGroup" targetId="df9d-8724-d362-9d7c" sortIndex="3"/>
<entryLink import="true" name="Combat Skills" hidden="false" id="a912-4283-829c-85fb" type="selectionEntryGroup" targetId="ee2c-89e3-489b-d0cb" sortIndex="1"/>
</entryLinks>
<costs>
<cost name="pts" id="74b-5d47-9dd4-c6b7" hidden="false" typeId="points" value="0"/>
<cost name="Warband Rating" id="cb62-1bc5-cd91-f45" hidden="false" typeId="wb-rating" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink import="true" name="Experience" hidden="false" id="9632-207a-592-8a9" collective="false" targetId="d769-0d85-e810-df60" type="selectionEntry" sortIndex="1">
<constraints>
<constraint type="min" value="0" field="selections" scope="parent" shared="true" id="7c60-3287-9bb3-1407" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
</constraints>
</entryLink>
<entryLink import="true" name="Heroes Equipment" hidden="false" id="ccaf-5793-72f5-5000" collective="false" targetId="95be-e467-7d58-5b" type="selectionEntryGroup" sortIndex="3"/>
<entryLink import="true" name="Characteristic Increases" hidden="false" id="7abe-570c-1dad-5f62" collective="false" targetId="7879-46ac-5598-aa00" type="selectionEntryGroup" sortIndex="4"/>
<entryLink import="true" name="Serious Injuries" hidden="false" id="2d8f-890f-423f-524e" collective="false" targetId="313b-a816-0a89-926c" type="selectionEntryGroup" sortIndex="7"/>
<entryLink import="true" name="Advancement (Hero)" hidden="false" id="e88b-3dd4-c69e-b59f" type="selectionEntry" targetId="c26e-414e-293-2621" sortIndex="2">
<modifiers>
<modifier type="increment" value="1" field="f983-fe4b-65c8-b54f">
<conditions>
<condition type="greaterThan" value="23" field="selections" scope="parent" childId="d769-0d85-e810-df60" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
<modifier type="increment" value="1" field="f983-fe4b-65c8-b54f">
<conditions>
<condition type="greaterThan" value="27" field="selections" scope="parent" childId="d769-0d85-e810-df60" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
<modifier type="increment" value="1" field="f983-fe4b-65c8-b54f">
<conditions>
<condition type="greaterThan" value="31" field="selections" scope="parent" childId="d769-0d85-e810-df60" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
<modifier type="increment" value="1" field="f983-fe4b-65c8-b54f">
<conditions>
<condition type="greaterThan" value="35" field="selections" scope="parent" childId="d769-0d85-e810-df60" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
<modifier type="increment" value="1" field="f983-fe4b-65c8-b54f">
<conditions>
<condition type="greaterThan" value="40" field="selections" scope="parent" childId="d769-0d85-e810-df60" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
<modifier type="increment" value="1" field="f983-fe4b-65c8-b54f">
<conditions>
<condition type="greaterThan" value="45" field="selections" scope="parent" childId="d769-0d85-e810-df60" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
<modifier type="increment" value="1" field="f983-fe4b-65c8-b54f">
<conditions>
<condition type="greaterThan" value="50" field="selections" scope="parent" childId="d769-0d85-e810-df60" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
<modifier type="increment" value="1" field="f983-fe4b-65c8-b54f">
<conditions>
<condition type="greaterThan" value="56" field="selections" scope="parent" childId="d769-0d85-e810-df60" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
<modifier type="increment" value="1" field="f983-fe4b-65c8-b54f">
<conditions>
<condition type="greaterThan" value="62" field="selections" scope="parent" childId="d769-0d85-e810-df60" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
<modifier type="increment" value="1" field="f983-fe4b-65c8-b54f">
<conditions>
<condition type="greaterThan" value="68" field="selections" scope="parent" childId="d769-0d85-e810-df60" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
<modifier type="increment" value="1" field="f983-fe4b-65c8-b54f">
<conditions>
<condition type="greaterThan" value="75" field="selections" scope="parent" childId="d769-0d85-e810-df60" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
<modifier type="increment" value="1" field="f983-fe4b-65c8-b54f">
<conditions>
<condition type="greaterThan" value="82" field="selections" scope="parent" childId="d769-0d85-e810-df60" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
<modifier type="increment" value="1" field="f983-fe4b-65c8-b54f">
<conditions>
<condition type="greaterThan" value="89" field="selections" scope="parent" childId="d769-0d85-e810-df60" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
<modifier type="increment" value="1" field="a79c-4fb2-4100-9f13">
<conditions>
<condition type="greaterThan" value="23" field="selections" scope="parent" childId="d769-0d85-e810-df60" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
<modifier type="increment" value="1" field="a79c-4fb2-4100-9f13">
<conditions>
<condition type="greaterThan" value="27" field="selections" scope="parent" childId="d769-0d85-e810-df60" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
<modifier type="increment" value="1" field="a79c-4fb2-4100-9f13">
<conditions>
<condition type="greaterThan" value="31" field="selections" scope="parent" childId="d769-0d85-e810-df60" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
<modifier type="increment" value="1" field="a79c-4fb2-4100-9f13">
<conditions>
<condition type="greaterThan" value="35" field="selections" scope="parent" childId="d769-0d85-e810-df60" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
<modifier type="increment" value="1" field="a79c-4fb2-4100-9f13">
<conditions>
<condition type="greaterThan" value="40" field="selections" scope="parent" childId="d769-0d85-e810-df60" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
<modifier type="increment" value="1" field="a79c-4fb2-4100-9f13">
<conditions>
<condition type="greaterThan" value="45" field="selections" scope="parent" childId="d769-0d85-e810-df60" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
<modifier type="increment" value="1" field="a79c-4fb2-4100-9f13">
<conditions>
<condition type="greaterThan" value="50" field="selections" scope="parent" childId="d769-0d85-e810-df60" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
<modifier type="increment" value="1" field="a79c-4fb2-4100-9f13">
<conditions>
<condition type="greaterThan" value="56" field="selections" scope="parent" childId="d769-0d85-e810-df60" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
<modifier type="increment" value="1" field="a79c-4fb2-4100-9f13">
<conditions>
<condition type="greaterThan" value="62" field="selections" scope="parent" childId="d769-0d85-e810-df60" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
<modifier type="increment" value="1" field="a79c-4fb2-4100-9f13">
<conditions>
<condition type="greaterThan" value="68" field="selections" scope="parent" childId="d769-0d85-e810-df60" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
<modifier type="increment" value="1" field="a79c-4fb2-4100-9f13">
<conditions>
<condition type="greaterThan" value="75" field="selections" scope="parent" childId="d769-0d85-e810-df60" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
<modifier type="increment" value="1" field="a79c-4fb2-4100-9f13">
<conditions>
<condition type="greaterThan" value="82" field="selections" scope="parent" childId="d769-0d85-e810-df60" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
<modifier type="increment" value="1" field="a79c-4fb2-4100-9f13">
<conditions>
<condition type="greaterThan" value="89" field="selections" scope="parent" childId="d769-0d85-e810-df60" shared="true" includeChildSelections="true"/>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="any" shared="true" includeChildSelections="false"/>
</conditions>
</modifier>
<modifier type="increment" value="1" field="f983-fe4b-65c8-b54f">
<conditions>
<condition type="greaterThan" value="19" field="selections" scope="parent" childId="d769-0d85-e810-df60" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
<modifier type="increment" value="1" field="f983-fe4b-65c8-b54f">
<conditions>
<condition type="greaterThan" value="16" field="selections" scope="parent" childId="d769-0d85-e810-df60" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
<modifier type="increment" value="1" field="f983-fe4b-65c8-b54f">
<conditions>
<condition type="greaterThan" value="13" field="selections" scope="parent" childId="d769-0d85-e810-df60" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
<modifier type="increment" value="1" field="a79c-4fb2-4100-9f13">
<conditions>
<condition type="greaterThan" value="19" field="selections" scope="parent" childId="d769-0d85-e810-df60" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
<modifier type="increment" value="1" field="a79c-4fb2-4100-9f13">
<conditions>
<condition type="greaterThan" value="16" field="selections" scope="parent" childId="d769-0d85-e810-df60" shared="true" includeChildSelections="true"/>
</conditions>