-
Notifications
You must be signed in to change notification settings - Fork 92
/
2021 - Hernkyn Yaegir.cat
1467 lines (1463 loc) · 114 KB
/
2021 - Hernkyn Yaegir.cat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<catalogue library="false" id="32db-dac-1f92-3151" name="Hernkyn Yaegir" gameSystemId="3b7e-7dab-f79f-2e74" gameSystemRevision="8" revision="5" battleScribeVersion="2.03" type="catalogue" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<rules>
<rule name="Resourceful" id="753a-590-3acb-9cdf" hidden="false">
<description>Keep a pool of Resourceful points. In the Ready Operatives step of each Turning Point after the first, add Resourceful points to your pool determined by the number of friendly HERNKYN YAEGIR operatives in the killzone within Engagement Range of an enemy operative. At the end of each Turning Point, discard the Resourceful points in your pool.
Operatives | Resourceful points
--- | ---
6+ | 2
3-5 | 1
0-2 | 0
Each time a friendly HERNKYN YAEGIR operative that isn't within Engagement Range of an enemy operative is activated, you can spend one of your Resourceful points to do one of the following effects:
- Add 1 to its APL.
- It regains D3+1 lost wounds.</description>
</rule>
<rule name="Dauntless Explorers" id="8ef6-5352-80f2-5fa9" hidden="false">
<description>If you are not using the Close Quarters rules, in the Set Up Operatives step, up to three friendly HERNKYN YAEGIR operatives can be set up with a Conceal order wholly within 2⬤ of your drop zone, and more than ⬛ from enemy operatives and your opponent's drop zone*. Operatives set up in this manner cannot make shooting attacks or perform the Charge action during the first Turning Point.
*In ordinary circumstances, this will always be more than ⬛ from your opponent's drop zone, but some mission maps may differ (e.g. Shadow Operations).
If you are using the Close Quarters rules, at the end of the Set Up Operatives step, in an order of your choice, up to three friendly HERNKYN YAEGIR operatives that have a Conceal order and are wholly within your drop zone can perform up to two different actions from the following for free:
- Normal Move
- Operate Hatch
- Dash
Operatives that do so cannot make shooting attacks or perform the Charge action during the first Turning Point.</description>
</rule>
</rules>
<sharedSelectionEntries>
<selectionEntry type="upgrade" import="true" name="Fists" hidden="false" id="a251-57c6-18ee-da6e" collective="false">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="3125-ce14-fffa-5e01" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
</constraints>
<profiles>
<profile name="⚔ Fists" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons" hidden="false" id="b0cf-2124-c990-182a">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">3</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">4+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">2/3</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">-</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Plasma knife" hidden="false" id="cd3f-6dcc-4933-23c9">
<profiles>
<profile name="⚔ Plasma knife" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons" hidden="false" id="dab4-5b00-13-1196">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">4+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">3/5</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Lethal 5+</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
<modifiers>
<modifier type="set" value="3+" field="32b4-9a0e-e740-6031">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="ancestor" childId="66e0-3e10-2d8b-6a38" shared="true"/>
</conditions>
</modifier>
</modifiers>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="d4ad-2b7-9d03-eec5"/>
</constraints>
<infoLinks>
<infoLink name="Lethal x" id="8ec3-9052-e3f8-694f" hidden="false" type="rule" targetId="be29-25db-e215-b3b0"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Bolt revolver" hidden="false" id="3693-e720-ed9f-53b4">
<profiles>
<profile name="⌖ Bolt revolver" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons" hidden="false" id="f554-71c0-788f-6ad7">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">4+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">3/5</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Rng ⬟</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Rng x" id="52e1-407f-5272-6fde" hidden="false" type="rule" targetId="92de-2ad3-3554-0b3e"/>
</infoLinks>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="1ee5-d809-e19-93f-max"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Bolt shotgun" hidden="false" id="e1df-457b-8da0-22ef">
<profiles>
<profile name="⌖ Bolt shotgun - Short range" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons" hidden="false" id="fc64-343d-12c8-167">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">3+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">4/4</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Rng ⬟</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
<modifiers>
<modifier type="set" value="2+" field="32b4-9a0e-e740-6031">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="ancestor" childId="66e0-3e10-2d8b-6a38" shared="true"/>
</conditions>
</modifier>
</modifiers>
</profile>
<profile name="⌖ Bolt shotgun - Long range" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons" hidden="false" id="8cd7-3af2-bc8b-377b">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">5+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">2/2</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">-</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
<modifiers>
<modifier type="set" value="4+" field="32b4-9a0e-e740-6031">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="ancestor" childId="66e0-3e10-2d8b-6a38" shared="true"/>
</conditions>
</modifier>
</modifiers>
</profile>
</profiles>
<infoLinks>
<infoLink name="Rng x" id="7b2c-5588-8723-efb2" hidden="false" type="rule" targetId="92de-2ad3-3554-0b3e"/>
</infoLinks>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="23e8-9dc9-50e9-57c-max"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Herkyn Yaegir 1 - Tough" hidden="false" id="1112-c148-c69c-ff65">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="f1ef-2bb2-0f12-c414" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
</constraints>
<profiles>
<profile name="Tough" typeId="5237-8077-f013-a2cc" typeName="Battle Honours" hidden="false" id="20f1-dc8e-4fcc-fe78">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">Each time a shooting attack is made against this operative, in the Roll Defence Dice step of that shooting attack, you can re-roll any or all of your defence dice results of 1.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Herkyn Yaegir 2 - Stubborn" hidden="false" id="fcee-6449-19f4-3a6e">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="bf88-b69d-d498-4ce0" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
</constraints>
<profiles>
<profile name="Stubborn" typeId="5237-8077-f013-a2cc" typeName="Battle Honours" hidden="false" id="caed-9ef0-dcc6-5fda">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">You can ignore any or all modifiers to this operative’s characteristics.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Herkyn Yaegir 4 - Aggressive Surveyor" hidden="false" id="0013-5239-6c25-276e">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="1545-9e6c-d2f5-b649" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
</constraints>
<profiles>
<profile name="Aggressive Surveyor" typeId="5237-8077-f013-a2cc" typeName="Battle Honours" hidden="false" id="857f-cdea-1e55-d7d8">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">In the first Turning Point, up to three friendly operatives with this Battle Honour that have been set up using the Dauntless Explorers ability are not restricted from making shooting attacks and/or performing the Charge action.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Herkyn Yaegir 5 - Canny" hidden="false" id="86af-b62f-1777-6269">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="44b3-28f8-ddea-0afc" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
</constraints>
<profiles>
<profile name="Canny" typeId="5237-8077-f013-a2cc" typeName="Battle Honours" hidden="false" id="2378-67aa-e10f-73b5">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">Each time you activate this operative, if you spend a Resourceful point, you can select both effects for this operative.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Herkyn Yaegir 6 - Unfazed" hidden="false" id="87d2-4648-3c7d-5da3">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="56ea-f0f4-14de-ab47" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
</constraints>
<profiles>
<profile name="Unfazed" typeId="5237-8077-f013-a2cc" typeName="Battle Honours" hidden="false" id="216f-23b6-354e-d792">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">Ignore Engagement Range when determining if this operative generates Resourceful points and when spending them.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Herkyn Yaegir 3 - Patient Hunter" hidden="false" id="4b1b-97a0-498c-b618">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="8f17-0124-b0a9-6c5a" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
</constraints>
<profiles>
<profile name="Patient Hunter" typeId="5237-8077-f013-a2cc" typeName="Battle Honours" hidden="false" id="2d49-44ba-a788-1c19">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">Each time this operative fights in combat or makes a shooting attack against an enemy operative that isn't ready, in the Roll Attack Dice step of that combat or shooting attack, before rolling your attack dice, you can retain one as a successful normal hit without rolling it.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</sharedSelectionEntries>
<categoryEntries>
<categoryEntry name="Votann" id="7175-47ca-4879-7e41" hidden="false"/>
<categoryEntry name="HERNKYN YAEGIR" id="429b-6b08-2a7f-ce46" hidden="false"/>
<categoryEntry name="Theyn" id="66e0-3e10-2d8b-6a38" hidden="false"/>
<categoryEntry name="Bladekyn" id="b62d-92fc-fc65-bfca" hidden="false"/>
<categoryEntry name="Bombast" id="81a8-b98a-3bc2-fe75" hidden="false"/>
<categoryEntry name="Ironbraek" id="3839-ec08-6877-1fda" hidden="false"/>
<categoryEntry name="Riflekyn" id="369-7403-9281-2000" hidden="false"/>
<categoryEntry name="Tracker" id="f36d-8eff-70c9-864f" hidden="false"/>
</categoryEntries>
<forceEntries>
<forceEntry name="Hernkyn Yaegir Kill Team" id="c09-22d7-244f-97cd" hidden="false">
<categoryLinks>
<categoryLink name="Configuration" hidden="false" id="85f3-6778-f2a0-63b6" targetId="fb89-efb1-54e4-59c5"/>
<categoryLink name="Reference" hidden="false" id="11be-bdc2-8a5c-9fd6" targetId="322e-38ea-bf3e-c785"/>
<categoryLink name="Operative" hidden="false" id="6ca7-5a73-bf0e-4938" targetId="f98b-0289-0f1f-b233">
<constraints>
<constraint type="min" value="9" field="selections" scope="parent" shared="true" id="1b40-517-e64d-49a2-min"/>
<constraint type="max" value="9" field="selections" scope="parent" shared="true" id="1b40-517-e64d-49a2-max"/>
</constraints>
</categoryLink>
<categoryLink name="Leader" hidden="false" id="9a99-6c65-be34-e921" targetId="3198-c1ce-dfd0-fb4f">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="83a9-a2b6-5a2f-3005-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="83a9-a2b6-5a2f-3005-max"/>
</constraints>
</categoryLink>
<categoryLink name="Bladekyn" hidden="false" id="b3-9a83-b646-14e4" targetId="b62d-92fc-fc65-bfca">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="277b-8db9-e2e8-e85a-max"/>
</constraints>
</categoryLink>
<categoryLink name="Bombast" hidden="false" id="2d88-ac0b-dea1-3e62" targetId="81a8-b98a-3bc2-fe75">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="e854-1b50-5635-9190-max"/>
</constraints>
</categoryLink>
<categoryLink name="Gunner" hidden="false" id="ca2c-1a9a-a80c-f11a" targetId="ee8c-cc44-acc3-40f0">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="55df-8463-9f7e-73aa-max"/>
</constraints>
</categoryLink>
<categoryLink name="Ironbraek" hidden="false" id="90f9-a8c5-f19b-9577" targetId="3839-ec08-6877-1fda">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="f2ee-35f5-10bb-bc16-max"/>
</constraints>
</categoryLink>
<categoryLink name="Riflekyn" hidden="false" id="3d11-4587-e00c-91f4" targetId="369-7403-9281-2000">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="a633-9fed-877-9dca-max"/>
</constraints>
</categoryLink>
<categoryLink name="Tracker" hidden="false" id="8625-d1c3-ac16-529" targetId="f36d-8eff-70c9-864f">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="b141-d557-86bd-2c2d-max"/>
</constraints>
</categoryLink>
<categoryLink name="Warrior" hidden="false" id="3a94-d3-ad40-e8a4" targetId="b9a4-31a5-b4ed-b4c7"/>
</categoryLinks>
</forceEntry>
</forceEntries>
<sharedProfiles>
<profile name="Shape Reference" typeId="350c-2ddd-8a24-377b" typeName="Operative" hidden="false" id="cd61-1253-1c19-2f2a">
<characteristics>
<characteristic name="M" typeId="c36f-3952-a91d-5a06">▲</characteristic>
<characteristic name="APL" typeId="c84a-a042-6fe6-519b">⬤</characteristic>
<characteristic name="GA" typeId="7a85-5063-6d1a-2a0b">⬛</characteristic>
<characteristic name="DF" typeId="4a18-41c1-51f2-c88c">⬟</characteristic>
<characteristic name="SV" typeId="dd03-76d2-dda8-eca2">⌖</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">⚔</characteristic>
</characteristics>
</profile>
</sharedProfiles>
<selectionEntries>
<selectionEntry type="model" import="true" name="Yaegir Theyn" hidden="false" id="5eb7-da14-2fa6-81a9">
<categoryLinks>
<categoryLink targetId="3198-c1ce-dfd0-fb4f" id="f663-8ffe-9f95-a8ef" primary="true" name="Leader"/>
<categoryLink targetId="429b-6b08-2a7f-ce46" id="65b1-2c74-5aed-a09d" primary="false" name="HERNKYN YAEGIR"/>
<categoryLink targetId="66e0-3e10-2d8b-6a38" id="5996-5556-ddf7-b8ec" primary="false" name="Theyn"/>
<categoryLink targetId="7175-47ca-4879-7e41" id="adfb-9b1a-b5-8d52" primary="false" name="Votann"/>
</categoryLinks>
<profiles>
<profile name="Yaegir Theyn" typeId="350c-2ddd-8a24-377b" typeName="Operative" hidden="false" id="8a12-5174-4462-d39">
<characteristics>
<characteristic name="M" typeId="c36f-3952-a91d-5a06">2⬤</characteristic>
<characteristic name="APL" typeId="c84a-a042-6fe6-519b">2</characteristic>
<characteristic name="GA" typeId="7a85-5063-6d1a-2a0b">1</characteristic>
<characteristic name="DF" typeId="4a18-41c1-51f2-c88c">3</characteristic>
<characteristic name="SV" typeId="dd03-76d2-dda8-eca2">4+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">9</characteristic>
</characteristics>
</profile>
<profile name="Veteran Adventurer" typeId="f52d-76ec-b279-093b" typeName="Abilities" hidden="false" id="d222-82e2-76de-4296">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">In the Ready Operatives step of each Turning Point after the first, if this operative isn't within Engagement Range of an enemy operative, add 1 Resourceful point (pg 58) to your pool.</characteristic>
</characteristics>
</profile>
<profile name="Outright Conviction" typeId="f52d-76ec-b279-093b" typeName="Abilities" hidden="false" id="a219-4595-6c1f-7f79">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">The first time this operative would be incapacitated during the battle, it is left with 1 wound remaining instead and cannot be incapacitated for the remainder of that action. All remaining attack dice are discarded (including yours if this operative is fighting in combat).</characteristic>
</characteristics>
</profile>
</profiles>
<entryLinks>
<entryLink import="true" name="Plasma knife" hidden="false" id="e7f4-b9ec-72ec-5261" type="selectionEntry" targetId="cd3f-6dcc-4933-23c9">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="7fe7-a09f-4a82-e631"/>
</constraints>
</entryLink>
<entryLink import="true" name="Bolt shotgun" hidden="false" id="28f7-2412-fcf5-7984" type="selectionEntry" targetId="e1df-457b-8da0-22ef">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="6991-7ef7-9f42-9f22"/>
</constraints>
</entryLink>
<entryLink import="true" name="XP" hidden="false" id="edc2-9626-be7a-2b2c" type="selectionEntry" targetId="82af-b9b8-518f-aaf1"/>
<entryLink import="true" name="Battle Scars" hidden="false" id="1bb3-5956-52e8-ec3c" type="selectionEntryGroup" targetId="d5ae-a34b-acc2-dfe7"/>
<entryLink import="true" name="Equipment" hidden="false" id="dcc-f725-1b7-980e" type="selectionEntryGroup" targetId="a1af-bb54-30b1-65e9"/>
<entryLink import="true" name="Specialism" hidden="false" id="fcaa-115b-3275-4b2c" type="selectionEntryGroup" targetId="781b-aaf6-e787-f825"/>
<entryLink import="true" name="Battle Honours - Combat" hidden="false" id="7b51-386c-0feb-7f53" type="selectionEntryGroup" targetId="ae2f-d9f3-a27c-cca6">
<entryLinks>
<entryLink import="true" name="Herkyn Yaegir 1 - Tough" hidden="false" id="3c01-6245-b392-4685" type="selectionEntry" targetId="1112-c148-c69c-ff65"/>
<entryLink import="true" name="Herkyn Yaegir 2 - Stubborn" hidden="false" id="648c-ff8f-ced0-be3f" type="selectionEntry" targetId="fcee-6449-19f4-3a6e"/>
<entryLink import="true" name="Herkyn Yaegir 3 - Patient Hunter" hidden="false" id="6eb6-8775-11df-df63" type="selectionEntry" targetId="4b1b-97a0-498c-b618"/>
<entryLink import="true" name="Herkyn Yaegir 4 - Aggressive Surveyor" hidden="false" id="c380-f93e-5aaf-50c0" type="selectionEntry" targetId="0013-5239-6c25-276e"/>
<entryLink import="true" name="Herkyn Yaegir 5 - Canny" hidden="false" id="b122-3ca4-d9e7-a45e" type="selectionEntry" targetId="86af-b62f-1777-6269"/>
<entryLink import="true" name="Herkyn Yaegir 6 - Unfazed" hidden="false" id="6849-a81f-2b4a-b2a6" type="selectionEntry" targetId="87d2-4648-3c7d-5da3"/>
</entryLinks>
</entryLink>
<entryLink import="true" name="Battle Honours - Marksman" hidden="false" id="a42d-228e-2b97-aff1" type="selectionEntryGroup" targetId="e84e-ae34-82a8-57b0">
<entryLinks>
<entryLink import="true" name="Herkyn Yaegir 1 - Tough" hidden="false" id="3289-4c3f-a965-ea97" type="selectionEntry" targetId="1112-c148-c69c-ff65"/>
<entryLink import="true" name="Herkyn Yaegir 2 - Stubborn" hidden="false" id="1b20-c68d-af93-f042" type="selectionEntry" targetId="fcee-6449-19f4-3a6e"/>
<entryLink import="true" name="Herkyn Yaegir 3 - Patient Hunter" hidden="false" id="8f85-1581-c272-d930" type="selectionEntry" targetId="4b1b-97a0-498c-b618"/>
<entryLink import="true" name="Herkyn Yaegir 4 - Aggressive Surveyor" hidden="false" id="1c99-0970-7553-8b1c" type="selectionEntry" targetId="0013-5239-6c25-276e"/>
<entryLink import="true" name="Herkyn Yaegir 5 - Canny" hidden="false" id="68da-a6f8-b376-5f9e" type="selectionEntry" targetId="86af-b62f-1777-6269"/>
<entryLink import="true" name="Herkyn Yaegir 6 - Unfazed" hidden="false" id="e7a1-829e-759a-cacd" type="selectionEntry" targetId="87d2-4648-3c7d-5da3"/>
</entryLinks>
</entryLink>
<entryLink import="true" name="Battle Honours - Scout" hidden="false" id="84ac-36fe-d4e5-8230" type="selectionEntryGroup" targetId="94bd-d409-fda3-9f9f">
<entryLinks>
<entryLink import="true" name="Herkyn Yaegir 1 - Tough" hidden="false" id="7a0b-7ce9-b0a6-05f4" type="selectionEntry" targetId="1112-c148-c69c-ff65"/>
<entryLink import="true" name="Herkyn Yaegir 2 - Stubborn" hidden="false" id="d478-2f88-ce4c-3dfe" type="selectionEntry" targetId="fcee-6449-19f4-3a6e"/>
<entryLink import="true" name="Herkyn Yaegir 3 - Patient Hunter" hidden="false" id="6dad-7ff8-1749-6dba" type="selectionEntry" targetId="4b1b-97a0-498c-b618"/>
<entryLink import="true" name="Herkyn Yaegir 4 - Aggressive Surveyor" hidden="false" id="6d99-106c-db04-3c91" type="selectionEntry" targetId="0013-5239-6c25-276e"/>
<entryLink import="true" name="Herkyn Yaegir 5 - Canny" hidden="false" id="7a88-79d1-5f94-0289" type="selectionEntry" targetId="86af-b62f-1777-6269"/>
<entryLink import="true" name="Herkyn Yaegir 6 - Unfazed" hidden="false" id="b8ce-2520-3ce4-0241" type="selectionEntry" targetId="87d2-4648-3c7d-5da3"/>
</entryLinks>
</entryLink>
<entryLink import="true" name="Battle Honours - Staunch" hidden="false" id="da65-5d99-4119-16e0" type="selectionEntryGroup" targetId="93ec-2874-675e-b46e">
<entryLinks>
<entryLink import="true" name="Herkyn Yaegir 1 - Tough" hidden="false" id="2af8-25bd-055f-7a5c" type="selectionEntry" targetId="1112-c148-c69c-ff65"/>
<entryLink import="true" name="Herkyn Yaegir 2 - Stubborn" hidden="false" id="ba0e-525a-2f21-1d8c" type="selectionEntry" targetId="fcee-6449-19f4-3a6e"/>
<entryLink import="true" name="Herkyn Yaegir 3 - Patient Hunter" hidden="false" id="e7af-1f9d-2672-1b62" type="selectionEntry" targetId="4b1b-97a0-498c-b618"/>
<entryLink import="true" name="Herkyn Yaegir 4 - Aggressive Surveyor" hidden="false" id="0834-dc82-b759-8d08" type="selectionEntry" targetId="0013-5239-6c25-276e"/>
<entryLink import="true" name="Herkyn Yaegir 5 - Canny" hidden="false" id="5358-094a-bc8d-cda2" type="selectionEntry" targetId="86af-b62f-1777-6269"/>
<entryLink import="true" name="Herkyn Yaegir 6 - Unfazed" hidden="false" id="0095-a973-45bb-247a" type="selectionEntry" targetId="87d2-4648-3c7d-5da3"/>
</entryLinks>
</entryLink>
</entryLinks>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Bolt revolver" hidden="false" id="8470-31e6-e2fb-3bca">
<profiles>
<profile name="⌖ Bolt revolver" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons" hidden="false" id="7168-55a4-f2aa-5b94">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">3+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">3/5</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Rng ⬟, Lethal 5+</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Rng x" id="c154-226a-6555-c015" hidden="false" type="rule" targetId="92de-2ad3-3554-0b3e"/>
<infoLink name="Lethal x" id="5798-8347-56d3-13ee" hidden="false" type="rule" targetId="be29-25db-e215-b3b0"/>
</infoLinks>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="f28f-8812-8d14-40cc-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="f28f-8812-8d14-40cc-max"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="model" import="true" name="Yaegir Bladekyn" hidden="false" id="1caa-b173-dc06-2c43">
<categoryLinks>
<categoryLink targetId="f98b-0289-0f1f-b233" id="d0eb-739d-a24c-42b4" primary="true" name="Operative"/>
<categoryLink targetId="429b-6b08-2a7f-ce46" id="8f6f-83d9-facf-c5f7" primary="false" name="HERNKYN YAEGIR"/>
<categoryLink targetId="7175-47ca-4879-7e41" id="6fa8-5fb1-3e7e-9da" primary="false" name="Votann"/>
<categoryLink targetId="b62d-92fc-fc65-bfca" id="5c02-cfdd-8ad9-8f15" primary="false" name="Bladekyn"/>
</categoryLinks>
<profiles>
<profile name="Yaegir Bladekyn" typeId="350c-2ddd-8a24-377b" typeName="Operative" hidden="false" id="3716-864a-9244-50fd">
<characteristics>
<characteristic name="M" typeId="c36f-3952-a91d-5a06">2⬤</characteristic>
<characteristic name="APL" typeId="c84a-a042-6fe6-519b">2</characteristic>
<characteristic name="GA" typeId="7a85-5063-6d1a-2a0b">1</characteristic>
<characteristic name="DF" typeId="4a18-41c1-51f2-c88c">3</characteristic>
<characteristic name="SV" typeId="dd03-76d2-dda8-eca2">4+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">8</characteristic>
</characteristics>
</profile>
<profile name="Hunter" typeId="f52d-76ec-b279-093b" typeName="Abilities" hidden="false" id="14be-7611-4ec-e013">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">This operative can perform the Charge action while it has a Conceal order.</characteristic>
</characteristics>
</profile>
<profile name="Irrepressible Hardiness" typeId="f52d-76ec-b279-093b" typeName="Abilities" hidden="false" id="da0c-7eca-c096-9d24">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">If this operative is incapacitated in combat, you can strike with one of your remaining attack dice before it's removed from the killzone.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Throwing plasma knife" hidden="false" id="e387-7322-2f2f-5773">
<profiles>
<profile name="⌖ Throwing plasma knife" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons" hidden="false" id="2b93-2da3-816-4abd">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">3+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">3/5</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Rng ⬟, Lethal 5+, Limited, Silent</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="58fc-3e4-5e31-f582-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="58fc-3e4-5e31-f582-max"/>
</constraints>
<infoLinks>
<infoLink name="Rng x" id="381-633-12f6-61ee" hidden="false" type="rule" targetId="92de-2ad3-3554-0b3e"/>
<infoLink name="Lethal x" id="9aac-6dc5-adbd-ea59" hidden="false" type="rule" targetId="be29-25db-e215-b3b0"/>
<infoLink name="Limited" id="d148-b2b6-dbab-a5be" hidden="false" type="rule" targetId="1eb0-6ad3-3e5a-d8ec"/>
<infoLink name="Silent" id="76ca-a258-b04e-4b9b" hidden="false" type="rule" targetId="ce60-8109-69c9-3908"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Dual plasma knives" hidden="false" id="5909-e928-af6-7b2">
<profiles>
<profile name="⚔ Dual plasma knives" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons" hidden="false" id="84ba-588b-812b-6daf">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">3+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">3/5</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Lethal 5+, Relentless</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Lethal x" id="2511-7543-5f4a-6be4" hidden="false" type="rule" targetId="be29-25db-e215-b3b0"/>
<infoLink name="Relentless" id="6608-28da-584e-21b" hidden="false" type="rule" targetId="1875-9b07-2a07-aacc"/>
</infoLinks>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="60c5-f259-fed6-8724-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="60c5-f259-fed6-8724-max"/>
</constraints>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink import="true" name="XP" hidden="false" id="4b96-51d-a63b-3702" type="selectionEntry" targetId="82af-b9b8-518f-aaf1"/>
<entryLink import="true" name="Battle Scars" hidden="false" id="cde2-1e5c-5139-84c6" type="selectionEntryGroup" targetId="d5ae-a34b-acc2-dfe7"/>
<entryLink import="true" name="Equipment" hidden="false" id="230b-cfe1-6900-2a3" type="selectionEntryGroup" targetId="a1af-bb54-30b1-65e9"/>
<entryLink import="true" name="Specialism" hidden="false" id="7a2-3a00-a968-d67c" type="selectionEntryGroup" targetId="781b-aaf6-e787-f825"/>
<entryLink import="true" name="Battle Honours - Combat" hidden="false" id="c496-5c4d-96ce-a576" type="selectionEntryGroup" targetId="ae2f-d9f3-a27c-cca6">
<entryLinks>
<entryLink import="true" name="Herkyn Yaegir 1 - Tough" hidden="false" id="e6a8-c1b0-7302-84c8" type="selectionEntry" targetId="1112-c148-c69c-ff65"/>
<entryLink import="true" name="Herkyn Yaegir 2 - Stubborn" hidden="false" id="2f8b-9d5d-bc3c-8ea5" type="selectionEntry" targetId="fcee-6449-19f4-3a6e"/>
<entryLink import="true" name="Herkyn Yaegir 3 - Patient Hunter" hidden="false" id="a345-f698-376e-0bd3" type="selectionEntry" targetId="4b1b-97a0-498c-b618"/>
<entryLink import="true" name="Herkyn Yaegir 4 - Aggressive Surveyor" hidden="false" id="fc78-2bbf-022a-70fe" type="selectionEntry" targetId="0013-5239-6c25-276e"/>
<entryLink import="true" name="Herkyn Yaegir 5 - Canny" hidden="false" id="d4ec-a949-c00a-0cb6" type="selectionEntry" targetId="86af-b62f-1777-6269"/>
<entryLink import="true" name="Herkyn Yaegir 6 - Unfazed" hidden="false" id="3fbe-8d3c-96c1-37dc" type="selectionEntry" targetId="87d2-4648-3c7d-5da3"/>
</entryLinks>
</entryLink>
<entryLink import="true" name="Battle Honours - Scout" hidden="false" id="8695-e873-be50-1b2f" type="selectionEntryGroup" targetId="94bd-d409-fda3-9f9f">
<entryLinks>
<entryLink import="true" name="Herkyn Yaegir 1 - Tough" hidden="false" id="6cea-33e4-9db8-0414" type="selectionEntry" targetId="1112-c148-c69c-ff65"/>
<entryLink import="true" name="Herkyn Yaegir 2 - Stubborn" hidden="false" id="e90b-cd1b-1e2a-ad29" type="selectionEntry" targetId="fcee-6449-19f4-3a6e"/>
<entryLink import="true" name="Herkyn Yaegir 3 - Patient Hunter" hidden="false" id="358f-b427-c5f9-8f9e" type="selectionEntry" targetId="4b1b-97a0-498c-b618"/>
<entryLink import="true" name="Herkyn Yaegir 4 - Aggressive Surveyor" hidden="false" id="ebe3-3c9b-8a07-0a8c" type="selectionEntry" targetId="0013-5239-6c25-276e"/>
<entryLink import="true" name="Herkyn Yaegir 5 - Canny" hidden="false" id="b1b8-a9d4-ad25-ce62" type="selectionEntry" targetId="86af-b62f-1777-6269"/>
<entryLink import="true" name="Herkyn Yaegir 6 - Unfazed" hidden="false" id="a57e-05ec-bba0-da6d" type="selectionEntry" targetId="87d2-4648-3c7d-5da3"/>
</entryLinks>
</entryLink>
<entryLink import="true" name="Battle Honours - Staunch" hidden="false" id="63d8-4917-cdf5-6ffe" type="selectionEntryGroup" targetId="93ec-2874-675e-b46e">
<entryLinks>
<entryLink import="true" name="Herkyn Yaegir 1 - Tough" hidden="false" id="bad8-737d-4021-04b3" type="selectionEntry" targetId="1112-c148-c69c-ff65"/>
<entryLink import="true" name="Herkyn Yaegir 2 - Stubborn" hidden="false" id="0707-cbea-7f0a-d736" type="selectionEntry" targetId="fcee-6449-19f4-3a6e"/>
<entryLink import="true" name="Herkyn Yaegir 3 - Patient Hunter" hidden="false" id="659b-d90b-1610-da93" type="selectionEntry" targetId="4b1b-97a0-498c-b618"/>
<entryLink import="true" name="Herkyn Yaegir 4 - Aggressive Surveyor" hidden="false" id="9fa7-e93b-687c-53e6" type="selectionEntry" targetId="0013-5239-6c25-276e"/>
<entryLink import="true" name="Herkyn Yaegir 5 - Canny" hidden="false" id="01ca-8d7c-316f-1de5" type="selectionEntry" targetId="86af-b62f-1777-6269"/>
<entryLink import="true" name="Herkyn Yaegir 6 - Unfazed" hidden="false" id="cb6b-268f-9ab6-9d96" type="selectionEntry" targetId="87d2-4648-3c7d-5da3"/>
</entryLinks>
</entryLink>
</entryLinks>
</selectionEntry>
<selectionEntry type="model" import="true" name="Yaegir Bombast" hidden="false" id="33a7-796-e100-f688">
<categoryLinks>
<categoryLink targetId="f98b-0289-0f1f-b233" id="d1f-d05-c285-cf5c" primary="true" name="Operative"/>
<categoryLink targetId="429b-6b08-2a7f-ce46" id="fb6c-3e6d-266e-1d0b" primary="false" name="HERNKYN YAEGIR"/>
<categoryLink targetId="7175-47ca-4879-7e41" id="3886-6827-e344-2a7d" primary="false" name="Votann"/>
<categoryLink targetId="81a8-b98a-3bc2-fe75" id="6a6b-d970-556f-8d8a" primary="false" name="Bombast"/>
</categoryLinks>
<profiles>
<profile name="Yaegir Bombast" typeId="350c-2ddd-8a24-377b" typeName="Operative" hidden="false" id="a136-e517-8076-e1ee">
<characteristics>
<characteristic name="M" typeId="c36f-3952-a91d-5a06">2⬤</characteristic>
<characteristic name="APL" typeId="c84a-a042-6fe6-519b">2</characteristic>
<characteristic name="GA" typeId="7a85-5063-6d1a-2a0b">1</characteristic>
<characteristic name="DF" typeId="4a18-41c1-51f2-c88c">3</characteristic>
<characteristic name="SV" typeId="dd03-76d2-dda8-eca2">4+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">8</characteristic>
</characteristics>
</profile>
<profile name="Wroughtlock Negotiation" typeId="f52d-76ec-b279-093b" typeName="Abilities" hidden="false" id="5dd4-b1c2-7191-4013">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">At the start of the Firefight phase, before operatives are activated, this operative can perform a free Shoot action (if it has a Conceal order, you can change it to Engage to do so).</characteristic>
</characteristics>
</profile>
<profile name="Brazen Killer" typeId="f52d-76ec-b279-093b" typeName="Abilities" hidden="false" id="cd1f-17a-b7b-3b23">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">Each time this operative incapacitates an enemy operative, roll one D6 separately for each other enemy operative Visible to and within ⬤ of that enemy operative. If the result is greater than that other enemy operative's APL, subtract 1 from its APL.</characteristic>
</characteristics>
</profile>
</profiles>
<entryLinks>
<entryLink import="true" name="Fists" hidden="false" id="f1fc-3c0b-6139-144b" type="selectionEntry" targetId="a251-57c6-18ee-da6e">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="3d86-2eb8-cf90-4704"/>
</constraints>
</entryLink>
<entryLink import="true" name="XP" hidden="false" id="62d7-5768-86a2-e18b" type="selectionEntry" targetId="82af-b9b8-518f-aaf1"/>
<entryLink import="true" name="Battle Scars" hidden="false" id="9d3e-b722-51bc-64d1" type="selectionEntryGroup" targetId="d5ae-a34b-acc2-dfe7"/>
<entryLink import="true" name="Equipment" hidden="false" id="3fbe-8766-68f8-88fc" type="selectionEntryGroup" targetId="a1af-bb54-30b1-65e9"/>
<entryLink import="true" name="Specialism" hidden="false" id="18b8-628e-e106-3374" type="selectionEntryGroup" targetId="781b-aaf6-e787-f825"/>
<entryLink import="true" name="Battle Honours - Marksman" hidden="false" id="2501-b6da-27c2-5173" type="selectionEntryGroup" targetId="e84e-ae34-82a8-57b0">
<entryLinks>
<entryLink import="true" name="Herkyn Yaegir 1 - Tough" hidden="false" id="8092-1098-77a1-0bd7" type="selectionEntry" targetId="1112-c148-c69c-ff65"/>
<entryLink import="true" name="Herkyn Yaegir 2 - Stubborn" hidden="false" id="f959-ec57-7f1b-9a97" type="selectionEntry" targetId="fcee-6449-19f4-3a6e"/>
<entryLink import="true" name="Herkyn Yaegir 3 - Patient Hunter" hidden="false" id="baa8-53fb-f493-eedb" type="selectionEntry" targetId="4b1b-97a0-498c-b618"/>
<entryLink import="true" name="Herkyn Yaegir 4 - Aggressive Surveyor" hidden="false" id="689f-be94-a165-c557" type="selectionEntry" targetId="0013-5239-6c25-276e"/>
<entryLink import="true" name="Herkyn Yaegir 5 - Canny" hidden="false" id="1b39-5276-8ef2-c693" type="selectionEntry" targetId="86af-b62f-1777-6269"/>
<entryLink import="true" name="Herkyn Yaegir 6 - Unfazed" hidden="false" id="b54f-b76b-f6c5-08f8" type="selectionEntry" targetId="87d2-4648-3c7d-5da3"/>
</entryLinks>
</entryLink>
<entryLink import="true" name="Battle Honours - Staunch" hidden="false" id="1858-23bb-09a7-d037" type="selectionEntryGroup" targetId="93ec-2874-675e-b46e">
<entryLinks>
<entryLink import="true" name="Herkyn Yaegir 1 - Tough" hidden="false" id="eb4c-68ec-099b-c2e9" type="selectionEntry" targetId="1112-c148-c69c-ff65"/>
<entryLink import="true" name="Herkyn Yaegir 2 - Stubborn" hidden="false" id="2ed0-4103-e54d-dae7" type="selectionEntry" targetId="fcee-6449-19f4-3a6e"/>
<entryLink import="true" name="Herkyn Yaegir 3 - Patient Hunter" hidden="false" id="2c7b-9057-02aa-80f2" type="selectionEntry" targetId="4b1b-97a0-498c-b618"/>
<entryLink import="true" name="Herkyn Yaegir 4 - Aggressive Surveyor" hidden="false" id="e000-b5f8-4132-fa77" type="selectionEntry" targetId="0013-5239-6c25-276e"/>
<entryLink import="true" name="Herkyn Yaegir 5 - Canny" hidden="false" id="5055-75fc-4459-2ab6" type="selectionEntry" targetId="86af-b62f-1777-6269"/>
<entryLink import="true" name="Herkyn Yaegir 6 - Unfazed" hidden="false" id="80a3-fc92-5168-14b3" type="selectionEntry" targetId="87d2-4648-3c7d-5da3"/>
</entryLinks>
</entryLink>
</entryLinks>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Wroughtlock revolvers" hidden="false" id="db12-f8f7-76db-487a">
<profiles>
<profile name="⌖ Wroughtlock revolvers" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons" hidden="false" id="4882-dec5-7e14-6d64">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">3+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">3/5</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Rng ⬟+⬛, Balanced, Lethal 5+</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Rng x" id="6fef-59c5-9766-c07e" hidden="false" type="rule" targetId="92de-2ad3-3554-0b3e"/>
<infoLink name="Balanced" id="77ca-7535-6841-9b3b" hidden="false" type="rule" targetId="547c-e6e5-64d4-a519"/>
<infoLink name="Lethal x" id="a672-64a-b282-c86e" hidden="false" type="rule" targetId="be29-25db-e215-b3b0"/>
</infoLinks>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="ac95-b51f-09b9-dd99"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="d85f-04ba-ad23-8fb2"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="model" import="true" name="Yaegir Gunner" hidden="false" id="df2d-d630-4db9-9343">
<categoryLinks>
<categoryLink targetId="f98b-0289-0f1f-b233" id="d25e-5f4c-bcc3-98cc" primary="true" name="Operative"/>
<categoryLink targetId="ee8c-cc44-acc3-40f0" id="d2bc-31a6-509f-760a" primary="false" name="Gunner"/>
<categoryLink targetId="7175-47ca-4879-7e41" id="e2b3-2d14-1c2a-f4d3" primary="false" name="Votann"/>
<categoryLink targetId="429b-6b08-2a7f-ce46" id="344a-b954-d0c3-4eb2" primary="false" name="HERNKYN YAEGIR"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="Fists" hidden="false" id="760e-9416-7586-45b7" type="selectionEntry" targetId="a251-57c6-18ee-da6e">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="656c-7aec-3734-f143"/>
</constraints>
</entryLink>
<entryLink import="true" name="XP" hidden="false" id="ccb4-a90b-7a1f-bf6" type="selectionEntry" targetId="82af-b9b8-518f-aaf1"/>
<entryLink import="true" name="Battle Scars" hidden="false" id="e524-a9e3-9864-40ff" type="selectionEntryGroup" targetId="d5ae-a34b-acc2-dfe7"/>
<entryLink import="true" name="Equipment" hidden="false" id="7df9-d048-c48-76a4" type="selectionEntryGroup" targetId="a1af-bb54-30b1-65e9"/>
<entryLink import="true" name="Specialism" hidden="false" id="a267-935-8641-b10" type="selectionEntryGroup" targetId="781b-aaf6-e787-f825"/>
<entryLink import="true" name="Battle Honours - Marksman" hidden="false" id="968e-605f-0620-0f5c" type="selectionEntryGroup" targetId="e84e-ae34-82a8-57b0">
<entryLinks>
<entryLink import="true" name="Herkyn Yaegir 1 - Tough" hidden="false" id="0a7c-acaf-89b7-48ea" type="selectionEntry" targetId="1112-c148-c69c-ff65"/>
<entryLink import="true" name="Herkyn Yaegir 2 - Stubborn" hidden="false" id="bad5-c55a-1a61-c393" type="selectionEntry" targetId="fcee-6449-19f4-3a6e"/>
<entryLink import="true" name="Herkyn Yaegir 3 - Patient Hunter" hidden="false" id="fca9-dcd7-2e5f-4861" type="selectionEntry" targetId="4b1b-97a0-498c-b618"/>
<entryLink import="true" name="Herkyn Yaegir 4 - Aggressive Surveyor" hidden="false" id="ae6e-5278-4bbf-3be7" type="selectionEntry" targetId="0013-5239-6c25-276e"/>
<entryLink import="true" name="Herkyn Yaegir 5 - Canny" hidden="false" id="3063-b91c-7786-afbd" type="selectionEntry" targetId="86af-b62f-1777-6269"/>
<entryLink import="true" name="Herkyn Yaegir 6 - Unfazed" hidden="false" id="ad00-b2d2-bf0f-0de5" type="selectionEntry" targetId="87d2-4648-3c7d-5da3"/>
</entryLinks>
</entryLink>
</entryLinks>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="APM Launcher" hidden="false" id="ff21-beb9-6b38-8ec3">
<profiles>
<profile name="⌖ APM Launcher - Armour piercing" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons" hidden="false" id="d2e7-b3d4-81b5-d906">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">5</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">4+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">4/5</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">AP1, Cumbersome*</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
<profile name="⌖ APM Launcher - Breaching" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons" hidden="false" id="4e38-82ae-5b90-d94c">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">5</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">4+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">3/5</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Blast ⬤, Cumbersome*</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
<profile name="⌖ APM Launcher - High explosive" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons" hidden="false" id="395e-f70e-2ef5-7bf4">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">5</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">4+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">2/4</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Blast ⬛, Cumbersome*</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<rules>
<rule name="*Cumbersome" id="7a8-a56d-2670-946a" hidden="false">
<description>An operative cannot move more 3⬤ in the same activation in which it performs the Shoot action with this ranged weapon.</description>
</rule>
</rules>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="dfe7-b4e3-9720-7127"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="0556-7ba2-191c-b137"/>
</constraints>
</selectionEntry>
</selectionEntries>
<profiles>
<profile name="Yaegir Gunner" typeId="350c-2ddd-8a24-377b" typeName="Operative" hidden="false" id="c8fb-ff0d-60eb-ce45">
<characteristics>
<characteristic name="M" typeId="c36f-3952-a91d-5a06">2⬤</characteristic>
<characteristic name="APL" typeId="c84a-a042-6fe6-519b">2</characteristic>
<characteristic name="GA" typeId="7a85-5063-6d1a-2a0b">1</characteristic>
<characteristic name="DF" typeId="4a18-41c1-51f2-c88c">3</characteristic>
<characteristic name="SV" typeId="dd03-76d2-dda8-eca2">4+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">8</characteristic>
</characteristics>
</profile>
<profile name="Weapon Bipod" typeId="f52d-76ec-b279-093b" typeName="Abilities" hidden="false" id="2bf7-fd3d-2a9f-2160">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">Each time this operative makes a shooting attack with its APM launcher, in the Roll Attack Dice step of that shooting attack, if the operative has not moved during the Turning Point, you can re-roll any or all of your attack dice results of one result (e.g. results of 2).</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="model" import="true" name="Yaegir Ironbraek" hidden="false" id="8316-38d7-5316-cf4a">
<categoryLinks>
<categoryLink targetId="429b-6b08-2a7f-ce46" id="113f-67bb-3506-efc0" primary="false" name="HERNKYN YAEGIR"/>
<categoryLink targetId="f98b-0289-0f1f-b233" id="5019-71ca-6832-4b14" primary="true" name="Operative"/>
<categoryLink targetId="7175-47ca-4879-7e41" id="66e1-524e-40d5-9fef" primary="false" name="Votann"/>
<categoryLink targetId="3839-ec08-6877-1fda" id="2b82-4400-12a8-991a" primary="false" name="Ironbraek"/>
</categoryLinks>
<profiles>
<profile name="Yaegir Ironbraek" typeId="350c-2ddd-8a24-377b" typeName="Operative" hidden="false" id="7927-25e6-6982-784f">
<characteristics>
<characteristic name="M" typeId="c36f-3952-a91d-5a06">2⬤</characteristic>
<characteristic name="APL" typeId="c84a-a042-6fe6-519b">2</characteristic>
<characteristic name="GA" typeId="7a85-5063-6d1a-2a0b">1</characteristic>
<characteristic name="DF" typeId="4a18-41c1-51f2-c88c">3</characteristic>
<characteristic name="SV" typeId="dd03-76d2-dda8-eca2">4+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">8</characteristic>
</characteristics>
</profile>
<profile name="Minefield" typeId="f52d-76ec-b279-093b" typeName="Abilities" hidden="false" id="9734-6139-6479-79af">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">You have five Minefield tokens for the battle. On the reverse side, three of them are HY-Pex mines (see ability) and two are blank. At the end of the Set Up Operatives step, you can set up any number of your Minefield tokens reverse-side down (their specifics are not revealed). Each token must be more than ⬤ from objective markers, enemy operatives and access points, and more than ⬟ from your opponent's drop zone and your other Minefield tokens. Each time this operative is readied, if it's not within Engagement Range of an enemy operative you can reset one of your flipped Minefield tokens within ⬤ of it (flip the token back over again).</characteristic>
</characteristics>
</profile>
<profile name="HY-Pex Mines" typeId="f52d-76ec-b279-093b" typeName="Abilities" hidden="false" id="3967-a09d-eb1d-2a05">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">Each time an enemy operative or is set up within ⬤ of one of your reverse-side down Minefield tokens, long as no friendly HERNKYN YAEGIR operatives are within ⬤ of that token, interrupt that action and flip the token over. If it's blank, there's no effect. If it's a HY-Pex Mine that enemy operative suffers 3 mortal wounds and roll one D6. If the result is under the target's Save characteristic or invulnerable save (your opponent's choice of which), it suffers additional mortal wounds equal to the dice result. In any case, leave the token where it is and the enemy operative then continues its action.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Entrencher" hidden="false" id="e45a-868b-75ea-57">
<profiles>
<profile name="⚔ Entrencher" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons" hidden="false" id="91f4-e56e-cd48-7dc4">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">3</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">4+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">3/4</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">-</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="4938-cb20-4cc-c496-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="4938-cb20-4cc-c496-max"/>
</constraints>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink import="true" name="Bolt revolver" hidden="false" id="e792-24e9-bccb-c0ff" type="selectionEntry" targetId="3693-e720-ed9f-53b4">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="1df6-87b6-4253-9eda"/>
</constraints>
</entryLink>
<entryLink import="true" name="XP" hidden="false" id="b222-70d3-671-336e" type="selectionEntry" targetId="82af-b9b8-518f-aaf1"/>
<entryLink import="true" name="Battle Scars" hidden="false" id="1b85-23c0-34d8-97c4" type="selectionEntryGroup" targetId="d5ae-a34b-acc2-dfe7"/>
<entryLink import="true" name="Equipment" hidden="false" id="5360-8dc8-8eb8-40bf" type="selectionEntryGroup" targetId="a1af-bb54-30b1-65e9"/>
<entryLink import="true" name="Specialism" hidden="false" id="b0b9-d6c-f6b6-6755" type="selectionEntryGroup" targetId="781b-aaf6-e787-f825"/>
<entryLink import="true" name="Battle Honours - Scout" hidden="false" id="32dc-d1fa-c5d9-6ebb" type="selectionEntryGroup" targetId="94bd-d409-fda3-9f9f">
<entryLinks>
<entryLink import="true" name="Herkyn Yaegir 1 - Tough" hidden="false" id="f155-a402-6927-359d" type="selectionEntry" targetId="1112-c148-c69c-ff65"/>
<entryLink import="true" name="Herkyn Yaegir 2 - Stubborn" hidden="false" id="3b42-8999-d69f-41af" type="selectionEntry" targetId="fcee-6449-19f4-3a6e"/>
<entryLink import="true" name="Herkyn Yaegir 3 - Patient Hunter" hidden="false" id="6d15-7ab8-f5cb-de7b" type="selectionEntry" targetId="4b1b-97a0-498c-b618"/>
<entryLink import="true" name="Herkyn Yaegir 4 - Aggressive Surveyor" hidden="false" id="4305-f6c6-4492-3ec1" type="selectionEntry" targetId="0013-5239-6c25-276e"/>
<entryLink import="true" name="Herkyn Yaegir 5 - Canny" hidden="false" id="e96d-8195-2ed4-ce66" type="selectionEntry" targetId="86af-b62f-1777-6269"/>
<entryLink import="true" name="Herkyn Yaegir 6 - Unfazed" hidden="false" id="fbe3-a4dd-72cd-519a" type="selectionEntry" targetId="87d2-4648-3c7d-5da3"/>
</entryLinks>
</entryLink>
<entryLink import="true" name="Battle Honours - Staunch" hidden="false" id="f90e-0f57-8e00-bfb3" type="selectionEntryGroup" targetId="93ec-2874-675e-b46e">
<entryLinks>
<entryLink import="true" name="Herkyn Yaegir 1 - Tough" hidden="false" id="d513-144d-842a-15c7" type="selectionEntry" targetId="1112-c148-c69c-ff65"/>
<entryLink import="true" name="Herkyn Yaegir 2 - Stubborn" hidden="false" id="3a60-fc6f-afad-af27" type="selectionEntry" targetId="fcee-6449-19f4-3a6e"/>
<entryLink import="true" name="Herkyn Yaegir 3 - Patient Hunter" hidden="false" id="7cf0-d424-23aa-cb2c" type="selectionEntry" targetId="4b1b-97a0-498c-b618"/>
<entryLink import="true" name="Herkyn Yaegir 4 - Aggressive Surveyor" hidden="false" id="49e2-05fd-d7df-2047" type="selectionEntry" targetId="0013-5239-6c25-276e"/>
<entryLink import="true" name="Herkyn Yaegir 5 - Canny" hidden="false" id="724f-1469-7dba-e055" type="selectionEntry" targetId="86af-b62f-1777-6269"/>
<entryLink import="true" name="Herkyn Yaegir 6 - Unfazed" hidden="false" id="c321-607a-285c-e436" type="selectionEntry" targetId="87d2-4648-3c7d-5da3"/>
</entryLinks>
</entryLink>
</entryLinks>
</selectionEntry>
<selectionEntry type="model" import="true" name="Yaegir Riflekyn" hidden="false" id="eabf-3115-42be-d036">
<categoryLinks>
<categoryLink targetId="f98b-0289-0f1f-b233" id="251e-405-f2ca-96a7" primary="true" name="Operative"/>
<categoryLink targetId="429b-6b08-2a7f-ce46" id="46de-159f-f0bc-4c3c" primary="false" name="HERNKYN YAEGIR"/>
<categoryLink targetId="7175-47ca-4879-7e41" id="7c59-2e08-2116-fb4d" primary="false" name="Votann"/>
<categoryLink targetId="369-7403-9281-2000" id="59ae-d47-d2c8-ed5d" primary="false" name="Riflekyn"/>
</categoryLinks>
<profiles>
<profile name="Yaegir Riflekyn" typeId="350c-2ddd-8a24-377b" typeName="Operative" hidden="false" id="d3a9-1332-b248-810b">
<characteristics>
<characteristic name="M" typeId="c36f-3952-a91d-5a06">2⬤</characteristic>
<characteristic name="APL" typeId="c84a-a042-6fe6-519b">2</characteristic>
<characteristic name="GA" typeId="7a85-5063-6d1a-2a0b">1</characteristic>
<characteristic name="DF" typeId="4a18-41c1-51f2-c88c">3</characteristic>
<characteristic name="SV" typeId="dd03-76d2-dda8-eca2">4+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">8</characteristic>
</characteristics>
</profile>
<profile name="Weavewërke Cloak" typeId="f52d-76ec-b279-093b" typeName="Abilities" hidden="false" id="4a3e-ee6b-6044-7582">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">Each time a shooting attack is made against this operative, in the Roll Defence Dice step of that shooting attack, before rolling your defence dice, if it's in Cover, you can do one of the following:
- Retain one additional dice as a successful normal save as a result of Cover.
- Retain one dice as a successful critical save instead of a normal save as a result of Cover.</characteristic>
</characteristics>
</profile>
</profiles>
<entryLinks>
<entryLink import="true" name="Fists" hidden="false" id="96eb-7f77-a3ff-2278" type="selectionEntry" targetId="a251-57c6-18ee-da6e">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="a0a4-c2ed-ed4b-d624"/>
</constraints>
</entryLink>
<entryLink import="true" name="XP" hidden="false" id="7ef7-ce9a-ca50-286a" type="selectionEntry" targetId="82af-b9b8-518f-aaf1"/>
<entryLink import="true" name="Battle Scars" hidden="false" id="866d-7b2b-5764-7eb7" type="selectionEntryGroup" targetId="d5ae-a34b-acc2-dfe7"/>
<entryLink import="true" name="Equipment" hidden="false" id="3bde-3082-c93-d133" type="selectionEntryGroup" targetId="a1af-bb54-30b1-65e9"/>
<entryLink import="true" name="Specialism" hidden="false" id="f842-2b1f-2168-31d2" type="selectionEntryGroup" targetId="781b-aaf6-e787-f825"/>
<entryLink import="true" name="Battle Honours - Marksman" hidden="false" id="c530-123b-da84-0ac7" type="selectionEntryGroup" targetId="e84e-ae34-82a8-57b0">
<entryLinks>
<entryLink import="true" name="Herkyn Yaegir 1 - Tough" hidden="false" id="752a-deb1-9c86-6f2b" type="selectionEntry" targetId="1112-c148-c69c-ff65"/>
<entryLink import="true" name="Herkyn Yaegir 2 - Stubborn" hidden="false" id="f19c-a399-2563-c638" type="selectionEntry" targetId="fcee-6449-19f4-3a6e"/>
<entryLink import="true" name="Herkyn Yaegir 3 - Patient Hunter" hidden="false" id="c0e6-5d31-876f-000f" type="selectionEntry" targetId="4b1b-97a0-498c-b618"/>
<entryLink import="true" name="Herkyn Yaegir 4 - Aggressive Surveyor" hidden="false" id="e569-9095-49de-93f9" type="selectionEntry" targetId="0013-5239-6c25-276e"/>
<entryLink import="true" name="Herkyn Yaegir 5 - Canny" hidden="false" id="b1c4-04c6-10c4-741e" type="selectionEntry" targetId="86af-b62f-1777-6269"/>
<entryLink import="true" name="Herkyn Yaegir 6 - Unfazed" hidden="false" id="7d62-2994-69ed-cc2e" type="selectionEntry" targetId="87d2-4648-3c7d-5da3"/>
</entryLinks>
</entryLink>
</entryLinks>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Magna-coil rifle" hidden="false" id="1d16-5825-8332-8314">
<profiles>
<profile name="⌖ Magna-coil rifle" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons" hidden="false" id="3901-9303-50e4-6646">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">2+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">3/3</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">AP1, Heavy, Silent</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">MW3</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="APx" id="cf09-45db-ccb4-aaae" hidden="false" type="rule" targetId="db98-339e-d0a2-e042"/>
<infoLink name="Heavy" id="bed2-4fed-af59-c0a9" hidden="false" type="rule" targetId="1e77-6974-cf90-6008"/>
<infoLink name="Silent" id="1075-c762-4c9f-c9d5" hidden="false" type="rule" targetId="ce60-8109-69c9-3908"/>
<infoLink name="MWx" id="b4df-dca8-25da-185" hidden="false" type="rule" targetId="0d4b-7a76-d266-bcc1"/>
</infoLinks>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="e239-d7fd-62ea-3e68-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="e239-d7fd-62ea-3e68-max"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="model" import="true" name="Yaegir Tracker" hidden="false" id="5cc5-706f-e56f-e6d3">
<categoryLinks>
<categoryLink name="Operative" hidden="false" id="6390-191-977f-e0c0" targetId="f98b-0289-0f1f-b233" primary="true"/>
<categoryLink name="HERNKYN YAEGIR" hidden="false" id="5fdf-b140-3166-4bb4" targetId="429b-6b08-2a7f-ce46" primary="false"/>
<categoryLink name="Votann" hidden="false" id="cea6-7092-b50e-9e7a" targetId="7175-47ca-4879-7e41" primary="false"/>
<categoryLink targetId="f36d-8eff-70c9-864f" id="d3f6-2326-2b70-576c" primary="false" name="Tracker"/>
</categoryLinks>
<profiles>
<profile name="Yaegir Tracker" typeId="350c-2ddd-8a24-377b" typeName="Operative" hidden="false" id="b276-6d8e-3efb-4f57">
<characteristics>
<characteristic name="M" typeId="c36f-3952-a91d-5a06">2⬤</characteristic>
<characteristic name="APL" typeId="c84a-a042-6fe6-519b">2</characteristic>
<characteristic name="GA" typeId="7a85-5063-6d1a-2a0b">1</characteristic>
<characteristic name="DF" typeId="4a18-41c1-51f2-c88c">3</characteristic>
<characteristic name="SV" typeId="dd03-76d2-dda8-eca2">4+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">8</characteristic>
</characteristics>
</profile>
<profile name="Pan Spectral Visor" typeId="f52d-76ec-b279-093b" typeName="Abilities" hidden="false" id="160-8e53-8705-a8b0">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">When determining Line of Sight for this operative, enemy operatives within ⬟ of it that aren't ready:
- Cannot be Obscured.
- Are treated as having an Engage order.</characteristic>
</characteristics>
</profile>
<profile name="Tracker" typeId="f52d-76ec-b279-093b" typeName="Abilities" hidden="false" id="b2ec-61e1-982e-7eaf">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">Each time this operative fights in combat or makes a shooting attack against an enemy operative that is within ⬟ of it, if that enemy operative isn't ready, in the Roll Attack Dice step of that combat or shooting attack, you can reroll any rolls of attack dice of one result (e.g. results of 2).</characteristic>
</characteristics>
</profile>
</profiles>
<entryLinks>
<entryLink import="true" name="XP" hidden="false" id="215a-bb85-6b7d-9022" type="selectionEntry" targetId="82af-b9b8-518f-aaf1"/>
<entryLink import="true" name="Battle Scars" hidden="false" id="ded8-7c4e-c004-76d0" type="selectionEntryGroup" targetId="d5ae-a34b-acc2-dfe7"/>
<entryLink import="true" name="Equipment" hidden="false" id="9f6f-415f-fb1b-63d3" type="selectionEntryGroup" targetId="a1af-bb54-30b1-65e9"/>
<entryLink import="true" name="Specialism" hidden="false" id="34d2-9606-a68f-8fa6" type="selectionEntryGroup" targetId="781b-aaf6-e787-f825"/>
<entryLink import="true" name="Battle Honours - Combat" hidden="false" id="636d-8c0b-1ff3-5eef" type="selectionEntryGroup" targetId="ae2f-d9f3-a27c-cca6">
<entryLinks>
<entryLink import="true" name="Herkyn Yaegir 1 - Tough" hidden="false" id="43f5-f34d-3247-638f" type="selectionEntry" targetId="1112-c148-c69c-ff65"/>
<entryLink import="true" name="Herkyn Yaegir 2 - Stubborn" hidden="false" id="c037-1fb4-d966-81cf" type="selectionEntry" targetId="fcee-6449-19f4-3a6e"/>
<entryLink import="true" name="Herkyn Yaegir 3 - Patient Hunter" hidden="false" id="5aa8-b8d3-e6eb-a662" type="selectionEntry" targetId="4b1b-97a0-498c-b618"/>
<entryLink import="true" name="Herkyn Yaegir 4 - Aggressive Surveyor" hidden="false" id="8667-78fc-535c-f0ac" type="selectionEntry" targetId="0013-5239-6c25-276e"/>
<entryLink import="true" name="Herkyn Yaegir 5 - Canny" hidden="false" id="3c34-9b73-dca0-c22b" type="selectionEntry" targetId="86af-b62f-1777-6269"/>
<entryLink import="true" name="Herkyn Yaegir 6 - Unfazed" hidden="false" id="9844-59ae-543b-cea9" type="selectionEntry" targetId="87d2-4648-3c7d-5da3"/>
</entryLinks>
</entryLink>
<entryLink import="true" name="Battle Honours - Marksman" hidden="false" id="2f71-c248-6518-c7a1" type="selectionEntryGroup" targetId="e84e-ae34-82a8-57b0">
<entryLinks>
<entryLink import="true" name="Herkyn Yaegir 1 - Tough" hidden="false" id="f23a-e74b-8dac-3f71" type="selectionEntry" targetId="1112-c148-c69c-ff65"/>
<entryLink import="true" name="Herkyn Yaegir 2 - Stubborn" hidden="false" id="1250-a153-e0d8-4198" type="selectionEntry" targetId="fcee-6449-19f4-3a6e"/>
<entryLink import="true" name="Herkyn Yaegir 3 - Patient Hunter" hidden="false" id="d34c-8595-8a2a-2719" type="selectionEntry" targetId="4b1b-97a0-498c-b618"/>
<entryLink import="true" name="Herkyn Yaegir 4 - Aggressive Surveyor" hidden="false" id="02c7-c01e-dce0-6a24" type="selectionEntry" targetId="0013-5239-6c25-276e"/>
<entryLink import="true" name="Herkyn Yaegir 5 - Canny" hidden="false" id="1721-29c9-45b5-4b4a" type="selectionEntry" targetId="86af-b62f-1777-6269"/>
<entryLink import="true" name="Herkyn Yaegir 6 - Unfazed" hidden="false" id="31cf-b0f9-c410-b6ef" type="selectionEntry" targetId="87d2-4648-3c7d-5da3"/>
</entryLinks>
</entryLink>
<entryLink import="true" name="Battle Honours - Scout" hidden="false" id="de76-298f-f69a-86cd" type="selectionEntryGroup" targetId="94bd-d409-fda3-9f9f">
<entryLinks>
<entryLink import="true" name="Herkyn Yaegir 1 - Tough" hidden="false" id="a92e-0916-0cd9-2b76" type="selectionEntry" targetId="1112-c148-c69c-ff65"/>
<entryLink import="true" name="Herkyn Yaegir 2 - Stubborn" hidden="false" id="55c9-11f1-8c39-fef8" type="selectionEntry" targetId="fcee-6449-19f4-3a6e"/>
<entryLink import="true" name="Herkyn Yaegir 3 - Patient Hunter" hidden="false" id="3925-472e-9b18-49e6" type="selectionEntry" targetId="4b1b-97a0-498c-b618"/>
<entryLink import="true" name="Herkyn Yaegir 4 - Aggressive Surveyor" hidden="false" id="15bd-7c90-7683-3840" type="selectionEntry" targetId="0013-5239-6c25-276e"/>
<entryLink import="true" name="Herkyn Yaegir 5 - Canny" hidden="false" id="587c-8b88-9290-5f6b" type="selectionEntry" targetId="86af-b62f-1777-6269"/>
<entryLink import="true" name="Herkyn Yaegir 6 - Unfazed" hidden="false" id="6f2a-5349-d366-392a" type="selectionEntry" targetId="87d2-4648-3c7d-5da3"/>
</entryLinks>
</entryLink>
<entryLink import="true" name="Battle Honours - Staunch" hidden="false" id="88b3-c7cd-31c5-46fd" type="selectionEntryGroup" targetId="93ec-2874-675e-b46e">
<entryLinks>
<entryLink import="true" name="Herkyn Yaegir 1 - Tough" hidden="false" id="ce2e-32aa-3141-4856" type="selectionEntry" targetId="1112-c148-c69c-ff65"/>
<entryLink import="true" name="Herkyn Yaegir 2 - Stubborn" hidden="false" id="0593-d1d8-3533-61f0" type="selectionEntry" targetId="fcee-6449-19f4-3a6e"/>
<entryLink import="true" name="Herkyn Yaegir 3 - Patient Hunter" hidden="false" id="53f2-aa36-b274-f5fb" type="selectionEntry" targetId="4b1b-97a0-498c-b618"/>
<entryLink import="true" name="Herkyn Yaegir 4 - Aggressive Surveyor" hidden="false" id="9128-8ed8-b0d2-8211" type="selectionEntry" targetId="0013-5239-6c25-276e"/>
<entryLink import="true" name="Herkyn Yaegir 5 - Canny" hidden="false" id="49fd-d6a7-0b8a-4f2e" type="selectionEntry" targetId="86af-b62f-1777-6269"/>
<entryLink import="true" name="Herkyn Yaegir 6 - Unfazed" hidden="false" id="1fdf-1671-592e-17bb" type="selectionEntry" targetId="87d2-4648-3c7d-5da3"/>
</entryLinks>
</entryLink>
</entryLinks>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Throwing hatchet" hidden="false" id="9c7c-e881-909c-d2a9">
<profiles>
<profile name="⌖ Throwing hatchet" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons" hidden="false" id="a3ce-357b-327a-e895">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">3+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">3/5</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Rng ⬟, Limited, Silent</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">Rending</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Silent" id="8042-40e8-f5ea-261a" hidden="false" type="rule" targetId="ce60-8109-69c9-3908"/>
<infoLink name="Limited" id="85e7-26f1-d842-e8dc" hidden="false" type="rule" targetId="1eb0-6ad3-3e5a-d8ec"/>
<infoLink name="Rng x" id="bd1-77fb-c738-2be3" hidden="false" type="rule" targetId="92de-2ad3-3554-0b3e"/>
<infoLink name="Rending" id="755e-81f7-7572-c769" hidden="false" type="rule" targetId="0550-3332-7a93-ab5b"/>
</infoLinks>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="94dc-22e2-105c-e1e9-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="94dc-22e2-105c-e1e9-max"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="SiNR handbow" hidden="false" id="3802-1bb6-2660-d9cd">
<profiles>
<profile name="⌖ SiNR handbow" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons" hidden="false" id="cf16-e816-b4d0-e5fa">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">4+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">3/5</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Silent</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Silent" id="e5b9-70b3-fbed-8e8e" hidden="false" type="rule" targetId="ce60-8109-69c9-3908"/>
</infoLinks>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="2d90-6e71-1521-a086-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="2d90-6e71-1521-a086-max"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Hatchet" hidden="false" id="d786-5fa0-6055-898a">
<profiles>
<profile name="⚔ Hatchet" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons" hidden="false" id="cb8b-f1b2-c706-649e">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">3+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">4/5</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">-</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="5db7-bb52-330e-bfc1-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="5db7-bb52-330e-bfc1-max"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="model" import="true" name="Yaegir Warrior" hidden="false" id="a1f8-19a6-6b3-a08e">
<categoryLinks>
<categoryLink name="Operative" hidden="false" id="67f-e2a9-7d08-13bc" targetId="f98b-0289-0f1f-b233" primary="true"/>
<categoryLink name="HERNKYN YAEGIR" hidden="false" id="9714-5752-a35b-92e" targetId="429b-6b08-2a7f-ce46" primary="false"/>
<categoryLink name="Votann" hidden="false" id="5d65-7417-1199-4b8" targetId="7175-47ca-4879-7e41" primary="false"/>
<categoryLink targetId="b9a4-31a5-b4ed-b4c7" id="711d-1c80-755e-fd5d" primary="false" name="Warrior"/>
</categoryLinks>
<profiles>
<profile name="Yaegir Warrior" typeId="350c-2ddd-8a24-377b" typeName="Operative" hidden="false" id="1be7-82d2-188-557b">
<characteristics>
<characteristic name="M" typeId="c36f-3952-a91d-5a06">2⬤</characteristic>
<characteristic name="APL" typeId="c84a-a042-6fe6-519b">2</characteristic>
<characteristic name="GA" typeId="7a85-5063-6d1a-2a0b">1</characteristic>
<characteristic name="DF" typeId="4a18-41c1-51f2-c88c">3</characteristic>
<characteristic name="SV" typeId="dd03-76d2-dda8-eca2">4+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">8</characteristic>
</characteristics>
</profile>
</profiles>
<entryLinks>
<entryLink import="true" name="XP" hidden="false" id="1161-b72f-e64-277e" type="selectionEntry" targetId="82af-b9b8-518f-aaf1"/>
<entryLink import="true" name="Battle Scars" hidden="false" id="8eba-959b-be4-8572" type="selectionEntryGroup" targetId="d5ae-a34b-acc2-dfe7"/>
<entryLink import="true" name="Equipment" hidden="false" id="626b-3a4d-6986-4a65" type="selectionEntryGroup" targetId="a1af-bb54-30b1-65e9"/>
<entryLink import="true" name="Specialism" hidden="false" id="606c-5e0a-998d-b79a" type="selectionEntryGroup" targetId="781b-aaf6-e787-f825"/>
<entryLink import="true" name="Battle Honours - Combat" hidden="false" id="9bcb-54df-b121-f38c" type="selectionEntryGroup" targetId="ae2f-d9f3-a27c-cca6">
<entryLinks>
<entryLink import="true" name="Herkyn Yaegir 1 - Tough" hidden="false" id="0b25-46fc-6538-e245" type="selectionEntry" targetId="1112-c148-c69c-ff65"/>
<entryLink import="true" name="Herkyn Yaegir 2 - Stubborn" hidden="false" id="1a0a-3f18-ca85-7451" type="selectionEntry" targetId="fcee-6449-19f4-3a6e"/>
<entryLink import="true" name="Herkyn Yaegir 3 - Patient Hunter" hidden="false" id="2a55-2de9-5c60-5808" type="selectionEntry" targetId="4b1b-97a0-498c-b618"/>
<entryLink import="true" name="Herkyn Yaegir 4 - Aggressive Surveyor" hidden="false" id="ee9c-c0c9-64cd-4ce5" type="selectionEntry" targetId="0013-5239-6c25-276e"/>
<entryLink import="true" name="Herkyn Yaegir 5 - Canny" hidden="false" id="45fd-1410-800d-4a6d" type="selectionEntry" targetId="86af-b62f-1777-6269"/>