-
Notifications
You must be signed in to change notification settings - Fork 92
/
2021 - Kommando.cat
1793 lines (1790 loc) · 144 KB
/
2021 - Kommando.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="9210-4d15-82ce-4526" name="Kommando" revision="13" battleScribeVersion="2.03" library="false" gameSystemId="3b7e-7dab-f79f-2e74" gameSystemRevision="6" xmlns="http://www.battlescribe.net/schema/catalogueSchema" type="catalogue">
<categoryEntries>
<categoryEntry id="fff5-e805-1699-7f74" name="Ork" hidden="false"/>
<categoryEntry id="27c3-6016-6b60-a2d3" name="Kommando Grot" hidden="false"/>
<categoryEntry id="dde5-2643-f81c-96f5" name="KOMMANDO" hidden="false"/>
<categoryEntry id="7c33-5897-9860-0d86" name="Kommando Nob" hidden="false"/>
<categoryEntry id="f28e-5ad9-3d14-dd19" name="Dakka Boy" hidden="false"/>
<categoryEntry id="4b8e-20e5-f8eb-0f21" name="Snipa Boy" hidden="false"/>
<categoryEntry id="8996-77be-ec77-1199" name="Kommando Boy" hidden="false"/>
<categoryEntry id="002d-52b4-5629-1c01" name="Slasha Boy" hidden="false"/>
<categoryEntry id="c1a6-ba11-1d1f-7809" name="Breacha Boy" hidden="false"/>
<categoryEntry id="346d-8675-ff7f-80ff" name="Comms Boy" hidden="false"/>
<categoryEntry id="589f-07cd-c552-ff24" name="Burna Boy" hidden="false"/>
<categoryEntry id="b90d-e593-2aa6-36d5" name="Rokkit Boy" hidden="false"/>
<categoryEntry id="4152-b68f-0cbd-9b3d" name="Bomb Squig" hidden="false"/>
</categoryEntries>
<forceEntries>
<forceEntry id="a5e0-30a2-ee0a-a762" name="Kommando Kill Team" hidden="false">
<categoryLinks>
<categoryLink id="20c9-3a2a-abf3-7d86" name="Configuration" hidden="false" targetId="fb89-efb1-54e4-59c5" primary="false"/>
<categoryLink id="0375-e929-2425-4bf3" name="Leader" hidden="false" targetId="3198-c1ce-dfd0-fb4f" primary="false">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="b0ac-9b91-6776-4c8f" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="3745-f4e3-42da-ebb1" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="false"/>
<categoryLink id="85cc-bd68-c3cf-e7ac" name="Kommando Grot" hidden="false" targetId="27c3-6016-6b60-a2d3" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="df2d-407c-790d-917b" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="7fdd-a737-7fc1-2d56" name="Slasha Boy" hidden="false" targetId="002d-52b4-5629-1c01" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="10e5-81dd-6c37-092b" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="8bc8-1089-75ca-fd13" name="Bomb Squig" hidden="false" targetId="4152-b68f-0cbd-9b3d" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e580-1b78-e150-aa00" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="b27b-dac3-1791-5cd0" name="Breacha Boy" hidden="false" targetId="c1a6-ba11-1d1f-7809" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d74c-ad47-ce62-224b" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="c485-243c-179a-6af3" name="Burna Boy" hidden="false" targetId="589f-07cd-c552-ff24" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1571-3dd4-7918-e73b" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="3c21-ea76-98b4-c4c2" name="Comms Boy" hidden="false" targetId="346d-8675-ff7f-80ff" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1f39-16d7-bee4-9ee8" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="c185-36c8-f6de-afde" name="Dakka Boy" hidden="false" targetId="f28e-5ad9-3d14-dd19" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="aede-8a5f-e379-b623" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="97ac-3ddc-418c-a4e1" name="Rokkit Boy" hidden="false" targetId="b90d-e593-2aa6-36d5" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3a39-d684-4ac2-5690" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="19e8-afd2-cb7f-d061" name="Snipa Boy" hidden="false" targetId="4b8e-20e5-f8eb-0f21" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="15ca-470e-539d-1d1c" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="f83b-b030-ce9b-afd1" name="KOMMANDO" hidden="false" targetId="dde5-2643-f81c-96f5" primary="false">
<modifiers>
<modifier type="increment" field="57c6-c25e-7eb9-6da2" value="1">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="4152-b68f-0cbd-9b3d" type="equalTo"/>
<condition field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="27c3-6016-6b60-a2d3" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="force" value="10" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="57c6-c25e-7eb9-6da2" type="max"/>
</constraints>
</categoryLink>
</categoryLinks>
</forceEntry>
</forceEntries>
<entryLinks>
<entryLink id="95cc-df96-fd37-4b92" name="Grot" hidden="false" collective="false" import="true" targetId="8425-4dd8-3cb1-90fc" type="selectionEntry">
<categoryLinks>
<categoryLink id="d95d-ec0b-56ab-03b8" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="d392-e42d-4b94-053d" name="Nob w/ big choppa" hidden="false" collective="false" import="true" targetId="0847-16ff-c2cd-2c64" type="selectionEntry">
<categoryLinks>
<categoryLink id="978b-ce61-e12a-7be9" name="Leader" hidden="false" targetId="3198-c1ce-dfd0-fb4f" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="c80b-06a5-e38b-84a1" name="Dakka Boy" hidden="false" collective="false" import="true" targetId="94ab-c60d-d426-0fdf" type="selectionEntry">
<categoryLinks>
<categoryLink id="2202-1e0b-b597-d849" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="308f-41eb-a0f3-5723" name="Nob w/ power klaw" hidden="false" collective="false" import="true" targetId="1ea0-bc33-96e9-29d3" type="selectionEntry">
<categoryLinks>
<categoryLink id="e2a6-3223-1fbd-f79c" name="Leader" hidden="false" targetId="3198-c1ce-dfd0-fb4f" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="f6cf-ea8c-b59f-503b" name="Boy" hidden="false" collective="false" import="true" targetId="cb2d-d9d4-fb6f-87d3" type="selectionEntry">
<categoryLinks>
<categoryLink id="7698-fe39-1596-cf5e" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="47bb-212d-eef7-82a1" name="Slasha Boy" hidden="false" collective="false" import="true" targetId="0b3c-3ead-0178-0609" type="selectionEntry">
<categoryLinks>
<categoryLink id="1e78-ba1f-292c-569f" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="3b2a-9978-7218-68bd" name="Breacha Boy" hidden="false" collective="false" import="true" targetId="277f-a5f5-d3c6-ab2e" type="selectionEntry">
<categoryLinks>
<categoryLink id="09a1-febe-8a1a-f4f9" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="ad13-16cc-82e3-ccdf" name="Snipa Boy" hidden="false" collective="false" import="true" targetId="c7da-483a-3f7e-8dd5" type="selectionEntry">
<categoryLinks>
<categoryLink id="1bd4-0a12-3ac8-fe6d" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="3b2e-246e-77f7-0005" name="Comms Boy" hidden="false" collective="false" import="true" targetId="3ba5-0660-edb1-d020" type="selectionEntry">
<categoryLinks>
<categoryLink id="5431-6bd0-0404-f597" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="2091-94f6-4fce-c7ab" name="Burna Boy" hidden="false" collective="false" import="true" targetId="c18b-b7df-3025-434b" type="selectionEntry">
<categoryLinks>
<categoryLink id="9d79-33e6-740f-a242" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="5311-acf6-c00d-e0b1" name="Rokkit Boy" hidden="false" collective="false" import="true" targetId="f67f-2de3-daef-1fbf" type="selectionEntry">
<categoryLinks>
<categoryLink id="51e9-a27d-5585-4256" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="4cd0-1921-0970-cd9c" name="Bomb Squig" hidden="false" collective="false" import="true" targetId="254b-70c4-40f8-0556" type="selectionEntry">
<categoryLinks>
<categoryLink id="9890-d6f1-5fdf-2c37" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
<sharedSelectionEntries>
<selectionEntry id="8425-4dd8-3cb1-90fc" name="Grot" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="465b-68f1-9f27-50d9" name="Grot" hidden="false" typeId="350c-2ddd-8a24-377b" typeName="Operative">
<characteristics>
<characteristic name="M" typeId="c36f-3952-a91d-5a06">3⬤</characteristic>
<characteristic name="APL" typeId="c84a-a042-6fe6-519b">2</characteristic>
<characteristic name="GA" typeId="7a85-5063-6d1a-2a0b">1</characteristic>
<characteristic name="DF" typeId="4a18-41c1-51f2-c88c">3</characteristic>
<characteristic name="SV" typeId="dd03-76d2-dda8-eca2">5+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">5</characteristic>
</characteristics>
</profile>
<profile id="7612-e83c-2770-b5ca" name="Sneaky Zogger" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">This operative cannot have an Engage order. In addition, this operative is always treated as having a Conceal order, regardless of any other rules (e.g. Vantage Point).</characteristic>
</characteristics>
</profile>
<profile id="0d7e-472b-6875-615c" name="Grappling Hook (1AP)" hidden="false" typeId="17cd-eb4c-f9cd-36f2" typeName="Unique Actions">
<characteristics>
<characteristic name="Unique Action" typeId="8d9f-0a91-4133-bc4a">Select a point on a terrain feature that is Visible to this operative (treat that point as an intended target). Perform a free Normal Move action with this operative, moving in a single straight line with an unlimited Movement as though it can FLY. It must finish that move within ▲ of that point.
This operative cannot perform the Operate Hatch action during this action.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="2626-87be-6ebe-269d" name="Throat Slitta" hidden="false" targetId="97ad-1fce-6e13-c943" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="b1f8-6c11-87ac-8af5" name="KOMMANDO" hidden="false" targetId="dde5-2643-f81c-96f5" primary="false"/>
<categoryLink id="fc5a-38d9-3e59-728a" name="Ork" hidden="false" targetId="fff5-e805-1699-7f74" primary="false"/>
<categoryLink id="df12-d968-43f4-908b" name="Kommando Grot" hidden="false" targetId="27c3-6016-6b60-a2d3" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="3925-021e-387d-85c0" name="Grot choppa" 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="c3d4-0ac6-035e-b439" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c0f8-451b-8903-79da" type="max"/>
</constraints>
<profiles>
<profile id="5cd4-48f0-f3dd-2af3" name="⚔ Grot choppa" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">3</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">5+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">1/4</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">-</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="e2f7-f86e-126e-d0a3" name="Battle Honours - Scout" hidden="false" collective="false" import="true" targetId="94bd-d409-fda3-9f9f" type="selectionEntryGroup">
<entryLinks>
<entryLink id="ac4d-2c6e-6be4-d585" name="Kommando 6 - Ambusher" hidden="false" collective="false" import="true" targetId="c8bc-82c8-e9e3-8974" type="selectionEntry"/>
<entryLink id="daef-430b-2e43-9db4" name="Kommando 4 - Shifty" hidden="false" collective="false" import="true" targetId="4237-cb68-cc4a-d786" type="selectionEntry"/>
<entryLink id="fb0f-1c7e-ccd2-efb8" name="Kommando 3 - Destructive" hidden="false" collective="false" import="true" targetId="6c99-0749-78d8-2dc7" type="selectionEntry"/>
<entryLink id="df1e-5ae7-dc47-aadb" name="Kommando 2 - Irritable" hidden="false" collective="false" import="true" targetId="e0eb-aa61-24ef-1e8a" type="selectionEntry"/>
<entryLink id="0d65-c0f3-14f5-6e69" name="Kommando 1 - Skinna" hidden="false" collective="false" import="true" targetId="de96-3828-9883-b545" type="selectionEntry"/>
<entryLink id="4a77-8621-82f0-6c82" name="Kommando 5 - Thievin' Git" hidden="false" collective="false" import="true" targetId="c3d0-feff-41d0-3129" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="6901-2ff8-4a0a-b234" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
<entryLink id="515a-3bc4-1106-1f9d" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="b223-4219-564e-da5f" name="Specialism" hidden="false" collective="false" import="true" targetId="110b-d090-a59f-6531" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="0847-16ff-c2cd-2c64" name="Nob w/ big choppa" hidden="false" collective="false" import="true" type="model">
<infoLinks>
<infoLink id="c56b-a8db-9623-94d1" name="Kommando Nob" hidden="false" targetId="8780-1364-be24-d810" type="profile"/>
<infoLink id="01b4-b0ba-1b45-f966" name="Get it Dun!" hidden="false" targetId="746e-c0d6-2258-75af" type="profile"/>
<infoLink id="9707-fe30-dd94-6b09" name="Throat Slitta" hidden="false" targetId="97ad-1fce-6e13-c943" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="eb05-1949-a0bb-cd35" name="KOMMANDO" hidden="false" targetId="dde5-2643-f81c-96f5" primary="false"/>
<categoryLink id="01e1-3479-2cfd-9326" name="Ork" hidden="false" targetId="fff5-e805-1699-7f74" primary="false"/>
<categoryLink id="84b8-722f-0a1a-845b" name="Kommando Nob" hidden="false" targetId="7c33-5897-9860-0d86" primary="false"/>
<categoryLink targetId="3198-c1ce-dfd0-fb4f" id="2165-1a95-1043-b66e" primary="true" name="Leader"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="6bd1-4db2-f39e-d7d8" name="Big choppa" 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="319e-8b4b-7b39-4ad6" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4bad-9a15-fa2d-a8a7" type="max"/>
</constraints>
<profiles>
<profile id="dc53-eb8e-b2e8-6319" name="⚔ Big choppa" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">2+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">5/6</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">-</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="faae-5756-bcff-5d7e" name="Slugga" hidden="false" collective="false" import="true" targetId="c9ee-4ebe-26ec-050e" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="340f-5642-bc5d-9ea4" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b1c0-5fef-9ac5-8b9c" type="max"/>
</constraints>
</entryLink>
<entryLink id="3212-5d26-c961-8bec" name="Equipment" hidden="false" collective="false" import="true" targetId="9ac8-b82b-4cd6-1e5a" type="selectionEntryGroup"/>
<entryLink id="1dfd-aa42-7d4b-3552" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="4429-5182-c74d-c13a" name="Specialism" hidden="false" collective="false" import="true" targetId="110b-d090-a59f-6531" type="selectionEntryGroup"/>
<entryLink id="17b8-86ff-8b8d-443f" name="Battle Honours - Combat" hidden="false" collective="false" import="true" targetId="ae2f-d9f3-a27c-cca6" type="selectionEntryGroup">
<entryLinks>
<entryLink id="a2c9-ea6f-2f9b-3a77" name="Kommando 2 - Irritable" hidden="false" collective="false" import="true" targetId="e0eb-aa61-24ef-1e8a" type="selectionEntry"/>
<entryLink id="97c1-8ffe-71df-f090" name="Kommando 4 - Shifty" hidden="false" collective="false" import="true" targetId="4237-cb68-cc4a-d786" type="selectionEntry"/>
<entryLink id="ab76-71aa-786c-2c50" name="Kommando 3 - Destructive" hidden="false" collective="false" import="true" targetId="6c99-0749-78d8-2dc7" type="selectionEntry"/>
<entryLink id="8875-2f94-fb58-4793" name="Kommando 5 - Thievin' Git" hidden="false" collective="false" import="true" targetId="c3d0-feff-41d0-3129" type="selectionEntry"/>
<entryLink id="42f8-e374-0cd1-fa8c" name="Kommando 6 - Ambusher" hidden="false" collective="false" import="true" targetId="c8bc-82c8-e9e3-8974" type="selectionEntry"/>
<entryLink id="648d-d76d-fb4e-830b" name="Kommando 1 - Skinna" hidden="false" collective="false" import="true" targetId="de96-3828-9883-b545" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="2ff7-dfa1-fba6-e665" name="Battle Honours - Staunch" hidden="false" collective="false" import="true" targetId="93ec-2874-675e-b46e" type="selectionEntryGroup">
<entryLinks>
<entryLink id="7533-c062-2756-9efb" name="Kommando 1 - Skinna" hidden="false" collective="false" import="true" targetId="de96-3828-9883-b545" type="selectionEntry"/>
<entryLink id="c340-818f-9b7e-2e62" name="Kommando 2 - Irritable" hidden="false" collective="false" import="true" targetId="e0eb-aa61-24ef-1e8a" type="selectionEntry"/>
<entryLink id="284b-d7e7-6b27-2168" name="Kommando 3 - Destructive" hidden="false" collective="false" import="true" targetId="6c99-0749-78d8-2dc7" type="selectionEntry"/>
<entryLink id="3b27-8147-2bd3-9c81" name="Kommando 4 - Shifty" hidden="false" collective="false" import="true" targetId="4237-cb68-cc4a-d786" type="selectionEntry"/>
<entryLink id="b015-c3d4-da28-96a2" name="Kommando 5 - Thievin' Git" hidden="false" collective="false" import="true" targetId="c3d0-feff-41d0-3129" type="selectionEntry"/>
<entryLink id="e688-7546-beba-f726" name="Kommando 6 - Ambusher" hidden="false" collective="false" import="true" targetId="c8bc-82c8-e9e3-8974" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="ce79-067a-14c1-4125" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="c9ee-4ebe-26ec-050e" name="Slugga" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="299f-8cfc-ea08-d238" name="⌖ Slugga" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">4+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">3/4</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Rng ⬟</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="ecfb-48ca-3000-ddf3" name="Rng x" hidden="false" targetId="92de-2ad3-3554-0b3e" type="rule"/>
</infoLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="94ab-c60d-d426-0fdf" name="Dakka Boy" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="24a9-b80e-1181-137b" name="Dakka Boy" hidden="false" typeId="350c-2ddd-8a24-377b" typeName="Operative">
<characteristics>
<characteristic name="M" typeId="c36f-3952-a91d-5a06">3⬤</characteristic>
<characteristic name="APL" typeId="c84a-a042-6fe6-519b">2</characteristic>
<characteristic name="GA" typeId="7a85-5063-6d1a-2a0b">1</characteristic>
<characteristic name="DF" typeId="4a18-41c1-51f2-c88c">3</characteristic>
<characteristic name="SV" typeId="dd03-76d2-dda8-eca2">5+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">10</characteristic>
</characteristics>
</profile>
<profile id="116c-4a97-219f-55ff" name="*Unload Slugs" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">Each time this operative makes a shooting attack with this weapon, in the Roll Attack Dice step of that shooting attack, if the target is within ⬟ of it, you can re-roll any or all of your attack dice.</characteristic>
</characteristics>
</profile>
<profile id="8259-3c40-22eb-6891" name="Dakka Dash (1AP)" hidden="false" typeId="17cd-eb4c-f9cd-36f2" typeName="Unique Actions">
<characteristics>
<characteristic name="Unique Action" typeId="8d9f-0a91-4133-bc4a">Perform a free Shoot action and free Dash action with this operative in any order. You can only select a dakka shoota for this action’s shooting attack.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="f91c-c887-9da6-14e1" name="Throat Slitta" hidden="false" targetId="97ad-1fce-6e13-c943" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="bdaf-91c1-8815-7f1a" name="KOMMANDO" hidden="false" targetId="dde5-2643-f81c-96f5" primary="false"/>
<categoryLink id="cc01-7d84-1cf6-a61b" name="Ork" hidden="false" targetId="fff5-e805-1699-7f74" primary="false"/>
<categoryLink id="4ef9-c364-9b65-15a4" name="Dakka Boy" hidden="false" targetId="f28e-5ad9-3d14-dd19" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="3814-f104-ad3e-bf46" name="Dakka shoota" 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="b32a-6539-938b-8ea0" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e10c-e7e3-5089-a2a1" type="max"/>
</constraints>
<profiles>
<profile id="a5df-0b33-d014-30ff" name="⌖ Dakka shoota" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">5</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">4+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">3/4</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Unload Slugs*</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="5145-bda7-5c2a-c2dc" name="Fists" hidden="false" collective="false" import="true" targetId="0b03-8967-fc87-3480" type="selectionEntry"/>
<entryLink id="f917-4c2e-b9ca-c081" name="Equipment" hidden="false" collective="false" import="true" targetId="9ac8-b82b-4cd6-1e5a" type="selectionEntryGroup"/>
<entryLink id="0e29-f351-a540-c2c1" name="Battle Honours - Marksman" hidden="false" collective="false" import="true" targetId="e84e-ae34-82a8-57b0" type="selectionEntryGroup">
<entryLinks>
<entryLink id="0925-5fa5-913b-8e0a" name="Kommando 2 - Irritable" hidden="false" collective="false" import="true" targetId="e0eb-aa61-24ef-1e8a" type="selectionEntry"/>
<entryLink id="9b86-77ea-799e-bbc8" name="Kommando 1 - Skinna" hidden="false" collective="false" import="true" targetId="de96-3828-9883-b545" type="selectionEntry"/>
<entryLink id="651d-fecf-4959-99c6" name="Kommando 3 - Destructive" hidden="false" collective="false" import="true" targetId="6c99-0749-78d8-2dc7" type="selectionEntry"/>
<entryLink id="a4d0-cbf6-bc85-533c" name="Kommando 4 - Shifty" hidden="false" collective="false" import="true" targetId="4237-cb68-cc4a-d786" type="selectionEntry"/>
<entryLink id="6bc1-d804-6436-ee48" name="Kommando 5 - Thievin' Git" hidden="false" collective="false" import="true" targetId="c3d0-feff-41d0-3129" type="selectionEntry"/>
<entryLink id="5d6c-c2cd-5be8-bf0f" name="Kommando 6 - Ambusher" hidden="false" collective="false" import="true" targetId="c8bc-82c8-e9e3-8974" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="3395-051f-2787-b914" name="Battle Honours - Scout" hidden="false" collective="false" import="true" targetId="94bd-d409-fda3-9f9f" type="selectionEntryGroup">
<entryLinks>
<entryLink id="4e87-8b36-f974-b462" name="Kommando 6 - Ambusher" hidden="false" collective="false" import="true" targetId="c8bc-82c8-e9e3-8974" type="selectionEntry"/>
<entryLink id="ce3b-c263-5ec4-81c9" name="Kommando 2 - Irritable" hidden="false" collective="false" import="true" targetId="e0eb-aa61-24ef-1e8a" type="selectionEntry"/>
<entryLink id="52f6-6abb-b5fb-4d6f" name="Kommando 3 - Destructive" hidden="false" collective="false" import="true" targetId="6c99-0749-78d8-2dc7" type="selectionEntry"/>
<entryLink id="7a0d-04c5-1b1f-a957" name="Kommando 1 - Skinna" hidden="false" collective="false" import="true" targetId="de96-3828-9883-b545" type="selectionEntry"/>
<entryLink id="2a42-9d72-d5cc-f655" name="Kommando 4 - Shifty" hidden="false" collective="false" import="true" targetId="4237-cb68-cc4a-d786" type="selectionEntry"/>
<entryLink id="faa9-abbe-1ac1-c77e" name="Kommando 5 - Thievin' Git" hidden="false" collective="false" import="true" targetId="c3d0-feff-41d0-3129" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="7e73-2483-6bef-1a15" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
<entryLink id="f0c1-a75c-e3c4-4342" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="33dc-2b4b-6405-2164" name="Specialism" hidden="false" collective="false" import="true" targetId="110b-d090-a59f-6531" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="c7da-483a-3f7e-8dd5" name="Snipa Boy" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="2dca-6bbf-9f57-d224" name="Snipa Boy" hidden="false" typeId="350c-2ddd-8a24-377b" typeName="Operative">
<characteristics>
<characteristic name="M" typeId="c36f-3952-a91d-5a06">3⬤</characteristic>
<characteristic name="APL" typeId="c84a-a042-6fe6-519b">2</characteristic>
<characteristic name="GA" typeId="7a85-5063-6d1a-2a0b">1</characteristic>
<characteristic name="DF" typeId="4a18-41c1-51f2-c88c">3</characteristic>
<characteristic name="SV" typeId="dd03-76d2-dda8-eca2">5+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">10</characteristic>
</characteristics>
</profile>
<profile id="6472-d502-323e-fe01" name="'Av it! (2AP)" hidden="false" typeId="17cd-eb4c-f9cd-36f2" typeName="Unique Actions">
<characteristics>
<characteristic name="Unique Action" typeId="8d9f-0a91-4133-bc4a">Perform a free Shoot action with this operative using its scoped big shoota. After making the shooting attack against the target, this operative can make a shooting attack against each other valid target within ⬤ of the original target. Each time this operative makes a shooting attack for this action, subtract 2 from the Attacks characteristic of its scoped big shoota for that shooting attack.</characteristic>
</characteristics>
</profile>
<profile id="defb-1f16-c8f0-872c" name="Da Best Spot (2AP)" hidden="false" typeId="17cd-eb4c-f9cd-36f2" typeName="Unique Actions">
<characteristics>
<characteristic name="Unique Action" typeId="8d9f-0a91-4133-bc4a">Perform a free Shoot action with this operative using its scoped big shoota, even if it has a Conceal order.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="5ac6-cc8f-b25d-e3e2" name="Throat Slitta" hidden="false" targetId="97ad-1fce-6e13-c943" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="7b7f-fad2-9d01-7805" name="KOMMANDO" hidden="false" targetId="dde5-2643-f81c-96f5" primary="false"/>
<categoryLink id="57c6-2a64-5239-4dc0" name="Ork" hidden="false" targetId="fff5-e805-1699-7f74" primary="false"/>
<categoryLink id="db91-054d-d90a-e28c" name="Snipa Boy" hidden="false" targetId="4b8e-20e5-f8eb-0f21" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="b1ca-c3ad-f4ed-123d" name="Scoped big shoota" 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="3f11-e6de-7373-13b2" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9cc8-c70b-c4c3-761e" type="max"/>
</constraints>
<profiles>
<profile id="c387-a35f-ad72-32c7" name="⌖ Scoped big shoota" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">6</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">3+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">2/2</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">-</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">MW2</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="75ae-9104-67c0-d45d" name="MWx" hidden="false" targetId="0d4b-7a76-d266-bcc1" type="rule"/>
</infoLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="51c8-9665-8691-721c" name="Fists" hidden="false" collective="false" import="true" targetId="0b03-8967-fc87-3480" type="selectionEntry"/>
<entryLink id="d29e-e9cc-74d4-5c8a" name="Equipment" hidden="false" collective="false" import="true" targetId="9ac8-b82b-4cd6-1e5a" type="selectionEntryGroup"/>
<entryLink id="2101-efee-1888-5dea" name="Battle Honours - Marksman" hidden="false" collective="false" import="true" targetId="e84e-ae34-82a8-57b0" type="selectionEntryGroup">
<entryLinks>
<entryLink id="60a9-403b-2098-c0f6" name="Kommando 2 - Irritable" hidden="false" collective="false" import="true" targetId="e0eb-aa61-24ef-1e8a" type="selectionEntry"/>
<entryLink id="06f1-26ee-d1f6-1b0e" name="Kommando 3 - Destructive" hidden="false" collective="false" import="true" targetId="6c99-0749-78d8-2dc7" type="selectionEntry"/>
<entryLink id="59b2-e385-7f80-cb0b" name="Kommando 4 - Shifty" hidden="false" collective="false" import="true" targetId="4237-cb68-cc4a-d786" type="selectionEntry"/>
<entryLink id="c113-6a37-5b34-0632" name="Kommando 5 - Thievin' Git" hidden="false" collective="false" import="true" targetId="c3d0-feff-41d0-3129" type="selectionEntry"/>
<entryLink id="7319-3d18-ef7d-8575" name="Kommando 6 - Ambusher" hidden="false" collective="false" import="true" targetId="c8bc-82c8-e9e3-8974" type="selectionEntry"/>
<entryLink id="df78-11d5-5372-5508" name="Kommando 1 - Skinna" hidden="false" collective="false" import="true" targetId="de96-3828-9883-b545" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="c3f5-12a8-e7e8-387e" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
<entryLink id="7214-273c-66f9-1016" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="71a7-b3b9-c23b-b062" name="Specialism" hidden="false" collective="false" import="true" targetId="110b-d090-a59f-6531" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="1ea0-bc33-96e9-29d3" name="Nob w/ power klaw" hidden="false" collective="false" import="true" type="model">
<infoLinks>
<infoLink id="37dc-f2ab-b8d5-b320" name="Get it Dun!" hidden="false" targetId="746e-c0d6-2258-75af" type="profile"/>
<infoLink id="bfd7-c937-b07c-cbd5" name="Throat Slitta" hidden="false" targetId="97ad-1fce-6e13-c943" type="profile"/>
<infoLink id="ce02-a0d2-0845-95b3" name="Kommando Nob" hidden="false" targetId="8780-1364-be24-d810" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="7b27-b33f-8332-2231" name="KOMMANDO" hidden="false" targetId="dde5-2643-f81c-96f5" primary="false"/>
<categoryLink id="21d3-2d51-15ef-6463" name="Ork" hidden="false" targetId="fff5-e805-1699-7f74" primary="false"/>
<categoryLink id="4369-e2e3-fe22-566a" name="Kommando Nob" hidden="false" targetId="7c33-5897-9860-0d86" primary="false"/>
<categoryLink targetId="3198-c1ce-dfd0-fb4f" id="dfbf-5742-1196-25e7" primary="true" name="Leader"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="4c2d-8627-6844-715c" name="Power klaw" 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="e922-57e5-1e87-a439" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="00bd-073c-e49b-5c95" type="max"/>
</constraints>
<profiles>
<profile id="3ff2-aedc-362e-303e" name="⚔ Power klaw" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">3+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">5/7</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Brutal</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="da83-3714-ecfa-b308" name="Brutal" hidden="false" targetId="16e9-a975-03a1-91c0" type="rule"/>
</infoLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="aca3-10ff-4d17-a795" name="Slugga" hidden="false" collective="false" import="true" targetId="c9ee-4ebe-26ec-050e" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="730c-4913-8289-f2c3" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="04f9-2c6d-f906-7395" type="max"/>
</constraints>
</entryLink>
<entryLink id="e1fe-be29-380e-2ee6" name="Equipment" hidden="false" collective="false" import="true" targetId="9ac8-b82b-4cd6-1e5a" type="selectionEntryGroup"/>
<entryLink id="4f23-4e64-0d58-3494" name="Battle Honours - Combat" hidden="false" collective="false" import="true" targetId="ae2f-d9f3-a27c-cca6" type="selectionEntryGroup">
<entryLinks>
<entryLink id="c1ec-6e73-4c53-a999" name="Kommando 2 - Irritable" hidden="false" collective="false" import="true" targetId="e0eb-aa61-24ef-1e8a" type="selectionEntry"/>
<entryLink id="bedc-6dfa-d929-b861" name="Kommando 3 - Destructive" hidden="false" collective="false" import="true" targetId="6c99-0749-78d8-2dc7" type="selectionEntry"/>
<entryLink id="ba09-dab8-a355-338c" name="Kommando 4 - Shifty" hidden="false" collective="false" import="true" targetId="4237-cb68-cc4a-d786" type="selectionEntry"/>
<entryLink id="70bd-3d2f-ee78-19ec" name="Kommando 5 - Thievin' Git" hidden="false" collective="false" import="true" targetId="c3d0-feff-41d0-3129" type="selectionEntry"/>
<entryLink id="65c9-1b4d-a18d-3fa1" name="Kommando 6 - Ambusher" hidden="false" collective="false" import="true" targetId="c8bc-82c8-e9e3-8974" type="selectionEntry"/>
<entryLink id="6fc4-ad57-904e-1140" name="Kommando 1 - Skinna" hidden="false" collective="false" import="true" targetId="de96-3828-9883-b545" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="a4b2-6b71-9458-f50e" name="Battle Honours - Staunch" hidden="false" collective="false" import="true" targetId="93ec-2874-675e-b46e" type="selectionEntryGroup">
<entryLinks>
<entryLink id="d07f-8262-3ff4-5562" name="Kommando 1 - Skinna" hidden="false" collective="false" import="true" targetId="de96-3828-9883-b545" type="selectionEntry"/>
<entryLink id="c027-1017-3345-a296" name="Kommando 2 - Irritable" hidden="false" collective="false" import="true" targetId="e0eb-aa61-24ef-1e8a" type="selectionEntry"/>
<entryLink id="e2ae-9985-9a8e-0cfd" name="Kommando 3 - Destructive" hidden="false" collective="false" import="true" targetId="6c99-0749-78d8-2dc7" type="selectionEntry"/>
<entryLink id="2201-2cec-290d-b039" name="Kommando 4 - Shifty" hidden="false" collective="false" import="true" targetId="4237-cb68-cc4a-d786" type="selectionEntry"/>
<entryLink id="fdde-5dfe-0f5f-bf33" name="Kommando 5 - Thievin' Git" hidden="false" collective="false" import="true" targetId="c3d0-feff-41d0-3129" type="selectionEntry"/>
<entryLink id="089a-1a06-f91c-eed8" name="Kommando 6 - Ambusher" hidden="false" collective="false" import="true" targetId="c8bc-82c8-e9e3-8974" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="3cdd-bcb7-903b-042c" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
<entryLink id="386c-814c-2229-0d46" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="ad7b-8b33-b568-6e13" name="Specialism" hidden="false" collective="false" import="true" targetId="110b-d090-a59f-6531" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="cb2d-d9d4-fb6f-87d3" name="Boy" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="afaa-13d3-b6a8-e89b" name="Kommando Boy" hidden="false" typeId="350c-2ddd-8a24-377b" typeName="Operative">
<characteristics>
<characteristic name="M" typeId="c36f-3952-a91d-5a06">3⬤</characteristic>
<characteristic name="APL" typeId="c84a-a042-6fe6-519b">2</characteristic>
<characteristic name="GA" typeId="7a85-5063-6d1a-2a0b">1</characteristic>
<characteristic name="DF" typeId="4a18-41c1-51f2-c88c">3</characteristic>
<characteristic name="SV" typeId="dd03-76d2-dda8-eca2">5+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">10</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="6afb-5adb-75b9-f611" name="Throat Slitta" hidden="false" targetId="97ad-1fce-6e13-c943" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="b141-6d8a-c859-f6fc" name="KOMMANDO" hidden="false" targetId="dde5-2643-f81c-96f5" primary="false"/>
<categoryLink id="f7ba-185d-2b46-1d7b" name="Ork" hidden="false" targetId="fff5-e805-1699-7f74" primary="false"/>
<categoryLink id="64f8-709e-9d67-22af" name="Kommando Boy" hidden="false" targetId="8996-77be-ec77-1199" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="c955-99e4-0824-036e" name="Slugga" hidden="false" collective="false" import="true" targetId="c9ee-4ebe-26ec-050e" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3eed-9ffe-318f-a949" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="eab6-929c-624e-3a5f" type="max"/>
</constraints>
</entryLink>
<entryLink id="a06e-d694-8d03-7ee5" name="Choppa" hidden="false" collective="false" import="true" targetId="e84b-1723-e7a8-26eb" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="81da-85b9-9b0e-fa0f" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7be8-48dd-4a1f-c1d2" type="max"/>
</constraints>
</entryLink>
<entryLink id="6945-6104-253a-e381" name="Equipment" hidden="false" collective="false" import="true" targetId="9ac8-b82b-4cd6-1e5a" type="selectionEntryGroup"/>
<entryLink id="79ea-b193-36ca-bf65" name="Battle Honours - Combat" hidden="false" collective="false" import="true" targetId="ae2f-d9f3-a27c-cca6" type="selectionEntryGroup">
<entryLinks>
<entryLink id="dc45-845f-c72a-9f6e" name="Kommando 3 - Destructive" hidden="false" collective="false" import="true" targetId="6c99-0749-78d8-2dc7" type="selectionEntry"/>
<entryLink id="f46a-b4df-2ebf-ad6b" name="Kommando 2 - Irritable" hidden="false" collective="false" import="true" targetId="e0eb-aa61-24ef-1e8a" type="selectionEntry"/>
<entryLink id="5e1a-efa2-4ea2-d54b" name="Kommando 4 - Shifty" hidden="false" collective="false" import="true" targetId="4237-cb68-cc4a-d786" type="selectionEntry"/>
<entryLink id="01d0-8f72-9e4e-86e7" name="Kommando 5 - Thievin' Git" hidden="false" collective="false" import="true" targetId="c3d0-feff-41d0-3129" type="selectionEntry"/>
<entryLink id="f09c-d595-2513-49f3" name="Kommando 6 - Ambusher" hidden="false" collective="false" import="true" targetId="c8bc-82c8-e9e3-8974" type="selectionEntry"/>
<entryLink id="26b4-4fa5-c824-5010" name="Kommando 1 - Skinna" hidden="false" collective="false" import="true" targetId="de96-3828-9883-b545" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="a8d5-d489-70e1-eec7" name="Battle Honours - Scout" hidden="false" collective="false" import="true" targetId="94bd-d409-fda3-9f9f" type="selectionEntryGroup">
<entryLinks>
<entryLink id="0932-0833-ec22-b672" name="Kommando 1 - Skinna" hidden="false" collective="false" import="true" targetId="de96-3828-9883-b545" type="selectionEntry"/>
<entryLink id="d896-63fd-f070-b11e" name="Kommando 2 - Irritable" hidden="false" collective="false" import="true" targetId="e0eb-aa61-24ef-1e8a" type="selectionEntry"/>
<entryLink id="d572-d798-361f-6d8f" name="Kommando 3 - Destructive" hidden="false" collective="false" import="true" targetId="6c99-0749-78d8-2dc7" type="selectionEntry"/>
<entryLink id="7914-1168-3b21-2dc1" name="Kommando 4 - Shifty" hidden="false" collective="false" import="true" targetId="4237-cb68-cc4a-d786" type="selectionEntry"/>
<entryLink id="9e65-1d8d-c12c-b463" name="Kommando 5 - Thievin' Git" hidden="false" collective="false" import="true" targetId="c3d0-feff-41d0-3129" type="selectionEntry"/>
<entryLink id="1587-5418-7d9b-3fa3" name="Kommando 6 - Ambusher" hidden="false" collective="false" import="true" targetId="c8bc-82c8-e9e3-8974" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="743b-9fe9-5978-a40f" name="Battle Honours - Staunch" hidden="false" collective="false" import="true" targetId="93ec-2874-675e-b46e" type="selectionEntryGroup">
<entryLinks>
<entryLink id="daba-7ccb-bbf7-133a" name="Kommando 1 - Skinna" hidden="false" collective="false" import="true" targetId="de96-3828-9883-b545" type="selectionEntry"/>
<entryLink id="8a88-5138-f562-1e0c" name="Kommando 2 - Irritable" hidden="false" collective="false" import="true" targetId="e0eb-aa61-24ef-1e8a" type="selectionEntry"/>
<entryLink id="c23a-21d6-ac00-79ed" name="Kommando 3 - Destructive" hidden="false" collective="false" import="true" targetId="6c99-0749-78d8-2dc7" type="selectionEntry"/>
<entryLink id="6449-f2b6-3b3f-4f37" name="Kommando 4 - Shifty" hidden="false" collective="false" import="true" targetId="4237-cb68-cc4a-d786" type="selectionEntry"/>
<entryLink id="fd09-70d4-e0f1-39da" name="Kommando 5 - Thievin' Git" hidden="false" collective="false" import="true" targetId="c3d0-feff-41d0-3129" type="selectionEntry"/>
<entryLink id="4964-b256-21f2-0154" name="Kommando 6 - Ambusher" hidden="false" collective="false" import="true" targetId="c8bc-82c8-e9e3-8974" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="15bb-7bd1-75af-2a77" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
<entryLink id="0195-0dfb-d37a-184a" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="97a8-8968-8fa5-c2c9" name="Specialism" hidden="false" collective="false" import="true" targetId="110b-d090-a59f-6531" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="0b3c-3ead-0178-0609" name="Slasha Boy" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="1dff-5966-9c10-f562" name="Slasha Boy" hidden="false" typeId="350c-2ddd-8a24-377b" typeName="Operative">
<characteristics>
<characteristic name="M" typeId="c36f-3952-a91d-5a06">3⬤</characteristic>
<characteristic name="APL" typeId="c84a-a042-6fe6-519b">2</characteristic>
<characteristic name="GA" typeId="7a85-5063-6d1a-2a0b">1</characteristic>
<characteristic name="DF" typeId="4a18-41c1-51f2-c88c">3</characteristic>
<characteristic name="SV" typeId="dd03-76d2-dda8-eca2">5+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">10</characteristic>
</characteristics>
</profile>
<profile id="5958-e6be-85bb-f9ea" name="Dat All You Got?" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">Each time after this operative fights in combat, if it lost any wounds in that combat but was not incapacitated, you can roll one D6: on a 4+, the enemy operative that fought it in that combat suffers 2 mortal wounds.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="f369-4f04-461b-8ad2" name="Throat Slitta" hidden="false" targetId="97ad-1fce-6e13-c943" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="d6aa-c305-f78c-afab" name="KOMMANDO" hidden="false" targetId="dde5-2643-f81c-96f5" primary="false"/>
<categoryLink id="d09e-96c3-4fe6-fae2" name="Ork" hidden="false" targetId="fff5-e805-1699-7f74" primary="false"/>
<categoryLink id="1b06-b36c-e00e-cfb8" name="Slasha Boy" hidden="false" targetId="002d-52b4-5629-1c01" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="1491-56af-71a8-09da" name="Throwing knives" 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="566d-77ac-417d-b039" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="050f-2eac-d233-8f94" type="max"/>
</constraints>
<profiles>
<profile id="0c72-b8fb-b388-d867" name="Throwing knives" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">3+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">2/5</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Rng ⬟, Silent</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434"/>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="8a23-4398-edbe-5fb7" name="Rng x" hidden="false" targetId="92de-2ad3-3554-0b3e" type="rule"/>
<infoLink id="586e-3259-65c2-47b6" name="Silent" hidden="false" targetId="ce60-8109-69c9-3908" type="rule"/>
</infoLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="01fb-fba5-90ba-7423" name="Twin choppas" 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="d7bc-f584-0a89-15ac" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ffd1-b5ff-d3dc-e197" type="max"/>
</constraints>
<profiles>
<profile id="c536-1718-7897-c509" name="Twin choppas" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">3+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">4/5</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Relentless</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="c914-5fea-d826-911a" name="Relentless" hidden="false" targetId="1875-9b07-2a07-aacc" type="rule"/>
</infoLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="0e33-8eac-3629-6123" name="Equipment" hidden="false" collective="false" import="true" targetId="9ac8-b82b-4cd6-1e5a" type="selectionEntryGroup"/>
<entryLink id="5074-6b10-1f14-7c80" name="Battle Honours - Combat" hidden="false" collective="false" import="true" targetId="ae2f-d9f3-a27c-cca6" type="selectionEntryGroup">
<entryLinks>
<entryLink id="ad53-224b-d651-9903" name="Kommando 5 - Thievin' Git" hidden="false" collective="false" import="true" targetId="c3d0-feff-41d0-3129" type="selectionEntry"/>
<entryLink id="a661-235b-118e-518b" name="Kommando 1 - Skinna" hidden="false" collective="false" import="true" targetId="de96-3828-9883-b545" type="selectionEntry"/>
<entryLink id="7ea0-332c-48b3-cc55" name="Kommando 6 - Ambusher" hidden="false" collective="false" import="true" targetId="c8bc-82c8-e9e3-8974" type="selectionEntry"/>
<entryLink id="c746-413d-48b2-c622" name="Kommando 2 - Irritable" hidden="false" collective="false" import="true" targetId="e0eb-aa61-24ef-1e8a" type="selectionEntry"/>
<entryLink id="0bac-bb96-02dc-8a1a" name="Kommando 3 - Destructive" hidden="false" collective="false" import="true" targetId="6c99-0749-78d8-2dc7" type="selectionEntry"/>
<entryLink id="ff74-d295-f5a3-3593" name="Kommando 4 - Shifty" hidden="false" collective="false" import="true" targetId="4237-cb68-cc4a-d786" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="11f6-c3f6-2177-6b2e" name="Battle Honours - Scout" hidden="false" collective="false" import="true" targetId="94bd-d409-fda3-9f9f" type="selectionEntryGroup">
<entryLinks>
<entryLink id="3dfb-9c57-9e5a-7b7d" name="Kommando 6 - Ambusher" hidden="false" collective="false" import="true" targetId="c8bc-82c8-e9e3-8974" type="selectionEntry"/>
<entryLink id="b11b-9c81-5ca2-ce52" name="Kommando 2 - Irritable" hidden="false" collective="false" import="true" targetId="e0eb-aa61-24ef-1e8a" type="selectionEntry"/>
<entryLink id="3abe-f1f4-eb5d-36e4" name="Kommando 3 - Destructive" hidden="false" collective="false" import="true" targetId="6c99-0749-78d8-2dc7" type="selectionEntry"/>
<entryLink id="586c-43ef-bc76-2892" name="Kommando 1 - Skinna" hidden="false" collective="false" import="true" targetId="de96-3828-9883-b545" type="selectionEntry"/>
<entryLink id="9dc3-a5e6-cc85-4f2e" name="Kommando 4 - Shifty" hidden="false" collective="false" import="true" targetId="4237-cb68-cc4a-d786" type="selectionEntry"/>
<entryLink id="f858-d608-969b-0206" name="Kommando 5 - Thievin' Git" hidden="false" collective="false" import="true" targetId="c3d0-feff-41d0-3129" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="cd89-89fc-884c-c610" name="Battle Honours - Staunch" hidden="false" collective="false" import="true" targetId="93ec-2874-675e-b46e" type="selectionEntryGroup">
<entryLinks>
<entryLink id="034e-90cf-48ac-8a6a" name="Kommando 6 - Ambusher" hidden="false" collective="false" import="true" targetId="c8bc-82c8-e9e3-8974" type="selectionEntry"/>
<entryLink id="70f7-5312-5d28-5802" name="Kommando 2 - Irritable" hidden="false" collective="false" import="true" targetId="e0eb-aa61-24ef-1e8a" type="selectionEntry"/>
<entryLink id="3833-4fd6-a6cd-b1e7" name="Kommando 3 - Destructive" hidden="false" collective="false" import="true" targetId="6c99-0749-78d8-2dc7" type="selectionEntry"/>
<entryLink id="b48e-d25f-7dfd-5196" name="Kommando 1 - Skinna" hidden="false" collective="false" import="true" targetId="de96-3828-9883-b545" type="selectionEntry"/>
<entryLink id="20d6-4c22-5ef0-a709" name="Kommando 4 - Shifty" hidden="false" collective="false" import="true" targetId="4237-cb68-cc4a-d786" type="selectionEntry"/>
<entryLink id="2923-0b05-57cc-d3bc" name="Kommando 5 - Thievin' Git" hidden="false" collective="false" import="true" targetId="c3d0-feff-41d0-3129" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="c585-ec9b-bce2-79f6" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
<entryLink id="8c96-4e97-1060-74ee" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="a517-8e98-0267-c1f0" name="Specialism" hidden="false" collective="false" import="true" targetId="110b-d090-a59f-6531" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="277f-a5f5-d3c6-ab2e" name="Breacha Boy" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="9088-b37a-6260-5a24" name="Bull Charge" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">Each time this operative fights in combat, if it made a charge move during that activation, its breacha ram gains the Stun critical hit rule for that combat.</characteristic>
</characteristics>
</profile>
<profile id="3cfb-9d67-1dd9-bc35" name="Breacha Boy" hidden="false" typeId="350c-2ddd-8a24-377b" typeName="Operative">
<characteristics>
<characteristic name="M" typeId="c36f-3952-a91d-5a06">3⬤</characteristic>
<characteristic name="APL" typeId="c84a-a042-6fe6-519b">2</characteristic>
<characteristic name="GA" typeId="7a85-5063-6d1a-2a0b">1</characteristic>
<characteristic name="DF" typeId="4a18-41c1-51f2-c88c">3</characteristic>
<characteristic name="SV" typeId="dd03-76d2-dda8-eca2">5+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">10</characteristic>
</characteristics>
</profile>
<profile id="0cdb-a35e-7090-59a8" name="Breach" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">Each time this operative performs a Normal Move, Dash or Charge action, it can move through parts of terrain features that are no more than ▲ thick as if they were not there.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="815e-d702-4f03-bbcd" name="Throat Slitta" hidden="false" targetId="97ad-1fce-6e13-c943" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="18a1-b8fb-377f-464a" name="KOMMANDO" hidden="false" targetId="dde5-2643-f81c-96f5" primary="false"/>
<categoryLink id="f312-b8df-15fc-ddce" name="Ork" hidden="false" targetId="fff5-e805-1699-7f74" primary="false"/>
<categoryLink id="f897-4108-d08f-6ce4" name="Breacha Boy" hidden="false" targetId="c1a6-ba11-1d1f-7809" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="f7f4-54c5-66d6-b1d3" name="Breacha ram" 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="f70f-984d-96f7-4e0e" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ce4d-e24a-215e-6e37" type="max"/>
</constraints>
<profiles>
<profile id="5a76-02bc-41c8-162f" name="⚔ Breacha ram" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">3</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">3+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">5/5</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Brutal</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="dd3b-f93a-8cb9-6c05" name="Brutal" hidden="false" targetId="16e9-a975-03a1-91c0" type="rule"/>
</infoLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="e736-710c-8e5a-4007" name="Slugga" hidden="false" collective="false" import="true" targetId="c9ee-4ebe-26ec-050e" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1677-7b83-ecf8-833f" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="127b-7d9d-d1d7-ceb5" type="max"/>
</constraints>
</entryLink>
<entryLink id="8cca-c869-9ee4-998e" name="Equipment" hidden="false" collective="false" import="true" targetId="9ac8-b82b-4cd6-1e5a" type="selectionEntryGroup"/>
<entryLink id="ddae-79ca-a0fa-aaab" name="Battle Honours - Combat" hidden="false" collective="false" import="true" targetId="ae2f-d9f3-a27c-cca6" type="selectionEntryGroup">
<entryLinks>
<entryLink id="28aa-745c-61a5-72fe" name="Kommando 2 - Irritable" hidden="false" collective="false" import="true" targetId="e0eb-aa61-24ef-1e8a" type="selectionEntry"/>
<entryLink id="9574-2fdf-fc7a-b92b" name="Kommando 4 - Shifty" hidden="false" collective="false" import="true" targetId="4237-cb68-cc4a-d786" type="selectionEntry"/>
<entryLink id="0112-afa2-4998-1de1" name="Kommando 3 - Destructive" hidden="false" collective="false" import="true" targetId="6c99-0749-78d8-2dc7" type="selectionEntry"/>
<entryLink id="ae0f-62de-afe2-0a50" name="Kommando 5 - Thievin' Git" hidden="false" collective="false" import="true" targetId="c3d0-feff-41d0-3129" type="selectionEntry"/>
<entryLink id="1560-b2af-4611-fc1d" name="Kommando 6 - Ambusher" hidden="false" collective="false" import="true" targetId="c8bc-82c8-e9e3-8974" type="selectionEntry"/>
<entryLink id="be8a-55e7-49f9-4923" name="Kommando 1 - Skinna" hidden="false" collective="false" import="true" targetId="de96-3828-9883-b545" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="a70c-d712-5569-a6f1" name="Battle Honours - Staunch" hidden="false" collective="false" import="true" targetId="93ec-2874-675e-b46e" type="selectionEntryGroup">
<entryLinks>
<entryLink id="0c84-72e7-5e5e-6486" name="Kommando 1 - Skinna" hidden="false" collective="false" import="true" targetId="de96-3828-9883-b545" type="selectionEntry"/>
<entryLink id="9a25-3d6c-5a33-06e7" name="Kommando 2 - Irritable" hidden="false" collective="false" import="true" targetId="e0eb-aa61-24ef-1e8a" type="selectionEntry"/>
<entryLink id="cafb-a0f0-9f80-5939" name="Kommando 4 - Shifty" hidden="false" collective="false" import="true" targetId="4237-cb68-cc4a-d786" type="selectionEntry"/>
<entryLink id="9ef1-e086-2346-00ec" name="Kommando 3 - Destructive" hidden="false" collective="false" import="true" targetId="6c99-0749-78d8-2dc7" type="selectionEntry"/>
<entryLink id="b23d-2826-877b-9458" name="Kommando 5 - Thievin' Git" hidden="false" collective="false" import="true" targetId="c3d0-feff-41d0-3129" type="selectionEntry"/>
<entryLink id="962c-328b-640d-aac6" name="Kommando 6 - Ambusher" hidden="false" collective="false" import="true" targetId="c8bc-82c8-e9e3-8974" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="a343-4d17-9f7d-b292" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
<entryLink id="3ea0-3111-4222-ba48" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="80e9-e663-8e74-7e96" name="Specialism" hidden="false" collective="false" import="true" targetId="110b-d090-a59f-6531" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="0b03-8967-fc87-3480" name="Fists" 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="4d2f-2844-ee1d-8afd" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="334e-59cd-4a8e-190d" type="max"/>
</constraints>
<profiles>
<profile id="5f04-e544-f68a-8b09" name="⚔ Fists" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">3</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">3+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">3/4</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">-</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="3ba5-0660-edb1-d020" name="Comms Boy" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="f404-ccbc-b583-4efb" name="Comms Boy" hidden="false" typeId="350c-2ddd-8a24-377b" typeName="Operative">
<characteristics>
<characteristic name="M" typeId="c36f-3952-a91d-5a06">3⬤</characteristic>
<characteristic name="APL" typeId="c84a-a042-6fe6-519b">2</characteristic>
<characteristic name="GA" typeId="7a85-5063-6d1a-2a0b">1</characteristic>
<characteristic name="DF" typeId="4a18-41c1-51f2-c88c">3</characteristic>
<characteristic name="SV" typeId="dd03-76d2-dda8-eca2">5+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">10</characteristic>
</characteristics>
</profile>
<profile id="a21e-480e-9386-5049" name="I Got a Plan, Ladz" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">Once per Turning Point, during this operative's activation, it can perform a mission or Pick Up action for one less AP (to a minimum of 0AP).</characteristic>
</characteristics>
</profile>
<profile id="b60d-52c0-8d9c-bcd8" name="Listen In (1AP)" hidden="false" typeId="17cd-eb4c-f9cd-36f2" typeName="Unique Actions">
<characteristics>
<characteristic name="Unique Action" typeId="8d9f-0a91-4133-bc4a">Select one friendly KOMMANDO operative within ⬟ of and Visible to this operative. Add 1 to its APL. This operative cannot perform this action if it is within Engagement Range of an enemy operative.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="1eb9-9a92-ca12-493d" name="Throat Slitta" hidden="false" targetId="97ad-1fce-6e13-c943" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="7a33-d2c0-08d2-b983" name="KOMMANDO" hidden="false" targetId="dde5-2643-f81c-96f5" primary="false"/>
<categoryLink id="9adc-870b-a712-fd04" name="Ork" hidden="false" targetId="fff5-e805-1699-7f74" primary="false"/>
<categoryLink id="55e7-7e52-ec94-d0c4" name="Comms Boy" hidden="false" targetId="346d-8675-ff7f-80ff" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="af85-6f33-a425-213a" name="Shokka pistol" 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="ed34-b282-c365-d3f1" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f7f2-af12-e149-4a5a" type="max"/>
</constraints>
<profiles>
<profile id="3ede-8633-3573-275a" name="⌖ Shokka pistol" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">6</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">4+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">1/1</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Rng ⬟</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">Stun, MW2</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="2dfc-9778-958e-7f45" name="Rng x" hidden="false" targetId="92de-2ad3-3554-0b3e" type="rule"/>
<infoLink id="6d26-c008-4c56-ce66" name="Stun" hidden="false" targetId="a1e3-4e0b-f7c2-eb59" type="rule"/>
<infoLink id="fe94-f970-ee1b-8ce1" name="MWx" hidden="false" targetId="0d4b-7a76-d266-bcc1" type="rule"/>
</infoLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="a979-25ac-d444-fa40" name="Fists" hidden="false" collective="false" import="true" targetId="0b03-8967-fc87-3480" type="selectionEntry"/>
<entryLink id="033f-2405-3518-0ff9" name="Equipment" hidden="false" collective="false" import="true" targetId="9ac8-b82b-4cd6-1e5a" type="selectionEntryGroup"/>
<entryLink id="4375-04d9-6cca-c8e6" name="Battle Honours - Scout" hidden="false" collective="false" import="true" targetId="94bd-d409-fda3-9f9f" type="selectionEntryGroup">
<entryLinks>
<entryLink id="a032-619b-ab4e-b164" name="Kommando 1 - Skinna" hidden="false" collective="false" import="true" targetId="de96-3828-9883-b545" type="selectionEntry"/>
<entryLink id="33a2-f52d-df93-4679" name="Kommando 2 - Irritable" hidden="false" collective="false" import="true" targetId="e0eb-aa61-24ef-1e8a" type="selectionEntry"/>
<entryLink id="aeb2-a4d8-321a-c914" name="Kommando 3 - Destructive" hidden="false" collective="false" import="true" targetId="6c99-0749-78d8-2dc7" type="selectionEntry"/>
<entryLink id="e464-4d71-d917-886d" name="Kommando 4 - Shifty" hidden="false" collective="false" import="true" targetId="4237-cb68-cc4a-d786" type="selectionEntry"/>
<entryLink id="bfb7-f17f-d85e-fd58" name="Kommando 5 - Thievin' Git" hidden="false" collective="false" import="true" targetId="c3d0-feff-41d0-3129" type="selectionEntry"/>
<entryLink id="e3ba-7534-0fed-26aa" name="Kommando 6 - Ambusher" hidden="false" collective="false" import="true" targetId="c8bc-82c8-e9e3-8974" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="a561-c744-fd0f-a659" name="Battle Honours - Staunch" hidden="false" collective="false" import="true" targetId="93ec-2874-675e-b46e" type="selectionEntryGroup">
<entryLinks>
<entryLink id="7a8b-7ebf-942a-b848" name="Kommando 1 - Skinna" hidden="false" collective="false" import="true" targetId="de96-3828-9883-b545" type="selectionEntry"/>
<entryLink id="aa49-d6a4-2f62-d46b" name="Kommando 2 - Irritable" hidden="false" collective="false" import="true" targetId="e0eb-aa61-24ef-1e8a" type="selectionEntry"/>
<entryLink id="ef91-d570-ecd3-ddbd" name="Kommando 3 - Destructive" hidden="false" collective="false" import="true" targetId="6c99-0749-78d8-2dc7" type="selectionEntry"/>
<entryLink id="4adc-2140-8c2a-886f" name="Kommando 4 - Shifty" hidden="false" collective="false" import="true" targetId="4237-cb68-cc4a-d786" type="selectionEntry"/>
<entryLink id="33b0-5b77-153b-6e2f" name="Kommando 5 - Thievin' Git" hidden="false" collective="false" import="true" targetId="c3d0-feff-41d0-3129" type="selectionEntry"/>
<entryLink id="f7f0-9f1c-5747-0970" name="Kommando 6 - Ambusher" hidden="false" collective="false" import="true" targetId="c8bc-82c8-e9e3-8974" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="e709-3c76-e6f4-89cc" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
<entryLink id="6523-8a7d-0add-ac18" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="51f2-af18-0d74-c6a9" name="Specialism" hidden="false" collective="false" import="true" targetId="110b-d090-a59f-6531" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="c18b-b7df-3025-434b" name="Burna Boy" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="68bd-8d99-4204-a2fd" name="Burna Boy" hidden="false" typeId="350c-2ddd-8a24-377b" typeName="Operative">
<characteristics>
<characteristic name="M" typeId="c36f-3952-a91d-5a06">3⬤</characteristic>
<characteristic name="APL" typeId="c84a-a042-6fe6-519b">2</characteristic>
<characteristic name="GA" typeId="7a85-5063-6d1a-2a0b">1</characteristic>
<characteristic name="DF" typeId="4a18-41c1-51f2-c88c">3</characteristic>
<characteristic name="SV" typeId="dd03-76d2-dda8-eca2">5+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">10</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="3016-2081-8e7a-fa23" name="Throat Slitta" hidden="false" targetId="97ad-1fce-6e13-c943" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="46d1-d2dc-32fd-249c" name="KOMMANDO" hidden="false" targetId="dde5-2643-f81c-96f5" primary="false"/>
<categoryLink id="b49d-421a-bf7f-83d7" name="Ork" hidden="false" targetId="fff5-e805-1699-7f74" primary="false"/>
<categoryLink id="69e1-767c-1986-2717" name="Burna Boy" hidden="false" targetId="589f-07cd-c552-ff24" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="1132-90a9-d90c-82f3" name="Burna" 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="54bc-c5ae-a58c-7f75" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c2b7-591e-7ece-17bb" type="max"/>
</constraints>
<profiles>
<profile id="38e6-32f5-756b-34bd" name="⌖ Burna" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">5</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">2+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">2/2</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Rng ⬟, Torrent ⬤</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434"/>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="8131-a09a-d7ee-7b80" name="Rng x" hidden="false" targetId="92de-2ad3-3554-0b3e" type="rule"/>
<infoLink id="7a89-fcfe-be93-0627" name="Torrent x" hidden="false" targetId="ec4b-2d70-51a7-5653" type="rule"/>
</infoLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="1ae6-e90a-a069-9702" name="Fists" hidden="false" collective="false" import="true" targetId="0b03-8967-fc87-3480" type="selectionEntry"/>
<entryLink id="f24e-897e-2b79-b65b" name="Equipment" hidden="false" collective="false" import="true" targetId="9ac8-b82b-4cd6-1e5a" type="selectionEntryGroup"/>
<entryLink id="f0e8-e96a-2d5a-fa13" name="Battle Honours - Marksman" hidden="false" collective="false" import="true" targetId="e84e-ae34-82a8-57b0" type="selectionEntryGroup">
<entryLinks>
<entryLink id="7476-0f45-60eb-fb4c" name="Kommando 2 - Irritable" hidden="false" collective="false" import="true" targetId="e0eb-aa61-24ef-1e8a" type="selectionEntry"/>
<entryLink id="b457-ffa3-58b8-1448" name="Kommando 4 - Shifty" hidden="false" collective="false" import="true" targetId="4237-cb68-cc4a-d786" type="selectionEntry"/>
<entryLink id="40f5-641a-ef0b-59cf" name="Kommando 3 - Destructive" hidden="false" collective="false" import="true" targetId="6c99-0749-78d8-2dc7" type="selectionEntry"/>
<entryLink id="2180-f7a7-e5a9-971e" name="Kommando 5 - Thievin' Git" hidden="false" collective="false" import="true" targetId="c3d0-feff-41d0-3129" type="selectionEntry"/>
<entryLink id="77ec-9919-dea1-6549" name="Kommando 6 - Ambusher" hidden="false" collective="false" import="true" targetId="c8bc-82c8-e9e3-8974" type="selectionEntry"/>
<entryLink id="4091-b3eb-f57d-8b44" name="Kommando 1 - Skinna" hidden="false" collective="false" import="true" targetId="de96-3828-9883-b545" type="selectionEntry"/>