-
Notifications
You must be signed in to change notification settings - Fork 92
/
2021 - Kasrkin.cat
1854 lines (1849 loc) · 148 KB
/
2021 - Kasrkin.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="13e2-04bc-4cc1-0c53" name="Kasrkin" revision="13" battleScribeVersion="2.03" library="false" gameSystemId="3b7e-7dab-f79f-2e74" gameSystemRevision="5" xmlns="http://www.battlescribe.net/schema/catalogueSchema" type="catalogue">
<categoryEntries>
<categoryEntry id="a241-be0f-4dae-b452" name="KASRKIN" hidden="false"/>
<categoryEntry id="d954-d36e-32d4-e53e" name="Kasrkin Sergeant" hidden="false"/>
<categoryEntry id="7c43-3a9c-461c-7ea8" name="Kasrkin Combat Medic" hidden="false"/>
<categoryEntry id="a7df-0dbc-9cb7-3bcf" name="Kasrkin Demo-Trooper" hidden="false"/>
<categoryEntry id="305f-96fb-eac9-fcc7" name="Kasrkin Gunner" hidden="false"/>
<categoryEntry id="d200-c6e2-6570-55a4" name="Kasrkin Recon-Trooper" hidden="false"/>
<categoryEntry id="edd9-40f5-94a6-9049" name="Kasrkin Sharpshooter" hidden="false"/>
<categoryEntry id="c613-8f8e-4471-34c6" name="Kasrkin Trooper" hidden="false"/>
<categoryEntry id="1505-9bee-8526-0fa1" name="Kasrkin Vox-Trooper" hidden="false"/>
</categoryEntries>
<forceEntries>
<forceEntry id="64da-d76e-ef18-44df" name="Kasrkin Kill Team" hidden="false">
<categoryLinks>
<categoryLink id="e5f8-d9aa-cd94-1018" name="Configuration" hidden="false" targetId="fb89-efb1-54e4-59c5" primary="false"/>
<categoryLink id="492d-12a5-bc16-d486" name="Reference" hidden="false" targetId="322e-38ea-bf3e-c785" primary="false"/>
<categoryLink id="a170-b239-eb2a-1904" name="Leader" hidden="false" targetId="3198-c1ce-dfd0-fb4f" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2607-082a-9989-31ae" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="071e-4d4c-0787-86f9" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="3b9a-b4a0-e38c-a022" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="9" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7836-769d-4d24-40ac" type="min"/>
<constraint field="selections" scope="parent" value="9" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6149-0c8c-1a67-7303" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="b097-5acf-6862-d040" name="Kasrkin Vox-Trooper" hidden="false" targetId="1505-9bee-8526-0fa1" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ff3c-f44d-5036-347d" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="c7fe-5be4-74d2-aa8f" name="Kasrkin Demo-Trooper" hidden="false" targetId="a7df-0dbc-9cb7-3bcf" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b949-f398-e29c-0395" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="e574-e9c3-0bb7-d5bb" name="Kasrkin Gunner" hidden="false" targetId="305f-96fb-eac9-fcc7" primary="false">
<modifiers>
<modifier type="decrement" field="4dcf-0c40-0c5f-5149" value="1">
<conditions>
<condition field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="edd9-40f5-94a6-9049" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="4" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4dcf-0c40-0c5f-5149" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="702d-ab6c-a5d5-ce54" name="Kasrkin Recon-Trooper" hidden="false" targetId="d200-c6e2-6570-55a4" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="155e-4cad-6fee-2d18" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="6b23-9c44-d1af-3032" name="Kasrkin Sharpshooter" hidden="false" targetId="edd9-40f5-94a6-9049" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b841-a263-76c0-5979" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="cf66-64ec-74fc-16e5" name="Kasrkin Combat Medic" hidden="false" targetId="7c43-3a9c-461c-7ea8" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4c44-175e-748a-78ad" type="max"/>
</constraints>
</categoryLink>
</categoryLinks>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="notInstanceOf" value="1" field="selections" scope="primary-catalogue" childId="13e2-04bc-4cc1-0c53" shared="true"/>
</conditions>
</modifier>
</modifiers>
</forceEntry>
</forceEntries>
<selectionEntries>
<selectionEntry id="d2ce-dbd0-1d89-acf9" name="Kasrkin Sergeant" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="0fe9-7b4b-4ec7-7cc6" name="Sergeant" hidden="false" typeId="350c-2ddd-8a24-377b" typeName="Operative">
<characteristics>
<characteristic name="M" typeId="c36f-3952-a91d-5a06">3⬤</characteristic>
<characteristic name="APL" typeId="c84a-a042-6fe6-519b">2</characteristic>
<characteristic name="GA" typeId="7a85-5063-6d1a-2a0b">1</characteristic>
<characteristic name="DF" typeId="4a18-41c1-51f2-c88c">3</characteristic>
<characteristic name="SV" typeId="dd03-76d2-dda8-eca2">4+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">9</characteristic>
</characteristics>
</profile>
<profile id="fc9e-0187-a6a3-c2b9" name="Leadership" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">In each Strategy phase, add 2 Elite points to your pool.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="5054-55dd-c9fb-6f7c" name="Elite" hidden="false" targetId="33cf-2b94-3086-1589" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="1277-6f0d-1e83-eb5f" name="Leader" hidden="false" targetId="3198-c1ce-dfd0-fb4f" primary="true"/>
<categoryLink id="96d0-bc8b-d643-f5d6" name="KASRKIN" hidden="false" targetId="a241-be0f-4dae-b452" primary="false"/>
<categoryLink id="ff7f-a8aa-4c69-188e" name="Imperium" hidden="false" targetId="15ae-553e-01d1-23a9" primary="false"/>
<categoryLink id="301c-f1fa-c925-f4fc" name="Astra Militarum" hidden="false" targetId="51d2-f096-47a9-1956" primary="false"/>
<categoryLink id="6646-cc70-62ea-6734" name="Kasrkin Sergeant" hidden="false" targetId="d954-d36e-32d4-e53e" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="7b18-ba24-cad9-3d33" name="Weapons" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b624-c450-bce9-f82d" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cd2f-74c7-ec3a-e346" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="8f0d-df20-2585-65d7" name="Bolt pistol; power weapon" hidden="false" collective="false" import="true" type="upgrade">
<selectionEntries>
<selectionEntry id="a386-ba75-63ed-b7f2" name="Bolt pistol" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="50d1-733d-ec8a-517f" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="737b-703b-c362-89ba" type="max"/>
</constraints>
<profiles>
<profile id="6936-afa1-198f-529f" name="⌖ Bolt pistol" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">3+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">3/4</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Rng ⬟</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="ecf0-3c71-bd13-c80d" name="Rng x" hidden="false" targetId="92de-2ad3-3554-0b3e" type="rule"/>
</infoLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="d3c9-fafc-17ce-0e1c" name="Power weapon" hidden="false" collective="false" import="true" targetId="7ccc-1056-179f-d691" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="7605-73a6-86d4-15d3" name="Hot-shot lasgun; gun butt" hidden="false" collective="false" import="true" type="upgrade">
<entryLinks>
<entryLink id="5902-1f49-2ccc-3050" name="Hot-shot lasgun" hidden="false" collective="false" import="true" targetId="c211-3124-6df0-a1c6" type="selectionEntry"/>
<entryLink id="dc23-0e28-50bf-29b4" name="Gun butt" hidden="false" collective="false" import="true" targetId="5731-1e99-6d33-a1b5" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="c44d-a4c7-f1a0-1b99" name="Plasma pistol; chainsword" hidden="false" collective="false" import="true" type="upgrade">
<selectionEntries>
<selectionEntry id="34aa-8483-1b76-85ee" name="Chainsword" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8ac5-ea9e-da8e-7f16" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f914-05ea-b68b-68e4" type="max"/>
</constraints>
<profiles>
<profile id="5b8a-cb7b-505c-f650" name="⚔ Chainsword" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">3+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">4/5</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Ceaseless</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="534a-63c5-b9c0-2d73" name="Ceaseless" hidden="false" targetId="ce9a-aa0d-7b46-3d04" type="rule"/>
</infoLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="55f1-0321-7415-677f" name="Plasma pistol" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7f39-4679-3e70-c776" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="aa01-bb70-9e16-0b98" type="max"/>
</constraints>
<profiles>
<profile id="b89b-2f22-2b0e-9754" name="⌖ Plasma pistol - Standard" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">3+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">5/6</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Rng ⬟, AP1</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
<profile id="2ee0-52be-4534-31bc" name="⌖ Plasma pistol - Supercharge" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">3+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">5/6</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Rng ⬟, AP2, Hot</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
<profile id="f5b7-f028-3f09-f4a4" name="⌖ Plasma pistol" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">-</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">-</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">-</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Each time this weapon is selected to make a shooting attack with, select one of the profiles below to use:</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="c79a-6439-116c-f86b" name="Rng x" hidden="false" targetId="92de-2ad3-3554-0b3e" type="rule"/>
<infoLink id="dc7c-5fb4-9d8f-6b95" name="APx" hidden="false" targetId="db98-339e-d0a2-e042" type="rule"/>
<infoLink id="251b-3b26-6a9d-c35d" name="Hot" hidden="false" targetId="83c3-fce7-8ac1-9872" type="rule"/>
</infoLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="92d3-151d-bc1a-2756" name="Hot-shot laspistol; power weapon" hidden="false" collective="false" import="true" type="upgrade">
<entryLinks>
<entryLink id="7193-7b05-2bc8-6689" name="Power weapon" hidden="false" collective="false" import="true" targetId="7ccc-1056-179f-d691" type="selectionEntry"/>
<entryLink id="f6f0-eacc-79a5-bfef" name="Hot-shot laspistol" hidden="false" collective="false" import="true" targetId="811d-e628-8683-e222" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="dc64-dc1a-dfd5-8d95" name="XP" hidden="false" collective="false" import="true" targetId="82af-b9b8-518f-aaf1" type="selectionEntry"/>
<entryLink id="d55a-60bd-9afa-e16f" name="Battle Scars" hidden="false" collective="false" import="true" targetId="d5ae-a34b-acc2-dfe7" type="selectionEntryGroup"/>
<entryLink id="a560-51b7-bc6d-53e8" name="Equipment" hidden="false" collective="false" import="true" targetId="5a9d-c69c-e0ff-d6de" type="selectionEntryGroup"/>
<entryLink id="feda-565e-20b2-1550" name="Specialism" hidden="false" collective="false" import="true" targetId="08e3-f5e7-6fa4-2808" type="selectionEntryGroup"/>
<entryLink id="9dba-32d3-4e6b-75f7" name="Battle Honours - Marksman" hidden="false" collective="false" import="true" targetId="e84e-ae34-82a8-57b0" type="selectionEntryGroup">
<entryLinks>
<entryLink id="61e0-a32f-7533-f959" name="Kasrkin 2 - Vengeful" hidden="false" collective="false" import="true" targetId="906d-1eec-2dd9-27f3" type="selectionEntry"/>
<entryLink id="813d-fe87-554a-5a25" name="Kasrkin 3 - Resolute" hidden="false" collective="false" import="true" targetId="7c7e-ad8d-67bf-155c" type="selectionEntry"/>
<entryLink id="d2d8-d090-4b2a-4efb" name="Kasrkin 4 - Kill Shot" hidden="false" collective="false" import="true" targetId="5c2c-6324-e5df-d9d6" type="selectionEntry"/>
<entryLink id="5a36-e7bb-2798-9235" name="Kasrkin 5 - Sharp Instincts" hidden="false" collective="false" import="true" targetId="dd71-0e70-8dcc-69f0" type="selectionEntry"/>
<entryLink id="e970-8596-89be-c6f8" name="Kasrkin 6 - Independent Equipage" hidden="false" collective="false" import="true" targetId="fbe5-607e-931b-ae76" type="selectionEntry"/>
<entryLink id="f808-82fd-8133-5836" name="Kasrkin 1 - War-hardened" hidden="false" collective="false" import="true" targetId="43f5-3070-3dc8-66f9" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="5d65-c7e5-eb02-cfd5" name="Battle Honours - Combat" hidden="false" collective="false" import="true" targetId="ae2f-d9f3-a27c-cca6" type="selectionEntryGroup">
<entryLinks>
<entryLink id="2e7a-03bc-28d6-e759" name="Kasrkin 2 - Vengeful" hidden="false" collective="false" import="true" targetId="906d-1eec-2dd9-27f3" type="selectionEntry"/>
<entryLink id="59ca-f77e-b768-872b" name="Kasrkin 3 - Resolute" hidden="false" collective="false" import="true" targetId="7c7e-ad8d-67bf-155c" type="selectionEntry"/>
<entryLink id="d232-6daf-2126-20f7" name="Kasrkin 4 - Kill Shot" hidden="false" collective="false" import="true" targetId="5c2c-6324-e5df-d9d6" type="selectionEntry"/>
<entryLink id="d990-94d9-7034-53e8" name="Kasrkin 5 - Sharp Instincts" hidden="false" collective="false" import="true" targetId="dd71-0e70-8dcc-69f0" type="selectionEntry"/>
<entryLink id="df01-4f5e-b7ab-d22e" name="Kasrkin 6 - Independent Equipage" hidden="false" collective="false" import="true" targetId="fbe5-607e-931b-ae76" type="selectionEntry"/>
<entryLink id="2351-fd02-7358-bd16" name="Kasrkin 1 - War-hardened" hidden="false" collective="false" import="true" targetId="43f5-3070-3dc8-66f9" type="selectionEntry"/>
</entryLinks>
</entryLink>
<entryLink id="0f53-a8e7-3fc1-83cc" name="Battle Honours - Staunch" hidden="false" collective="false" import="true" targetId="93ec-2874-675e-b46e" type="selectionEntryGroup">
<entryLinks>
<entryLink id="9da8-967f-f5f2-177b" name="Kasrkin 2 - Vengeful" hidden="false" collective="false" import="true" targetId="906d-1eec-2dd9-27f3" type="selectionEntry"/>
<entryLink id="1247-2b5c-37d6-895c" name="Kasrkin 3 - Resolute" hidden="false" collective="false" import="true" targetId="7c7e-ad8d-67bf-155c" type="selectionEntry"/>
<entryLink id="3fd1-c6e8-66d4-e38e" name="Kasrkin 4 - Kill Shot" hidden="false" collective="false" import="true" targetId="5c2c-6324-e5df-d9d6" type="selectionEntry"/>
<entryLink id="fc24-6e4f-4f8e-f79e" name="Kasrkin 5 - Sharp Instincts" hidden="false" collective="false" import="true" targetId="dd71-0e70-8dcc-69f0" type="selectionEntry"/>
<entryLink id="f459-4e85-46cb-9c9b" name="Kasrkin 6 - Independent Equipage" hidden="false" collective="false" import="true" targetId="fbe5-607e-931b-ae76" type="selectionEntry"/>
<entryLink id="833b-126f-4589-45b4" name="Kasrkin 1 - War-hardened" hidden="false" collective="false" import="true" targetId="43f5-3070-3dc8-66f9" type="selectionEntry"/>
</entryLinks>
</entryLink>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<sharedSelectionEntries>
<selectionEntry id="c211-3124-6df0-a1c6" name="Hot-shot lasgun" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="25f4-2871-f52b-4278" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0eca-88bf-3598-a99d" type="min"/>
</constraints>
<profiles>
<profile id="5726-96d5-56de-3ff5" name="⌖ Hot-shot lasgun" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<modifiers>
<modifier type="set" field="32b4-9a0e-e740-6031" value="3+">
<conditions>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="d2ce-dbd0-1d89-acf9" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">4+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">3/4</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">-</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="5731-1e99-6d33-a1b5" name="Gun butt" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f0f6-1248-f394-3308" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0454-da86-3cf0-ec6e" type="min"/>
</constraints>
<profiles>
<profile id="3ee9-d4a4-946e-d4f0" name="⚔ Gun butt" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<modifiers>
<modifier type="set" field="32b4-9a0e-e740-6031" value="3+">
<conditions>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="d2ce-dbd0-1d89-acf9" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<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 id="811d-e628-8683-e222" name="Hot-shot laspistol" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3ef5-eb29-0182-a6d6" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9f0c-74aa-596a-5fe2" type="max"/>
</constraints>
<profiles>
<profile id="3b39-7f34-025f-4921" name="⌖ Hot-shot laspistol" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<modifiers>
<modifier type="set" field="32b4-9a0e-e740-6031" value="3+">
<conditions>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="d2ce-dbd0-1d89-acf9" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">4+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">3/4</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Rng ⬟</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="4132-0e0e-19f9-90fa" name="Rng x" hidden="false" targetId="92de-2ad3-3554-0b3e" type="rule"/>
</infoLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="7ccc-1056-179f-d691" name="Power weapon" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5942-0331-28c3-5fcf" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="512b-7cd4-d4a6-b9ff" type="max"/>
</constraints>
<profiles>
<profile id="dc24-b21b-05ec-b9ad" name="⚔ Power weapon" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">3+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">4/6</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Lethal 5+</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="dbec-1499-7f30-3fc7" name="Lethal x" hidden="false" targetId="be29-25db-e215-b3b0" type="rule"/>
</infoLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="43f5-3070-3dc8-66f9" name="Kasrkin 1 - War-hardened" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="341f-f9b9-029a-2450" type="max"/>
</constraints>
<profiles>
<profile id="bf8e-4049-2045-c290" name="War-hardened" hidden="false" typeId="5237-8077-f013-a2cc" typeName="Battle Honours">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">The first time an enemy operative is incapacitated by this operative in each battle, add 1 Elite point to your pool.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="906d-1eec-2dd9-27f3" name="Kasrkin 2 - Vengeful" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="aa56-6b57-e794-1e61" type="max"/>
</constraints>
<profiles>
<profile id="c904-2f44-899e-658a" name="Vengeful" hidden="false" typeId="5237-8077-f013-a2cc" typeName="Battle Honours">
<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 does not have the IMPERIUM keyword, before rolling your attack dice, you can retain one as a successful hit without rolling it.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="7c7e-ad8d-67bf-155c" name="Kasrkin 3 - Resolute" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="25fb-0f3f-3457-18fb" type="max"/>
</constraints>
<profiles>
<profile id="e53a-af65-bf08-2820" name="Resolute" hidden="false" typeId="5237-8077-f013-a2cc" typeName="Battle Honours">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">While this operative is carrying or within ⬤ of an objective marker, each time a shooting attack is made against it, in the Roll Defence Dice step of that shooting attack, you can re-roll one of your defence dice.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="5c2c-6324-e5df-d9d6" name="Kasrkin 4 - Kill Shot" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1bf2-ed6b-7a9c-a716" type="max"/>
</constraints>
<profiles>
<profile id="ebea-8c75-88ad-ebd0" name="Kill Shot" hidden="false" typeId="5237-8077-f013-a2cc" typeName="Battle Honours">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">Select one of the ranged weapons this model is equipped with (if the weapon has more than one profile, select one of those profiles). Add 1 to its Critical Damage characteristic.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="dd71-0e70-8dcc-69f0" name="Kasrkin 5 - Sharp Instincts" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5294-33f8-9f9a-f283" type="max"/>
</constraints>
<profiles>
<profile id="7615-5b5f-ce55-d1cb" name="Sharp Instincts" hidden="false" typeId="5237-8077-f013-a2cc" typeName="Battle Honours">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">Each time this operative makes a shooting attack, enemy operatives must be more than 2⬤ (instead of ⬤) from this operative to be in Cover.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="fbe5-607e-931b-ae76" name="Kasrkin 6 - Independent Equipage" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e5ad-fedf-527a-7f03" type="max"/>
</constraints>
<profiles>
<profile id="5a42-4e4d-4e99-193a" name="Independent Equipage" hidden="false" typeId="5237-8077-f013-a2cc" typeName="Battle Honours">
<characteristics>
<characteristic name="Battle Honour" typeId="0ca9-09c1-318a-cc7b">Before the battle, when selecting equipment from your stash, you can select one item of equipment to equip this operative with for one less equipment point (to a minimum of 0EP).</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="7a81-7fad-e0a5-5995" name="Kasrkin Combat Medic" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="d2ed-7aa3-bd37-9c86" name="Combat Medic" hidden="false" typeId="350c-2ddd-8a24-377b" typeName="Operative">
<characteristics>
<characteristic name="M" typeId="c36f-3952-a91d-5a06">3⬤</characteristic>
<characteristic name="APL" typeId="c84a-a042-6fe6-519b">2</characteristic>
<characteristic name="GA" typeId="7a85-5063-6d1a-2a0b">1</characteristic>
<characteristic name="DF" typeId="4a18-41c1-51f2-c88c">3</characteristic>
<characteristic name="SV" typeId="dd03-76d2-dda8-eca2">4+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">8</characteristic>
</characteristics>
</profile>
<profile id="1724-7485-dc8d-5d3e" name="Medic!" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">Once per Turning Point, the first time another friendly KASRKIN operative would be incapacitated while Visible to and within ⬛ of this operative and not within Engagement Range of an enemy operative, if this operative is not within Engagement Range of an enemy operative, this operative can revive it. That friendly operative is not incapacitated, has 1 wound remaining, and if it was a shooting attack, any remaining attack dice are discarded. That friendly operative can then perform a free Dash action, but must finish that move within ▲ of this operative. Subtract 1 from both operative's APL.</characteristic>
</characteristics>
</profile>
<profile id="eee2-356b-4131-477d" name="Combat Stimms (1AP)" hidden="false" typeId="17cd-eb4c-f9cd-36f2" typeName="Unique Actions">
<characteristics>
<characteristic name="Unique Action" typeId="8d9f-0a91-4133-bc4a">Select one friendly KASRKIN operative Visible to and within ▲ of this operative. That friendly operative regains 2D3 lost wounds. An operative cannot be selected for this action if it was revived using the Medic! ability during the same Turning Point. This operative cannot perform this action while within Engagement Range of an enemy operative.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="3afc-3fdc-3f3e-a82a" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
<categoryLink id="4571-9678-208b-22b7" name="KASRKIN" hidden="false" targetId="a241-be0f-4dae-b452" primary="false"/>
<categoryLink id="d638-28d3-e3e1-1e20" name="Imperium" hidden="false" targetId="15ae-553e-01d1-23a9" primary="false"/>
<categoryLink id="6a45-c5bb-8459-aa0d" name="Astra Militarum" hidden="false" targetId="51d2-f096-47a9-1956" primary="false"/>
<categoryLink id="3f31-5405-7df6-5185" name="Medic" hidden="false" targetId="8e1d-1094-f504-d8cd" primary="false"/>
<categoryLink id="1b96-7358-7543-a2f5" name="Kasrkin Combat Medic" hidden="false" targetId="7c43-3a9c-461c-7ea8" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="33d7-1c43-2f3a-2237" name="Hot-shot lasgun" hidden="false" collective="false" import="true" targetId="c211-3124-6df0-a1c6" type="selectionEntry"/>
<entryLink id="8f53-776a-cee1-f9fe" name="Gun butt" hidden="false" collective="false" import="true" targetId="5731-1e99-6d33-a1b5" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="7e7c-8fc6-cd8e-f542" name="Kasrkin Demo-Trooper" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="de0d-f1ac-bef3-4fb3" name="Demo-Trooper" hidden="false" typeId="350c-2ddd-8a24-377b" typeName="Operative">
<characteristics>
<characteristic name="M" typeId="c36f-3952-a91d-5a06">3⬤</characteristic>
<characteristic name="APL" typeId="c84a-a042-6fe6-519b">2</characteristic>
<characteristic name="GA" typeId="7a85-5063-6d1a-2a0b">1</characteristic>
<characteristic name="DF" typeId="4a18-41c1-51f2-c88c">3</characteristic>
<characteristic name="SV" typeId="dd03-76d2-dda8-eca2">4+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">9</characteristic>
</characteristics>
</profile>
<profile id="12b-5c6e-c8f6-db59" name="Blast Padding" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">Each time a shooting attack is made against this operative, if theranged weapon has the Blast special rule, or makes a shooting attack against each operative within range of a specified point (e.g. melta mine), in the Roll Defence Dice step of that shooting attack, you can re-roll any or all of your defence dice. In addition, this operative is unaffected by the Splash X critical hit rule, unless it is selected as the target of the shooting attack.</characteristic>
</characteristics>
</profile>
<profile id="f421-be54-59b3-c15b" name="Plant Melta Mine (1AP)" hidden="false" typeId="17cd-eb4c-f9cd-36f2" typeName="Unique Actions">
<characteristics>
<characteristic name="Unique Action" typeId="8d9f-0a91-4133-bc4a">Place your Melta Mine token in a location Visible to and within ▲ of this operative and more than ⬤ from any enemy operatives. This operative can only perform this action once, and cannot perform this action while within Engagement Range of an enemy operative.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="3436-d5a1-816-ccb0" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
<categoryLink id="85ce-cac4-1e87-ba44" name="KASRKIN" hidden="false" targetId="a241-be0f-4dae-b452" primary="false"/>
<categoryLink id="1856-41a2-7950-9259" name="Imperium" hidden="false" targetId="15ae-553e-01d1-23a9" primary="false"/>
<categoryLink id="1401-af46-4d68-e9e7" name="Astra Militarum" hidden="false" targetId="51d2-f096-47a9-1956" primary="false"/>
<categoryLink id="85ad-cd24-c0bd-6c78" name="Kasrkin Demo-Trooper" hidden="false" targetId="a7df-0dbc-9cb7-3bcf" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="b2b3-824e-7de3-5ef0" name="Melta mine" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="182-320d-cc6f-a27a" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f4b2-57e9-99ce-5535" type="max"/>
</constraints>
<profiles>
<profile id="8d91-f481-edcf-cc5a" name="⌖ Melta mine" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">2+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">4/2</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">AP2, Proximity*</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">MW3</characteristic>
</characteristics>
</profile>
</profiles>
<rules>
<rule id="6098-7304-c7a5-7450" name="*Proximity" hidden="false">
<description>The first time an enemy operative moves within ⬤ of this operative's Melta Mine token, make a shooting attack against each operative within ⬤ of that token with this weapon (even if this operative is not in the killzone, and ignore all Ballistic Skill modifiers). When making those attacks, those operatives are always valid targets and cannot be in Cover. At the end of those shooting attacks, remove that token. An operative cannot make a shooting attack with this weapon by any other means, or if its Melta Mine token is not in the killzone.</description>
</rule>
</rules>
<infoLinks>
<infoLink id="9373-b112-b75c-82eb" name="APx" hidden="false" targetId="db98-339e-d0a2-e042" type="rule"/>
<infoLink id="551b-a9a1-43e-eb70" name="MWx" hidden="false" targetId="0d4b-7a76-d266-bcc1" type="rule"/>
</infoLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="ebac-a6db-4bb-3cc4" name="Gun butt" hidden="false" collective="false" import="true" targetId="5731-1e99-6d33-a1b5" type="selectionEntry"/>
<entryLink id="b4e1-469b-cd60-42e9" name="Hot-shot laspistol" hidden="false" collective="false" import="true" targetId="811d-e628-8683-e222" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="5a7d-6a80-8043-1fa" name="Kasrkin Gunner w/ flamer" hidden="false" collective="false" import="true" type="model">
<infoLinks>
<infoLink name="Gunner" hidden="false" type="profile" id="c231-e35d-c28d-11fd" targetId="6e17-d40-8e98-e133"/>
</infoLinks>
<categoryLinks>
<categoryLink id="f731-2e1f-3b99-93cb" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
<categoryLink id="6d5a-89d6-29e3-9b84" name="KASRKIN" hidden="false" targetId="a241-be0f-4dae-b452" primary="false"/>
<categoryLink id="89f1-ec86-aa0e-5987" name="Imperium" hidden="false" targetId="15ae-553e-01d1-23a9" primary="false"/>
<categoryLink id="decf-d5a6-11d6-7e49" name="Astra Militarum" hidden="false" targetId="51d2-f096-47a9-1956" primary="false"/>
<categoryLink id="9fe3-12e8-af4d-552f" name="Kasrkin Gunner" hidden="false" targetId="305f-96fb-eac9-fcc7" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="fd32-2c1-ec61-b8dc" name="Flamer" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8d3a-aa31-a7d4-a306" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d9fe-7594-7ebd-b4e9" type="max"/>
</constraints>
<profiles>
<profile id="8164-e4bc-3720-2b73" name="⌖ Flamer" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">5</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">2+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">2/2</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Rng ⬟, Torrent ⬤</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="f390-63ca-a7a8-6e06" name="Rng x" hidden="false" targetId="92de-2ad3-3554-0b3e" type="rule"/>
<infoLink id="f86c-5e3d-bbf4-1e5c" name="Torrent x" hidden="false" targetId="ec4b-2d70-51a7-5653" type="rule"/>
</infoLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="3429-3694-ba15-f89d" name="Gun butt" hidden="false" collective="false" import="true" targetId="5731-1e99-6d33-a1b5" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="129-fd69-db06-fb72" name="Kasrkin Gunner w/ grenade launcher" hidden="false" collective="false" import="true" type="model">
<infoLinks>
<infoLink name="Gunner" hidden="false" type="profile" id="f874-bbd6-af16-66d3" targetId="6e17-d40-8e98-e133"/>
</infoLinks>
<categoryLinks>
<categoryLink id="6aea-b6b3-ca1a-1116" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
<categoryLink id="3a1b-9dcd-1969-3386" name="KASRKIN" hidden="false" targetId="a241-be0f-4dae-b452" primary="false"/>
<categoryLink id="5e80-82b1-ed05-6ddf" name="Imperium" hidden="false" targetId="15ae-553e-01d1-23a9" primary="false"/>
<categoryLink id="180f-5fdf-ea2d-a7cb" name="Astra Militarum" hidden="false" targetId="51d2-f096-47a9-1956" primary="false"/>
<categoryLink id="d79e-a7c8-4160-b23f" name="Kasrkin Gunner" hidden="false" targetId="305f-96fb-eac9-fcc7" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="6346-216b-7685-a98d" name="Grenade launcher" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ddc9-11eb-9af3-881f" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2b85-7a3f-e2ff-a1ec" type="max"/>
</constraints>
<profiles>
<profile id="7837-a9d6-87c4-a734" name="⌖ Grenade launcher" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">-</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">-</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">-</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Each time this weapon is selected to make a shooting attack with, select one of the profiles below to use:</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
<profile id="aebd-ab6b-5d00-a70b" name="⌖ Grenade launcher - Frag" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">4+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">2/4</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Blast ⬤</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
<profile id="5138-ac30-242d-bcd8" name="⌖ Grenade launcher - Krak" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">4+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">4/5</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">AP1</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="a2c3-db87-6642-d18e" name="Blast x" hidden="false" targetId="d848-be09-6d6d-4708" type="rule"/>
<infoLink id="8e6a-f2fe-d65b-243d" name="APx" hidden="false" targetId="db98-339e-d0a2-e042" type="rule"/>
</infoLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="e6e2-5d7a-1fdf-b85d" name="Gun butt" hidden="false" collective="false" import="true" targetId="5731-1e99-6d33-a1b5" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="3c59-1e93-79ce-4330" name="Kasrkin Gunner w/ hot-shot volley gun" hidden="false" collective="false" import="true" type="model">
<infoLinks>
<infoLink name="Gunner" hidden="false" type="profile" id="1faa-a006-bf86-e5b7" targetId="6e17-d40-8e98-e133"/>
</infoLinks>
<categoryLinks>
<categoryLink id="ccae-653-4beb-74f" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
<categoryLink id="6f25-1a3f-4afb-a545" name="KASRKIN" hidden="false" targetId="a241-be0f-4dae-b452" primary="false"/>
<categoryLink id="2548-3d2e-214a-dee3" name="Imperium" hidden="false" targetId="15ae-553e-01d1-23a9" primary="false"/>
<categoryLink id="92ef-182b-54b3-173a" name="Astra Militarum" hidden="false" targetId="51d2-f096-47a9-1956" primary="false"/>
<categoryLink id="db8b-7532-68fe-7b3f" name="Kasrkin Gunner" hidden="false" targetId="305f-96fb-eac9-fcc7" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="2250-c354-32bd-be91" name="Hot-shot volley gun" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3aee-8eb0-c1fc-1021" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="214b-707c-1b90-c7a2" type="max"/>
</constraints>
<profiles>
<profile id="2a1c-8a1d-39-3e3c" name="⌖ Hot-shot volley gun" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">5</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">4+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">3/4</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Fusillade</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">P1</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="e526-7394-b5aa-ca7" name="Fusillade" hidden="false" targetId="e2ae-574a-94ab-3550" type="rule"/>
<infoLink id="328b-cc97-4c2e-3a35" name="Px" hidden="false" targetId="1f11-c169-2746-13cf" type="rule"/>
</infoLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="a093-1b22-2108-50d0" name="Gun butt" hidden="false" collective="false" import="true" targetId="5731-1e99-6d33-a1b5" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="4651-a1a3-c9c5-de02" name="Kasrkin Gunner w/ meltagun" hidden="false" collective="false" import="true" type="model">
<infoLinks>
<infoLink name="Gunner" hidden="false" type="profile" id="6294-b823-b5d-64c4" targetId="6e17-d40-8e98-e133"/>
</infoLinks>
<categoryLinks>
<categoryLink id="303-a52f-3510-9a4" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
<categoryLink id="50c7-ca11-50b0-253e" name="KASRKIN" hidden="false" targetId="a241-be0f-4dae-b452" primary="false"/>
<categoryLink id="a14e-e33b-6d23-1f78" name="Imperium" hidden="false" targetId="15ae-553e-01d1-23a9" primary="false"/>
<categoryLink id="1bed-1d76-a034-b0ae" name="Astra Militarum" hidden="false" targetId="51d2-f096-47a9-1956" primary="false"/>
<categoryLink id="c4e7-d17e-5636-ce1b" name="Kasrkin Gunner" hidden="false" targetId="305f-96fb-eac9-fcc7" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="14c8-704f-3654-e074" name="Meltagun" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="201b-cde8-fbdb-17d8" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7edc-c234-bc1f-4524" type="max"/>
</constraints>
<profiles>
<profile id="865f-eec-c2a1-11d3" name="⌖ Meltagun" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">4+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">6/3</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Rng ⬟, AP2</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">MW4</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="c953-fe53-31b2-1e3a" name="Rng x" hidden="false" targetId="92de-2ad3-3554-0b3e" type="rule"/>
<infoLink id="604c-bf9e-2b89-bdbc" name="APx" hidden="false" targetId="db98-339e-d0a2-e042" type="rule"/>
<infoLink id="7f16-35eb-6f85-d8ea" name="MWx" hidden="false" targetId="0d4b-7a76-d266-bcc1" type="rule"/>
</infoLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="590b-b96d-6304-c228" name="Gun butt" hidden="false" collective="false" import="true" targetId="5731-1e99-6d33-a1b5" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="4e18-cc37-b188-27da" name="Kasrkin Gunner w/ plasma gun" hidden="false" collective="false" import="true" type="model">
<infoLinks>
<infoLink name="Gunner" hidden="false" type="profile" id="b8a0-f224-694d-fc4f" targetId="6e17-d40-8e98-e133"/>
</infoLinks>
<categoryLinks>
<categoryLink id="104a-24fd-c3ea-3bb6" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
<categoryLink id="8c3f-df0c-174-38d6" name="KASRKIN" hidden="false" targetId="a241-be0f-4dae-b452" primary="false"/>
<categoryLink id="1acf-87c4-7381-21cc" name="Imperium" hidden="false" targetId="15ae-553e-01d1-23a9" primary="false"/>
<categoryLink id="8bd6-7f35-7fc6-30e3" name="Astra Militarum" hidden="false" targetId="51d2-f096-47a9-1956" primary="false"/>
<categoryLink id="73a2-17f5-5041-6aa6" name="Kasrkin Gunner" hidden="false" targetId="305f-96fb-eac9-fcc7" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="9d38-8905-7bef-65e6" name="Plasma gun" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2d60-1d72-3c75-d421" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a970-c94d-cb22-5f99" type="max"/>
</constraints>
<profiles>
<profile id="df98-5f1e-72ab-8029" name="⌖ Plasma gun - Standard" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">4+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">5/6</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">AP1</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
<profile id="9a9d-a89c-3baf-52e5" name="⌖ Plasma gun - Supercharge" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">4+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">5/6</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">AP2, Hot</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
<profile id="614a-e473-d9d3-b89" name="⌖ Plasma gun" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">-</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">-</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">-</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Each time this weapon is selected to make a shooting attack with, select one of the profiles below to use:</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="380-2de5-6f88-847b" name="APx" hidden="false" targetId="db98-339e-d0a2-e042" type="rule"/>
<infoLink id="6b0f-951c-dbfa-6570" name="Hot" hidden="false" targetId="83c3-fce7-8ac1-9872" type="rule"/>
</infoLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="4c31-ea5f-522e-5b0a" name="Gun butt" hidden="false" collective="false" import="true" targetId="5731-1e99-6d33-a1b5" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="e6b7-c531-18b9-e235" name="Kasrkin Recon-Trooper" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="9835-3e1e-415a-f292" name="Recon-Trooper" hidden="false" typeId="350c-2ddd-8a24-377b" typeName="Operative">
<characteristics>
<characteristic name="M" typeId="c36f-3952-a91d-5a06">3⬤</characteristic>
<characteristic name="APL" typeId="c84a-a042-6fe6-519b">2</characteristic>
<characteristic name="GA" typeId="7a85-5063-6d1a-2a0b">1</characteristic>
<characteristic name="DF" typeId="4a18-41c1-51f2-c88c">3</characteristic>
<characteristic name="SV" typeId="dd03-76d2-dda8-eca2">4+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">8</characteristic>
</characteristics>
</profile>
<profile id="36ba-cded-820b-528" name="Reconnoitre Killzone" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">In the Scouting step, after resolving your selection, you can resolve an additional Recon option (even if you have already selected that option). Initiative is still determined by your original selection. If both players have this or a similar ability, the Defender resolves this ability first.</characteristic>
</characteristics>
</profile>
<profile id="3280-eba7-dd5a-a68a" name="Warden Auspex (1AP)" hidden="false" typeId="17cd-eb4c-f9cd-36f2" typeName="Unique Actions">
<characteristics>
<characteristic name="Unique Action" typeId="8d9f-0a91-4133-bc4a">Select one enemy operative. Until the end of the Turning Point, each time a friendly KASRKIN operative makes a shooting attack, that enemy operative is not Obscured. This operative cannot perform this action while within Engagement Range of an enemy operative.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="18a7-4f18-545d-a0b7" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
<categoryLink id="f36e-9fdf-37f6-196a" name="KASRKIN" hidden="false" targetId="a241-be0f-4dae-b452" primary="false"/>
<categoryLink id="18ec-d2d5-bac9-1826" name="Imperium" hidden="false" targetId="15ae-553e-01d1-23a9" primary="false"/>
<categoryLink id="8939-c90a-d0ad-670a" name="Astra Militarum" hidden="false" targetId="51d2-f096-47a9-1956" primary="false"/>
<categoryLink id="28c3-6f80-227d-a4e6" name="Kasrkin Recon-Trooper" hidden="false" targetId="d200-c6e2-6570-55a4" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="6672-5fb4-6c2a-d607" name="Hot-shot lasgun" hidden="false" collective="false" import="true" targetId="c211-3124-6df0-a1c6" type="selectionEntry"/>
<entryLink id="3164-25d7-9248-ca3a" name="Gun butt" hidden="false" collective="false" import="true" targetId="5731-1e99-6d33-a1b5" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="24cd-4af2-f63b-67c1" name="Kasrkin Sharpshooter" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="a358-6304-a9fa-fbff" name="Sharpshooter" hidden="false" typeId="350c-2ddd-8a24-377b" typeName="Operative">
<characteristics>
<characteristic name="M" typeId="c36f-3952-a91d-5a06">3⬤</characteristic>
<characteristic name="APL" typeId="c84a-a042-6fe6-519b">2</characteristic>
<characteristic name="GA" typeId="7a85-5063-6d1a-2a0b">1</characteristic>
<characteristic name="DF" typeId="4a18-41c1-51f2-c88c">3</characteristic>
<characteristic name="SV" typeId="dd03-76d2-dda8-eca2">4+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">8</characteristic>
</characteristics>
</profile>
<profile id="f10f-5c6a-d6ac-b10d" name="Camo Cloak" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<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 is in Cover, one additional dice can be retained as a successful normal save as a result of Cover.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="b4e9-2582-a1c3-d25b" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
<categoryLink id="e760-8853-62e9-11bb" name="KASRKIN" hidden="false" targetId="a241-be0f-4dae-b452" primary="false"/>
<categoryLink id="6c1-4771-46b7-16d2" name="Imperium" hidden="false" targetId="15ae-553e-01d1-23a9" primary="false"/>
<categoryLink id="c30a-dcf7-1e36-e020" name="Astra Militarum" hidden="false" targetId="51d2-f096-47a9-1956" primary="false"/>
<categoryLink id="96ff-e43d-affd-82e6" name="Kasrkin Sharpshooter" hidden="false" targetId="edd9-40f5-94a6-9049" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="1299-581d-8ad2-1952" name="Hot-shot marksman rifle" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="14ae-55f1-764d-4932" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f96c-721d-ca56-467f" type="max"/>
</constraints>
<profiles>
<profile id="de44-9fa2-f6f3-6c0b" name="⌖ Hot-shot marksman rifle" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">-</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">-</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">-</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Each time this weapon is selected to make a shooting attack with, select one of the profiles below to use:</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
<profile id="428b-4a9-bf8a-7311" name="⌖ Hot-shot marksman rifle - Sharpshot" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">3+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">3/4</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">-</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">-</characteristic>
</characteristics>
</profile>
<profile id="a2f1-d84d-a558-2e3c" name="⌖ Hot-shot marksman rifle - Snipe" hidden="false" typeId="a917-3c2e-f7b8-1bdc" typeName="Weapons">
<characteristics>
<characteristic name="A" typeId="5f37-25bb-661b-5c9c">4</characteristic>
<characteristic name="WS/BS" typeId="32b4-9a0e-e740-6031">2+</characteristic>
<characteristic name="D" typeId="337a-2e5b-e4e3-f489">3/3</characteristic>
<characteristic name="SR" typeId="c9c0-f6c9-c787-e650">Heavy, Silent</characteristic>
<characteristic name="!" typeId="c495-8d08-b6b8-b434">MW3</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="5fd0-531-7cf0-e439" name="MWx" hidden="false" targetId="0d4b-7a76-d266-bcc1" type="rule"/>
<infoLink id="c819-c7cc-9bf6-aa3e" name="Heavy" hidden="false" targetId="1e77-6974-cf90-6008" type="rule"/>
<infoLink id="62e7-e935-b58e-128e" name="Silent" hidden="false" targetId="ce60-8109-69c9-3908" type="rule"/>
</infoLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="e41b-51ad-b664-fbd" name="Gun butt" hidden="false" collective="false" import="true" targetId="5731-1e99-6d33-a1b5" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="8f48-568f-4334-5296" name="Kasrkin Trooper" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="95d4-45b4-fb58-720e" name="Trooper" hidden="false" typeId="350c-2ddd-8a24-377b" typeName="Operative">
<characteristics>
<characteristic name="M" typeId="c36f-3952-a91d-5a06">3⬤</characteristic>
<characteristic name="APL" typeId="c84a-a042-6fe6-519b">2</characteristic>
<characteristic name="GA" typeId="7a85-5063-6d1a-2a0b">1</characteristic>
<characteristic name="DF" typeId="4a18-41c1-51f2-c88c">3</characteristic>
<characteristic name="SV" typeId="dd03-76d2-dda8-eca2">4+</characteristic>
<characteristic name="W" typeId="db11-738c-048c-759e">8</characteristic>
</characteristics>
</profile>
<profile id="c52a-84d0-49db-c90b" name="Elite Trooper" hidden="false" typeId="f52d-76ec-b279-093b" typeName="Abilities">
<characteristics>
<characteristic name="Ability" typeId="dff3-a2cc-d103-683d">Each time this operative makes a shooting attack, you can spend one Elite point for free during that shooting attack (even if you don't have any in your pool).</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="dbc5-880e-4d56-7b18" name="Operative" hidden="false" targetId="f98b-0289-0f1f-b233" primary="true"/>
<categoryLink id="b841-fe00-7af7-19a7" name="KASRKIN" hidden="false" targetId="a241-be0f-4dae-b452" primary="false"/>
<categoryLink id="95f2-c73a-852d-97af" name="Imperium" hidden="false" targetId="15ae-553e-01d1-23a9" primary="false"/>
<categoryLink id="8e4e-84c5-ade5-55fa" name="Astra Militarum" hidden="false" targetId="51d2-f096-47a9-1956" primary="false"/>
<categoryLink id="91c7-2311-507e-f731" name="Kasrkin Trooper" hidden="false" targetId="c613-8f8e-4471-34c6" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="63cd-34f-240-ebd4" name="Hot-shot lasgun" hidden="false" collective="false" import="true" targetId="c211-3124-6df0-a1c6" type="selectionEntry"/>
<entryLink id="9113-bfdd-503d-57df" name="Gun butt" hidden="false" collective="false" import="true" targetId="5731-1e99-6d33-a1b5" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="EP" typeId="c61a-51a3-370d-bf55" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="ab64-1656-c70e-2b6e" name="Kasrkin Vox-Trooper" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="208d-79c4-af66-e6d3" name="Vox-Trooper" hidden="false" typeId="350c-2ddd-8a24-377b" typeName="Operative">
<characteristics>
<characteristic name="M" typeId="c36f-3952-a91d-5a06">3⬤</characteristic>
<characteristic name="APL" typeId="c84a-a042-6fe6-519b">2</characteristic>
<characteristic name="GA" typeId="7a85-5063-6d1a-2a0b">1</characteristic>
<characteristic name="DF" typeId="4a18-41c1-51f2-c88c">3</characteristic>