forked from BSData/wh40k-killteam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Orks.cat
3374 lines (3374 loc) · 245 KB
/
Orks.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="a34e-d16c-80ff-06bf" name="Orks" revision="28" battleScribeVersion="2.03" authorUrl="https://battlescribedata.appspot.com/#/repo/wh40k-killteam" library="false" gameSystemId="a467-5f42-d24c-6e5b" gameSystemRevision="28" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<categoryEntries>
<categoryEntry id="2a73-3eb4-3c77-db12" name="Ork Boy" hidden="false"/>
<categoryEntry id="d9e4-66e2-9d74-a149" name="Burna Boy" hidden="false"/>
<categoryEntry id="9154-0e71-6fa2-2234" name="Gretchin" hidden="false"/>
<categoryEntry id="5512-42ad-65db-312e" name="Kommando" hidden="false"/>
<categoryEntry id="19cd-daa7-553c-ec0a" name="Loota" hidden="false"/>
<categoryEntry id="7a03-5282-0796-f8b9" name="Nob" hidden="false"/>
<categoryEntry id="cf94-17f4-b543-4b08" name="Meganob" hidden="false"/>
<categoryEntry id="a506-95a9-f463-8b35" name="Mega Armour" hidden="false"/>
<categoryEntry id="6acc-147c-e2fa-e19c" name="Freebootaz" hidden="false"/>
<categoryEntry id="4185-c106-c40f-d41c" name="Flash Git" hidden="false"/>
<categoryEntry id="d799-b522-8c0e-a310" name="Bad Moons" hidden="false"/>
<categoryEntry id="49c9-c9af-e1ad-6f2b" name="Blood Axes" hidden="false"/>
<categoryEntry id="cfdd-a5d1-2225-b8ef" name="Deathskulls" hidden="false"/>
<categoryEntry id="3e63-d2ff-7faa-478a" name="Evil Sunz" hidden="false"/>
<categoryEntry id="300e-b879-4e40-9c9d" name="Freebooterz" hidden="false"/>
<categoryEntry id="80b1-ca7a-5d59-05cd" name="Goffs" hidden="false"/>
<categoryEntry id="0914-2a26-a686-8798" name="Snakebites" hidden="false"/>
<categoryEntry id="9605-743c-ddf9-d938" name="Da Red Gobbo" hidden="false"/>
</categoryEntries>
<selectionEntries>
<selectionEntry id="9b4c-ba7f-a491-14ff" name="Da Red Gobbo" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="5291-dc2c-cfa5-a77f" value="52.0">
<conditions>
<condition field="selections" scope="9b4c-ba7f-a491-14ff" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="32ef-fb0a-d404-f1ea" type="atLeast"/>
</conditions>
</modifier>
<modifier type="set" field="5291-dc2c-cfa5-a77f" value="61.0">
<conditions>
<condition field="selections" scope="9b4c-ba7f-a491-14ff" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0a93-6219-2f28-9a37" type="atLeast"/>
</conditions>
</modifier>
<modifier type="set" field="5291-dc2c-cfa5-a77f" value="70.0">
<conditions>
<condition field="selections" scope="9b4c-ba7f-a491-14ff" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="363a-fe8e-4043-4722" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="fffd-336d-5227-f24a" name="Has Yoo Been a Good Little Grot This Year?" hidden="false" typeId="1015-f0b1-9137-0060" typeName="Ability">
<characteristics>
<characteristic name="Description" typeId="b373-019d-503a-1124">At the start of the Movement phase, you can pick one other GRETCHIN model that is within 3" of this model and roll one D6. On a 1, that model suffers 1 mortal wound. On a 2-6, treat that model as being armed with stikkbombs in addition to its other wargear until the end of the battle.</characteristic>
</characteristics>
</profile>
<profile id="80e7-7e56-a5c7-d4f3" name="Da Revolushun!" hidden="false" typeId="1015-f0b1-9137-0060" typeName="Ability">
<characteristics>
<characteristic name="Description" typeId="b373-019d-503a-1124">While this model is on the battlefield, add 1 to hit rolls and subtract 1 from Nerve tests for models in your kill team if every model in your kill team is a GRETCHIN.</characteristic>
</characteristics>
</profile>
<profile id="beca-d14e-0bcf-70bb" name="Da Red Gobbo" hidden="false" typeId="bb0a-aba1-abd0-beb3" typeName="Model">
<characteristics>
<characteristic name="M" typeId="0a65-6cb0-f00d-e414">5"</characteristic>
<characteristic name="WS" typeId="99d4-2590-8bac-3ad3">3+</characteristic>
<characteristic name="BS" typeId="27ff-d5c5-5422-1614">3+</characteristic>
<characteristic name="S" typeId="d474-89b0-047c-4f3a">3</characteristic>
<characteristic name="T" typeId="803c-5453-20c4-4b94">3</characteristic>
<characteristic name="W" typeId="0c48-aed0-609b-9818">5</characteristic>
<characteristic name="A" typeId="d63d-20cc-db25-5dd5">4</characteristic>
<characteristic name="Ld" typeId="411b-5228-afed-8334">7</characteristic>
<characteristic name="Sv" typeId="c319-1a2d-3648-2294">4+</characteristic>
<characteristic name="Max" typeId="44ec-172b-6381-4908">1</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="59e6-049b-87de-2323" name="New CategoryLink" hidden="false" targetId="6c25-5825-9054-44a7" primary="true"/>
<categoryLink id="9e3b-b996-0441-0ec3" name="Faction: Orks" hidden="false" targetId="3630-39cf-f986-6209" primary="false"/>
<categoryLink id="22f4-48b1-d33f-ba23" name="Infantry" hidden="false" targetId="96c1-32dc-d9dc-4678" primary="false"/>
<categoryLink id="408f-3755-7d7c-68d2" name="Gretchin" hidden="false" targetId="9154-0e71-6fa2-2234" primary="false"/>
<categoryLink id="aa1b-82e0-5c14-fc9a" name="Da Red Gobbo" hidden="false" targetId="9605-743c-ddf9-d938" primary="false"/>
<categoryLink id="176d-8fc4-c1ac-7a24" name="Model" hidden="false" targetId="50dd-a755-e02d-1c30" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="17bd-74a9-28c4-f555" name="Kustom grot blasta" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="43ba-a7cf-3ea7-7d09" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="62f9-a5f2-8737-e205" type="max"/>
</constraints>
<profiles>
<profile id="3e44-adad-71d7-5f0f" name="Kustom grot blasta" hidden="false" typeId="c067-7929-f4dc-7825" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="5410-0b42-87cc-bbc6">12"</characteristic>
<characteristic name="Type" typeId="38ea-c4e0-d3bb-d1e9">Pistol D3</characteristic>
<characteristic name="S" typeId="fcc6-35ea-38b6-f4ca">5</characteristic>
<characteristic name="AP" typeId="fc0e-2874-184d-9f64">-1</characteristic>
<characteristic name="D" typeId="cc1f-e463-c014-2251">2</characteristic>
<characteristic name="Abilities" typeId="72cf-5b8f-5b71-79b2">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="5291-dc2c-cfa5-a77f" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="143b-819b-303e-6a8e" name="Icon of da Revolushun" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="eee6-d7f7-06bc-0e7d" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="44e1-c916-737a-2ca6" type="max"/>
</constraints>
<profiles>
<profile id="e638-c45d-1155-ab97" name="Icon of da Revolushun" hidden="false" typeId="c067-7929-f4dc-7825" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="5410-0b42-87cc-bbc6">Melee</characteristic>
<characteristic name="Type" typeId="38ea-c4e0-d3bb-d1e9">Melee</characteristic>
<characteristic name="S" typeId="fcc6-35ea-38b6-f4ca">User</characteristic>
<characteristic name="AP" typeId="fc0e-2874-184d-9f64">-1</characteristic>
<characteristic name="D" typeId="cc1f-e463-c014-2251">1</characteristic>
<characteristic name="Abilities" typeId="72cf-5b8f-5b71-79b2">For each wound roll of 6+ made for this weapon, the target model suffers 1 mortal wound in addition to the normal damage.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="5291-dc2c-cfa5-a77f" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="31c2-1ba4-f63b-5bae" name="Stikkbombs" hidden="false" collective="false" import="true" targetId="8fad-e5b9-1b41-ba1e" type="selectionEntry"/>
<entryLink id="9e82-eae1-1611-3a83" name="Leadership" hidden="false" collective="false" import="true" targetId="cd3d-2c23-094b-93b8" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="acd1-3ad2-d3f1-182b" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cf5b-0a5d-aeba-b719" type="max"/>
</constraints>
</entryLink>
<entryLink id="58a0-3bbc-bd11-6503" name="Clan" hidden="false" collective="false" import="true" targetId="842a-673e-f031-5ad9" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="5291-dc2c-cfa5-a77f" value="43.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="7150-a0ae-d338-10a2" name="Burna Boy" hidden="false" collective="false" import="true" targetId="6f0a-a880-0cbc-22f2" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="7635-acec-804c-c6ce" name="New CategoryLink" hidden="false" targetId="79c6-76fc-47ee-c005" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="c248-d147-e76f-1b8c" name="Burna Spanner" hidden="false" collective="false" import="true" targetId="026a-c710-eb0b-06f3" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="c971-3c78-308c-03a4" name="New CategoryLink" hidden="false" targetId="79c6-76fc-47ee-c005" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="514b-b433-d4ea-c19b" name="Gretchin" hidden="false" collective="false" import="true" targetId="92c6-fec5-4112-23bf" type="selectionEntry">
<categoryLinks>
<categoryLink id="11a4-b52e-2970-cddc" name="New CategoryLink" hidden="false" targetId="29e7-d60f-5acd-4d99" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="ba59-d733-6871-42dd" name="Ork Boy Gunner" hidden="false" collective="false" import="true" targetId="b607-ad76-1669-9052" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="da60-454e-1fc4-a96c" name="New CategoryLink" hidden="false" targetId="79c6-76fc-47ee-c005" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="e664-4453-f6ec-ae6c" name="Ork Boy" hidden="false" collective="false" import="true" targetId="613e-9476-9f7f-8225" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="4313-c9cc-164b-16c6" name="New CategoryLink" hidden="false" targetId="79c6-76fc-47ee-c005" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="4471-0641-b98e-2964" name="Boss Nob (Boyz)" hidden="false" collective="false" import="true" targetId="f673-5da0-38c6-bfb6" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="a34f-4f06-1455-9fd5" name="New CategoryLink" hidden="false" targetId="79c6-76fc-47ee-c005" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="ea6f-9bf5-d396-735e" name="Kommando" hidden="false" collective="false" import="true" targetId="a133-fad0-c433-6bc8" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="247a-79c9-6586-49ba" name="New CategoryLink" hidden="false" targetId="79c6-76fc-47ee-c005" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="06d4-2ab8-70f9-d7b6" name="Kommando Boss Nob" hidden="false" collective="false" import="true" targetId="62c7-08ab-4aa7-a123" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="a78d-9bd1-d633-f574" name="New CategoryLink" hidden="false" targetId="79c6-76fc-47ee-c005" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="180a-b58e-319b-f49a" name="Loota" hidden="false" collective="false" import="true" targetId="6b76-a43f-6105-5e03" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="d9bf-474c-31df-1dfd" name="New CategoryLink" hidden="false" targetId="79c6-76fc-47ee-c005" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="69a0-4859-fcdb-c6b4" name="Loota Spanner" hidden="false" collective="false" import="true" targetId="ed83-4b83-7f92-099b" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="56ed-73ab-1a03-d4e9" name="New CategoryLink" hidden="false" targetId="79c6-76fc-47ee-c005" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="b8ac-2155-051e-a3e2" name="Gretchin" hidden="false" collective="false" import="true" targetId="92c6-fec5-4112-23bf" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="7295-63f7-11e5-c9d8" name="New CategoryLink" hidden="false" targetId="79c6-76fc-47ee-c005" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="864a-562a-d496-d98b" name="Gretchin" hidden="false" collective="false" import="true" targetId="92c6-fec5-4112-23bf" type="selectionEntry">
<categoryLinks>
<categoryLink id="cae2-32a0-e5f2-89f2" name="Leader" hidden="false" targetId="ade4-0710-e40e-be3f" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="9571-30e2-a72f-4bcc" name="Boss Nob (Boyz)" hidden="false" collective="false" import="true" targetId="f673-5da0-38c6-bfb6" type="selectionEntry">
<categoryLinks>
<categoryLink id="cfe9-bbaf-1e40-c0e9" name="New CategoryLink" hidden="false" targetId="29e7-d60f-5acd-4d99" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="d3ab-a166-9220-35c3" name="Boss Nob (Boyz)" hidden="false" collective="false" import="true" targetId="f673-5da0-38c6-bfb6" type="selectionEntry">
<categoryLinks>
<categoryLink id="6e03-64ed-d804-07ee" name="New CategoryLink" hidden="false" targetId="ade4-0710-e40e-be3f" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="c593-775f-6f94-3429" name="Burna Boy" hidden="false" collective="false" import="true" targetId="6f0a-a880-0cbc-22f2" type="selectionEntry">
<categoryLinks>
<categoryLink id="402e-3295-0ac3-2743" name="New CategoryLink" hidden="false" targetId="29e7-d60f-5acd-4d99" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="411d-1991-f5e2-40ba" name="Burna Boy" hidden="false" collective="false" import="true" targetId="6f0a-a880-0cbc-22f2" type="selectionEntry">
<categoryLinks>
<categoryLink id="ee46-8552-b971-06a1" name="New CategoryLink" hidden="false" targetId="ade4-0710-e40e-be3f" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="a027-b1d2-2013-78b4" name="Burna Spanner" hidden="false" collective="false" import="true" targetId="026a-c710-eb0b-06f3" type="selectionEntry">
<categoryLinks>
<categoryLink id="6fb8-de93-3b52-7025" name="New CategoryLink" hidden="false" targetId="29e7-d60f-5acd-4d99" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="a336-f25f-6519-cb7b" name="Burna Spanner" hidden="false" collective="false" import="true" targetId="026a-c710-eb0b-06f3" type="selectionEntry">
<categoryLinks>
<categoryLink id="746e-f61b-4830-0808" name="New CategoryLink" hidden="false" targetId="ade4-0710-e40e-be3f" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="b7d2-dba7-2e68-94e8" name="Kommando" hidden="false" collective="false" import="true" targetId="a133-fad0-c433-6bc8" type="selectionEntry">
<categoryLinks>
<categoryLink id="c02c-6b7e-60d5-8bf5" name="New CategoryLink" hidden="false" targetId="29e7-d60f-5acd-4d99" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="9f46-bb4b-88d5-1537" name="Kommando Boss Nob" hidden="false" collective="false" import="true" targetId="62c7-08ab-4aa7-a123" type="selectionEntry">
<categoryLinks>
<categoryLink id="45af-b628-4a91-c5a7" name="New CategoryLink" hidden="false" targetId="29e7-d60f-5acd-4d99" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="65ec-5193-c76f-5652" name="Kommando Boss Nob" hidden="false" collective="false" import="true" targetId="62c7-08ab-4aa7-a123" type="selectionEntry">
<categoryLinks>
<categoryLink id="08dd-71d3-ccba-8fdb" name="New CategoryLink" hidden="false" targetId="ade4-0710-e40e-be3f" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="34a4-f291-ab8f-8478" name="Loota" hidden="false" collective="false" import="true" targetId="6b76-a43f-6105-5e03" type="selectionEntry">
<categoryLinks>
<categoryLink id="d87c-b397-3daa-41d6" name="New CategoryLink" hidden="false" targetId="29e7-d60f-5acd-4d99" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="aa18-11f0-20f6-5ab2" name="Loota" hidden="false" collective="false" import="true" targetId="6b76-a43f-6105-5e03" type="selectionEntry">
<categoryLinks>
<categoryLink id="aeda-b7ba-c835-f5fb" name="New CategoryLink" hidden="false" targetId="ade4-0710-e40e-be3f" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="e1f3-b4cc-1d1d-d9f8" name="Loota Spanner" hidden="false" collective="false" import="true" targetId="ed83-4b83-7f92-099b" type="selectionEntry">
<categoryLinks>
<categoryLink id="ae70-259b-6263-d89c" name="New CategoryLink" hidden="false" targetId="29e7-d60f-5acd-4d99" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="cff8-8ddf-23d2-b304" name="Loota Spanner" hidden="false" collective="false" import="true" targetId="ed83-4b83-7f92-099b" type="selectionEntry">
<categoryLinks>
<categoryLink id="4f11-c055-2c1c-ebeb" name="New CategoryLink" hidden="false" targetId="ade4-0710-e40e-be3f" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="ec7b-9914-6787-1f3a" name="Ork Boy" hidden="false" collective="false" import="true" targetId="613e-9476-9f7f-8225" type="selectionEntry">
<categoryLinks>
<categoryLink id="f1b5-0b44-accf-b5de" name="New CategoryLink" hidden="false" targetId="29e7-d60f-5acd-4d99" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="685c-8c96-00c5-77fb" name="Ork Boy Gunner" hidden="false" collective="false" import="true" targetId="b607-ad76-1669-9052" type="selectionEntry">
<categoryLinks>
<categoryLink id="4186-09f3-e90f-7b7f" name="New CategoryLink" hidden="false" targetId="29e7-d60f-5acd-4d99" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="a352-fa67-5831-e776" name="Burna Boy Fire Team" hidden="false" collective="false" import="true" targetId="1189-7cbd-cf31-82f0" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="0ac4-d5d3-38ea-072f" name="New CategoryLink" hidden="false" targetId="79c6-76fc-47ee-c005" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="e554-6a7f-6edd-bfb3" name="Gretchin Fire Team" hidden="false" collective="false" import="true" targetId="5da3-cc64-b9df-e63c" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="137b-c8c2-614b-c3e4" name="New CategoryLink" hidden="false" targetId="79c6-76fc-47ee-c005" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="cab7-1ccb-1adc-0433" name="Kommando Fire Team" hidden="false" collective="false" import="true" targetId="854a-71ba-dc0f-7e47" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="e8e3-f381-973e-3d27" name="New CategoryLink" hidden="false" targetId="79c6-76fc-47ee-c005" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="4daa-9c85-d243-d519" name="Loota Fire Team" hidden="false" collective="false" import="true" targetId="5e39-99df-8b2c-24d2" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="da3b-a633-223a-1dd4" name="New CategoryLink" hidden="false" targetId="79c6-76fc-47ee-c005" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="3ac3-327a-4529-0f5d" name="Ork Boy Fire Team" hidden="false" collective="false" import="true" targetId="a7f8-a08d-3167-9ce7" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="96b5-60ef-209c-6d8a" name="New CategoryLink" hidden="false" targetId="79c6-76fc-47ee-c005" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="7189-fdd2-1e3e-73c6" name="Big Mek" hidden="false" collective="false" import="true" targetId="70b5-fe8b-19b8-48a9" type="selectionEntry"/>
<entryLink id="b4fa-2e2b-b008-cbe7" name="Painboy" hidden="false" collective="false" import="true" targetId="3978-99f8-3a85-cb98" type="selectionEntry"/>
<entryLink id="a71d-582d-cc13-3698" name="Warboss" hidden="false" collective="false" import="true" targetId="203d-5b8c-d669-c101" type="selectionEntry"/>
<entryLink id="a4b3-6c55-7eb3-b2ab" name="Nob" hidden="false" collective="false" import="true" targetId="b5a8-c094-9144-6849" type="selectionEntry">
<categoryLinks>
<categoryLink id="ad9a-c548-1ef0-01c2" name="New CategoryLink" hidden="false" targetId="29e7-d60f-5acd-4d99" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="08a2-c1b9-c476-11af" name="Nob" hidden="false" collective="false" import="true" targetId="b5a8-c094-9144-6849" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="14d8-7c8d-5c6d-904c" name="New CategoryLink" hidden="false" targetId="79c6-76fc-47ee-c005" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="91b4-dbb9-911c-ec83" name="Boss Nob (Nobs)" hidden="false" collective="false" import="true" targetId="13b3-8dd9-14c2-8732" type="selectionEntry">
<categoryLinks>
<categoryLink id="225f-8a96-bc6b-cf88" name="New CategoryLink" hidden="false" targetId="ade4-0710-e40e-be3f" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="1c5a-8e6a-10e6-6b28" name="Boss Nob (Nobs)" hidden="false" collective="false" import="true" targetId="13b3-8dd9-14c2-8732" type="selectionEntry">
<categoryLinks>
<categoryLink id="25f4-bdf6-8c27-0a91" name="New CategoryLink" hidden="false" targetId="29e7-d60f-5acd-4d99" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="3a7c-3379-b852-23d6" name="Boss Nob (Nobs)" hidden="false" collective="false" import="true" targetId="13b3-8dd9-14c2-8732" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="2497-cf8a-c35d-b67e" name="New CategoryLink" hidden="false" targetId="79c6-76fc-47ee-c005" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="3b64-b641-2820-1864" name="Ammo Runt" hidden="false" collective="false" import="true" targetId="67b3-323e-b1dd-c72a" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="973b-7ce9-b22a-c2c9" name="New CategoryLink" hidden="false" targetId="79c6-76fc-47ee-c005" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="bc93-bace-d87f-3ffe" name="Nob Fire Team" hidden="false" collective="false" import="true" targetId="f4aa-aa83-7c77-cb77" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="dc8b-a4bb-79e9-e05d" name="New CategoryLink" hidden="false" targetId="79c6-76fc-47ee-c005" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="5a5f-e1a1-00e9-9794" name="Meganob" hidden="false" collective="false" import="true" targetId="0e59-018b-4a73-9792" type="selectionEntry">
<categoryLinks>
<categoryLink id="3dae-a640-2567-7a72" name="New CategoryLink" hidden="false" targetId="29e7-d60f-5acd-4d99" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="634d-16c2-4485-f5c5" name="Meganob" hidden="false" collective="false" import="true" targetId="0e59-018b-4a73-9792" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="b9d7-735a-f7c7-0174" name="New CategoryLink" hidden="false" targetId="79c6-76fc-47ee-c005" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="1729-8eb9-0cf1-88fc" name="Boss Meganob" hidden="false" collective="false" import="true" targetId="4ce3-7a64-9063-ef4e" type="selectionEntry">
<categoryLinks>
<categoryLink id="74eb-0038-1480-312a" name="New CategoryLink" hidden="false" targetId="ade4-0710-e40e-be3f" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="41ad-97c5-ee29-337f" name="Boss Meganob" hidden="false" collective="false" import="true" targetId="4ce3-7a64-9063-ef4e" type="selectionEntry">
<categoryLinks>
<categoryLink id="3743-0c14-ffd5-fb46" name="New CategoryLink" hidden="false" targetId="29e7-d60f-5acd-4d99" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="d334-fcf9-9f1b-1fe1" name="Boss Meganob" hidden="false" collective="false" import="true" targetId="4ce3-7a64-9063-ef4e" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="6116-1b32-fdb9-d1ed" name="New CategoryLink" hidden="false" targetId="79c6-76fc-47ee-c005" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="1af9-72a5-06e9-ae53" name="Flash Git" hidden="false" collective="false" import="true" targetId="0d4b-2cf8-324f-f759" type="selectionEntry">
<categoryLinks>
<categoryLink id="2711-7ec3-a8ae-b80d" name="New CategoryLink" hidden="false" targetId="29e7-d60f-5acd-4d99" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="ff20-1978-5497-d595" name="Flash Git" hidden="false" collective="false" import="true" targetId="0d4b-2cf8-324f-f759" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="4e62-6f8c-4437-fd27" name="New CategoryLink" hidden="false" targetId="79c6-76fc-47ee-c005" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="d571-31a0-143f-5e71" name="Kaptin" hidden="false" collective="false" import="true" targetId="8392-8be7-7d4f-4879" type="selectionEntry">
<categoryLinks>
<categoryLink id="2ddd-882f-162e-8fc4" name="New CategoryLink" hidden="false" targetId="ade4-0710-e40e-be3f" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="5368-e7dd-7c26-005e" name="Kaptin" hidden="false" collective="false" import="true" targetId="8392-8be7-7d4f-4879" type="selectionEntry">
<categoryLinks>
<categoryLink id="a059-06a6-ac85-1eaa" name="New CategoryLink" hidden="false" targetId="29e7-d60f-5acd-4d99" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="daa4-f7ce-fded-8c4b" name="Kaptin" hidden="false" collective="false" import="true" targetId="8392-8be7-7d4f-4879" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="91f5-27e8-1213-8e40" name="New CategoryLink" hidden="false" targetId="79c6-76fc-47ee-c005" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="ee47-fb8d-0efe-6277" name="Flash Gitz Fire Team" hidden="false" collective="false" import="true" targetId="fd45-bd7b-b41f-b463" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="0833-97b7-e5d0-5b4f" name="New CategoryLink" hidden="false" targetId="79c6-76fc-47ee-c005" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="38ee-1e8b-a1dd-bee7" name="Meganob Fire Team" hidden="false" collective="false" import="true" targetId="bc34-1cf4-bb1f-14e5" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="466d-0b26-bd72-9a52" name="New CategoryLink" hidden="false" targetId="79c6-76fc-47ee-c005" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="2966-d841-f505-eebb" name="Boss Snikrot" hidden="false" collective="false" import="true" targetId="177b-0582-4ebb-4a42" type="selectionEntry"/>
</entryLinks>
<rules>
<rule id="bd38-825a-60cc-bf99" name="Armed to Da Teef (Bad Moons)" hidden="false">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d6e9-5af3-c17c-77a0" type="equalTo"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d799-b522-8c0e-a310" type="equalTo"/>
</conditions>
</conditionGroup>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d799-b522-8c0e-a310" type="equalTo"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="49c9-c9af-e1ad-6f2b" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="80b1-ca7a-5d59-05cd" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="3e63-d2ff-7faa-478a" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="cfdd-a5d1-2225-b8ef" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0914-2a26-a686-8798" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="5ece-d436-23c2-ba85" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="beaf-798d-961f-353d" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<description>Re-roll unmodified hit rolls of 1 for attacks made by models in your kill team in the Shooting phase.</description>
</rule>
<rule id="14db-96fd-77d6-a0b6" name="Taktiks (Blood Axes)" hidden="false">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d6e9-5af3-c17c-77a0" type="equalTo"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="49c9-c9af-e1ad-6f2b" type="equalTo"/>
</conditions>
</conditionGroup>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="49c9-c9af-e1ad-6f2b" type="equalTo"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d799-b522-8c0e-a310" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="80b1-ca7a-5d59-05cd" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="3e63-d2ff-7faa-478a" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="cfdd-a5d1-2225-b8ef" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0914-2a26-a686-8798" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="5ece-d436-23c2-ba85" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="beaf-798d-961f-353d" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<description>Models in your kill team are considered to be obscured to enemy models that target them if they are more than 12" away from those models. In addition, models in your kill team can shoot even if they Fell Back in the same battle round.</description>
</rule>
<rule id="77e0-7b4b-04cc-f190" name="Lucky Blue Gitz (Deathskulls)" hidden="false">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d6e9-5af3-c17c-77a0" type="equalTo"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="cfdd-a5d1-2225-b8ef" type="equalTo"/>
</conditions>
</conditionGroup>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="cfdd-a5d1-2225-b8ef" type="equalTo"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d799-b522-8c0e-a310" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="80b1-ca7a-5d59-05cd" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="3e63-d2ff-7faa-478a" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="49c9-c9af-e1ad-6f2b" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0914-2a26-a686-8798" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="5ece-d436-23c2-ba85" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="beaf-798d-961f-353d" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<description>Models in your kill team have a 6+ invulnerable save, unless they already have an invulnerable save. In addition, you can re-roll a single failed hit roll and a single failed wound roll in each phase, as long as the attack was made by a model in your kill team.</description>
</rule>
<rule id="3753-ad8e-8f85-8b90" name="Red Ones Go Fasta (Evil Sunz)" hidden="false">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d6e9-5af3-c17c-77a0" type="equalTo"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="3e63-d2ff-7faa-478a" type="equalTo"/>
</conditions>
</conditionGroup>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="3e63-d2ff-7faa-478a" type="equalTo"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d799-b522-8c0e-a310" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="80b1-ca7a-5d59-05cd" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="cfdd-a5d1-2225-b8ef" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="49c9-c9af-e1ad-6f2b" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0914-2a26-a686-8798" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="5ece-d436-23c2-ba85" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="beaf-798d-961f-353d" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<description>Add 1 to the Move characteristic of models in your kill team and add 1 to Advance and charge rolls made for them. In addition, these models do not suffer the penalty to their hit rolls for shooting Assault weapons during a battle round in which they Advanced.</description>
</rule>
<rule id="f429-ea12-eb49-8135" name="Competitive Streak (Freebooterz)" hidden="false">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d6e9-5af3-c17c-77a0" type="equalTo"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="300e-b879-4e40-9c9d" type="equalTo"/>
</conditions>
</conditionGroup>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="300e-b879-4e40-9c9d" type="equalTo"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d799-b522-8c0e-a310" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="80b1-ca7a-5d59-05cd" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="cfdd-a5d1-2225-b8ef" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="3e63-d2ff-7faa-478a" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="49c9-c9af-e1ad-6f2b" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0914-2a26-a686-8798" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="5ece-d436-23c2-ba85" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="beaf-798d-961f-353d" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<description>Add 1 to hit rolls for attacks made by models in your kill team for each other model in your kill team that has taken an enemy model out of action with an attack in this phase.</description>
</rule>
<rule id="0248-8b6f-a538-1a88" name="No Muckin' About (Goffs)" hidden="false">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d6e9-5af3-c17c-77a0" type="equalTo"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="80b1-ca7a-5d59-05cd" type="equalTo"/>
</conditions>
</conditionGroup>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="80b1-ca7a-5d59-05cd" type="equalTo"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d799-b522-8c0e-a310" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="cfdd-a5d1-2225-b8ef" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="3e63-d2ff-7faa-478a" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="49c9-c9af-e1ad-6f2b" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0914-2a26-a686-8798" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="5ece-d436-23c2-ba85" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="beaf-798d-961f-353d" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<description>Each time you make an unmodified hit roll of 6 for an attack with a melee weapon made by a model in your kill team, immediately make an additional hit roll against the same target with the same weapon. These additional hit rolls cannot themselves generate any further hit rolls.</description>
</rule>
<rule id="1ea3-6922-0701-0ebb" name="Da Old Ways (Snakebites)" hidden="false">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d6e9-5af3-c17c-77a0" type="equalTo"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0914-2a26-a686-8798" type="equalTo"/>
</conditions>
</conditionGroup>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0914-2a26-a686-8798" type="equalTo"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d799-b522-8c0e-a310" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="cfdd-a5d1-2225-b8ef" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="3e63-d2ff-7faa-478a" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="49c9-c9af-e1ad-6f2b" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="80b1-ca7a-5d59-05cd" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="5ece-d436-23c2-ba85" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="beaf-798d-961f-353d" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<description>Roll a dice each time a model in your kill team loses a wound. On a 6 the would is not lost. If a model already has a similar ability, choose which effect applies, and re-roll 1s when making these rolls.</description>
</rule>
</rules>
<sharedSelectionEntries>
<selectionEntry id="a2f7-b7aa-039d-55f4" name="Kombi-weapon with Rokkit Launcha" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="189d-eaac-c788-2aa9" name="Kombi-weapon with rokkit launcha (Rokkit Launcha)" hidden="false" typeId="c067-7929-f4dc-7825" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="5410-0b42-87cc-bbc6">24"</characteristic>
<characteristic name="Type" typeId="38ea-c4e0-d3bb-d1e9">Assault 1</characteristic>
<characteristic name="S" typeId="fcc6-35ea-38b6-f4ca">8</characteristic>
<characteristic name="AP" typeId="fc0e-2874-184d-9f64">-2</characteristic>
<characteristic name="D" typeId="cc1f-e463-c014-2251">3</characteristic>
<characteristic name="Abilities" typeId="72cf-5b8f-5b71-79b2">-</characteristic>
</characteristics>
</profile>
<profile id="a01e-64c1-4736-5845" name="Kombi-weapon with rokkit launcha (Shoota)" hidden="false" typeId="c067-7929-f4dc-7825" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="5410-0b42-87cc-bbc6">18"</characteristic>
<characteristic name="Type" typeId="38ea-c4e0-d3bb-d1e9">Assault 2</characteristic>
<characteristic name="S" typeId="fcc6-35ea-38b6-f4ca">4</characteristic>
<characteristic name="AP" typeId="fc0e-2874-184d-9f64">0</characteristic>
<characteristic name="D" typeId="cc1f-e463-c014-2251">1</characteristic>
<characteristic name="Abilities" typeId="72cf-5b8f-5b71-79b2">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="a75e-75f9-a369-47c1" name="Kombi-weapon" hidden="false" targetId="d705-2a66-ee46-138f" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="5291-dc2c-cfa5-a77f" value="3.0"/>
</costs>
</selectionEntry>
<selectionEntry id="0c99-5e98-562a-b334" name="Grot Blasta" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="790b-be98-b82b-9f7b" name="Grot Blasta" hidden="false" typeId="c067-7929-f4dc-7825" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="5410-0b42-87cc-bbc6">12"</characteristic>
<characteristic name="Type" typeId="38ea-c4e0-d3bb-d1e9">Pistol 1</characteristic>
<characteristic name="S" typeId="fcc6-35ea-38b6-f4ca">3</characteristic>
<characteristic name="AP" typeId="fc0e-2874-184d-9f64">0</characteristic>
<characteristic name="D" typeId="cc1f-e463-c014-2251">1</characteristic>
<characteristic name="Abilities" typeId="72cf-5b8f-5b71-79b2">- </characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="5291-dc2c-cfa5-a77f" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="7e99-ade3-1839-3621" name="Burna" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="9f79-6281-cc81-3e4c" name="Burna (Melee)" hidden="false" typeId="c067-7929-f4dc-7825" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="5410-0b42-87cc-bbc6">Melee</characteristic>
<characteristic name="Type" typeId="38ea-c4e0-d3bb-d1e9">Melee</characteristic>
<characteristic name="S" typeId="fcc6-35ea-38b6-f4ca">User</characteristic>
<characteristic name="AP" typeId="fc0e-2874-184d-9f64">-2</characteristic>
<characteristic name="D" typeId="cc1f-e463-c014-2251">1</characteristic>
<characteristic name="Abilities" typeId="72cf-5b8f-5b71-79b2">-</characteristic>
</characteristics>
</profile>
<profile id="204d-f1d4-8905-f520" name="Burna (Ranged)" hidden="false" typeId="c067-7929-f4dc-7825" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="5410-0b42-87cc-bbc6">8"</characteristic>
<characteristic name="Type" typeId="38ea-c4e0-d3bb-d1e9">Assault D3</characteristic>
<characteristic name="S" typeId="fcc6-35ea-38b6-f4ca">4</characteristic>
<characteristic name="AP" typeId="fc0e-2874-184d-9f64">0</characteristic>
<characteristic name="D" typeId="cc1f-e463-c014-2251">1</characteristic>
<characteristic name="Abilities" typeId="72cf-5b8f-5b71-79b2">This weapon automatically hits its target.</characteristic>
</characteristics>
</profile>
</profiles>
<rules>
<rule id="13c4-dda1-5bb5-5467" name="Burna" hidden="false">
<description>This weapon can be used as a ranged weapon and a melee weapon. When making shooting attacks or firing Overwatch with this weapon, use the ranged profile; when making close combat attacks, use the melee profile.
</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="5291-dc2c-cfa5-a77f" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="6f0a-a880-0cbc-22f2" name="Burna Boy" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="increment" field="5291-dc2c-cfa5-a77f" value="1">
<repeats>
<repeat field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="31f8-563e-ab5d-8e63" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<profiles>
<profile id="a449-1b7f-649c-8304" name="Burna Boy" hidden="false" typeId="bb0a-aba1-abd0-beb3" typeName="Model">
<characteristics>
<characteristic name="M" typeId="0a65-6cb0-f00d-e414">5"</characteristic>
<characteristic name="WS" typeId="99d4-2590-8bac-3ad3">3+</characteristic>
<characteristic name="BS" typeId="27ff-d5c5-5422-1614">5+</characteristic>
<characteristic name="S" typeId="d474-89b0-047c-4f3a">4</characteristic>
<characteristic name="T" typeId="803c-5453-20c4-4b94">4</characteristic>
<characteristic name="W" typeId="0c48-aed0-609b-9818">1</characteristic>
<characteristic name="A" typeId="d63d-20cc-db25-5dd5">2</characteristic>
<characteristic name="Ld" typeId="411b-5228-afed-8334">6</characteristic>
<characteristic name="Sv" typeId="c319-1a2d-3648-2294">6+</characteristic>
<characteristic name="Max" typeId="44ec-172b-6381-4908">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="bee0-3c6f-a163-608d" name="'Ere We Go" hidden="false" targetId="643c-ab4a-a943-c268" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="2d38-13fc-1ce3-7cdc" name="Burna Boy" hidden="false" targetId="d9e4-66e2-9d74-a149" primary="false"/>
<categoryLink id="be24-8fdc-c84b-9c60" name="Faction: Orks" hidden="false" targetId="3630-39cf-f986-6209" primary="false"/>
<categoryLink id="3daf-4deb-7586-9832" name="Infantry" hidden="false" targetId="96c1-32dc-d9dc-4678" primary="false"/>
<categoryLink id="6ea5-2abd-3ce2-69c8" name="Model" hidden="false" targetId="50dd-a755-e02d-1c30" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="2c4b-e7da-45d5-23dc" name="Burna" hidden="false" collective="false" import="true" targetId="7e99-ade3-1839-3621" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="25dc-ba7f-f5f3-51e6" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3fe3-969b-802f-5579" type="max"/>
</constraints>
</entryLink>
<entryLink id="84b5-eefa-48eb-db25" name="Stikkbombs" hidden="false" collective="false" import="true" targetId="8fad-e5b9-1b41-ba1e" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="588a-0744-f7bd-fcfa" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="15b3-36bd-e59c-65a8" type="max"/>
</constraints>
</entryLink>
<entryLink id="d170-ff8c-a928-cc76" name="Specialism" hidden="false" collective="false" import="true" targetId="f283-dca5-da62-3f8a" type="selectionEntryGroup"/>
<entryLink id="e35b-92ae-2360-f319" name="Clan" hidden="false" collective="false" import="true" targetId="842a-673e-f031-5ad9" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="5291-dc2c-cfa5-a77f" value="12.0"/>
</costs>
</selectionEntry>
<selectionEntry id="3cbf-8f19-2f43-b9fb" name="Big Shoota" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="baf3-8991-174e-9db4" name="Big Shoota" hidden="false" typeId="c067-7929-f4dc-7825" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="5410-0b42-87cc-bbc6">36"</characteristic>
<characteristic name="Type" typeId="38ea-c4e0-d3bb-d1e9">Assault 3</characteristic>
<characteristic name="S" typeId="fcc6-35ea-38b6-f4ca">5</characteristic>
<characteristic name="AP" typeId="fc0e-2874-184d-9f64">0</characteristic>
<characteristic name="D" typeId="cc1f-e463-c014-2251">1</characteristic>
<characteristic name="Abilities" typeId="72cf-5b8f-5b71-79b2">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="5291-dc2c-cfa5-a77f" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="7e3b-9ea0-e2d2-e0c6" name="Deffgun" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="3c50-d563-568d-a0a4" name="Deffgun" hidden="false" typeId="c067-7929-f4dc-7825" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="5410-0b42-87cc-bbc6">48"</characteristic>
<characteristic name="Type" typeId="38ea-c4e0-d3bb-d1e9">Heavy D3</characteristic>
<characteristic name="S" typeId="fcc6-35ea-38b6-f4ca">7</characteristic>
<characteristic name="AP" typeId="fc0e-2874-184d-9f64">-1</characteristic>
<characteristic name="D" typeId="cc1f-e463-c014-2251">2</characteristic>
<characteristic name="Abilities" typeId="72cf-5b8f-5b71-79b2">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="5291-dc2c-cfa5-a77f" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="8fad-e5b9-1b41-ba1e" name="Stikkbombs" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c180-d799-5a24-2488" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6de9-5bb2-030e-d931" type="max"/>
</constraints>
<profiles>
<profile id="4cf2-e476-3160-51ff" name="Stikkbombs" hidden="false" typeId="c067-7929-f4dc-7825" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="5410-0b42-87cc-bbc6">6"</characteristic>
<characteristic name="Type" typeId="38ea-c4e0-d3bb-d1e9">Grenade D6</characteristic>
<characteristic name="S" typeId="fcc6-35ea-38b6-f4ca">3</characteristic>
<characteristic name="AP" typeId="fc0e-2874-184d-9f64">0</characteristic>
<characteristic name="D" typeId="cc1f-e463-c014-2251">1</characteristic>
<characteristic name="Abilities" typeId="72cf-5b8f-5b71-79b2">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="5291-dc2c-cfa5-a77f" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="940a-b9fd-1bc8-85ba" name="Slugga" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="7880-9af4-ff53-da61" name="Slugga" hidden="false" targetId="8201-107f-d8ab-c2ff" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="5291-dc2c-cfa5-a77f" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="e300-4083-c2af-e564" name="Shoota" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="e47e-140a-cfd4-c553" name="Shoota" hidden="false" typeId="c067-7929-f4dc-7825" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="5410-0b42-87cc-bbc6">18"</characteristic>
<characteristic name="Type" typeId="38ea-c4e0-d3bb-d1e9">Assault 2</characteristic>
<characteristic name="S" typeId="fcc6-35ea-38b6-f4ca">4</characteristic>
<characteristic name="AP" typeId="fc0e-2874-184d-9f64">0</characteristic>
<characteristic name="D" typeId="cc1f-e463-c014-2251">1</characteristic>
<characteristic name="Abilities" typeId="72cf-5b8f-5b71-79b2">-</characteristic>
</characteristics>
</profile>
</profiles>