generated from BSData/TemplateDataRepo
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Kroot.cat
5183 lines (5180 loc) · 387 KB
/
Kroot.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="0357-2946-5fdd-a621" name="Kroot" revision="6" battleScribeVersion="2.03" library="false" gameSystemId="28ec-711c-d87f-3aeb" gameSystemRevision="203" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<profileTypes>
<profileType id="aa4d-70b0-e683-a8fd" name="Shaman">
<characteristicTypes>
<characteristicType id="9afe-5f1c-7440-df64" name="Invoke"/>
<characteristicType id="c52e-4f17-b084-2625" name="Deny"/>
<characteristicType id="9a55-5f06-22f4-6601" name="Invocations known"/>
</characteristicTypes>
</profileType>
<profileType id="b437-cb5f-e540-586f" name="Invocations">
<characteristicTypes>
<characteristicType id="d941-7bc4-bdea-c8ff" name="Effect"/>
</characteristicTypes>
</profileType>
</profileTypes>
<categoryEntries>
<categoryEntry id="e1ae-392a-579a-4030" name="Faction: Kroot" hidden="false"/>
<categoryEntry id="7534-674c-433e-45c3" name="Shaman" hidden="false">
<profiles>
<profile id="4c7d-8ed7-eb4b-d196" name="Shaman" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">At the start of each of your Command phases, each SHAMAN in your army may decide to invoke an Invocation it knows that hasn't been attempted by other SHAMANS that turn. Roll a die, on a 3+ plus the Invocation is successful and it immediately takes effect.</characteristic>
</characteristics>
</profile>
</profiles>
</categoryEntry>
<categoryEntry id="f756-858e-c8ad-1211" name="Kindred" hidden="false"/>
<categoryEntry id="5845-88a0-36d1-012d" name="Kroot Master Shaman" hidden="false"/>
<categoryEntry id="d6de-4cb7-3d33-cb14" name="Kroot Shaper" hidden="false"/>
<categoryEntry id="5fb4-2e42-96b9-be92" name="Kroot Predators" hidden="false"/>
<categoryEntry id="85f5-e303-59ab-5aba" name="Knarloc" hidden="false"/>
<categoryEntry id="04e4-9f8e-72f6-697a" name="Anghkor Prok" hidden="false"/>
<categoryEntry id="5c7e-d04d-388e-ea7d" name="Kroot Beast-hunter" hidden="false"/>
<categoryEntry id="f52c-e508-7cb8-a4e8" name="Ghen Kath" hidden="false"/>
<categoryEntry id="73d4-91ae-96a2-e022" name="Dahyak Grek" hidden="false"/>
<categoryEntry id="87ff-19cc-26a1-e1b5" name="Kroot Carnivores" hidden="false"/>
<categoryEntry id="dd5d-6cbf-8cba-f8d7" name="Kroot Beast-hunter on Knarloc" hidden="false"/>
<categoryEntry id="62c3-036a-ea92-f8e6" name="Kroot Shaman" hidden="false"/>
<categoryEntry id="b618-4e9e-ae7e-b6a0" name="Krootox Rider" hidden="false"/>
<categoryEntry id="ca81-ec49-9c44-b03e" name="Tribal Guard" hidden="false"/>
<categoryEntry id="e231-e095-fb20-29e6" name="Tribal Guard on Knarloc" hidden="false"/>
<categoryEntry id="2f2e-d8c9-3957-f4b5" name="Knarloc Riders" hidden="false"/>
<categoryEntry id="547a-ad3f-446d-1e1a" name="Kroot Hounds" hidden="false"/>
<categoryEntry id="eb67-e822-ae3c-a009" name="Kroot Handler on Knarloc" hidden="false"/>
<categoryEntry id="4ece-8014-a4a4-f7c2" name="Winged Carnivores" hidden="false"/>
<categoryEntry id="646d-4e05-1ed5-ff9b" name="Greater Knarloc" hidden="false"/>
<categoryEntry id="aebb-ebd9-dd35-dee0" name="Krootworm" hidden="false"/>
<categoryEntry id="d589-5bd3-d404-edfe" name="Kroothawk" hidden="false"/>
<categoryEntry id="4c69-8f91-f50c-473b" name="Greater Knarloc Alpha" hidden="false"/>
<categoryEntry id="bab2-5091-3549-38b9" name="Packalpha" hidden="false"/>
<categoryEntry id="b75b-8984-d17c-053c" name="Ancient Sage" hidden="false"/>
<categoryEntry id="6eb8-499d-2d06-74ab" name="Bounty Hunter Pack" hidden="false"/>
<categoryEntry id="6f86-94b9-bb7f-2340" name="Hidden Mines" hidden="false"/>
<categoryEntry id="7d0c-72ae-e1c1-bef6" name="Kroot Tower" hidden="false"/>
<categoryEntry id="1b7d-880f-8166-4456" name="Kroototh" hidden="false"/>
<categoryEntry id="2ce0-b341-2d09-283e" name="Kroothawk Shrine" hidden="false"/>
<categoryEntry id="7faf-a637-81f2-c79f" name="Kroot Hound Alpha" hidden="false"/>
<categoryEntry id="838c-4116-4c9b-d78e" name="Cerakrootian" hidden="false"/>
</categoryEntries>
<forceEntries>
<forceEntry id="63a4-3f8b-3f18-0e82" name="Formation: Knarloc Hunting Pack" hidden="false">
<rules>
<rule id="e886-b18b-54ab-993a" name="Ramming Charge" hidden="false">
<description>Each time a unit from this special formation makes a successful charge, roll a die for every unit it charged; on a 4+, that enemy unit suffers D3 mortal wounds.</description>
</rule>
<rule id="48c3-c8f2-569f-d8e6" name="Riders' Advance" hidden="false">
<description>Units in this special formation can re-roll charge distances if they begin the Assault phase within 3" of another unit from this formation.</description>
</rule>
</rules>
<categoryLinks>
<categoryLink id="b757-900a-7c4c-1381" name="Configuration" hidden="false" targetId="fcff-0f21-93e6-1ddc" primary="false"/>
<categoryLink id="559b-5964-ea96-1fbe" name="Stratagems" hidden="false" targetId="c845-c72c-6afe-3fc2" primary="false"/>
<categoryLink id="c5c0-49a9-378a-2065" name="HQ" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="false"/>
<categoryLink id="9846-fa63-f26c-98f5" name="Troops" hidden="false" targetId="5d76b6f5-20ae-4d70-8f59-ade72a2add3a" primary="false"/>
<categoryLink id="e06e-0c77-a23f-0bf3" name="Elites" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="false"/>
<categoryLink id="b245-ab4f-f7c6-d28d" name="Fast Attack" hidden="false" targetId="c274d0b0-5866-44bc-9810-91c136ae7438" primary="false"/>
<categoryLink id="c8a0-916a-adaa-a7ec" name="Heavy Support" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="false"/>
</categoryLinks>
</forceEntry>
</forceEntries>
<selectionEntries>
<selectionEntry id="85eb-647a-6296-9358" name="Kroot Master Shaman" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="add" field="category" value="6eb8-499d-2d06-74ab">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2285-3316-3260-f7bc" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="63a4-3f8b-3f18-0e82" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="40bc-661d-652d-a4ca" name="Kroot Master Shaman" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<modifiers>
<modifier type="set" field="00ca-f8b8-876d-b705" value="10">
<conditions>
<condition field="selections" scope="85eb-647a-6296-9358" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="50fb-28a1-1876-d3fb" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">7"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">3+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">4+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">4</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">3</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">5</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">3</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">8</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">5+</characteristic>
</characteristics>
</profile>
<profile id="eac3-4daa-cd42-c663" name="Kroot Master Shaman" hidden="false" typeId="aa4d-70b0-e683-a8fd" typeName="Shaman">
<characteristics>
<characteristic name="Invoke" typeId="9afe-5f1c-7440-df64">2</characteristic>
<characteristic name="Deny" typeId="c52e-4f17-b084-2625">2</characteristic>
<characteristic name="Invocations known" typeId="9a55-5f06-22f4-6601">Hunter's Beak and 2 from the Kindred and or Spirits list.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="550c-d21e-adab-89f0" name="Feral Hunters" hidden="false" targetId="28c4-91a6-24ca-e696" type="rule"/>
<infoLink id="ea54-72da-7993-427f" name="The Wisest of Their Kind (Aura)" hidden="false" targetId="7ade-31e4-b44a-6d16" type="profile"/>
<infoLink id="b48b-51ff-fb6d-b300" name="Aura of the Spirits" hidden="false" targetId="3fe4-6c07-02d8-f604" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="50d3-486c-9218-4a9f" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
<categoryLink id="57ca-3fa7-cb7c-496f" name="Faction: Kroot" hidden="false" targetId="e1ae-392a-579a-4030" primary="false"/>
<categoryLink id="e767-a1ed-aa50-4282" name="Infantry" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="bbd5-2447-d47e-a805" name="Character" hidden="false" targetId="ef18-746a-369f-43a4" primary="false"/>
<categoryLink id="d215-f212-60e2-f947" name="Kindred" hidden="false" targetId="f756-858e-c8ad-1211" primary="false"/>
<categoryLink id="3434-cb59-fa5c-15f2" name="Shaman" hidden="false" targetId="7534-674c-433e-45c3" primary="false"/>
<categoryLink id="60c4-fe06-46ec-6fe5" name="Kroot Master Shaman" hidden="false" targetId="5845-88a0-36d1-012d" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="50fb-28a1-1876-d3fb" name="The Ancient Among the Land" 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="73dc-3a55-07df-0406" type="max"/>
</constraints>
<profiles>
<profile id="01e4-91a9-d41a-e7a0" name="The Ancient Among the Land" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">Each time this model tries to invoke an Invocation, add 1 to the result of the die.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="b34e-69fb-45d6-024e" name="Ancient Sage" hidden="false" targetId="b75b-8984-d17c-053c" primary="false"/>
</categoryLinks>
<costs>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="-1.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="3b4f-c356-0f82-0259" name="Invocations" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="57ae-3261-0eaf-2f42" type="max"/>
</constraints>
<entryLinks>
<entryLink id="73cb-6a23-3f94-4271" name="Invocations of the Kindred" hidden="false" collective="false" import="true" targetId="dfc9-2f87-a1cf-9134" type="selectionEntryGroup"/>
<entryLink id="98e7-f3b7-05c6-3f74" name="Invocations of the Spirits" hidden="false" collective="false" import="true" targetId="9b78-6a78-2505-77fd" type="selectionEntryGroup"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="895a-c92a-d2f6-8b94" name="Ritual blade" hidden="false" collective="false" import="true" targetId="e200-b3d9-33f3-9934" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="31c3-b1ea-1398-a00a" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1a44-551d-8cf4-ae54" type="max"/>
</constraints>
</entryLink>
<entryLink id="87e6-337e-b55b-c37d" name="Kroot staff" hidden="false" collective="false" import="true" targetId="929f-5df5-23cf-9250" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3ae0-c88d-64d8-db40" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="62a3-f21d-8787-8786" type="max"/>
</constraints>
</entryLink>
<entryLink id="0386-0ca9-e62d-d626" name="Warlord" hidden="false" collective="false" import="true" targetId="d104-2a3c-4613-5866" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d6de-4cb7-3d33-cb14" type="atLeast"/>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="328c-af64-ef9f-bf4b" type="atLeast"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</entryLink>
<entryLink id="8f53-b4b2-5662-9790" name="Invocation of the Hunter's Beak" hidden="false" collective="false" import="true" targetId="86bc-4164-e90c-c706" type="selectionEntry"/>
<entryLink id="fa7e-9e00-13f3-6ff9" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="1aa0-9f06-a58c-11bb" type="selectionEntryGroup"/>
<entryLink id="f43e-2c3f-4245-b619" name="The Wisest's Command" hidden="false" collective="false" import="true" targetId="55d4-4ffa-6262-8eb5" type="selectionEntry"/>
<entryLink id="db99-bcc8-a564-8acd" name="Hunting Relics" hidden="false" collective="false" import="true" targetId="ca1b-9bf5-d93a-cb62" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="3.0"/>
<cost name="pts" typeId="points" value="55.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="cdbc-f685-6d8f-e896" name="Kroot Shaper" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="add" field="category" value="6eb8-499d-2d06-74ab">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2285-3316-3260-f7bc" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="63a4-3f8b-3f18-0e82" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="a82f-db5b-fab6-0907" name="Kroot Shaper" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">7"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">3+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">4+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">4</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">3</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">5</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">4</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">8</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">5+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="5b5d-d37f-27bd-411d" name="Feral Hunters" hidden="false" targetId="28c4-91a6-24ca-e696" type="rule"/>
<infoLink id="6070-3d09-954d-b593" name="The Wisest of Their Kind (Aura)" hidden="false" targetId="7ade-31e4-b44a-6d16" type="profile"/>
<infoLink id="6a37-c0f9-2840-0e67" name="The Shaper Commands" hidden="false" targetId="8adf-4656-37a4-a268" type="profile"/>
<infoLink id="59af-e7ec-08bf-b224" name="Stealthy Hunters" hidden="false" targetId="8c92-939c-286c-5f29" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="3e3f-6373-9815-3868" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
<categoryLink id="8f45-f198-456b-968f" name="Faction: Kroot" hidden="false" targetId="e1ae-392a-579a-4030" primary="false"/>
<categoryLink id="700f-10ff-d290-ff94" name="Infantry" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="1843-c770-10a7-0067" name="Character" hidden="false" targetId="ef18-746a-369f-43a4" primary="false"/>
<categoryLink id="430a-fa25-ba10-323e" name="Kindred" hidden="false" targetId="f756-858e-c8ad-1211" primary="false"/>
<categoryLink id="6f70-cac6-bd7f-379b" name="Kroot Shaper" hidden="false" targetId="d6de-4cb7-3d33-cb14" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="42dd-7418-6c05-313c" name="Weapon" hidden="false" collective="false" import="true" defaultSelectionEntryId="dddb-6f13-2e98-b4de">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1f3f-1c2c-e7b4-ddea" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="009a-b9d0-eecb-82f9" type="max"/>
</constraints>
<entryLinks>
<entryLink id="dddb-6f13-2e98-b4de" name="Kroot rifle" hidden="false" collective="false" import="true" targetId="8e99-dc3d-2c22-cfe2" type="selectionEntry"/>
<entryLink id="e02d-add8-90af-f7c2" name="Eviscerator" hidden="false" collective="false" import="true" targetId="3108-7124-6d5d-660a" type="selectionEntry">
<costs>
<cost name="pts" typeId="points" value="10.0"/>
</costs>
</entryLink>
<entryLink id="90f2-bccf-8545-014e" name="Pulse blaster" hidden="false" collective="false" import="true" targetId="fcfa-2f28-cb8e-ee32" type="selectionEntry"/>
<entryLink id="d996-f25f-ae6f-f156" name="Pulse rifle" hidden="false" collective="false" import="true" targetId="e006-18c2-e45b-ad5f" type="selectionEntry"/>
<entryLink id="174d-c699-005e-5fd7" name="Pulse carbine" hidden="false" collective="false" import="true" targetId="b7e7-dd41-9a97-c89e" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="e1fa-2140-d2c2-0ec2" name="Warlord" hidden="false" collective="false" import="true" targetId="d104-2a3c-4613-5866" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="328c-af64-ef9f-bf4b" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="c1cb-2138-b030-625d" name="Ritual blade" hidden="false" collective="false" import="true" targetId="e200-b3d9-33f3-9934" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="efe6-45ad-f0f8-e60b" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ba7a-c7d6-c1e6-5231" type="max"/>
</constraints>
</entryLink>
<entryLink id="232a-0c33-a77e-9985" name="Kroot pistol" hidden="false" collective="false" import="true" targetId="2570-b0fb-6422-ce3b" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9a32-3a6c-8046-3f5b" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b55f-f3f9-6bef-999e" type="max"/>
</constraints>
</entryLink>
<entryLink id="27f5-378b-57ba-cc8c" name="Kroot shield" hidden="false" collective="false" import="true" targetId="deed-2eeb-9416-c241" type="selectionEntry">
<costs>
<cost name="pts" typeId="points" value="7.0"/>
</costs>
</entryLink>
<entryLink id="9e24-0faa-77ed-c5d3" name="Krootor companion" hidden="false" collective="false" import="true" targetId="d4f0-b26b-3679-f78e" type="selectionEntry">
<costs>
<cost name="pts" typeId="points" value="5.0"/>
</costs>
</entryLink>
<entryLink id="46ce-d7e6-f35e-8de6" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="1aa0-9f06-a58c-11bb" type="selectionEntryGroup"/>
<entryLink id="b4dc-44c0-d7e4-d7ce" name="Packalpha" hidden="false" collective="false" import="true" targetId="cdf6-5b2c-5a95-2ae7" type="selectionEntry"/>
<entryLink id="c935-c466-f3b2-d36e" name="The Wisest's Command" hidden="false" collective="false" import="true" targetId="55d4-4ffa-6262-8eb5" type="selectionEntry"/>
<entryLink id="8602-5c7f-80aa-61b0" name="Hunting Relics" hidden="false" collective="false" import="true" targetId="ca1b-9bf5-d93a-cb62" type="selectionEntryGroup"/>
<entryLink id="2b44-efe5-652b-44cf" name="Scavenged weapon" hidden="false" collective="false" import="true" targetId="40d3-a140-7e04-b81c" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="2.0"/>
<cost name="pts" typeId="points" value="45.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="cc49-4c49-26ed-ff37" name="Winged Kroot Shaper" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="add" field="category" value="6eb8-499d-2d06-74ab">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2285-3316-3260-f7bc" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="63a4-3f8b-3f18-0e82" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="093e-05b5-1ca3-a267" name="Winged Kroot Shaper" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">12"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">3+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">4+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">4</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">3</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">5</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">4</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">8</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">7+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="12c6-6aae-4848-59c0" name="Feral Hunters" hidden="false" targetId="28c4-91a6-24ca-e696" type="rule"/>
<infoLink id="54f4-4831-f112-6880" name="The Wisest of Their Kind (Aura)" hidden="false" targetId="7ade-31e4-b44a-6d16" type="profile"/>
<infoLink id="0ae7-88ce-9878-9b59" name="The Shaper Commands" hidden="false" targetId="8adf-4656-37a4-a268" type="profile"/>
<infoLink id="e811-9b20-ecc5-cb68" name="Ambush from Above" hidden="false" targetId="9fac-f5fd-3027-19dc" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="5ac7-bf11-4d66-c3b0" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
<categoryLink id="4848-e34a-7fdc-fc17" name="Faction: Kroot" hidden="false" targetId="e1ae-392a-579a-4030" primary="false"/>
<categoryLink id="ff00-2656-c293-eb6f" name="Infantry" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="9efa-8ffc-2013-f486" name="Character" hidden="false" targetId="ef18-746a-369f-43a4" primary="false"/>
<categoryLink id="9d8a-3178-33c3-e4d2" name="Fly" hidden="false" targetId="3117-16d8-fcef-4f56" primary="false"/>
<categoryLink id="ef7d-1438-dd93-d75a" name="Kindred" hidden="false" targetId="f756-858e-c8ad-1211" primary="false"/>
<categoryLink id="60a1-02d2-9aa3-45a1" name="Kroot Shaper" hidden="false" targetId="d6de-4cb7-3d33-cb14" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="0bc5-e3ed-96d0-ece5" name="Weapon" hidden="false" collective="false" import="true" defaultSelectionEntryId="1873-916f-f4ef-3544">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8b2b-be0e-ff34-0a04" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5d9c-f550-e634-d19a" type="max"/>
</constraints>
<entryLinks>
<entryLink id="1873-916f-f4ef-3544" name="Kroot rifle" hidden="false" collective="false" import="true" targetId="8e99-dc3d-2c22-cfe2" type="selectionEntry"/>
<entryLink id="73a4-6160-bfcc-0722" name="Eviscerator" hidden="false" collective="false" import="true" targetId="3108-7124-6d5d-660a" type="selectionEntry">
<costs>
<cost name="pts" typeId="points" value="10.0"/>
</costs>
</entryLink>
<entryLink id="f778-021e-5c5d-24b5" name="Pulse blaster" hidden="false" collective="false" import="true" targetId="fcfa-2f28-cb8e-ee32" type="selectionEntry"/>
<entryLink id="9d08-0bce-67a7-e911" name="Pulse rifle" hidden="false" collective="false" import="true" targetId="e006-18c2-e45b-ad5f" type="selectionEntry"/>
<entryLink id="250e-cc4f-2602-3b7f" name="Pulse carbine" hidden="false" collective="false" import="true" targetId="b7e7-dd41-9a97-c89e" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="1ac6-9355-77db-2721" name="Warlord" hidden="false" collective="false" import="true" targetId="d104-2a3c-4613-5866" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="328c-af64-ef9f-bf4b" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="cc80-ab89-32f6-e7bb" name="Ritual blade" hidden="false" collective="false" import="true" targetId="e200-b3d9-33f3-9934" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="86f8-526e-757f-9d91" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3470-fdfa-e2b6-e916" type="max"/>
</constraints>
</entryLink>
<entryLink id="1a4c-ef48-7f6d-ec54" name="Kroot pistol" hidden="false" collective="false" import="true" targetId="2570-b0fb-6422-ce3b" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d8ca-e5d6-6216-26e0" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="65ab-f283-5e4f-3eda" type="max"/>
</constraints>
</entryLink>
<entryLink id="6d4a-253a-b179-a16a" name="Kroot shield" hidden="false" collective="false" import="true" targetId="deed-2eeb-9416-c241" type="selectionEntry">
<costs>
<cost name="pts" typeId="points" value="7.0"/>
</costs>
</entryLink>
<entryLink id="854d-4bd2-8f1b-28bb" name="Packalpha" hidden="false" collective="false" import="true" targetId="cdf6-5b2c-5a95-2ae7" type="selectionEntry"/>
<entryLink id="f277-a998-098d-9632" name="The Wisest's Command" hidden="false" collective="false" import="true" targetId="55d4-4ffa-6262-8eb5" type="selectionEntry"/>
<entryLink id="d8c4-0943-1fe3-0919" name="Hunting Relics" hidden="false" collective="false" import="true" targetId="ca1b-9bf5-d93a-cb62" type="selectionEntryGroup"/>
<entryLink id="7b65-d43b-9016-41eb" name="Scavenged weapon" hidden="false" collective="false" import="true" targetId="40d3-a140-7e04-b81c" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="3.0"/>
<cost name="pts" typeId="points" value="50.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="bfec-acf4-d0c3-136e" name="Kroot Shaper on Knarloc" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="add" field="category" value="6eb8-499d-2d06-74ab">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2285-3316-3260-f7bc" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="52dc-4b3a-a8ae-73c0" value="1.0">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="63a4-3f8b-3f18-0e82" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="52dc-4b3a-a8ae-73c0" type="min"/>
</constraints>
<profiles>
<profile id="1e12-2bb2-c494-3f10" name="Kroot Shaper on Knarloc" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">12"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">3+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">4+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">4</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">4</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">6</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">4</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">8</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">4+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="5a39-3d01-6433-db04" name="Feral Hunters" hidden="false" targetId="28c4-91a6-24ca-e696" type="rule"/>
<infoLink id="a414-53ba-4b2e-fb23" name="The Wisest of Their Kind (Aura)" hidden="false" targetId="7ade-31e4-b44a-6d16" type="profile"/>
<infoLink id="0aff-1ff2-46e2-0cc6" name="The Shaper Commands" hidden="false" targetId="8adf-4656-37a4-a268" type="profile"/>
<infoLink id="11df-26b4-512e-6e7b" name="Thunderous Pounce" hidden="false" targetId="ac55-37d2-3758-44d8" type="profile"/>
<infoLink id="230d-3bc7-53e7-9ada" name="Loping Stride" hidden="false" targetId="920b-33a9-9ebc-8677" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="cf0c-4ee7-e0c0-c28b" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
<categoryLink id="3c8e-db06-d15f-57f4" name="Faction: Kroot" hidden="false" targetId="e1ae-392a-579a-4030" primary="false"/>
<categoryLink id="d4f8-c1b8-5bfe-09c2" name="Character" hidden="false" targetId="ef18-746a-369f-43a4" primary="false"/>
<categoryLink id="99c6-cf78-6b67-7a0c" name="Cavalry" hidden="false" targetId="ad01-caec-17d9-cb8d" primary="false"/>
<categoryLink id="3f5e-e444-90db-6092" name="Kindred" hidden="false" targetId="f756-858e-c8ad-1211" primary="false"/>
<categoryLink id="512e-2600-a955-5f4d" name="Kroot Beasts" hidden="false" targetId="5fb4-2e42-96b9-be92" primary="false"/>
<categoryLink id="6a02-e333-40b2-7b4f" name="Kroot Shaper" hidden="false" targetId="d6de-4cb7-3d33-cb14" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="6dfd-2986-f0d0-d36e" name="Weapon" hidden="false" collective="false" import="true" defaultSelectionEntryId="e5d2-e7a5-a4d2-276f">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="87ff-9078-87a0-1fdb" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="71ac-0f56-f806-8ca7" type="max"/>
</constraints>
<entryLinks>
<entryLink id="e5d2-e7a5-a4d2-276f" name="Kroot rifle" hidden="false" collective="false" import="true" targetId="8e99-dc3d-2c22-cfe2" type="selectionEntry"/>
<entryLink id="3c4c-db74-bcb1-6f7d" name="Eviscerator" hidden="false" collective="false" import="true" targetId="3108-7124-6d5d-660a" type="selectionEntry">
<costs>
<cost name="pts" typeId="points" value="10.0"/>
</costs>
</entryLink>
<entryLink id="0138-b075-6142-a3ca" name="Pulse blaster" hidden="false" collective="false" import="true" targetId="fcfa-2f28-cb8e-ee32" type="selectionEntry"/>
<entryLink id="8854-979c-7a36-d1e9" name="Pulse rifle" hidden="false" collective="false" import="true" targetId="e006-18c2-e45b-ad5f" type="selectionEntry"/>
<entryLink id="2a82-7db6-9910-fbe4" name="Pulse carbine" hidden="false" collective="false" import="true" targetId="b7e7-dd41-9a97-c89e" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="d5d6-ab36-76e4-f22c" name="Warlord" hidden="false" collective="false" import="true" targetId="d104-2a3c-4613-5866" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="328c-af64-ef9f-bf4b" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="40c9-f675-4e78-fcbe" name="Ritual blade" hidden="false" collective="false" import="true" targetId="e200-b3d9-33f3-9934" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f0b6-1407-6d38-2da4" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3729-f92d-0bfd-a583" type="max"/>
</constraints>
</entryLink>
<entryLink id="c31c-84a1-c8fe-4315" name="Sharp beak and talons" hidden="false" collective="false" import="true" targetId="db77-4f7a-4fe5-3aff" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a703-b683-dd49-1e57" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1cff-294c-7dd2-ea7d" type="max"/>
</constraints>
</entryLink>
<entryLink id="8bbf-7f7c-50ca-642e" name="Kroot shield" hidden="false" collective="false" import="true" targetId="deed-2eeb-9416-c241" type="selectionEntry">
<costs>
<cost name="pts" typeId="points" value="7.0"/>
</costs>
</entryLink>
<entryLink id="568b-5e90-dbbd-e9a6" name="Kroot pistol" hidden="false" collective="false" import="true" targetId="2570-b0fb-6422-ce3b" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6f49-9981-0d97-62f8" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5805-f29b-b9bc-25ee" type="max"/>
</constraints>
</entryLink>
<entryLink id="2aa9-db3e-78a3-5f50" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="1aa0-9f06-a58c-11bb" type="selectionEntryGroup"/>
<entryLink id="be5b-b07a-bbbe-8209" name="Packalpha" hidden="false" collective="false" import="true" targetId="cdf6-5b2c-5a95-2ae7" type="selectionEntry"/>
<entryLink id="b212-591f-74fb-2331" name="The Wisest Command" hidden="false" collective="false" import="true" targetId="55d4-4ffa-6262-8eb5" type="selectionEntry"/>
<entryLink id="4a98-e65e-b550-900b" name="Hunting Relics" hidden="false" collective="false" import="true" targetId="ca1b-9bf5-d93a-cb62" type="selectionEntryGroup"/>
<entryLink id="6e4d-3ca6-1166-661d" name="Scavenged weapon" hidden="false" collective="false" import="true" targetId="40d3-a140-7e04-b81c" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="3.0"/>
<cost name="pts" typeId="points" value="60.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="0152-6c53-4ac2-e140" name="Ghen Kath" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="2f25-7997-81a2-2f11" value="1.0">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="c702-d73b-dccf-5617" type="equalTo"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="6eb8-499d-2d06-74ab">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2285-3316-3260-f7bc" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="63a4-3f8b-3f18-0e82" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="-1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="2f25-7997-81a2-2f11" type="max"/>
</constraints>
<profiles>
<profile id="b7d8-b2db-1ffc-e515" name="Ghen Kath" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">7"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">2+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">3+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">5</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">3</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">3</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">5</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">8</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">4+</characteristic>
</characteristics>
</profile>
<profile id="408d-a354-53d3-b685" name="Amulet of the Hunter's Blood" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">This model has a 4+ invulnerable save.</characteristic>
</characteristics>
</profile>
<profile id="a2bd-3e7a-01a0-7e5b" name="Beast Hunter" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">Add 1 to wound rolls for attacks made by this model against BEAST or MONSTER units. In addition, re-roll 1s to wound if the target is a BEAST or MONSTER.</characteristic>
</characteristics>
</profile>
<profile id="c504-c711-0231-e142" name="Slayer of the Void-borne" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">When making an attack against a TYRANID unit, consider the Toughness characteristic of that unit as one point worse.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="f674-c1d7-419c-a837" name="Feral Hunters" hidden="false" targetId="28c4-91a6-24ca-e696" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="3208-b137-3434-18ec" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
<categoryLink id="70d9-8329-9e2c-07b4" name="Faction: Kroot" hidden="false" targetId="e1ae-392a-579a-4030" primary="false"/>
<categoryLink id="444c-f82d-e1d3-4136" name="Infantry" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="ad90-b781-d938-6ddd" name="Character" hidden="false" targetId="ef18-746a-369f-43a4" primary="false"/>
<categoryLink id="c4e1-8a72-6c6d-3066" name="Kindred" hidden="false" targetId="f756-858e-c8ad-1211" primary="false"/>
<categoryLink id="651c-4342-fa8d-55a6" name="Kroot Beast-hunter" hidden="false" targetId="5c7e-d04d-388e-ea7d" primary="false"/>
<categoryLink id="037a-1e44-16aa-a92a" name="Ghen Kath" hidden="false" targetId="f52c-e508-7cb8-a4e8" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="959d-d966-4875-cd2c" name="The Deboner" 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="95d4-04ae-fbbc-1688" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ee7f-0dff-2748-5427" type="max"/>
</constraints>
<profiles>
<profile id="61c3-df67-1ef7-4c01" name="The Deboner (ripping mode)" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">Melee</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Melee</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">+3</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-3</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">3</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">When attacking with this profile, you must subtract 1 from the hit roll.</characteristic>
</characteristics>
</profile>
<profile id="b1bf-82ec-d931-ec11" name="The Deboner (slashing mode)" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">Melee</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Melee</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">+1</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-2</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">1</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">When the bearer fights with this profile, make a number of hit rolls against one target unit equal to the number of models that the target unit has within 2" of the bearer.</characteristic>
</characteristics>
</profile>
<profile id="f41d-8b51-e02e-f040" name="The Deboner (ranged)" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">12"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Assault D6</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">+1</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-2</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">1</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">Blast</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="f40d-328d-e430-b8d6" name="Warlord" hidden="false" collective="false" import="true" targetId="d104-2a3c-4613-5866" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d6de-4cb7-3d33-cb14" type="atLeast"/>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="328c-af64-ef9f-bf4b" type="atLeast"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<infoLinks>
<infoLink id="464e-2123-53b4-c1ad" name="Bane of Monsters" hidden="false" targetId="27c0-a8bd-a2a6-684c" type="profile"/>
</infoLinks>
</entryLink>
<entryLink id="bd7c-f7c9-eedf-1930" name="The Wisest Command" hidden="false" collective="false" import="true" targetId="55d4-4ffa-6262-8eb5" type="selectionEntry">
<infoLinks>
<infoLink id="e092-e72e-a7d0-4387" name="Bane of Monsters" hidden="false" targetId="27c0-a8bd-a2a6-684c" type="profile"/>
</infoLinks>
</entryLink>
</entryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="4.0"/>
<cost name="pts" typeId="points" value="85.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="e0dd-5fe8-619c-1e79" name="Dahyak Grek" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="825d-20d1-04b2-367c" value="1.0">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="c702-d73b-dccf-5617" type="equalTo"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="6eb8-499d-2d06-74ab">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2285-3316-3260-f7bc" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="63a4-3f8b-3f18-0e82" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="-1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="825d-20d1-04b2-367c" type="max"/>
</constraints>
<profiles>
<profile id="525d-886b-aa5e-84aa" name="Concealed Booby Traps" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">Once per battle, at the end of your opponent's Movement phase, you can choose an enemy unit on the battlefield and roll a D6. Subtract 1 from the result if the unit is a CHARACTER but add 1 if the unit contains 10 or more models. On a 4+ that unit suffers D3 mortal wounds; on a 7+ it suffers D6 mortal wounds instead.</characteristic>
</characteristics>
</profile>
<profile id="941c-e848-a3bc-599f" name="Fieldcraft" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">Each time a ranged attack is allocated to this model while it is receiving the benefits of cover, add an additional 1 to any armour saving throw made against that attack.</characteristic>
</characteristics>
</profile>
<profile id="a69d-4d74-b5e9-f2c4" name="Quarry Can't Hide" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">Each time you select a target for a weapon this model is making an attack with, no enemy model may intercept the attack in any way</characteristic>
</characteristics>
</profile>
<profile id="f629-d0f4-dcf7-53b0" name="Tracker" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">During deployment, you can set up Dahyak Grekh in pursuit instead of placing him on the battlefield. At the end of any of your Movement phase, he can reveal his hiding place and attack - set him up anywhere on the battlefield that is more than 9" away from any enemy models.</characteristic>
</characteristics>
</profile>
<profile id="77f4-6fe6-1613-a9f0" name="Dahyak Grek" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">7"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">3+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">2+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">4</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">3</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">3</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">3</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">7</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">4+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="6344-4cdd-8b8e-2fca" name="Feral Hunters" hidden="false" targetId="28c4-91a6-24ca-e696" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="b409-359d-73e6-2ed8" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
<categoryLink id="fe67-9146-1e43-f2a8" name="Faction: Kroot" hidden="false" targetId="e1ae-392a-579a-4030" primary="false"/>
<categoryLink id="ea7b-cdc8-b644-cdec" name="Infantry" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="a3a0-8d53-83af-7c16" name="Character" hidden="false" targetId="ef18-746a-369f-43a4" primary="false"/>
<categoryLink id="37fb-a75e-0746-67db" name="Kindred" hidden="false" targetId="f756-858e-c8ad-1211" primary="false"/>
<categoryLink id="6956-0aee-e5dc-85a2" name="Dahyak Grek" hidden="false" targetId="73d4-91ae-96a2-e022" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="4b81-fa59-abbd-bb96" name="Dahyak's precision kroot rifle" 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="2ca3-0336-a841-8d91" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="12c1-9f29-686d-35f6" type="max"/>
</constraints>
<profiles>
<profile id="0ccb-3c14-82d0-18cc" name="Dahyak's precision kroot rifle" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">36"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Heavy 2</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">6</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-2</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">D3</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">This weapon may target a CHARACTER even if it is not the closest enemy unit. Each time you roll a wound roll of 6+ for this weapon, the target suffers a mortal wound in addition to any other damage. If the target is a BLACKSTONE CONSTRUCTS CONTROL unit, add 1 to the damage of the attack.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="45b8-d305-11da-4563" name="Warlord" hidden="false" collective="false" import="true" targetId="d104-2a3c-4613-5866" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d6de-4cb7-3d33-cb14" type="atLeast"/>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="328c-af64-ef9f-bf4b" type="atLeast"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<infoLinks>
<infoLink id="4598-b75b-d631-f205" name="Raider of the Black Fortress" hidden="false" targetId="f85a-bd52-d497-cd18" type="profile"/>
</infoLinks>
</entryLink>
<entryLink id="4971-9038-61c4-b80f" name="Kroot pistol" hidden="false" collective="false" import="true" targetId="2570-b0fb-6422-ce3b" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9b80-90c6-666a-1d25" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0a36-71d0-5e7a-8944" type="max"/>
</constraints>
</entryLink>
<entryLink id="0966-f382-ddbf-d250" name="The Wisest Command" hidden="false" collective="false" import="true" targetId="55d4-4ffa-6262-8eb5" type="selectionEntry">
<infoLinks>
<infoLink id="24ee-a480-be61-bc7e" name="Raider of the Black Fortress" hidden="false" targetId="f85a-bd52-d497-cd18" type="profile"/>
</infoLinks>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="60.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="3.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="c6a6-f73a-31c1-79da" name="Kroot Carnivores" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="increment" field="e356-c769-5920-6e14" value="6.0">
<conditions>
<condition field="selections" scope="c6a6-f73a-31c1-79da" value="10.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="model" type="greaterThan"/>
</conditions>
</modifier>
<modifier type="increment" field="e356-c769-5920-6e14" value="6.0">
<conditions>
<condition field="selections" scope="c6a6-f73a-31c1-79da" value="20.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="model" type="greaterThan"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="6eb8-499d-2d06-74ab">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2285-3316-3260-f7bc" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="63a4-3f8b-3f18-0e82" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<infoLinks>
<infoLink id="de9a-64e0-73e1-35f3" name="Feral Hunters" hidden="false" targetId="28c4-91a6-24ca-e696" type="rule"/>
<infoLink id="4e4c-fc5f-1da3-f684" name="Objective Secured" hidden="false" targetId="e07e-8dbf-0b15-7485" type="rule"/>
<infoLink id="843c-237b-bec3-e5c4" name="Stealthy Hunters" hidden="false" targetId="8c92-939c-286c-5f29" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="a55b-4a7b-25f9-d751" name="New CategoryLink" hidden="false" targetId="5d76b6f5-20ae-4d70-8f59-ade72a2add3a" primary="true"/>
<categoryLink id="d1cd-7024-a0ff-9c2e" name="Faction: Kroot" hidden="false" targetId="e1ae-392a-579a-4030" primary="false"/>
<categoryLink id="c015-6b55-017c-a956" name="Infantry" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="3f2a-1487-3035-f732" name="Kindred" hidden="false" targetId="f756-858e-c8ad-1211" primary="false"/>
<categoryLink id="fb30-2a05-7b18-267d" name="Kroot Carnivores" hidden="false" targetId="87ff-19cc-26a1-e1b5" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="423b-9508-f2c4-5ffb" name="10 - 30 Carnivores" hidden="false" collective="false" import="true" defaultSelectionEntryId="aa81-8e67-8026-746c">
<constraints>
<constraint field="selections" scope="parent" value="10.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f032-18ad-dfe6-2841" type="min"/>
</constraints>
<selectionEntries>
<selectionEntry id="aa81-8e67-8026-746c" name="Kroot Carnivore" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="10.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="52eb-b02b-13f2-d608" type="min"/>
<constraint field="selections" scope="parent" value="30.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8c7b-42e4-a5b1-8d4c" type="max"/>
</constraints>
<profiles>
<profile id="4d1b-6da9-11cb-850a" name="Kroot Carnivore" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">7"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">3+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">4+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">4</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">3</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">1</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">2</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">6</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">5+</characteristic>
</characteristics>
</profile>
</profiles>
<entryLinks>
<entryLink id="b1eb-89c5-bcb9-ec00" name="Kroot rifle" hidden="false" collective="false" import="true" targetId="1993-7aae-1a06-de95" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fca1-c6d3-1ad7-e822" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="249b-722f-918b-cf82" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="10.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="6.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="953f-189d-b1a7-2eb6" name="Kroot Beast-hunter on Knarloc" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="add" field="category" value="6eb8-499d-2d06-74ab">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2285-3316-3260-f7bc" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="b9f0-eab3-c33b-d3f0" value="1.0">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="63a4-3f8b-3f18-0e82" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="-1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b9f0-eab3-c33b-d3f0" type="max"/>
</constraints>
<profiles>
<profile id="0083-074e-3b06-ff32" name="Kroot Beast-hunter on Knarloc" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">12"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">2+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">3+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">4</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">4</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">4</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">4</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">7</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">4+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="f2d6-a4d0-d32a-5d14" name="Feral Hunters" hidden="false" targetId="28c4-91a6-24ca-e696" type="rule"/>
<infoLink id="ffe7-92c9-6538-3fb5" name="Beast Hunter" hidden="false" targetId="6e74-067a-7915-5749" type="profile"/>
<infoLink id="0d85-0a89-654f-3355" name="Thunderous Pounce" hidden="false" targetId="ac55-37d2-3758-44d8" type="profile"/>
<infoLink id="67f1-1b9b-f623-2ff7" name="Loping Stride" hidden="false" targetId="920b-33a9-9ebc-8677" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="f665-b9b0-adfa-448d" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
<categoryLink id="7abf-858b-aff4-5d8a" name="Faction: Kroot" hidden="false" targetId="e1ae-392a-579a-4030" primary="false"/>
<categoryLink id="b362-60ba-48c0-0f49" name="Cavalry" hidden="false" targetId="ad01-caec-17d9-cb8d" primary="false"/>
<categoryLink id="0b84-25e0-1716-c616" name="Character" hidden="false" targetId="ef18-746a-369f-43a4" primary="false"/>
<categoryLink id="b648-5baa-7471-ee87" name="Kindred" hidden="false" targetId="f756-858e-c8ad-1211" primary="false"/>
<categoryLink id="b957-2587-2440-a3d8" name="Kroot Beasts" hidden="false" targetId="5fb4-2e42-96b9-be92" primary="false"/>
<categoryLink id="18bb-8055-f7d9-8302" name="Kroot Beast-hunter" hidden="false" targetId="5c7e-d04d-388e-ea7d" primary="false"/>
<categoryLink id="52b8-9e24-9956-adfd" name="Kroot Beast-hunder on Knarloc" hidden="false" targetId="dd5d-6cbf-8cba-f8d7" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="9d31-d426-6f52-281f" name="Kroot pistol" hidden="false" collective="false" import="true" targetId="2570-b0fb-6422-ce3b" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2127-de96-4606-8faf" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="feb4-fb7b-73c2-1f7f" type="max"/>
</constraints>
</entryLink>
<entryLink id="99cd-7455-fdff-07d8" name="Kroot shield" hidden="false" collective="false" import="true" targetId="deed-2eeb-9416-c241" type="selectionEntry">
<costs>
<cost name="pts" typeId="points" value="7.0"/>
</costs>
</entryLink>
<entryLink id="d295-164d-5987-5f25" name="Beast-hunter weapon" hidden="false" collective="false" import="true" targetId="d15c-f9e1-2501-586b" type="selectionEntryGroup"/>
<entryLink id="c7f7-00f6-febf-d9f9" name="Beast-hunter Equipment" hidden="false" collective="false" import="true" targetId="7318-6bf8-5532-7fac" type="selectionEntryGroup"/>
<entryLink id="e033-4d89-28f8-97f5" name="Sharp beak and talons" hidden="false" collective="false" import="true" targetId="db77-4f7a-4fe5-3aff" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f511-8865-46df-71cd" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="75e3-6239-19b1-1def" type="max"/>
</constraints>
</entryLink>
<entryLink id="952d-29aa-e7d9-52d1" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="1aa0-9f06-a58c-11bb" type="selectionEntryGroup"/>
<entryLink id="a011-865e-a740-24c7" name="Warlord" hidden="false" collective="false" import="true" targetId="d104-2a3c-4613-5866" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d6de-4cb7-3d33-cb14" type="atLeast"/>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="328c-af64-ef9f-bf4b" type="atLeast"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</entryLink>
<entryLink id="acbc-e8f4-dede-8ac2" name="Seasoned Predator" hidden="false" collective="false" import="true" targetId="e17b-928a-fcf9-fa37" type="selectionEntry"/>
<entryLink id="2623-0b54-7fd3-ca24" name="The Wisest's Command" hidden="false" collective="false" import="true" targetId="55d4-4ffa-6262-8eb5" type="selectionEntry"/>
<entryLink id="2678-33d1-da33-441b" name="Hunting Relics" hidden="false" collective="false" import="true" targetId="ca1b-9bf5-d93a-cb62" type="selectionEntryGroup"/>
<entryLink id="b930-77cb-313a-af28" name="Scavenged weapon" hidden="false" collective="false" import="true" targetId="40d3-a140-7e04-b81c" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="3.0"/>
<cost name="pts" typeId="points" value="70.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="d7db-64db-a83b-ad1a" name="Kroot Beast-hunter" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="add" field="category" value="6eb8-499d-2d06-74ab">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2285-3316-3260-f7bc" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="63a4-3f8b-3f18-0e82" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="3c54-3a7a-bd4c-d530" name="Kroot Beast-hunter" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">7"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">2+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">3+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">4</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">3</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">3</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">4</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">7</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">4+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="633c-74a3-8d8c-0592" name="Feral Hunters" hidden="false" targetId="28c4-91a6-24ca-e696" type="rule"/>
<infoLink id="11b2-d46b-6997-3e28" name="Beast Hunter" hidden="false" targetId="6e74-067a-7915-5749" type="profile"/>
</infoLinks>