-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathGunnery School Of Nuln.cat
3650 lines (3606 loc) · 260 KB
/
Gunnery School Of Nuln.cat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<catalogue id="9fda-1198-8b84-972e" name="Gunnery School Of Nuln (1b)" revision="5" battleScribeVersion="2.03" library="false" gameSystemId="9481a749-7900-614b-1695-bdc2899069c1" gameSystemRevision="15" xmlns="http://www.battlescribe.net/schema/catalogueSchema" type="catalogue">
<comment>The province of Nuln is respected across the Empire as the home to the finest handguns and war machines, save for those constructed by the Dwarfs.
This makes them a desired commodity for any Imperial army using cannonry and as such graduates from the Imperial Gunnery School are highly prized for their skills in training artillery on vulnerable targets with unerring accuracy and maintaining the war machines.
Perhaps the most surprising fact is that the Imperial Gunnery School does not create new weapons of war.
Such tasks are executed by the College of Engineering, either the well known one in Altdorf, where luminaries as von Meinkopt (creator of the Hellblaster) and Pfielmann (Grenade Launching Blunderbuss) were taught, or the Gunnery School’s neighbouring one in Nuln.
Once the Colleges of Engineering create a war machine, the Imperial Gunnery School then start training gunners to use them.
This creates a high demand for their services with only a limited number available at any one time.
Yet this demand has still led to the school refusing to lower its standards to concentrate on producing better skilled gunners and engineers, rather than a lot of sub-standard graduates barely capable of knowing which end of the cannon shoots the balls out.
Most of the students at the school come from the Imperial nobility, sons who show talents in mathematics or an interest in things that go boom, as well as not being immediately in line for succession.
Once they graduate, students are given the choice of staying in the school for further studies (and eventually becoming a Master Gunner) or returning home.
For some the prospect of yet more years of studies will send them home where they will go on to fight as an army’s pistoliers or outriders.
Those who remain will attain the pinnacle of their craft and get to watch their former trainees charge across the battlefield, often to their deaths.
One of the requirements of the school is that all students undergo fieldwork to see how weapons perform in the field, and how the students perform too.
They are sent out under the tutelage of a Senior Gunnery Officer and an instructor, one who has graduated recently and who knows what is expected with fieldwork.
For such an excursion, the group leave the school and Nuln for a period of time and travel wherever they feel.
The instructor evaluates the aptitude of the students, making assessments of whether they are likely to graduate.
Their abilities vary from undeveloped to talented, but they are always very well equipped.</comment>
<publications>
<publication id="79c4-b7d0-8643-3ab1" name="Gunnery School Of Nuln Rules" shortName="Broheim Rules (1b)" publisher="https://broheim.net/downloads/warbands/supplement/nemesiscrown/Gunnery%20School%20Of%20Nuln.pdf" publisherUrl="https://broheim.net/downloads/warbands/supplement/nemesiscrown/Gunnery%20School%20Of%20Nuln.pdf"/>
</publications>
<selectionEntries>
<selectionEntry id="9f1a-92b8-d83a-9ee4" name="Senior Gunnery Officer" publicationId="79c4-b7d0-8643-3ab1" page="5" hidden="false" collective="false" import="true" type="model">
<comment>Each warband must start with a single Senior Gunnery Officer, no more, no less.</comment>
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="f45e-1da4-ca9f-68b4" type="min"/>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="9496-baa1-c514-293f" type="max"/>
</constraints>
<profiles>
<profile id="7f2f-94ee-5e70-f80a" name="Senior Gunnery Officer" publicationId="79c4-b7d0-8643-3ab1" page="5" hidden="false" typeId="e1beaa44-e54d-dd6b-d1f2-446b333c9bb9" typeName="Model">
<modifiers>
<modifier type="increment" field="54f4796b-dedb-c296-8b1a-ff7f8043293a" value="1">
<repeats>
<repeat field="selections" scope="9f1a-92b8-d83a-9ee4" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ef8311cb-ceb9-5a7c-9d6b-9b1e0de9018d" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="3172c8dc-ebe4-0c40-72ab-8fd0076b9442" value="1">
<repeats>
<repeat field="selections" scope="9f1a-92b8-d83a-9ee4" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="a3c87526-fae5-8945-97c3-057d97df69e7" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="bf393c37-9d10-fc85-c147-62b1c01a89fe" value="1">
<repeats>
<repeat field="selections" scope="9f1a-92b8-d83a-9ee4" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="8acf5ee1-3430-be22-ec94-15b12e15e497" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="5b4d181b-23ae-5ed7-9262-c1d2f79246a8" value="1">
<repeats>
<repeat field="selections" scope="9f1a-92b8-d83a-9ee4" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7e03b263-c206-09f3-f9d3-47c0c9294235" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="2a0bcc4c-8266-418f-13d6-a6b44def5e92" value="1">
<repeats>
<repeat field="selections" scope="9f1a-92b8-d83a-9ee4" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="492ef626-87b8-7b39-378d-38fbd1ffb131" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="e234eaea-a02a-2fb7-3e1f-605392aabb89" value="1">
<repeats>
<repeat field="selections" scope="9f1a-92b8-d83a-9ee4" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="e6a2720c-06c4-d495-d8e5-0eeb2009570a" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="a6fd52b0-be0a-655e-6314-87b392c9c90e" value="1">
<repeats>
<repeat field="selections" scope="9f1a-92b8-d83a-9ee4" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0cbce569-483e-fc61-9a46-75bb7f52573a" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="7f1f0a4d-68dc-b0df-5703-c4d0d91a93b9" value="1">
<repeats>
<repeat field="selections" scope="9f1a-92b8-d83a-9ee4" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="62be0dba-2c77-76b0-3da3-48c05611f170" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="d5aca8ba-0204-b324-b976-c2b536e09924" value="1">
<repeats>
<repeat field="selections" scope="9f1a-92b8-d83a-9ee4" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b648a959-c4f1-e4dd-7f0b-7e0e9fcec205" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="a6fd52b0-be0a-655e-6314-87b392c9c90e" value="1">
<repeats>
<repeat field="selections" scope="9f1a-92b8-d83a-9ee4" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ceb4c328-6b8b-79ef-05fe-d4858b4bb69f" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="7f1f0a4d-68dc-b0df-5703-c4d0d91a93b9" value="1">
<repeats>
<repeat field="selections" scope="9f1a-92b8-d83a-9ee4" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="96c7d130-2a55-a926-fe7b-9ea7edc0f8a1" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="bf393c37-9d10-fc85-c147-62b1c01a89fe" value="1">
<repeats>
<repeat field="selections" scope="9f1a-92b8-d83a-9ee4" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="06c6e571-9da5-51a2-4053-aeca9035e1a2" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="d5aca8ba-0204-b324-b976-c2b536e09924" value="1">
<repeats>
<repeat field="selections" scope="9f1a-92b8-d83a-9ee4" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="abc4f440-9124-351f-831d-aaf5be4d3ae4" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="e234eaea-a02a-2fb7-3e1f-605392aabb89" value="1">
<repeats>
<repeat field="selections" scope="9f1a-92b8-d83a-9ee4" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="043d62b3-76f8-822e-3d67-9c3806889918" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="54f4796b-dedb-c296-8b1a-ff7f8043293a" value="1">
<repeats>
<repeat field="selections" scope="9f1a-92b8-d83a-9ee4" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d4b94626-ea08-5302-d7a8-7783f7e1fdc8" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="2a0bcc4c-8266-418f-13d6-a6b44def5e92" value="1">
<repeats>
<repeat field="selections" scope="9f1a-92b8-d83a-9ee4" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="bf7c1f26-0442-54db-cacc-44dc499dcebc" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="5b4d181b-23ae-5ed7-9262-c1d2f79246a8" value="1">
<repeats>
<repeat field="selections" scope="9f1a-92b8-d83a-9ee4" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="a93c5e1e-9169-8d09-5cba-5aa094184fe1" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="3172c8dc-ebe4-0c40-72ab-8fd0076b9442" value="1">
<repeats>
<repeat field="selections" scope="9f1a-92b8-d83a-9ee4" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="bbd9ff4c-4aa7-432d-a143-b786400cef79" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<characteristics>
<characteristic name="M" typeId="2a0bcc4c-8266-418f-13d6-a6b44def5e92">4</characteristic>
<characteristic name="WS" typeId="d5aca8ba-0204-b324-b976-c2b536e09924">4</characteristic>
<characteristic name="BS" typeId="5b4d181b-23ae-5ed7-9262-c1d2f79246a8">4</characteristic>
<characteristic name="S" typeId="7f1f0a4d-68dc-b0df-5703-c4d0d91a93b9">3</characteristic>
<characteristic name="T" typeId="54f4796b-dedb-c296-8b1a-ff7f8043293a">3</characteristic>
<characteristic name="W" typeId="3172c8dc-ebe4-0c40-72ab-8fd0076b9442">1</characteristic>
<characteristic name="I" typeId="a6fd52b0-be0a-655e-6314-87b392c9c90e">4</characteristic>
<characteristic name="A" typeId="bf393c37-9d10-fc85-c147-62b1c01a89fe">1</characteristic>
<characteristic name="LD" typeId="e234eaea-a02a-2fb7-3e1f-605392aabb89">8</characteristic>
</characteristics>
</profile>
</profiles>
<rules>
<rule id="69b7-e215-547f-b890" name="Leader" hidden="false">
<description>Any models in the warband within 12” of the Senior Gunnery Officer may use his Leadership value when using Leadership tests.</description>
</rule>
</rules>
<infoLinks>
<infoLink id="5698-fbe4-c7a6-b841" name="Human max" hidden="false" targetId="d9c2-4427-8e2b-586a" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="4cd9-d837-96d9-93c9" name="New CategoryLink" hidden="false" targetId="a0fce0bc-02e0-a064-7a39-5b97ff8a9c94" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="146f-78c4-c63b-274e" name="Serious Injury" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b3bb-9842-0c0c-5441" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ed8a-d5a9-3a87-66db" type="max"/>
</constraints>
<entryLinks>
<entryLink id="d06b-41df-2cc5-15eb" name="Serious Injuries" hidden="false" collective="false" import="true" targetId="e083-5747-c858-c0d0" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
<cost name="Warband Rating" typeId="wb-rating" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="9893-dc08-481e-867b" name="Equipment" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="bb43-a7bf-a145-780d" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b683-60d6-358d-c7c1" type="max"/>
</constraints>
<entryLinks>
<entryLink id="5cf8-28b5-54ae-de76" name="Gunnery School Equipment List" hidden="false" collective="false" import="true" targetId="3401-49f9-24b2-d1f7" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
<cost name="Warband Rating" typeId="wb-rating" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="17f7-0691-1f1b-9401" name="Characteristic Increases" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="694d-e55f-2b06-436f" type="max"/>
<constraint field="selections" scope="parent" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8cee-fdf1-1c89-9a3d" type="min"/>
</constraints>
<entryLinks>
<entryLink id="38bd-0875-18b2-f940" name="Characteristic Increases" hidden="false" collective="false" import="true" targetId="74a2-012b-b556-e736" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
<cost name="Warband Rating" typeId="wb-rating" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="7dd5-7965-fcca-afa4" name="Skills" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b12f-8a98-4f4c-8b18" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b4e7-2411-7891-18c8" type="max"/>
</constraints>
<selectionEntryGroups>
<selectionEntryGroup id="c64a-f470-4c8c-5d50" name="Shooting Skills" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="980e-d517-c18b-0cb1" type="min"/>
<constraint field="selections" scope="parent" value="-1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="b158-0a87-ff4e-9102" type="max"/>
<constraint field="selections" scope="force" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="a333-cc27-ee16-e7eb" type="min"/>
<constraint field="selections" scope="force" value="-1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="f1da-dcf6-2eb6-3cab" type="max"/>
<constraint field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="478d-ea29-88ce-0246" type="min"/>
<constraint field="selections" scope="roster" value="-1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="ced1-dd2d-583e-1ef3" type="max"/>
<constraint field="points" scope="parent" value="0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="7e29-0ce2-16d0-e23e" type="min"/>
<constraint field="points" scope="parent" value="-1" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="c22b-0dac-e7ed-e5f9" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="1f9c-a68b-b118-4201" name="Trick Shooter" page="0" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="93a2-0406-cbb4-3e84" type="max"/>
</constraints>
<rules>
<rule id="3eef-cdd7-7eb7-0017" name="Trick Shooter" page="0" hidden="false">
<description>He ignores all modifiers for cover when using missile weapons.</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="points" value="0"/>
<cost name="Warband Rating" typeId="wb-rating" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="47a6-0aaa-fa6c-46d0" name="Nimble" page="0" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="7796-53c7-90e0-fdb0" type="max"/>
</constraints>
<rules>
<rule id="76e8-69e9-ebe4-ece7" name="Nimble" page="0" hidden="false">
<description>The warrior may move and fire with weapons that are normally only used if the firer has not moved. Note that this skill cannot be combined with the Quick Shot skill.</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="points" value="0"/>
<cost name="Warband Rating" typeId="wb-rating" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="491a-c259-6136-c72a" name="Weapons Expert" page="0" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="f142-b0ba-9786-13a7" type="max"/>
</constraints>
<rules>
<rule id="8d5b-cc40-0f14-2a98" name="Weapons Expert" page="0" hidden="false">
<description>He may use any missile weapon he comes across, not just the weapons available from his warband’s list.</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="points" value="0"/>
<cost name="Warband Rating" typeId="wb-rating" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="64f8-8f2b-ef5c-d4e4" name="Eagle Eyes" page="0" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="108b-c32f-9cc3-cf4d" type="max"/>
</constraints>
<rules>
<rule id="21a2-7585-f59e-da56" name="Eagle Eyes" page="0" hidden="false">
<description>He adds +6" to the range of any missile weapon he is using.</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="points" value="0"/>
<cost name="Warband Rating" typeId="wb-rating" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="543e-1f58-d9c4-78be" name="Pistolier" page="0" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="f431-b493-7afc-922f" type="max"/>
</constraints>
<rules>
<rule id="9138-0032-5bb1-de3d" name="Pistolier" page="0" hidden="false">
<description>The warrior is an expert at using all kinds of pistols. If he is equipped with a brace of pistols of any type (including crossbow pistols), he may fire twice in the Shooting phase (though note that normal reloading rules apply). If he has a single pistol then he may fire it in the same turn it was reloaded.</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="points" value="0"/>
<cost name="Warband Rating" typeId="wb-rating" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="87da-4c90-4c5b-f790" name="Quick Shot" page="0" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="1dda-d3b0-e357-e85e" type="max"/>
</constraints>
<rules>
<rule id="adee-f1a8-16b0-c23c" name="Quick Shot" page="0" hidden="false">
<description>The warrior may shoot twice per turn
with a bow or crossbow (but not a crossbow pistol).</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="points" value="0"/>
<cost name="Warband Rating" typeId="wb-rating" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="794a-fe6c-d004-b40e" name="Hunter" page="0" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="6cd0-0e18-902b-1443" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="092f-56d9-372d-7a6a" type="min"/>
</constraints>
<rules>
<rule id="5dc5-7479-cf3d-f29e" name="Hunter" page="0" hidden="false">
<description>He may fire each turn with a handgun or Hochland long rifle.</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="points" value="0"/>
<cost name="Warband Rating" typeId="wb-rating" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="bca0-b350-85ef-277c" name="Knife Fighter" page="0" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="66a9-afd9-cb45-1d5a" type="max"/>
</constraints>
<rules>
<rule id="664a-7cb3-45fa-1001" name="Knife Fighter" page="0" hidden="false">
<description>The warrior is an unrivalled expert at using throwing knives and throwing stars. He can throw a maximum of three of these missiles in his shooting phase and may divide his shots between any targets within range as he wishes. Note that this skill cannot be combined with the Quick Shot skill.</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="points" value="0"/>
<cost name="Warband Rating" typeId="wb-rating" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="2098-46d4-0841-7d46" name="Academic Skills" hidden="false" collective="false" import="true" targetId="bd24-b172-f5f3-5551" type="selectionEntryGroup"/>
<entryLink id="5361-c467-f1dd-fa90" name="Combat Skills" hidden="false" collective="false" import="true" targetId="4a8d-c3c6-b482-5947" type="selectionEntryGroup"/>
<entryLink id="489a-1cc6-6bf2-1129" name="Speed Skills" hidden="false" collective="false" import="true" targetId="3ee1-b126-3408-e67d" type="selectionEntryGroup"/>
<entryLink id="b898-fe63-d585-5820" name="Strength Skills" hidden="false" collective="false" import="true" targetId="a749-e623-c8ff-cbd4" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
<cost name="Warband Rating" typeId="wb-rating" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="71b1-4456-c8be-ef4b" name="Experience" hidden="false" collective="false" import="true" targetId="640e-e79a-2fac-68bc" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="20" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b92a-f0ef-41e4-a459" type="min"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="60"/>
<cost name="Warband Rating" typeId="wb-rating" value="5"/>
</costs>
</selectionEntry>
<selectionEntry id="0346-ca28-2660-5f62" name="Instructor" publicationId="79c4-b7d0-8643-3ab1" page="5" hidden="false" collective="false" import="true" type="model">
<comment>Each warband must start with a single Senior Gunnery Officer, no more, no less.</comment>
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="2edc-99a0-7720-11f8" type="max"/>
</constraints>
<profiles>
<profile id="d294-0567-50b1-5cb6" name="Instructor" publicationId="79c4-b7d0-8643-3ab1" page="5" hidden="false" typeId="e1beaa44-e54d-dd6b-d1f2-446b333c9bb9" typeName="Model">
<modifiers>
<modifier type="increment" field="2a0bcc4c-8266-418f-13d6-a6b44def5e92" value="1">
<repeats>
<repeat field="selections" scope="0346-ca28-2660-5f62" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="492ef626-87b8-7b39-378d-38fbd1ffb131" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="d5aca8ba-0204-b324-b976-c2b536e09924" value="1">
<repeats>
<repeat field="selections" scope="0346-ca28-2660-5f62" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b648a959-c4f1-e4dd-7f0b-7e0e9fcec205" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="bf393c37-9d10-fc85-c147-62b1c01a89fe" value="1">
<repeats>
<repeat field="selections" scope="0346-ca28-2660-5f62" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="8acf5ee1-3430-be22-ec94-15b12e15e497" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="3172c8dc-ebe4-0c40-72ab-8fd0076b9442" value="1">
<repeats>
<repeat field="selections" scope="0346-ca28-2660-5f62" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="a3c87526-fae5-8945-97c3-057d97df69e7" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="5b4d181b-23ae-5ed7-9262-c1d2f79246a8" value="1">
<repeats>
<repeat field="selections" scope="0346-ca28-2660-5f62" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7e03b263-c206-09f3-f9d3-47c0c9294235" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="a6fd52b0-be0a-655e-6314-87b392c9c90e" value="1">
<repeats>
<repeat field="selections" scope="0346-ca28-2660-5f62" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0cbce569-483e-fc61-9a46-75bb7f52573a" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="54f4796b-dedb-c296-8b1a-ff7f8043293a" value="1">
<repeats>
<repeat field="selections" scope="0346-ca28-2660-5f62" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ef8311cb-ceb9-5a7c-9d6b-9b1e0de9018d" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="7f1f0a4d-68dc-b0df-5703-c4d0d91a93b9" value="1">
<repeats>
<repeat field="selections" scope="0346-ca28-2660-5f62" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="62be0dba-2c77-76b0-3da3-48c05611f170" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="e234eaea-a02a-2fb7-3e1f-605392aabb89" value="1">
<repeats>
<repeat field="selections" scope="0346-ca28-2660-5f62" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="e6a2720c-06c4-d495-d8e5-0eeb2009570a" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="54f4796b-dedb-c296-8b1a-ff7f8043293a" value="1">
<repeats>
<repeat field="selections" scope="0346-ca28-2660-5f62" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d4b94626-ea08-5302-d7a8-7783f7e1fdc8" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="d5aca8ba-0204-b324-b976-c2b536e09924" value="1">
<repeats>
<repeat field="selections" scope="0346-ca28-2660-5f62" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="abc4f440-9124-351f-831d-aaf5be4d3ae4" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="e234eaea-a02a-2fb7-3e1f-605392aabb89" value="1">
<repeats>
<repeat field="selections" scope="0346-ca28-2660-5f62" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="043d62b3-76f8-822e-3d67-9c3806889918" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="2a0bcc4c-8266-418f-13d6-a6b44def5e92" value="1">
<repeats>
<repeat field="selections" scope="0346-ca28-2660-5f62" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="bf7c1f26-0442-54db-cacc-44dc499dcebc" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="5b4d181b-23ae-5ed7-9262-c1d2f79246a8" value="1">
<repeats>
<repeat field="selections" scope="0346-ca28-2660-5f62" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="a93c5e1e-9169-8d09-5cba-5aa094184fe1" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="7f1f0a4d-68dc-b0df-5703-c4d0d91a93b9" value="1">
<repeats>
<repeat field="selections" scope="0346-ca28-2660-5f62" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="96c7d130-2a55-a926-fe7b-9ea7edc0f8a1" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="3172c8dc-ebe4-0c40-72ab-8fd0076b9442" value="1">
<repeats>
<repeat field="selections" scope="0346-ca28-2660-5f62" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="bbd9ff4c-4aa7-432d-a143-b786400cef79" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="bf393c37-9d10-fc85-c147-62b1c01a89fe" value="1">
<repeats>
<repeat field="selections" scope="0346-ca28-2660-5f62" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="06c6e571-9da5-51a2-4053-aeca9035e1a2" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="a6fd52b0-be0a-655e-6314-87b392c9c90e" value="1">
<repeats>
<repeat field="selections" scope="0346-ca28-2660-5f62" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ceb4c328-6b8b-79ef-05fe-d4858b4bb69f" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<characteristics>
<characteristic name="M" typeId="2a0bcc4c-8266-418f-13d6-a6b44def5e92">4</characteristic>
<characteristic name="WS" typeId="d5aca8ba-0204-b324-b976-c2b536e09924">3</characteristic>
<characteristic name="BS" typeId="5b4d181b-23ae-5ed7-9262-c1d2f79246a8">4</characteristic>
<characteristic name="S" typeId="7f1f0a4d-68dc-b0df-5703-c4d0d91a93b9">3</characteristic>
<characteristic name="T" typeId="54f4796b-dedb-c296-8b1a-ff7f8043293a">3</characteristic>
<characteristic name="W" typeId="3172c8dc-ebe4-0c40-72ab-8fd0076b9442">1</characteristic>
<characteristic name="I" typeId="a6fd52b0-be0a-655e-6314-87b392c9c90e">4</characteristic>
<characteristic name="A" typeId="bf393c37-9d10-fc85-c147-62b1c01a89fe">1</characteristic>
<characteristic name="LD" typeId="e234eaea-a02a-2fb7-3e1f-605392aabb89">7</characteristic>
</characteristics>
</profile>
</profiles>
<rules>
<rule id="2fec-a115-9648-14c6" name="Expert Weaponsmith" publicationId="79c4-b7d0-8643-3ab1" page="5" hidden="false">
<description>The Instructors know every trick in the book when it comes to working with black powder weapons.
While there is an Instructor in the warband all Pistol weapons receive a +3” range bonus and all other black powder weapons receive a +6” range bonus.</description>
</rule>
</rules>
<infoLinks>
<infoLink id="1e20-697e-b467-e234" name="Human max" hidden="false" targetId="d9c2-4427-8e2b-586a" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="ecd5-5f53-3a21-943b" name="New CategoryLink" hidden="false" targetId="a0fce0bc-02e0-a064-7a39-5b97ff8a9c94" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="962c-3bda-4366-b965" name="Equipment" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9dae-1c25-248d-141d" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7189-1792-d463-f5da" type="max"/>
</constraints>
<entryLinks>
<entryLink id="d59a-6418-c769-379b" name="Marksmen Equipment List" hidden="false" collective="false" import="true" targetId="00b7-59a2-6908-f08e" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
<cost name="Warband Rating" typeId="wb-rating" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="bd74-925d-50f7-a6e5" name="Characteristic Increases" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8a97-27be-9920-5fd0" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e62d-aefd-0f7a-c91e" type="max"/>
</constraints>
<entryLinks>
<entryLink id="2233-03be-d0ce-233c" name="Characteristic Increases" hidden="false" collective="false" import="true" targetId="74a2-012b-b556-e736" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
<cost name="Warband Rating" typeId="wb-rating" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="362e-9b18-140e-1d06" name="Serious Injury" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4b2e-6309-2df1-3814" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6c9c-cca3-9f30-919f" type="max"/>
</constraints>
<entryLinks>
<entryLink id="91e5-9da5-ff00-1999" name="Serious Injuries" hidden="false" collective="false" import="true" targetId="e083-5747-c858-c0d0" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
<cost name="Warband Rating" typeId="wb-rating" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="16d9-75de-2b02-9fc7" name="Skills" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1c3a-5fcd-b458-068b" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b579-a592-d065-b192" type="max"/>
</constraints>
<entryLinks>
<entryLink id="722c-c5ad-dde4-261b" name="Shooting Skills" hidden="false" collective="false" import="true" targetId="596d-0a32-5a40-16da" type="selectionEntryGroup"/>
<entryLink id="cc5e-7df0-62c5-a6bd" name="Academic Skills" hidden="false" collective="false" import="true" targetId="bd24-b172-f5f3-5551" type="selectionEntryGroup"/>
<entryLink id="a80e-81a7-2f2f-40c0" name="Speed Skills" hidden="false" collective="false" import="true" targetId="3ee1-b126-3408-e67d" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
<cost name="Warband Rating" typeId="wb-rating" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="5f95-7df1-8232-0f81" name="Experience" hidden="false" collective="false" import="true" targetId="640e-e79a-2fac-68bc" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="12" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4fae-89f9-5f5b-b4bc" type="min"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="45"/>
<cost name="Warband Rating" typeId="wb-rating" value="5"/>
</costs>
</selectionEntry>
<selectionEntry id="15f3-d871-3bef-07c0" name="Senior Student" publicationId="79c4-b7d0-8643-3ab1" page="5" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="e41b-36ca-53d7-343a" type="max"/>
</constraints>
<profiles>
<profile id="6469-bb39-6d83-553a" name="Senior Student" publicationId="79c4-b7d0-8643-3ab1" page="5" hidden="false" typeId="e1beaa44-e54d-dd6b-d1f2-446b333c9bb9" typeName="Model">
<modifiers>
<modifier type="increment" field="3172c8dc-ebe4-0c40-72ab-8fd0076b9442" value="1">
<repeats>
<repeat field="selections" scope="15f3-d871-3bef-07c0" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="a3c87526-fae5-8945-97c3-057d97df69e7" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="d5aca8ba-0204-b324-b976-c2b536e09924" value="1">
<repeats>
<repeat field="selections" scope="15f3-d871-3bef-07c0" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b648a959-c4f1-e4dd-7f0b-7e0e9fcec205" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="bf393c37-9d10-fc85-c147-62b1c01a89fe" value="1">
<repeats>
<repeat field="selections" scope="15f3-d871-3bef-07c0" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="8acf5ee1-3430-be22-ec94-15b12e15e497" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="54f4796b-dedb-c296-8b1a-ff7f8043293a" value="1">
<repeats>
<repeat field="selections" scope="15f3-d871-3bef-07c0" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ef8311cb-ceb9-5a7c-9d6b-9b1e0de9018d" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="e234eaea-a02a-2fb7-3e1f-605392aabb89" value="1">
<repeats>
<repeat field="selections" scope="15f3-d871-3bef-07c0" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="e6a2720c-06c4-d495-d8e5-0eeb2009570a" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="a6fd52b0-be0a-655e-6314-87b392c9c90e" value="1">
<repeats>
<repeat field="selections" scope="15f3-d871-3bef-07c0" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0cbce569-483e-fc61-9a46-75bb7f52573a" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="5b4d181b-23ae-5ed7-9262-c1d2f79246a8" value="1">
<repeats>
<repeat field="selections" scope="15f3-d871-3bef-07c0" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7e03b263-c206-09f3-f9d3-47c0c9294235" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="7f1f0a4d-68dc-b0df-5703-c4d0d91a93b9" value="1">
<repeats>
<repeat field="selections" scope="15f3-d871-3bef-07c0" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="62be0dba-2c77-76b0-3da3-48c05611f170" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="2a0bcc4c-8266-418f-13d6-a6b44def5e92" value="1">
<repeats>
<repeat field="selections" scope="15f3-d871-3bef-07c0" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="492ef626-87b8-7b39-378d-38fbd1ffb131" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="e234eaea-a02a-2fb7-3e1f-605392aabb89" value="1">
<repeats>
<repeat field="selections" scope="15f3-d871-3bef-07c0" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="043d62b3-76f8-822e-3d67-9c3806889918" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="a6fd52b0-be0a-655e-6314-87b392c9c90e" value="1">
<repeats>
<repeat field="selections" scope="15f3-d871-3bef-07c0" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ceb4c328-6b8b-79ef-05fe-d4858b4bb69f" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="d5aca8ba-0204-b324-b976-c2b536e09924" value="1">
<repeats>
<repeat field="selections" scope="15f3-d871-3bef-07c0" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="abc4f440-9124-351f-831d-aaf5be4d3ae4" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="2a0bcc4c-8266-418f-13d6-a6b44def5e92" value="1">
<repeats>
<repeat field="selections" scope="15f3-d871-3bef-07c0" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="bf7c1f26-0442-54db-cacc-44dc499dcebc" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="3172c8dc-ebe4-0c40-72ab-8fd0076b9442" value="1">
<repeats>
<repeat field="selections" scope="15f3-d871-3bef-07c0" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="bbd9ff4c-4aa7-432d-a143-b786400cef79" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="7f1f0a4d-68dc-b0df-5703-c4d0d91a93b9" value="1">
<repeats>
<repeat field="selections" scope="15f3-d871-3bef-07c0" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="96c7d130-2a55-a926-fe7b-9ea7edc0f8a1" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="bf393c37-9d10-fc85-c147-62b1c01a89fe" value="1">
<repeats>
<repeat field="selections" scope="15f3-d871-3bef-07c0" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="06c6e571-9da5-51a2-4053-aeca9035e1a2" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="54f4796b-dedb-c296-8b1a-ff7f8043293a" value="1">
<repeats>
<repeat field="selections" scope="15f3-d871-3bef-07c0" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d4b94626-ea08-5302-d7a8-7783f7e1fdc8" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="5b4d181b-23ae-5ed7-9262-c1d2f79246a8" value="1">
<repeats>
<repeat field="selections" scope="15f3-d871-3bef-07c0" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="a93c5e1e-9169-8d09-5cba-5aa094184fe1" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<characteristics>
<characteristic name="M" typeId="2a0bcc4c-8266-418f-13d6-a6b44def5e92">4</characteristic>
<characteristic name="WS" typeId="d5aca8ba-0204-b324-b976-c2b536e09924">4</characteristic>
<characteristic name="BS" typeId="5b4d181b-23ae-5ed7-9262-c1d2f79246a8">3</characteristic>
<characteristic name="S" typeId="7f1f0a4d-68dc-b0df-5703-c4d0d91a93b9">3</characteristic>
<characteristic name="T" typeId="54f4796b-dedb-c296-8b1a-ff7f8043293a">3</characteristic>
<characteristic name="W" typeId="3172c8dc-ebe4-0c40-72ab-8fd0076b9442">1</characteristic>
<characteristic name="I" typeId="a6fd52b0-be0a-655e-6314-87b392c9c90e">3</characteristic>
<characteristic name="A" typeId="bf393c37-9d10-fc85-c147-62b1c01a89fe">1</characteristic>
<characteristic name="LD" typeId="e234eaea-a02a-2fb7-3e1f-605392aabb89">7</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="8cd3-8db5-bbe7-a3c3" name="Human max" hidden="false" targetId="d9c2-4427-8e2b-586a" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="94ac-b5bd-324d-a425" name="New CategoryLink" hidden="false" targetId="a0fce0bc-02e0-a064-7a39-5b97ff8a9c94" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="64bb-dce3-4e36-4459" name="Serious Injury" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="daea-5d83-c085-ef9c" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3b3d-33d7-6004-8c58" type="max"/>
</constraints>
<entryLinks>
<entryLink id="810e-9ea0-f420-7e50" name="Serious Injuries" hidden="false" collective="false" import="true" targetId="e083-5747-c858-c0d0" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
<cost name="Warband Rating" typeId="wb-rating" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="7681-24d3-02f0-2d23" name="Equipment" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2b1d-68db-6a54-c54b" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fa42-d1cd-782e-76d0" type="max"/>
</constraints>
<entryLinks>
<entryLink id="9253-17f2-af27-0805" name="Gunnery School Equipment List" hidden="false" collective="false" import="true" targetId="3401-49f9-24b2-d1f7" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
<cost name="Warband Rating" typeId="wb-rating" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="5637-7a6a-92ee-910b" name="Skills" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e27b-a62b-c763-fbc3" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="50a8-f242-75f6-feb6" type="max"/>
</constraints>
<entryLinks>
<entryLink id="ddfb-53a0-29c4-da16" name="Shooting Skills" hidden="false" collective="false" import="true" targetId="596d-0a32-5a40-16da" type="selectionEntryGroup"/>
<entryLink id="7b18-63f2-0f79-3cc2" name="Combat Skills" hidden="false" collective="false" import="true" targetId="4a8d-c3c6-b482-5947" type="selectionEntryGroup"/>
<entryLink id="8dd0-249d-b7da-5be0" name="Speed Skills" hidden="false" collective="false" import="true" targetId="3ee1-b126-3408-e67d" type="selectionEntryGroup"/>
<entryLink id="c715-afc3-74ef-c0e9" name="Strength Skills" hidden="false" collective="false" import="true" targetId="a749-e623-c8ff-cbd4" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
<cost name="Warband Rating" typeId="wb-rating" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="d22a-f760-61e7-fe39" name="Characteristic Increases" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8754-ffc7-7012-061d" type="max"/>
<constraint field="selections" scope="parent" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="298a-a079-6c16-29e0" type="min"/>
</constraints>
<entryLinks>
<entryLink id="e230-676f-f192-bb13" name="Characteristic Increases" hidden="false" collective="false" import="true" targetId="74a2-012b-b556-e736" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
<cost name="Warband Rating" typeId="wb-rating" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="e49d-2b31-506f-f587" name="Experience" hidden="false" collective="false" import="true" targetId="640e-e79a-2fac-68bc" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="8" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="11aa-9fad-6a43-f3d5" type="min"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="45"/>
<cost name="Warband Rating" typeId="wb-rating" value="5"/>
</costs>
</selectionEntry>
<selectionEntry id="a6dd-10cf-6557-19c3" name="Underclassmen" publicationId="79c4-b7d0-8643-3ab1" page="5" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="force" value="2" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="2008-40b7-93a6-54a9" type="max"/>
</constraints>
<profiles>
<profile id="7cef-2e4c-8f56-5111" name="Underclassmen" hidden="false" typeId="e1beaa44-e54d-dd6b-d1f2-446b333c9bb9" typeName="Model">
<modifiers>
<modifier type="increment" field="e234eaea-a02a-2fb7-3e1f-605392aabb89" value="1">
<repeats>
<repeat field="selections" scope="a6dd-10cf-6557-19c3" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="e6a2720c-06c4-d495-d8e5-0eeb2009570a" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="bf393c37-9d10-fc85-c147-62b1c01a89fe" value="1">
<repeats>
<repeat field="selections" scope="a6dd-10cf-6557-19c3" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="8acf5ee1-3430-be22-ec94-15b12e15e497" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="2a0bcc4c-8266-418f-13d6-a6b44def5e92" value="1">
<repeats>
<repeat field="selections" scope="a6dd-10cf-6557-19c3" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="492ef626-87b8-7b39-378d-38fbd1ffb131" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="d5aca8ba-0204-b324-b976-c2b536e09924" value="1">
<repeats>
<repeat field="selections" scope="a6dd-10cf-6557-19c3" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b648a959-c4f1-e4dd-7f0b-7e0e9fcec205" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="5b4d181b-23ae-5ed7-9262-c1d2f79246a8" value="1">
<repeats>
<repeat field="selections" scope="a6dd-10cf-6557-19c3" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7e03b263-c206-09f3-f9d3-47c0c9294235" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="a6fd52b0-be0a-655e-6314-87b392c9c90e" value="1">
<repeats>
<repeat field="selections" scope="a6dd-10cf-6557-19c3" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0cbce569-483e-fc61-9a46-75bb7f52573a" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="54f4796b-dedb-c296-8b1a-ff7f8043293a" value="1">
<repeats>
<repeat field="selections" scope="a6dd-10cf-6557-19c3" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ef8311cb-ceb9-5a7c-9d6b-9b1e0de9018d" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="3172c8dc-ebe4-0c40-72ab-8fd0076b9442" value="1">
<repeats>
<repeat field="selections" scope="a6dd-10cf-6557-19c3" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="a3c87526-fae5-8945-97c3-057d97df69e7" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="7f1f0a4d-68dc-b0df-5703-c4d0d91a93b9" value="1">
<repeats>
<repeat field="selections" scope="a6dd-10cf-6557-19c3" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="62be0dba-2c77-76b0-3da3-48c05611f170" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="3172c8dc-ebe4-0c40-72ab-8fd0076b9442" value="1">
<repeats>
<repeat field="selections" scope="a6dd-10cf-6557-19c3" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="bbd9ff4c-4aa7-432d-a143-b786400cef79" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="5b4d181b-23ae-5ed7-9262-c1d2f79246a8" value="1">
<repeats>
<repeat field="selections" scope="a6dd-10cf-6557-19c3" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="a93c5e1e-9169-8d09-5cba-5aa094184fe1" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="54f4796b-dedb-c296-8b1a-ff7f8043293a" value="1">
<repeats>
<repeat field="selections" scope="a6dd-10cf-6557-19c3" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d4b94626-ea08-5302-d7a8-7783f7e1fdc8" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="7f1f0a4d-68dc-b0df-5703-c4d0d91a93b9" value="1">
<repeats>
<repeat field="selections" scope="a6dd-10cf-6557-19c3" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="96c7d130-2a55-a926-fe7b-9ea7edc0f8a1" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="bf393c37-9d10-fc85-c147-62b1c01a89fe" value="1">
<repeats>
<repeat field="selections" scope="a6dd-10cf-6557-19c3" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="06c6e571-9da5-51a2-4053-aeca9035e1a2" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="2a0bcc4c-8266-418f-13d6-a6b44def5e92" value="1">
<repeats>
<repeat field="selections" scope="a6dd-10cf-6557-19c3" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="bf7c1f26-0442-54db-cacc-44dc499dcebc" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="d5aca8ba-0204-b324-b976-c2b536e09924" value="1">
<repeats>
<repeat field="selections" scope="a6dd-10cf-6557-19c3" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="abc4f440-9124-351f-831d-aaf5be4d3ae4" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="e234eaea-a02a-2fb7-3e1f-605392aabb89" value="1">
<repeats>
<repeat field="selections" scope="a6dd-10cf-6557-19c3" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="043d62b3-76f8-822e-3d67-9c3806889918" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="a6fd52b0-be0a-655e-6314-87b392c9c90e" value="1">
<repeats>
<repeat field="selections" scope="a6dd-10cf-6557-19c3" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ceb4c328-6b8b-79ef-05fe-d4858b4bb69f" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<characteristics>
<characteristic name="M" typeId="2a0bcc4c-8266-418f-13d6-a6b44def5e92">4</characteristic>
<characteristic name="WS" typeId="d5aca8ba-0204-b324-b976-c2b536e09924">3</characteristic>
<characteristic name="BS" typeId="5b4d181b-23ae-5ed7-9262-c1d2f79246a8">2</characteristic>
<characteristic name="S" typeId="7f1f0a4d-68dc-b0df-5703-c4d0d91a93b9">3</characteristic>
<characteristic name="T" typeId="54f4796b-dedb-c296-8b1a-ff7f8043293a">3</characteristic>
<characteristic name="W" typeId="3172c8dc-ebe4-0c40-72ab-8fd0076b9442">1</characteristic>
<characteristic name="I" typeId="a6fd52b0-be0a-655e-6314-87b392c9c90e">3</characteristic>
<characteristic name="A" typeId="bf393c37-9d10-fc85-c147-62b1c01a89fe">1</characteristic>
<characteristic name="LD" typeId="e234eaea-a02a-2fb7-3e1f-605392aabb89">6</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="16ac-760d-f514-bbb5" name="Human max" hidden="false" targetId="d9c2-4427-8e2b-586a" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="a56f-23a5-cf4e-8e6c" name="New CategoryLink" hidden="false" targetId="a0fce0bc-02e0-a064-7a39-5b97ff8a9c94" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="23da-ed90-7a60-1e64" name="Serious Injury" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7be1-d496-685d-84eb" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="33f3-2f21-0ce8-7b4f" type="max"/>
</constraints>
<entryLinks>
<entryLink id="4179-3baa-b5e9-6d2f" name="Serious Injuries" hidden="false" collective="false" import="true" targetId="e083-5747-c858-c0d0" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
<cost name="Warband Rating" typeId="wb-rating" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="7e9f-3715-69c1-d73a" name="Equipment" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="827b-bf0d-2fee-74f6" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d909-d1b1-61f8-d020" type="max"/>
</constraints>
<entryLinks>
<entryLink id="a70d-c931-2d23-3ade" name="Gunnery School Equipment List" hidden="false" collective="false" import="true" targetId="3401-49f9-24b2-d1f7" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
<cost name="Warband Rating" typeId="wb-rating" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="0802-a64e-3712-b814" name="Skills" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="232e-35d6-a2ef-2ade" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d3ad-9adc-13a7-928e" type="max"/>
</constraints>
<entryLinks>
<entryLink id="c35c-590f-c128-bc01" name="Shooting Skills" hidden="false" collective="false" import="true" targetId="596d-0a32-5a40-16da" type="selectionEntryGroup"/>
<entryLink id="8ccc-e4ef-baea-3448" name="Combat Skills" hidden="false" collective="false" import="true" targetId="4a8d-c3c6-b482-5947" type="selectionEntryGroup"/>
<entryLink id="8c75-dda9-7e61-3bc0" name="Speed Skills" hidden="false" collective="false" import="true" targetId="3ee1-b126-3408-e67d" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
<cost name="Warband Rating" typeId="wb-rating" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="ac29-0015-23f7-6835" name="Characteristic Increases" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cb25-f05a-e59d-8ca3" type="max"/>
<constraint field="selections" scope="parent" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="aa3d-3b8b-3c24-e4da" type="min"/>
</constraints>
<entryLinks>
<entryLink id="07a6-ba18-bada-ca27" name="Characteristic Increases" hidden="false" collective="false" import="true" targetId="74a2-012b-b556-e736" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
<cost name="Warband Rating" typeId="wb-rating" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="33b5-2e47-ac9e-b58c" name="Experience" hidden="false" collective="false" import="true" targetId="640e-e79a-2fac-68bc" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="20"/>
<cost name="Warband Rating" typeId="wb-rating" value="5"/>
</costs>
</selectionEntry>
<selectionEntry id="9688-a426-cf19-8b0f" name="Sons of the Guns" publicationId="79c4-b7d0-8643-3ab1" page="6" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="7150-2d4c-25d2-2932" name="Sons of the Guns" hidden="false" typeId="e1beaa44-e54d-dd6b-d1f2-446b333c9bb9" typeName="Model">
<modifiers>
<modifier type="increment" field="54f4796b-dedb-c296-8b1a-ff7f8043293a" value="1">
<repeats>
<repeat field="selections" scope="9688-a426-cf19-8b0f" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ef8311cb-ceb9-5a7c-9d6b-9b1e0de9018d" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="3172c8dc-ebe4-0c40-72ab-8fd0076b9442" value="1">
<repeats>
<repeat field="selections" scope="9688-a426-cf19-8b0f" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="a3c87526-fae5-8945-97c3-057d97df69e7" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="d5aca8ba-0204-b324-b976-c2b536e09924" value="1">
<repeats>
<repeat field="selections" scope="9688-a426-cf19-8b0f" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b648a959-c4f1-e4dd-7f0b-7e0e9fcec205" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="e234eaea-a02a-2fb7-3e1f-605392aabb89" value="1">
<repeats>
<repeat field="selections" scope="9688-a426-cf19-8b0f" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="e6a2720c-06c4-d495-d8e5-0eeb2009570a" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="2a0bcc4c-8266-418f-13d6-a6b44def5e92" value="1">
<repeats>
<repeat field="selections" scope="9688-a426-cf19-8b0f" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="492ef626-87b8-7b39-378d-38fbd1ffb131" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="7f1f0a4d-68dc-b0df-5703-c4d0d91a93b9" value="1">
<repeats>
<repeat field="selections" scope="9688-a426-cf19-8b0f" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="62be0dba-2c77-76b0-3da3-48c05611f170" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="bf393c37-9d10-fc85-c147-62b1c01a89fe" value="1">
<repeats>
<repeat field="selections" scope="9688-a426-cf19-8b0f" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="8acf5ee1-3430-be22-ec94-15b12e15e497" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="a6fd52b0-be0a-655e-6314-87b392c9c90e" value="1">
<repeats>
<repeat field="selections" scope="9688-a426-cf19-8b0f" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0cbce569-483e-fc61-9a46-75bb7f52573a" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="5b4d181b-23ae-5ed7-9262-c1d2f79246a8" value="1">
<repeats>
<repeat field="selections" scope="9688-a426-cf19-8b0f" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7e03b263-c206-09f3-f9d3-47c0c9294235" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="e234eaea-a02a-2fb7-3e1f-605392aabb89" value="1">
<repeats>
<repeat field="selections" scope="9688-a426-cf19-8b0f" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="043d62b3-76f8-822e-3d67-9c3806889918" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="a6fd52b0-be0a-655e-6314-87b392c9c90e" value="1">
<repeats>
<repeat field="selections" scope="9688-a426-cf19-8b0f" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ceb4c328-6b8b-79ef-05fe-d4858b4bb69f" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="7f1f0a4d-68dc-b0df-5703-c4d0d91a93b9" value="1">
<repeats>
<repeat field="selections" scope="9688-a426-cf19-8b0f" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="96c7d130-2a55-a926-fe7b-9ea7edc0f8a1" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="bf393c37-9d10-fc85-c147-62b1c01a89fe" value="1">
<repeats>
<repeat field="selections" scope="9688-a426-cf19-8b0f" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="06c6e571-9da5-51a2-4053-aeca9035e1a2" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="3172c8dc-ebe4-0c40-72ab-8fd0076b9442" value="1">
<repeats>
<repeat field="selections" scope="9688-a426-cf19-8b0f" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="bbd9ff4c-4aa7-432d-a143-b786400cef79" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="d5aca8ba-0204-b324-b976-c2b536e09924" value="1">
<repeats>
<repeat field="selections" scope="9688-a426-cf19-8b0f" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="abc4f440-9124-351f-831d-aaf5be4d3ae4" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="2a0bcc4c-8266-418f-13d6-a6b44def5e92" value="1">
<repeats>
<repeat field="selections" scope="9688-a426-cf19-8b0f" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="bf7c1f26-0442-54db-cacc-44dc499dcebc" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="5b4d181b-23ae-5ed7-9262-c1d2f79246a8" value="1">
<repeats>
<repeat field="selections" scope="9688-a426-cf19-8b0f" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="a93c5e1e-9169-8d09-5cba-5aa094184fe1" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="54f4796b-dedb-c296-8b1a-ff7f8043293a" value="1">
<repeats>
<repeat field="selections" scope="9688-a426-cf19-8b0f" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d4b94626-ea08-5302-d7a8-7783f7e1fdc8" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<characteristics>