-
Notifications
You must be signed in to change notification settings - Fork 19
/
Black Orcs.cat
1592 lines (1544 loc) · 112 KB
/
Black Orcs.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="a831-b626-c36f-258b" name="Black Orcs (1b)" gameSystemId="9481a749-7900-614b-1695-bdc2899069c1" gameSystemRevision="15" revision="2" battleScribeVersion="2.03" type="catalogue" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<catalogueLinks>
<catalogueLink type="catalogue" name="common-data" id="5ad9-1a6a-43ce-64a8" targetId="e020-c282-277b-b173"/>
</catalogueLinks>
<publications>
<publication name="GitHub" hidden="false" id="28e0-9e7c-f2f5-2c48" publisherUrl="https://github.com/BSData/mordheim" shortName="GitHub"/>
</publications>
<infoLinks>
<infoLink name="Animosity" hidden="false" type="rule" id="8019-47c7-88c2-44d9" targetId="c214-2ad0-8f27-7328"/>
</infoLinks>
<rules>
<rule name="Let the goons do the work" hidden="false" id="85fa-a58c-9f1d-1c25">
<description>Black Orcs rely on themselves to do the killing and do not ride mounts of any kind.
Only normal Orcs may ride a boar or other such mount.</description>
</rule>
<rule name="Da Boss is Dead!" hidden="false" id="2ac8-f4ac-2414-178f">
<description>If the Boss should be killed a Black Orc will always assume leadership of the warband before any other type, irrespective of relative experience.
The replacement will automatically acquire the "Oi Behave!" skill.</description>
</rule>
</rules>
<selectionEntries>
<selectionEntry id="13b7-756b-7373-caaa" name="Black Orc Boss" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="884-c00-aaaf-7820" type="min"/>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7994-420d-538b-18a3" type="max"/>
</constraints>
<profiles>
<profile id="e08c-5772-8226-4bb" name="Black Orc Boss" 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="13b7-756b-7373-caaa" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="6fe1-7bba-3ca0-06b7" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="a6fd52b0-be0a-655e-6314-87b392c9c90e" value="1">
<repeats>
<repeat field="selections" scope="13b7-756b-7373-caaa" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="da26-8381-781a-6149" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="3172c8dc-ebe4-0c40-72ab-8fd0076b9442" value="1">
<repeats>
<repeat field="selections" scope="13b7-756b-7373-caaa" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7918-b440-5d63-bd5e" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="bf393c37-9d10-fc85-c147-62b1c01a89fe" value="1">
<repeats>
<repeat field="selections" scope="13b7-756b-7373-caaa" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="37c4-dcb1-8949-d4eb" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="2a0bcc4c-8266-418f-13d6-a6b44def5e92" value="1">
<repeats>
<repeat field="selections" scope="13b7-756b-7373-caaa" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="c4db-7b50-a4f9-cd5f" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="5b4d181b-23ae-5ed7-9262-c1d2f79246a8" value="1">
<repeats>
<repeat field="selections" scope="13b7-756b-7373-caaa" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="5a83-274a-bba8-f498" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="e234eaea-a02a-2fb7-3e1f-605392aabb89" value="1">
<repeats>
<repeat field="selections" scope="13b7-756b-7373-caaa" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="27d8-c790-a4c1-b9cc" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="7f1f0a4d-68dc-b0df-5703-c4d0d91a93b9" value="1">
<repeats>
<repeat field="selections" scope="13b7-756b-7373-caaa" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9368-3616-516f-5178" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="d5aca8ba-0204-b324-b976-c2b536e09924" value="1">
<repeats>
<repeat field="selections" scope="13b7-756b-7373-caaa" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7418-394e-fe13-2a96" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="a6fd52b0-be0a-655e-6314-87b392c9c90e" value="1">
<repeats>
<repeat field="selections" scope="13b7-756b-7373-caaa" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7531-eebe-fabf-7cf5" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="54f4796b-dedb-c296-8b1a-ff7f8043293a" value="1">
<repeats>
<repeat field="selections" scope="13b7-756b-7373-caaa" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ca62-64c2-488a-f17c" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="e234eaea-a02a-2fb7-3e1f-605392aabb89" value="1">
<repeats>
<repeat field="selections" scope="13b7-756b-7373-caaa" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="a519-13dc-1b04-e39e" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="3172c8dc-ebe4-0c40-72ab-8fd0076b9442" value="1">
<repeats>
<repeat field="selections" scope="13b7-756b-7373-caaa" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9209-0067-18d2-b78c" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="2a0bcc4c-8266-418f-13d6-a6b44def5e92" value="1">
<repeats>
<repeat field="selections" scope="13b7-756b-7373-caaa" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7dee-74f8-7707-ce64" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="5b4d181b-23ae-5ed7-9262-c1d2f79246a8" value="1">
<repeats>
<repeat field="selections" scope="13b7-756b-7373-caaa" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0e79-80b9-77e3-fcc9" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="bf393c37-9d10-fc85-c147-62b1c01a89fe" value="1">
<repeats>
<repeat field="selections" scope="13b7-756b-7373-caaa" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9faf-d3bf-a2ba-411e" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="7f1f0a4d-68dc-b0df-5703-c4d0d91a93b9" value="1">
<repeats>
<repeat field="selections" scope="13b7-756b-7373-caaa" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="8e57-5d0b-5279-b4ab" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="d5aca8ba-0204-b324-b976-c2b536e09924" value="1">
<repeats>
<repeat field="selections" scope="13b7-756b-7373-caaa" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ae44-58f4-4440-5777" 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">4</characteristic>
<characteristic name="T" typeId="54f4796b-dedb-c296-8b1a-ff7f8043293a">4</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">8</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="5f62-602b-2193-225a" name="Black Orc max" hidden="false" targetId="cba-5063-4209-b18a" type="profile"/>
<infoLink id="2349-bae9-2dc3-d186" name="Leader" hidden="false" targetId="8712-d0f2-fe64-07bd" type="rule"/>
<infoLink name="Black Orc" hidden="false" type="rule" id="dc47-38ea-8aa9-f4b7" targetId="8e92-1188-aad7-5374"/>
</infoLinks>
<categoryLinks>
<categoryLink id="cbc-390d-6beb-54b2" name="New CategoryLink" hidden="false" targetId="a0fce0bc-02e0-a064-7a39-5b97ff8a9c94" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="3c98-ce7-9bf1-ac34" name="Extra Equipment" 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="8669-322c-4864-45ad" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6f56-b582-a9a0-a86" type="max"/>
</constraints>
<entryLinks>
<entryLink id="e258-641b-8b33-6e19" name="Equipment" hidden="false" collective="false" import="true" targetId="2247-1f56-bc59-0ead" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
<cost name="Warband Rating" typeId="wb-rating" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="e822-ac12-b88c-1c79" 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="cc64-c8a7-a46f-6014" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5edb-198e-b441-49af" type="max"/>
</constraints>
<entryLinks>
<entryLink id="a8d5-3c8e-e1ca-4b2c" name="Combat Skills" hidden="false" collective="false" import="true" targetId="ee2c-89e3-489b-d0cb" type="selectionEntryGroup"/>
<entryLink id="3519-c925-93be-1b0" name="Shooting Skills" hidden="false" collective="false" import="true" targetId="0073-d2d6-15c0-45b1" type="selectionEntryGroup"/>
<entryLink id="e90-d43b-f2ed-83f7" name="Speed Skills" hidden="false" collective="false" import="true" targetId="e134-0fdf-67a2-4684" type="selectionEntryGroup"/>
<entryLink id="7763-e4c1-7ddb-157d" name="Strength Skills" hidden="false" collective="false" import="true" targetId="e5ac-cd5b-9057-e096" type="selectionEntryGroup"/>
<entryLink import="true" name="Special Skills (Black Orc)" hidden="false" type="selectionEntryGroup" id="c303-e34-bf12-cef7" targetId="d724-9136-c4c-f89c"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
<cost name="Warband Rating" typeId="wb-rating" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="b22c-d37a-f220-680e" name="Experience" hidden="false" collective="false" import="true" targetId="d769-0d85-e810-df60" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="20" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="93f6-e265-90fb-29d7" type="min"/>
</constraints>
</entryLink>
<entryLink id="a82b-d268-7580-b7b" name="Characteristic Increases" hidden="false" collective="false" import="true" targetId="7879-46ac-5598-aa00" type="selectionEntryGroup"/>
<entryLink id="660b-2a87-8e2-b8a0" name="Serious Injuries" hidden="false" collective="false" import="true" targetId="313b-a816-0a89-926c" type="selectionEntryGroup"/>
<entryLink import="true" name="Black Orc Equipment" hidden="false" type="selectionEntryGroup" id="f6c7-ec2a-389f-a0ca" targetId="d166-e210-dcbf-69d5"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="90"/>
<cost name="Warband Rating" typeId="wb-rating" value="5"/>
</costs>
<rules>
<rule name="Oi Behave!" hidden="false" id="d252-8716-e51d-56d8">
<description>If any Henchman fails his Animosity test within 6” of the Boss, the player may opt to have the boss stamp his authority (and clenched fist) on the situation.
The misbehaving Henchman will receive an automatic hit at the strength of the Orc player’s choosing.
If the Henchman is still on his feet after his slap, he may add a number equal to the strength of the slap to his subsequent roll to determine the effects of Animosity.
E.g. The player decides that the Boss will hit a misbehaving Henchman with a S2 slap.
If the slap fails to Knock Down, Stun or Out of Action the Henchman, then he adds +2 to the Animosity Effect roll.</description>
</rule>
</rules>
</selectionEntry>
<selectionEntry id="3778-9dc1-5094-e3fb" name="Black Orc" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="roster" value="2" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7604-e8b4-97d5-8b94" type="max"/>
</constraints>
<profiles>
<profile id="76e-dc14-12d0-4044" name="Black Orc" 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="3778-9dc1-5094-e3fb" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="6fe1-7bba-3ca0-06b7" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="a6fd52b0-be0a-655e-6314-87b392c9c90e" value="1">
<repeats>
<repeat field="selections" scope="3778-9dc1-5094-e3fb" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="da26-8381-781a-6149" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="3172c8dc-ebe4-0c40-72ab-8fd0076b9442" value="1">
<repeats>
<repeat field="selections" scope="3778-9dc1-5094-e3fb" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7918-b440-5d63-bd5e" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="bf393c37-9d10-fc85-c147-62b1c01a89fe" value="1">
<repeats>
<repeat field="selections" scope="3778-9dc1-5094-e3fb" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="37c4-dcb1-8949-d4eb" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="2a0bcc4c-8266-418f-13d6-a6b44def5e92" value="1">
<repeats>
<repeat field="selections" scope="3778-9dc1-5094-e3fb" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="c4db-7b50-a4f9-cd5f" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="5b4d181b-23ae-5ed7-9262-c1d2f79246a8" value="1">
<repeats>
<repeat field="selections" scope="3778-9dc1-5094-e3fb" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="5a83-274a-bba8-f498" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="e234eaea-a02a-2fb7-3e1f-605392aabb89" value="1">
<repeats>
<repeat field="selections" scope="3778-9dc1-5094-e3fb" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="27d8-c790-a4c1-b9cc" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="7f1f0a4d-68dc-b0df-5703-c4d0d91a93b9" value="1">
<repeats>
<repeat field="selections" scope="3778-9dc1-5094-e3fb" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9368-3616-516f-5178" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="d5aca8ba-0204-b324-b976-c2b536e09924" value="1">
<repeats>
<repeat field="selections" scope="3778-9dc1-5094-e3fb" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7418-394e-fe13-2a96" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="a6fd52b0-be0a-655e-6314-87b392c9c90e" value="1">
<repeats>
<repeat field="selections" scope="3778-9dc1-5094-e3fb" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7531-eebe-fabf-7cf5" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="54f4796b-dedb-c296-8b1a-ff7f8043293a" value="1">
<repeats>
<repeat field="selections" scope="3778-9dc1-5094-e3fb" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ca62-64c2-488a-f17c" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="e234eaea-a02a-2fb7-3e1f-605392aabb89" value="1">
<repeats>
<repeat field="selections" scope="3778-9dc1-5094-e3fb" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="a519-13dc-1b04-e39e" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="3172c8dc-ebe4-0c40-72ab-8fd0076b9442" value="1">
<repeats>
<repeat field="selections" scope="3778-9dc1-5094-e3fb" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9209-0067-18d2-b78c" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="2a0bcc4c-8266-418f-13d6-a6b44def5e92" value="1">
<repeats>
<repeat field="selections" scope="3778-9dc1-5094-e3fb" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7dee-74f8-7707-ce64" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="5b4d181b-23ae-5ed7-9262-c1d2f79246a8" value="1">
<repeats>
<repeat field="selections" scope="3778-9dc1-5094-e3fb" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0e79-80b9-77e3-fcc9" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="bf393c37-9d10-fc85-c147-62b1c01a89fe" value="1">
<repeats>
<repeat field="selections" scope="3778-9dc1-5094-e3fb" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9faf-d3bf-a2ba-411e" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="7f1f0a4d-68dc-b0df-5703-c4d0d91a93b9" value="1">
<repeats>
<repeat field="selections" scope="3778-9dc1-5094-e3fb" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="8e57-5d0b-5279-b4ab" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="d5aca8ba-0204-b324-b976-c2b536e09924" value="1">
<repeats>
<repeat field="selections" scope="3778-9dc1-5094-e3fb" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ae44-58f4-4440-5777" 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">4</characteristic>
<characteristic name="T" typeId="54f4796b-dedb-c296-8b1a-ff7f8043293a">4</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="de4d-8275-4c42-f2f3" name="Black Orc max" hidden="false" targetId="cba-5063-4209-b18a" type="profile"/>
<infoLink name="Black Orc" hidden="false" type="rule" id="79bd-8f73-9c2e-2832" targetId="8e92-1188-aad7-5374"/>
</infoLinks>
<categoryLinks>
<categoryLink id="d6ca-4eca-73a8-889c" name="New CategoryLink" hidden="false" targetId="a0fce0bc-02e0-a064-7a39-5b97ff8a9c94" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="47cd-3871-3265-89a4" name="Extra Equipment" 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="7d6f-7e09-6d32-efad" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5ad-6743-4769-5222" type="max"/>
</constraints>
<entryLinks>
<entryLink id="4d5f-3bb7-cd96-3e52" name="Equipment" hidden="false" collective="false" import="true" targetId="2247-1f56-bc59-0ead" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
<cost name="Warband Rating" typeId="wb-rating" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="6359-ec21-af9b-7c64" 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="2c3d-db2f-9b90-1327" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f1ec-830b-3da4-7bed" type="max"/>
</constraints>
<entryLinks>
<entryLink id="b474-bfbc-5672-29c7" name="Combat Skills" hidden="false" collective="false" import="true" targetId="ee2c-89e3-489b-d0cb" type="selectionEntryGroup"/>
<entryLink id="3928-b9d4-ac7e-fdb8" name="Shooting Skills" hidden="false" collective="false" import="true" targetId="0073-d2d6-15c0-45b1" type="selectionEntryGroup"/>
<entryLink id="dbac-5caf-9e1-a472" name="Speed Skills" hidden="false" collective="false" import="true" targetId="e134-0fdf-67a2-4684" type="selectionEntryGroup"/>
<entryLink id="1498-1db1-ef80-d477" name="Strength Skills" hidden="false" collective="false" import="true" targetId="e5ac-cd5b-9057-e096" type="selectionEntryGroup"/>
<entryLink import="true" name="Special Skills (Black Orc)" hidden="false" type="selectionEntryGroup" id="5359-adfc-2beb-c2e1" targetId="d724-9136-c4c-f89c"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
<cost name="Warband Rating" typeId="wb-rating" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="b2e9-3afa-1bd3-289c" name="Experience" hidden="false" collective="false" import="true" targetId="d769-0d85-e810-df60" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="8" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="636d-2d7a-225f-8d2a" type="min"/>
</constraints>
</entryLink>
<entryLink id="7c76-ca18-8582-5be1" name="Characteristic Increases" hidden="false" collective="false" import="true" targetId="7879-46ac-5598-aa00" type="selectionEntryGroup"/>
<entryLink id="83a9-561d-831-8af8" name="Serious Injuries" hidden="false" collective="false" import="true" targetId="313b-a816-0a89-926c" type="selectionEntryGroup"/>
<entryLink import="true" name="Black Orc Equipment" hidden="false" type="selectionEntryGroup" id="d687-c729-41-d1b9" targetId="d166-e210-dcbf-69d5"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="60"/>
<cost name="Warband Rating" typeId="wb-rating" value="5"/>
</costs>
</selectionEntry>
<selectionEntry id="25d7-ef82-3f95-ae09" name="Young'uns" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="roster" value="2" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="372-3416-d6a3-a6fd" type="max"/>
</constraints>
<profiles>
<profile id="c079-38b0-3246-9b77" name="Young'uns" 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="25d7-ef82-3f95-ae09" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="6fe1-7bba-3ca0-06b7" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="a6fd52b0-be0a-655e-6314-87b392c9c90e" value="1">
<repeats>
<repeat field="selections" scope="25d7-ef82-3f95-ae09" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="da26-8381-781a-6149" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="3172c8dc-ebe4-0c40-72ab-8fd0076b9442" value="1">
<repeats>
<repeat field="selections" scope="25d7-ef82-3f95-ae09" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7918-b440-5d63-bd5e" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="bf393c37-9d10-fc85-c147-62b1c01a89fe" value="1">
<repeats>
<repeat field="selections" scope="25d7-ef82-3f95-ae09" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="37c4-dcb1-8949-d4eb" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="2a0bcc4c-8266-418f-13d6-a6b44def5e92" value="1">
<repeats>
<repeat field="selections" scope="25d7-ef82-3f95-ae09" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="c4db-7b50-a4f9-cd5f" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="5b4d181b-23ae-5ed7-9262-c1d2f79246a8" value="1">
<repeats>
<repeat field="selections" scope="25d7-ef82-3f95-ae09" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="5a83-274a-bba8-f498" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="e234eaea-a02a-2fb7-3e1f-605392aabb89" value="1">
<repeats>
<repeat field="selections" scope="25d7-ef82-3f95-ae09" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="27d8-c790-a4c1-b9cc" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="7f1f0a4d-68dc-b0df-5703-c4d0d91a93b9" value="1">
<repeats>
<repeat field="selections" scope="25d7-ef82-3f95-ae09" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9368-3616-516f-5178" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="d5aca8ba-0204-b324-b976-c2b536e09924" value="1">
<repeats>
<repeat field="selections" scope="25d7-ef82-3f95-ae09" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7418-394e-fe13-2a96" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="a6fd52b0-be0a-655e-6314-87b392c9c90e" value="1">
<repeats>
<repeat field="selections" scope="25d7-ef82-3f95-ae09" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7531-eebe-fabf-7cf5" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="54f4796b-dedb-c296-8b1a-ff7f8043293a" value="1">
<repeats>
<repeat field="selections" scope="25d7-ef82-3f95-ae09" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ca62-64c2-488a-f17c" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="e234eaea-a02a-2fb7-3e1f-605392aabb89" value="1">
<repeats>
<repeat field="selections" scope="25d7-ef82-3f95-ae09" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="a519-13dc-1b04-e39e" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="3172c8dc-ebe4-0c40-72ab-8fd0076b9442" value="1">
<repeats>
<repeat field="selections" scope="25d7-ef82-3f95-ae09" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9209-0067-18d2-b78c" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="2a0bcc4c-8266-418f-13d6-a6b44def5e92" value="1">
<repeats>
<repeat field="selections" scope="25d7-ef82-3f95-ae09" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7dee-74f8-7707-ce64" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="5b4d181b-23ae-5ed7-9262-c1d2f79246a8" value="1">
<repeats>
<repeat field="selections" scope="25d7-ef82-3f95-ae09" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0e79-80b9-77e3-fcc9" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="bf393c37-9d10-fc85-c147-62b1c01a89fe" value="1">
<repeats>
<repeat field="selections" scope="25d7-ef82-3f95-ae09" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9faf-d3bf-a2ba-411e" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="7f1f0a4d-68dc-b0df-5703-c4d0d91a93b9" value="1">
<repeats>
<repeat field="selections" scope="25d7-ef82-3f95-ae09" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="8e57-5d0b-5279-b4ab" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="d5aca8ba-0204-b324-b976-c2b536e09924" value="1">
<repeats>
<repeat field="selections" scope="25d7-ef82-3f95-ae09" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ae44-58f4-4440-5777" 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">2</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">4</characteristic>
<characteristic name="W" typeId="3172c8dc-ebe4-0c40-72ab-8fd0076b9442">1</characteristic>
<characteristic name="I" typeId="a6fd52b0-be0a-655e-6314-87b392c9c90e">2</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="8002-fcf9-decd-61f0" name="Orc max" hidden="false" targetId="b7f5-7887-f39a-b379" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="b100-1434-8449-fce1" name="New CategoryLink" hidden="false" targetId="a0fce0bc-02e0-a064-7a39-5b97ff8a9c94" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="3ec6-761-30f4-4cb5" name="Extra Equipment" 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="5a41-8003-d731-7d3a" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4e82-cf90-3179-a974" type="max"/>
</constraints>
<entryLinks>
<entryLink id="7529-c74d-db89-cbf8" name="Equipment" hidden="false" collective="false" import="true" targetId="2247-1f56-bc59-0ead" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
<cost name="Warband Rating" typeId="wb-rating" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="5eb0-cfbe-5970-4057" 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="5b10-8d42-e5f7-c79d" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e509-10c3-e8d9-9f85" type="max"/>
</constraints>
<entryLinks>
<entryLink id="bcaa-a174-1cb8-1260" name="Combat Skills" hidden="false" collective="false" import="true" targetId="ee2c-89e3-489b-d0cb" type="selectionEntryGroup"/>
<entryLink id="b82d-89cc-c28e-d750" name="Shooting Skills" hidden="false" collective="false" import="true" targetId="0073-d2d6-15c0-45b1" type="selectionEntryGroup"/>
<entryLink id="ffa9-f4b6-a1-5e00" name="Speed Skills" hidden="false" collective="false" import="true" targetId="e134-0fdf-67a2-4684" type="selectionEntryGroup"/>
<entryLink id="b0df-5979-7e92-c340" name="Strength Skills" hidden="false" collective="false" import="true" targetId="e5ac-cd5b-9057-e096" type="selectionEntryGroup"/>
<entryLink import="true" name="Special Skills (Black Orc)" hidden="false" type="selectionEntryGroup" id="1520-fed3-a4f9-dc73" targetId="d724-9136-c4c-f89c">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Proven Warrior" hidden="true" id="93e4-9cf7-f12b-f433">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="a433-9939-2c93-2566"/>
</constraints>
<rules>
<rule name="Proven Warrior" hidden="false" id="44af-6a3e-6871-c87c">
<description>This young warrior has proven himself worthy of his Black Orc heritage.
This skill may only be taken by a Young’un with the Black Orc blood ability and 25 experience.
Once he gains this skill, the model is now considered a full Black Orc Warrior (yet still retains the title of Young’un).
He follows all the rules for Black Orcs and uses their equipment list and has access to the same skill lists as a Black Orc.</description>
</rule>
</rules>
<modifiers>
<modifier type="set" value="false" field="hidden">
<conditions>
<condition type="atLeast" value="25" field="selections" scope="25d7-ef82-3f95-ae09" childId="d769-0d85-e810-df60" shared="true" includeChildSelections="true"/>
<condition type="atLeast" value="1" field="selections" scope="25d7-ef82-3f95-ae09" childId="f837-5be9-7764-4a23" shared="true"/>
</conditions>
</modifier>
</modifiers>
</selectionEntry>
</selectionEntries>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
<cost name="Warband Rating" typeId="wb-rating" value="0"/>
</costs>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Black Orc Blood" hidden="false" id="f837-5be9-7764-4a23">
<costs>
<cost name="pts" typeId="points" value="10"/>
<cost name="Warband Rating" typeId="wb-rating" value="0"/>
</costs>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="ef1c-a353-eee3-dad2" includeChildSelections="true"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="28fb-caa-69a4-56"/>
</constraints>
<rules>
<rule name="Black Orc Blood" hidden="false" id="bc8f-d7e3-3ee7-fd8c">
<description>One Young’un may be upgraded to a Black Orc Young’un for 10gc.
This upgrade allows him to take the ‘Proven Warrior’ skill upgrade, thus making him a fully-fledged Black Orc Warrior.</description>
</rule>
</rules>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="41e-fd2e-2120-79c3" name="Experience" hidden="false" collective="false" import="true" targetId="d769-0d85-e810-df60" type="selectionEntry"/>
<entryLink id="6536-2352-dab-8490" name="Characteristic Increases" hidden="false" collective="false" import="true" targetId="7879-46ac-5598-aa00" type="selectionEntryGroup"/>
<entryLink id="b7ed-702f-4a6c-cbef" name="Serious Injuries" hidden="false" collective="false" import="true" targetId="313b-a816-0a89-926c" type="selectionEntryGroup"/>
<entryLink import="true" name="Henchman Equipment" hidden="false" type="selectionEntryGroup" id="400b-16d-4d81-bba3" targetId="5aa6-5117-c4dd-71a4"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="25"/>
<cost name="Warband Rating" typeId="wb-rating" value="5"/>
</costs>
</selectionEntry>
<selectionEntry id="60f3-ba80-7cbe-d831" name="Orc Boyz" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="e744-b3d1-cb2e-c5ca" name="Orc Boyz" hidden="false" typeId="e1beaa44-e54d-dd6b-d1f2-446b333c9bb9" typeName="Model">
<modifiers>
<modifier type="increment" field="d5aca8ba-0204-b324-b976-c2b536e09924" value="1">
<repeats>
<repeat field="selections" scope="60f3-ba80-7cbe-d831" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7418-394e-fe13-2a96" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="7f1f0a4d-68dc-b0df-5703-c4d0d91a93b9" value="1">
<repeats>
<repeat field="selections" scope="60f3-ba80-7cbe-d831" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9368-3616-516f-5178" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="e234eaea-a02a-2fb7-3e1f-605392aabb89" value="1">
<repeats>
<repeat field="selections" scope="60f3-ba80-7cbe-d831" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="27d8-c790-a4c1-b9cc" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="54f4796b-dedb-c296-8b1a-ff7f8043293a" value="1">
<repeats>
<repeat field="selections" scope="60f3-ba80-7cbe-d831" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="6fe1-7bba-3ca0-06b7" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="a6fd52b0-be0a-655e-6314-87b392c9c90e" value="1">
<repeats>
<repeat field="selections" scope="60f3-ba80-7cbe-d831" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="da26-8381-781a-6149" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="3172c8dc-ebe4-0c40-72ab-8fd0076b9442" value="1">
<repeats>
<repeat field="selections" scope="60f3-ba80-7cbe-d831" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7918-b440-5d63-bd5e" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="bf393c37-9d10-fc85-c147-62b1c01a89fe" value="1">
<repeats>
<repeat field="selections" scope="60f3-ba80-7cbe-d831" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="37c4-dcb1-8949-d4eb" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="5b4d181b-23ae-5ed7-9262-c1d2f79246a8" value="1">
<repeats>
<repeat field="selections" scope="60f3-ba80-7cbe-d831" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="5a83-274a-bba8-f498" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="2a0bcc4c-8266-418f-13d6-a6b44def5e92" value="1">
<repeats>
<repeat field="selections" scope="60f3-ba80-7cbe-d831" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="c4db-7b50-a4f9-cd5f" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="d5aca8ba-0204-b324-b976-c2b536e09924" value="1">
<repeats>
<repeat field="selections" scope="60f3-ba80-7cbe-d831" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ae44-58f4-4440-5777" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="e234eaea-a02a-2fb7-3e1f-605392aabb89" value="1">
<repeats>
<repeat field="selections" scope="60f3-ba80-7cbe-d831" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="a519-13dc-1b04-e39e" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="54f4796b-dedb-c296-8b1a-ff7f8043293a" value="1">
<repeats>
<repeat field="selections" scope="60f3-ba80-7cbe-d831" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ca62-64c2-488a-f17c" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="3172c8dc-ebe4-0c40-72ab-8fd0076b9442" value="1">
<repeats>
<repeat field="selections" scope="60f3-ba80-7cbe-d831" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9209-0067-18d2-b78c" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="2a0bcc4c-8266-418f-13d6-a6b44def5e92" value="1">
<repeats>
<repeat field="selections" scope="60f3-ba80-7cbe-d831" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7dee-74f8-7707-ce64" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="5b4d181b-23ae-5ed7-9262-c1d2f79246a8" value="1">
<repeats>
<repeat field="selections" scope="60f3-ba80-7cbe-d831" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0e79-80b9-77e3-fcc9" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="7f1f0a4d-68dc-b0df-5703-c4d0d91a93b9" value="1">
<repeats>
<repeat field="selections" scope="60f3-ba80-7cbe-d831" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="8e57-5d0b-5279-b4ab" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="a6fd52b0-be0a-655e-6314-87b392c9c90e" value="1">
<repeats>
<repeat field="selections" scope="60f3-ba80-7cbe-d831" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7531-eebe-fabf-7cf5" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="bf393c37-9d10-fc85-c147-62b1c01a89fe" value="1">
<repeats>
<repeat field="selections" scope="60f3-ba80-7cbe-d831" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9faf-d3bf-a2ba-411e" 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">3</characteristic>
<characteristic name="S" typeId="7f1f0a4d-68dc-b0df-5703-c4d0d91a93b9">3</characteristic>
<characteristic name="T" typeId="54f4796b-dedb-c296-8b1a-ff7f8043293a">4</characteristic>
<characteristic name="W" typeId="3172c8dc-ebe4-0c40-72ab-8fd0076b9442">1</characteristic>
<characteristic name="I" typeId="a6fd52b0-be0a-655e-6314-87b392c9c90e">2</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="821d-9006-2eff-e21c" name="Orc max" hidden="false" targetId="b7f5-7887-f39a-b379" type="profile"/>
<infoLink name="Animosity" hidden="false" type="rule" id="7cf5-b711-34c6-6286" targetId="c214-2ad0-8f27-7328"/>
</infoLinks>
<categoryLinks>
<categoryLink id="ce5f-f477-7ecd-4498" name="New CategoryLink" hidden="false" targetId="f9b08d8e-4922-78d5-78ad-2047bff52dc8" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="8743-87d-cf36-93ac" name="Extra Equipment" 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="beb4-ad4d-fc4a-f137" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8764-717f-b23b-8ba8" type="max"/>
</constraints>
<entryLinks>
<entryLink id="9813-f3f2-6ad9-bb21" name="Equipment" hidden="false" collective="false" import="true" targetId="2247-1f56-bc59-0ead" 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="ffe0-2ff2-ec18-54b1" name="Experience" hidden="false" collective="false" import="true" targetId="d769-0d85-e810-df60" type="selectionEntry"/>
<entryLink id="13ec-200a-651b-32bc" name="Promoted" hidden="false" collective="false" import="true" targetId="534a-6ec6-5d82-da7f" type="selectionEntry"/>
<entryLink id="ed46-6b66-5c25-932e" name="Characteristic Increases" hidden="false" collective="false" import="true" targetId="7879-46ac-5598-aa00" type="selectionEntryGroup"/>
<entryLink id="33ff-c583-47f5-c25d" name="Skills" hidden="true" collective="false" import="true" targetId="4614-5b52-1b9a-2818" type="selectionEntryGroup">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="534a-6ec6-5d82-da7f" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="e21f-3c41-5aec-5f31" name="Serious Injuries" hidden="true" collective="false" import="true" targetId="313b-a816-0a89-926c" type="selectionEntryGroup">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="534a-6ec6-5d82-da7f" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="26e8-5db8-a3d4-6505" name="Henchman Equipment" hidden="false" collective="false" import="true" targetId="5aa6-5117-c4dd-71a4" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="25"/>
<cost name="Warband Rating" typeId="wb-rating" value="5"/>
</costs>
</selectionEntry>
<selectionEntry id="472-7b88-e627-ff11" name="Orc Nuttaz" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="99c2-c015-bd2f-68d0" name="Orc Nuttaz" hidden="false" typeId="e1beaa44-e54d-dd6b-d1f2-446b333c9bb9" typeName="Model">
<modifiers>
<modifier type="increment" field="d5aca8ba-0204-b324-b976-c2b536e09924" value="1">
<repeats>
<repeat field="selections" scope="472-7b88-e627-ff11" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7418-394e-fe13-2a96" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="7f1f0a4d-68dc-b0df-5703-c4d0d91a93b9" value="1">
<repeats>
<repeat field="selections" scope="472-7b88-e627-ff11" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9368-3616-516f-5178" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="e234eaea-a02a-2fb7-3e1f-605392aabb89" value="1">
<repeats>
<repeat field="selections" scope="472-7b88-e627-ff11" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="27d8-c790-a4c1-b9cc" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="54f4796b-dedb-c296-8b1a-ff7f8043293a" value="1">
<repeats>
<repeat field="selections" scope="472-7b88-e627-ff11" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="6fe1-7bba-3ca0-06b7" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="a6fd52b0-be0a-655e-6314-87b392c9c90e" value="1">
<repeats>
<repeat field="selections" scope="472-7b88-e627-ff11" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="da26-8381-781a-6149" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="3172c8dc-ebe4-0c40-72ab-8fd0076b9442" value="1">
<repeats>
<repeat field="selections" scope="472-7b88-e627-ff11" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7918-b440-5d63-bd5e" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="bf393c37-9d10-fc85-c147-62b1c01a89fe" value="1">
<repeats>
<repeat field="selections" scope="472-7b88-e627-ff11" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="37c4-dcb1-8949-d4eb" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="5b4d181b-23ae-5ed7-9262-c1d2f79246a8" value="1">
<repeats>
<repeat field="selections" scope="472-7b88-e627-ff11" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="5a83-274a-bba8-f498" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="2a0bcc4c-8266-418f-13d6-a6b44def5e92" value="1">
<repeats>
<repeat field="selections" scope="472-7b88-e627-ff11" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="c4db-7b50-a4f9-cd5f" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="d5aca8ba-0204-b324-b976-c2b536e09924" value="1">
<repeats>
<repeat field="selections" scope="472-7b88-e627-ff11" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ae44-58f4-4440-5777" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="e234eaea-a02a-2fb7-3e1f-605392aabb89" value="1">
<repeats>
<repeat field="selections" scope="472-7b88-e627-ff11" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="a519-13dc-1b04-e39e" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="54f4796b-dedb-c296-8b1a-ff7f8043293a" value="1">
<repeats>
<repeat field="selections" scope="472-7b88-e627-ff11" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ca62-64c2-488a-f17c" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="3172c8dc-ebe4-0c40-72ab-8fd0076b9442" value="1">
<repeats>
<repeat field="selections" scope="472-7b88-e627-ff11" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9209-0067-18d2-b78c" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="2a0bcc4c-8266-418f-13d6-a6b44def5e92" value="1">
<repeats>
<repeat field="selections" scope="472-7b88-e627-ff11" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7dee-74f8-7707-ce64" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="5b4d181b-23ae-5ed7-9262-c1d2f79246a8" value="1">
<repeats>
<repeat field="selections" scope="472-7b88-e627-ff11" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0e79-80b9-77e3-fcc9" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="7f1f0a4d-68dc-b0df-5703-c4d0d91a93b9" value="1">
<repeats>
<repeat field="selections" scope="472-7b88-e627-ff11" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="8e57-5d0b-5279-b4ab" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="a6fd52b0-be0a-655e-6314-87b392c9c90e" value="1">
<repeats>
<repeat field="selections" scope="472-7b88-e627-ff11" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7531-eebe-fabf-7cf5" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="bf393c37-9d10-fc85-c147-62b1c01a89fe" value="1">
<repeats>
<repeat field="selections" scope="472-7b88-e627-ff11" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9faf-d3bf-a2ba-411e" 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">4</characteristic>
<characteristic name="W" typeId="3172c8dc-ebe4-0c40-72ab-8fd0076b9442">1</characteristic>
<characteristic name="I" typeId="a6fd52b0-be0a-655e-6314-87b392c9c90e">2</characteristic>
<characteristic name="A" typeId="bf393c37-9d10-fc85-c147-62b1c01a89fe">1</characteristic>
<characteristic name="LD" typeId="e234eaea-a02a-2fb7-3e1f-605392aabb89">5</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="5a32-9676-81b-9145" name="Orc max" hidden="false" targetId="b7f5-7887-f39a-b379" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="52e0-afe1-1d8f-932b" name="New CategoryLink" hidden="false" targetId="f9b08d8e-4922-78d5-78ad-2047bff52dc8" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="ace-c03b-eea3-61fa" name="Extra Equipment" 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="7072-d627-474e-bef9" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ee87-cc3-8873-6bfe" type="max"/>
</constraints>
<entryLinks>
<entryLink id="1fb1-805-bb1c-7780" name="Equipment" hidden="false" collective="false" import="true" targetId="2247-1f56-bc59-0ead" 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="d11a-4773-b7d2-df87" name="Experience" hidden="false" collective="false" import="true" targetId="d769-0d85-e810-df60" type="selectionEntry"/>
<entryLink id="954c-3edf-701a-c588" name="Promoted" hidden="false" collective="false" import="true" targetId="534a-6ec6-5d82-da7f" type="selectionEntry"/>
<entryLink id="4b32-3e72-c591-4b6" name="Characteristic Increases" hidden="false" collective="false" import="true" targetId="7879-46ac-5598-aa00" type="selectionEntryGroup"/>
<entryLink id="44bb-fde9-5fb7-e35f" name="Skills" hidden="true" collective="false" import="true" targetId="4614-5b52-1b9a-2818" type="selectionEntryGroup">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="534a-6ec6-5d82-da7f" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="c028-50a0-945f-c206" name="Serious Injuries" hidden="true" collective="false" import="true" targetId="313b-a816-0a89-926c" type="selectionEntryGroup">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="534a-6ec6-5d82-da7f" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="312d-7c1-6b82-717d" name="Henchman Equipment" hidden="false" collective="false" import="true" targetId="5aa6-5117-c4dd-71a4" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="40"/>
<cost name="Warband Rating" typeId="wb-rating" value="5"/>
</costs>
<constraints>
<constraint type="max" value="4" field="selections" scope="roster" shared="true" id="6649-d0dc-8f67-5307"/>
</constraints>
<rules>
<rule name="Unstable" hidden="false" id="6b35-7492-40a8-1c89">
<description>These Orcs are not quite all there.
They do not suffer from Animosity, but instead have a host of their own issues to deal with.</description>
</rule>
<rule name="Crazy" hidden="false" id="9eae-bd59-3d05-e006">
<description>Nuttaz always pass any Leadership-based Tests they have to take.
A side effect of this is that their minds are too far-gone and they may never learn Academic Skills should they become a Hero on an Advance Roll.</description>
</rule>
<rule name="Savage" hidden="false" id="4de5-4f59-a848-f811">
<description>Nuttaz must always run or charge their maximum distance towards the nearest opponent they can see.
Friendly models do not block line of sight.
Additionally they fight with an extra attack whilst in combat.
This does not appear on their profile nor does it count towards the racial maximum.
If no enemy is visible they are moved under the player’s control.
They can never use any form of armor or ranged weapons.
Nuttaz are also too unstable for other Boyz and can never have the Leader ability or use their Ld stat for rout tests, excepting them as being the only models left on the board.</description>
</rule>
</rules>
</selectionEntry>
<selectionEntry id="4357-9dcf-4fcb-440e" name="Orc Shootaz" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="b38e-3986-ef5-4bff" name="Orc Shootaz" hidden="false" typeId="e1beaa44-e54d-dd6b-d1f2-446b333c9bb9" typeName="Model">
<modifiers>
<modifier type="increment" field="d5aca8ba-0204-b324-b976-c2b536e09924" value="1">
<repeats>
<repeat field="selections" scope="4357-9dcf-4fcb-440e" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7418-394e-fe13-2a96" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="7f1f0a4d-68dc-b0df-5703-c4d0d91a93b9" value="1">
<repeats>
<repeat field="selections" scope="4357-9dcf-4fcb-440e" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9368-3616-516f-5178" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="e234eaea-a02a-2fb7-3e1f-605392aabb89" value="1">
<repeats>
<repeat field="selections" scope="4357-9dcf-4fcb-440e" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="27d8-c790-a4c1-b9cc" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="54f4796b-dedb-c296-8b1a-ff7f8043293a" value="1">
<repeats>
<repeat field="selections" scope="4357-9dcf-4fcb-440e" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="6fe1-7bba-3ca0-06b7" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="a6fd52b0-be0a-655e-6314-87b392c9c90e" value="1">
<repeats>
<repeat field="selections" scope="4357-9dcf-4fcb-440e" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="da26-8381-781a-6149" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="3172c8dc-ebe4-0c40-72ab-8fd0076b9442" value="1">
<repeats>
<repeat field="selections" scope="4357-9dcf-4fcb-440e" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7918-b440-5d63-bd5e" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="bf393c37-9d10-fc85-c147-62b1c01a89fe" value="1">
<repeats>
<repeat field="selections" scope="4357-9dcf-4fcb-440e" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="37c4-dcb1-8949-d4eb" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="5b4d181b-23ae-5ed7-9262-c1d2f79246a8" value="1">
<repeats>
<repeat field="selections" scope="4357-9dcf-4fcb-440e" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="5a83-274a-bba8-f498" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="2a0bcc4c-8266-418f-13d6-a6b44def5e92" value="1">
<repeats>
<repeat field="selections" scope="4357-9dcf-4fcb-440e" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="c4db-7b50-a4f9-cd5f" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="d5aca8ba-0204-b324-b976-c2b536e09924" value="1">
<repeats>
<repeat field="selections" scope="4357-9dcf-4fcb-440e" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ae44-58f4-4440-5777" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="e234eaea-a02a-2fb7-3e1f-605392aabb89" value="1">
<repeats>
<repeat field="selections" scope="4357-9dcf-4fcb-440e" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="a519-13dc-1b04-e39e" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="54f4796b-dedb-c296-8b1a-ff7f8043293a" value="1">
<repeats>
<repeat field="selections" scope="4357-9dcf-4fcb-440e" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ca62-64c2-488a-f17c" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="3172c8dc-ebe4-0c40-72ab-8fd0076b9442" value="1">
<repeats>
<repeat field="selections" scope="4357-9dcf-4fcb-440e" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9209-0067-18d2-b78c" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="2a0bcc4c-8266-418f-13d6-a6b44def5e92" value="1">
<repeats>
<repeat field="selections" scope="4357-9dcf-4fcb-440e" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7dee-74f8-7707-ce64" repeats="1" roundUp="false"/>