-
Notifications
You must be signed in to change notification settings - Fork 92
/
2024 - Ratling.cat
1023 lines (1023 loc) · 74.2 KB
/
2024 - Ratling.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="e482-b469-a757-5368" name="Ratling" gameSystemId="c521-ad27-44df-f959" gameSystemRevision="2" revision="3" battleScribeVersion="2.03" type="catalogue" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<forceEntries>
<forceEntry name="Ratling Kill Team" id="e64f-c6b9-3d26-4b7c" hidden="false">
<categoryLinks>
<categoryLink name="Leader" hidden="false" id="841b-9b6f-b268-d0d7" targetId="d999-8cad-8145-4efe">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="abdf-150a-fbb4-51a3"/>
</constraints>
</categoryLink>
<categoryLink name="Reference" hidden="false" id="a100-fad5-45d4-1aa2" targetId="b318-a8d7-2d38-99a3"/>
<categoryLink name="Configuration" hidden="false" id="8f92-4c64-efa4-610e" targetId="874b-0390-e5e2-1daa"/>
<categoryLink name="Operative" hidden="false" id="55aa-1918-c933-5f12" targetId="cf83-4496-b58e-ac82">
<constraints>
<constraint type="min" value="7" field="selections" scope="force" shared="true" id="4596-71ed-ab0e-3e0f"/>
<constraint type="max" value="10" field="selections" scope="force" shared="true" id="1e67-a898-0825-e238"/>
</constraints>
</categoryLink>
<categoryLink name="Three of" hidden="false" id="5668-e9ed-d531-80be" targetId="7bdf-b087-84cf-9c37">
<constraints>
<constraint type="max" value="3" field="selections" scope="force" shared="true" id="f973-c1e3-7add-aeb5"/>
</constraints>
</categoryLink>
</categoryLinks>
</forceEntry>
</forceEntries>
<sharedSelectionEntryGroups>
<selectionEntryGroup name="Faction Equipment" id="98b5-379b-400f-3f1d" hidden="false">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Purloined Rations" hidden="false" id="47ae-8ef0-5d85-7246">
<profiles>
<profile name="Purloined Rations" typeId="0d20-7175-9ecb-8bde" typeName="Equipment" hidden="false" id="3e4f-d2ff-91b1-0f56">
<characteristics>
<characteristic name="Equipment" typeId="0e12-ef21-83f3-9fc6">Once per turning point, whenever a friendly RATLING operative (excluding BATTLEMUTT, BULLGRYN, and OGRYN) is activated, you can use this rule. If you do, until the end of that activation, improve the Hit stat of its rifle (if any) by 1.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="a27b-6e92-e2ce-5689"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Stolen Goods" hidden="false" id="223b-ed9d-56a7-29a4">
<profiles>
<profile name="Stolen Goods" typeId="0d20-7175-9ecb-8bde" typeName="Equipment" hidden="false" id="08fa-aff4-862f-3cfe">
<characteristics>
<characteristic name="Equipment" typeId="0e12-ef21-83f3-9fc6">At the end of the Select Operatives step, roll one D3. If the result is:
- 1, you lose 1CP.
- 2, you gain 1 CP.
- 3, your opponent loses 1CP.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="1903-250c-ab2c-58b7"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Improvised Armour" hidden="false" id="e40b-74a2-7d69-6915">
<profiles>
<profile name="Improvised Armour" typeId="0d20-7175-9ecb-8bde" typeName="Equipment" hidden="false" id="ab6a-56ed-3613-50eb">
<characteristics>
<characteristic name="Equipment" typeId="0e12-ef21-83f3-9fc6">Whenever an operative is shooting a friendly RATLING BULLGRYN or friendly RATLING OGRYN operative, defence dice results of 5+ are critical successes.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="9c1f-59cc-197e-e355"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Lucky Round" hidden="false" id="e206-cfb5-b776-3f71">
<profiles>
<profile name="Lucky Round" typeId="0d20-7175-9ecb-8bde" typeName="Equipment" hidden="false" id="4d67-10a3-43ca-69a9">
<characteristics>
<characteristic name="Equipment" typeId="0e12-ef21-83f3-9fc6">Once per turning point, whenever a friendly RATLING operative is shooting with a rifle and you've rolled you attack dice, you can use this rule if you haven't used the Purloined Rations equipment this activation. If you do, that weapon has the Severe weapon rule for that sequence.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="9191-d053-dd55-c1a4"/>
</constraints>
<infoLinks>
<infoLink name="Severe" id="3ef3-317e-c1e8-728d" hidden="false" type="rule" targetId="721c-65bf-dfb7-8fa2"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</sharedSelectionEntryGroups>
<entryLinks>
<entryLink import="true" name="Equipment Reference" hidden="false" id="c0b8-2e43-0033-3167" type="selectionEntry" targetId="e004-a0c4-8a03-0b8b">
<entryLinks>
<entryLink import="true" name="Faction Equipment" hidden="false" id="21d2-e94d-b4cd-0618" type="selectionEntryGroup" targetId="98b5-379b-400f-3f1d"/>
</entryLinks>
</entryLink>
</entryLinks>
<categoryEntries>
<categoryEntry name="Three of" id="7bdf-b087-84cf-9c37" hidden="false"/>
<categoryEntry name="RATLING" id="d9e5-2c96-40b8-eb77" hidden="false"/>
<categoryEntry name="Fixer" id="95b4-ee49-457c-25f7" hidden="false"/>
<categoryEntry name="Battlemutt" id="32c4-c96f-4773-9c01" hidden="false"/>
<categoryEntry name="Bullgryn" id="819d-fadf-beb4-ef8e" hidden="false"/>
<categoryEntry name="Big Shot" id="7332-f467-e909-6a49" hidden="false"/>
<categoryEntry name="Bomber" id="c832-be8b-1407-c65d" hidden="false"/>
<categoryEntry name="Hardbit" id="409b-2ad5-8dc7-3025" hidden="false"/>
<categoryEntry name="Raider" id="a1b9-6ca1-575e-2841" hidden="false"/>
<categoryEntry name="Sneak" id="58b3-d930-a3c5-7270" hidden="false"/>
<categoryEntry name="Ogryn" id="389a-c86c-0b82-affb" hidden="false"/>
<categoryEntry name="Sniper" id="093f-0110-8d45-5298" hidden="false"/>
<categoryEntry name="Spotter" id="9b69-2615-2211-42b6" hidden="false"/>
<categoryEntry name="Stashmaster" id="b5c5-063f-9237-9f74" hidden="false"/>
<categoryEntry name="Vox-thief" id="0f2b-d43c-2d6c-4525" hidden="false"/>
</categoryEntries>
<rules>
<rule name="Scarper" id="8dd9-d689-3eb2-85d7" hidden="false">
<description>After each enemy operative's activation, before the next operative is activated, you can perform a free **Dash** action with one friendly RATLING operating (excluding BULLGRYN, OGRYN, and SNEAK), but it cannot finish that move within 3" of an enemy operative unless it's not visible to every enemy operative when it finishes that move.
Each friendly operative can only do this once per turning point, and cannot do so after the final activation of the turning point. You cannot use this rule after consecutive enemy activations during the same turning point (in other words, after using this rule, you must skip the next opportunity during that turning point before you can use it again).</description>
</rule>
</rules>
<selectionEntries>
<selectionEntry type="model" import="true" name="Ratling Fixer" hidden="false" id="1d55-f75e-6051-be3c">
<profiles>
<profile name="Ratling Fixer" typeId="5156-3fb9-39ce-7bdb" typeName="Operative" hidden="false" id="942c-1728-ea03-1c51">
<characteristics>
<characteristic name="APL" typeId="bc83-42aa-b7c1-f0b1">2</characteristic>
<characteristic name="Move" typeId="c996-ffb3-e0b4-ecfa">5"</characteristic>
<characteristic name="Save" typeId="3241-5548-12d6-f103">5+</characteristic>
<characteristic name="Wounds" typeId="74f9-f91c-b8fd-89d9">7</characteristic>
</characteristics>
</profile>
<profile name="Munitorum Contacts" typeId="f887-5881-0e6d-755c" typeName="Abilities" hidden="false" id="03d4-c73e-e83d-8d32">
<characteristics>
<characteristic name="Ability" typeId="3467-0678-083e-eb50">You can select one additional equipment option.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="RATLING" hidden="false" id="c2f7-0c08-c7f6-bf9f" targetId="d9e5-2c96-40b8-eb77" primary="false"/>
<categoryLink name="Fixer" hidden="false" id="10cd-1831-9ee1-c79b" targetId="95b4-ee49-457c-25f7" primary="false"/>
<categoryLink name="Leader" hidden="false" id="8e30-78ed-4a55-2feb" targetId="d999-8cad-8145-4efe" primary="true"/>
<categoryLink name="Astra Militarum" hidden="false" id="da0a-9b3e-cf7d-9db7" targetId="6361-ec46-c5e5-cbe9" primary="false"/>
<categoryLink name="Imperium" hidden="false" id="cce3-f719-df15-eef9" targetId="45a7-2d2f-ecfb-1d13" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="Fists" hidden="false" id="ef91-7b23-179a-b554" type="selectionEntry" targetId="bf12-d037-f09d-940c">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="2a8c-3dd1-e341-8146-min" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="2a8c-3dd1-e341-8146-max" includeChildSelections="false"/>
</constraints>
</entryLink>
</entryLinks>
<selectionEntryGroups>
<selectionEntryGroup name="Ranged Weapon" id="2108-2b21-981a-82b6" hidden="false" defaultSelectionEntryId="none">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Sniper rifle" hidden="false" id="bde3-50ea-ad2a-8feb">
<profiles>
<profile name="⌖ Sniper rifle (mobile)" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="05d5-7586-0b50-b227">
<characteristics>
<characteristic name="ATK" typeId="6056-b741-7cf3-5b43">4</characteristic>
<characteristic name="HIT" typeId="8044-2517-4ef7-33de">3+</characteristic>
<characteristic name="DMG" typeId="dd3e-ef09-5d1a-37b4">3/4</characteristic>
<characteristic name="WR" typeId="05b8-00a1-69af-14b6">-</characteristic>
</characteristics>
</profile>
<profile name="⌖ Sniper rifle (stationary)" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="c2db-9164-31dc-dca1">
<characteristics>
<characteristic name="ATK" typeId="6056-b741-7cf3-5b43">4</characteristic>
<characteristic name="HIT" typeId="8044-2517-4ef7-33de">2+</characteristic>
<characteristic name="DMG" typeId="dd3e-ef09-5d1a-37b4">3/3</characteristic>
<characteristic name="WR" typeId="05b8-00a1-69af-14b6">Devastating 3, Heavy</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Devastating x" id="02a8-1904-52c3-194a" hidden="false" type="rule" targetId="a8ba-6e3a-76b3-f05c"/>
<infoLink name="Heavy" id="69fe-096a-1d39-e46e" hidden="false" type="rule" targetId="816e-44a2-6be4-6a9a"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="6fa6-95f9-5b06-28fc-min" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="6fa6-95f9-5b06-28fc-max" includeChildSelections="false"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Battle rifle" hidden="false" id="b1f7-6356-983f-48db" type="selectionEntry" targetId="1e6a-a937-664d-b912"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Target Designation" hidden="false" id="eb45-dcf7-8266-1107">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="a789-11d3-2600-7d0e-min" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="a789-11d3-2600-7d0e-max" includeChildSelections="false"/>
</constraints>
<profiles>
<profile name="Target Designation" typeId="f887-5881-0e6d-755c" typeName="Abilities" hidden="false" id="8fe6-0b43-f17e-70a6">
<characteristics>
<characteristic name="Ability" typeId="3467-0678-083e-eb50">STRATEGIC GAMBIT. Select one enemy operative visible to this operative. Until the end of the turning point, whenever a friendly RATLING operative is shooting that enemy operative with a rifle, that weapon has the Lethal 5+ weapon rule.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Lethal x+" id="af91-3c4c-9b54-dfb4" hidden="false" type="rule" targetId="8b97-e3e3-2857-817a"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="model" import="true" name="Ratling Battlemutt" hidden="false" id="9df5-1ab7-802b-66c9">
<profiles>
<profile name="Ratling Battlemutt" typeId="5156-3fb9-39ce-7bdb" typeName="Operative" hidden="false" id="08a1-94a1-ece2-dc9e">
<characteristics>
<characteristic name="APL" typeId="bc83-42aa-b7c1-f0b1">2</characteristic>
<characteristic name="Move" typeId="c996-ffb3-e0b4-ecfa">6"</characteristic>
<characteristic name="Save" typeId="3241-5548-12d6-f103">5+</characteristic>
<characteristic name="Wounds" typeId="74f9-f91c-b8fd-89d9">4</characteristic>
</characteristics>
</profile>
<profile name="Early Warning" typeId="f887-5881-0e6d-755c" typeName="Abilities" hidden="false" id="007d-9e26-3ab8-4bd0">
<characteristics>
<characteristic name="Ability" typeId="3467-0678-083e-eb50">Once per turning point, after an enemy operative performs an action in which it moves, you can interrupt that activation (or counteraction) to use this rule. If you do, each friendly RATLING operative (excluding OGRYN and BULLGRYN) within 6" of this operative and within 2" of that enemy operative can perform a free **Dash** action or a free **Fall Back** action, but it cannot move more than 3". In either case, each one cannot finish that move within 3" of an enemy operative unless it's not visible to every enemy operative when it finishes that move (if this isn't possible for an operative, it cannot move).</characteristic>
</characteristics>
</profile>
<profile name="Beast" typeId="f887-5881-0e6d-755c" typeName="Abilities" hidden="false" id="4ac7-3cf5-c812-f891">
<characteristics>
<characteristic name="Ability" typeId="3467-0678-083e-eb50">This operative cannot perform any actions other than **Charge**, **Dash**, **Fall Back**, **Fight** and **Reposition**. It cannot use any weapons that aren't on its datacard.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="RATLING" hidden="false" id="1271-a8aa-4da2-99a0" targetId="d9e5-2c96-40b8-eb77" primary="false"/>
<categoryLink name="Operative" hidden="false" id="289b-b63c-c144-6d33" targetId="cf83-4496-b58e-ac82" primary="true"/>
<categoryLink name="Imperium" hidden="false" id="9c09-1895-f107-5853" targetId="45a7-2d2f-ecfb-1d13" primary="false"/>
<categoryLink name="Astra Militarum" hidden="false" id="02e8-54e8-66e5-01c5" targetId="6361-ec46-c5e5-cbe9" primary="false"/>
<categoryLink name="Battlemutt" hidden="false" id="f933-ec64-a4e9-7720" targetId="32c4-c96f-4773-9c01" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Bite" hidden="false" id="dbe3-624d-b107-f6c1">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="23c7-f129-c011-326e-min" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="23c7-f129-c011-326e-max" includeChildSelections="false"/>
</constraints>
<profiles>
<profile name="⚔ Bite" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="c508-0ec2-b43e-d2c9">
<characteristics>
<characteristic name="ATK" typeId="6056-b741-7cf3-5b43">4</characteristic>
<characteristic name="HIT" typeId="8044-2517-4ef7-33de">3+</characteristic>
<characteristic name="DMG" typeId="dd3e-ef09-5d1a-37b4">2/4</characteristic>
<characteristic name="WR" typeId="05b8-00a1-69af-14b6">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="e64f-c6b9-3d26-4b7c" shared="true" id="67cc-f3bf-ceb9-0cc8"/>
</constraints>
</selectionEntry>
<selectionEntry type="model" import="true" name="Bullgryn" hidden="false" id="c30a-5176-c739-931f">
<categoryLinks>
<categoryLink name="RATLING" hidden="false" id="1ce5-2df4-6c31-30f0" targetId="d9e5-2c96-40b8-eb77" primary="false"/>
<categoryLink name="Imperium" hidden="false" id="38bc-a975-9ce5-3fbb" targetId="45a7-2d2f-ecfb-1d13" primary="false"/>
<categoryLink name="Astra Militarum" hidden="false" id="a782-a038-cd99-7c9f" targetId="6361-ec46-c5e5-cbe9" primary="false"/>
<categoryLink name="Bullgryn" hidden="false" id="b2bc-1641-e5c4-34ad" targetId="819d-fadf-beb4-ef8e" primary="false"/>
<categoryLink name="Three of" hidden="false" id="2fb4-95a2-cc39-dfd9" targetId="7bdf-b087-84cf-9c37" primary="false"/>
<categoryLink name="Operative" hidden="false" id="08d4-c890-ab45-cda4" targetId="cf83-4496-b58e-ac82" primary="true"/>
</categoryLinks>
<profiles>
<profile name="Bullgryn" typeId="5156-3fb9-39ce-7bdb" typeName="Operative" hidden="false" id="ef9b-bdcb-b0af-dcfb">
<characteristics>
<characteristic name="APL" typeId="bc83-42aa-b7c1-f0b1">2</characteristic>
<characteristic name="Move" typeId="c996-ffb3-e0b4-ecfa">6"</characteristic>
<characteristic name="Save" typeId="3241-5548-12d6-f103">4+</characteristic>
<characteristic name="Wounds" typeId="74f9-f91c-b8fd-89d9">16</characteristic>
</characteristics>
<modifiers>
<modifier type="set" value="3+" field="3241-5548-12d6-f103">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="c30a-5176-c739-931f" childId="8eb2-19ee-49a3-47f1" shared="true"/>
</conditions>
</modifier>
</modifiers>
</profile>
<profile name="Shield" typeId="f887-5881-0e6d-755c" typeName="Abilities" hidden="false" id="a240-5707-b2bd-831b">
<characteristics>
<characteristic name="Ability" typeId="3467-0678-083e-eb50">If this operative has a slabshield, it has a 3+ Save stat; if it has a brute shield, whenever it's fighting or retaliating, each of your blocks can be allocated to block two unresolved successes (instead of one).</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntryGroups>
<selectionEntryGroup name="Primary Weapon" id="b9ef-c568-1a0d-1cd4" hidden="false" defaultSelectionEntryId="none">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="7a31-40f4-3219-1cb3-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="7a31-40f4-3219-1cb3-max"/>
</constraints>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Grenadier gauntlet" hidden="false" id="2c55-3e0a-1383-9e12">
<profiles>
<profile name="⌖ Grenadier gauntlet" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="d3ac-0581-88ed-b87c">
<characteristics>
<characteristic name="ATK" typeId="6056-b741-7cf3-5b43">4</characteristic>
<characteristic name="HIT" typeId="8044-2517-4ef7-33de">4+</characteristic>
<characteristic name="DMG" typeId="dd3e-ef09-5d1a-37b4">3/5</characteristic>
<characteristic name="WR" typeId="05b8-00a1-69af-14b6">Blast 2"</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Blast x" id="40e6-0fd4-d985-8226" hidden="false" type="rule" targetId="0d74-0977-b481-bd13"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Power maul" hidden="false" id="6136-d2f6-78b4-bc4f">
<profiles>
<profile name="⚔ Power maul" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="e641-5d6f-6d94-174c">
<characteristics>
<characteristic name="ATK" typeId="6056-b741-7cf3-5b43">4</characteristic>
<characteristic name="HIT" typeId="8044-2517-4ef7-33de">3+</characteristic>
<characteristic name="DMG" typeId="dd3e-ef09-5d1a-37b4">4/6</characteristic>
<characteristic name="WR" typeId="05b8-00a1-69af-14b6">Shock</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Shock" id="7d59-f196-716c-c732" hidden="false" type="rule" targetId="c544-8d4c-4109-4eec"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
<selectionEntryGroup name="Shield" id="159a-34da-01a4-bbb1" hidden="false" defaultSelectionEntryId="none">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="4571-10e7-b1c9-f84b-min" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="4571-10e7-b1c9-f84b-max" includeChildSelections="false"/>
</constraints>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Brute shield" hidden="false" id="4857-3549-f5b0-f459">
<profiles>
<profile name="⚔ Brute shield" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="4956-60d5-f2d7-9ae7">
<characteristics>
<characteristic name="ATK" typeId="6056-b741-7cf3-5b43">4</characteristic>
<characteristic name="HIT" typeId="8044-2517-4ef7-33de">3+</characteristic>
<characteristic name="DMG" typeId="dd3e-ef09-5d1a-37b4">3/4</characteristic>
<characteristic name="WR" typeId="05b8-00a1-69af-14b6">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Slabshield" hidden="false" id="8eb2-19ee-49a3-47f1">
<profiles>
<profile name="⚔ Slabshield" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="d195-6f80-a7e7-75d6">
<characteristics>
<characteristic name="ATK" typeId="6056-b741-7cf3-5b43">4</characteristic>
<characteristic name="HIT" typeId="8044-2517-4ef7-33de">4+</characteristic>
<characteristic name="DMG" typeId="dd3e-ef09-5d1a-37b4">3/4</characteristic>
<characteristic name="WR" typeId="05b8-00a1-69af-14b6">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<infoLinks>
<infoLink name="Brute" id="0f6d-0893-a150-16e4" hidden="false" type="profile" targetId="4b1b-02d7-af20-887a"/>
<infoLink name="Slow-witted" id="291d-7df8-18f1-0986" hidden="false" type="profile" targetId="80b1-56b1-9f9d-733a"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="model" import="true" name="Ratling Big Shot" hidden="false" id="1360-c197-1c65-32db">
<categoryLinks>
<categoryLink name="RATLING" hidden="false" id="c12e-44e3-e8b2-27b7" targetId="d9e5-2c96-40b8-eb77" primary="false"/>
<categoryLink name="Big Shot" hidden="false" id="f31a-1fcb-abc1-22f8" targetId="7332-f467-e909-6a49" primary="false"/>
<categoryLink name="Operative" hidden="false" id="b102-cd73-6729-e31e" targetId="cf83-4496-b58e-ac82" primary="true"/>
<categoryLink name="Imperium" hidden="false" id="5861-600f-de9c-4e06" targetId="45a7-2d2f-ecfb-1d13" primary="false"/>
<categoryLink name="Astra Militarum" hidden="false" id="9614-7902-2738-f8aa" targetId="6361-ec46-c5e5-cbe9" primary="false"/>
</categoryLinks>
<profiles>
<profile name="Ratling Big Shot" typeId="5156-3fb9-39ce-7bdb" typeName="Operative" hidden="false" id="23b9-6215-e656-3ba9">
<characteristics>
<characteristic name="APL" typeId="bc83-42aa-b7c1-f0b1">2</characteristic>
<characteristic name="Move" typeId="c996-ffb3-e0b4-ecfa">5"</characteristic>
<characteristic name="Save" typeId="3241-5548-12d6-f103">5+</characteristic>
<characteristic name="Wounds" typeId="74f9-f91c-b8fd-89d9">6</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Tankstopper rifle" hidden="false" id="9c6d-79bf-3006-0dbf">
<profiles>
<profile name="⌖ Tankstopper rifle (mobile)" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="907f-7c62-491b-1567">
<characteristics>
<characteristic name="ATK" typeId="6056-b741-7cf3-5b43">4</characteristic>
<characteristic name="HIT" typeId="8044-2517-4ef7-33de">3+</characteristic>
<characteristic name="DMG" typeId="dd3e-ef09-5d1a-37b4">4/4</characteristic>
<characteristic name="WR" typeId="05b8-00a1-69af-14b6">Devastating 1, Heavy (Dash only), Piercing 1</characteristic>
</characteristics>
</profile>
<profile name="⌖ Tankstopper rifle (stationary)" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="f1bd-3d78-6dd7-8ed2">
<characteristics>
<characteristic name="ATK" typeId="6056-b741-7cf3-5b43">4</characteristic>
<characteristic name="HIT" typeId="8044-2517-4ef7-33de">2+</characteristic>
<characteristic name="DMG" typeId="dd3e-ef09-5d1a-37b4">4/2</characteristic>
<characteristic name="WR" typeId="05b8-00a1-69af-14b6">Devastating 4, Heavy, Piercing 1, Severe</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="f3fb-cb01-5378-c14d-min" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="f3fb-cb01-5378-c14d-max" includeChildSelections="false"/>
</constraints>
<infoLinks>
<infoLink name="Devastating x" id="69cb-481e-8a56-d7c8" hidden="false" type="rule" targetId="a8ba-6e3a-76b3-f05c"/>
<infoLink name="Heavy" id="c023-fc7f-2874-dd71" hidden="false" type="rule" targetId="816e-44a2-6be4-6a9a"/>
<infoLink name="Piercing x" id="6d2c-f8f5-fe91-b42b" hidden="false" type="rule" targetId="4c07-2cb3-1417-cbb7"/>
<infoLink name="Severe" id="8c7f-59c2-fd9f-db83" hidden="false" type="rule" targetId="721c-65bf-dfb7-8fa2"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink import="true" name="Fists" hidden="false" id="e7a4-999b-85fa-d4f4" type="selectionEntry" targetId="bf12-d037-f09d-940c">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="63a5-6826-f27e-6222-min" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="63a5-6826-f27e-6222-max" includeChildSelections="false"/>
</constraints>
</entryLink>
</entryLinks>
<constraints>
<constraint type="max" value="1" field="selections" scope="e64f-c6b9-3d26-4b7c" shared="true" id="888c-eeb6-e838-1824"/>
</constraints>
</selectionEntry>
<selectionEntry type="model" import="true" name="Ratling Bomber" hidden="false" id="793c-2594-ef3b-fee5">
<profiles>
<profile name="Ratling Bomber" typeId="5156-3fb9-39ce-7bdb" typeName="Operative" hidden="false" id="cfe5-f263-c2ff-5624">
<characteristics>
<characteristic name="APL" typeId="bc83-42aa-b7c1-f0b1">2</characteristic>
<characteristic name="Move" typeId="c996-ffb3-e0b4-ecfa">5"</characteristic>
<characteristic name="Save" typeId="3241-5548-12d6-f103">4+</characteristic>
<characteristic name="Wounds" typeId="74f9-f91c-b8fd-89d9">6</characteristic>
</characteristics>
</profile>
<profile name="Tripwire" typeId="f887-5881-0e6d-755c" typeName="Abilities" hidden="false" id="d69d-c443-3c78-da34">
<characteristics>
<characteristic name="Ability" typeId="3467-0678-083e-eb50">When setting up equipment before the battle, you can set up two of your Tripwire markers up wholly within your territory and more than 2" from other markers. The first time that marker is within an enemy operative's control range, end that operative's action (if any), remove that marker and subtract 1 from that operative's APL stat until the end of its next activation.</characteristic>
</characteristics>
</profile>
<profile name="Mine" typeId="f887-5881-0e6d-755c" typeName="Abilities" hidden="false" id="a056-4eac-ccff-5184">
<characteristics>
<characteristic name="Ability" typeId="3467-0678-083e-eb50">Mines you select from universal equipment inflict 2D3+3 damage instead, and friendly RATLING operatives (excluding OGRYN and BULLGRYN) are ignored for its effects (i.e. they can't trigger it or take damage from it). This takes precedence over the normal mines rules.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="RATLING" hidden="false" id="8211-5288-c067-2169" targetId="d9e5-2c96-40b8-eb77" primary="false"/>
<categoryLink name="Operative" hidden="false" id="83fb-11e5-93b6-c6ae" targetId="cf83-4496-b58e-ac82" primary="true"/>
<categoryLink name="Bomber" hidden="false" id="fb01-45da-1cc2-b5f2" targetId="c832-be8b-1407-c65d" primary="false"/>
<categoryLink name="Imperium" hidden="false" id="15a9-1bd5-b8ae-c56f" targetId="45a7-2d2f-ecfb-1d13" primary="false"/>
<categoryLink name="Astra Militarum" hidden="false" id="458d-6277-3a67-23ea" targetId="6361-ec46-c5e5-cbe9" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Explosive arsenal" hidden="false" id="5302-de98-fed0-d090">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="8c63-7d6b-2f20-7fa9-min" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="8c63-7d6b-2f20-7fa9-max" includeChildSelections="false"/>
</constraints>
<profiles>
<profile name="⌖ Explosive arsenal" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="8dd8-3b36-9827-7f7c">
<characteristics>
<characteristic name="ATK" typeId="6056-b741-7cf3-5b43">5</characteristic>
<characteristic name="HIT" typeId="8044-2517-4ef7-33de">3+</characteristic>
<characteristic name="DMG" typeId="dd3e-ef09-5d1a-37b4">4/5</characteristic>
<characteristic name="WR" typeId="05b8-00a1-69af-14b6">Range 3", Blast 1", Heavy (Reposition only), Limited 1, Piercing 1, Saturate</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Range x" id="43f2-5650-681e-da78" hidden="false" type="rule" targetId="a528-829e-8268-c005"/>
<infoLink name="Blast x" id="a6a8-2904-5859-e3d8" hidden="false" type="rule" targetId="0d74-0977-b481-bd13"/>
<infoLink name="Heavy" id="d72f-7fa6-1d9c-e090" hidden="false" type="rule" targetId="816e-44a2-6be4-6a9a"/>
<infoLink name="Limited x" id="fec9-9c0d-5551-01f7" hidden="false" type="rule" targetId="bf37-3388-40d5-eb72"/>
<infoLink name="Piercing x" id="d5b7-04e7-3732-2eba" hidden="false" type="rule" targetId="4c07-2cb3-1417-cbb7"/>
<infoLink name="Saturate" id="ec78-3edf-334e-27de" hidden="false" type="rule" targetId="3c10-2d52-d1ac-b0f6"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="e64f-c6b9-3d26-4b7c" shared="true" id="6584-24e1-01ab-a5fa"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Sniper rifle" hidden="false" id="cc8d-a132-1245-da4a" type="selectionEntry" targetId="b700-9c0e-f746-b3e1">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="9531-bcba-4669-dd1a-min" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="9531-bcba-4669-dd1a-max" includeChildSelections="false"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntry>
<selectionEntry type="model" import="true" name="Ratling Hardbit" hidden="false" id="61c4-3db8-d3ab-c281">
<profiles>
<profile name="Ratling Hardbit" typeId="5156-3fb9-39ce-7bdb" typeName="Operative" hidden="false" id="d539-d09a-e3be-451e">
<characteristics>
<characteristic name="APL" typeId="bc83-42aa-b7c1-f0b1">2</characteristic>
<characteristic name="Move" typeId="c996-ffb3-e0b4-ecfa">5"</characteristic>
<characteristic name="Save" typeId="3241-5548-12d6-f103">5+</characteristic>
<characteristic name="Wounds" typeId="74f9-f91c-b8fd-89d9">6</characteristic>
</characteristics>
</profile>
<profile name="Lie in Wait" typeId="f887-5881-0e6d-755c" typeName="Abilities" hidden="false" id="2d92-f5d8-0db6-ccf5">
<characteristics>
<characteristic name="Ability" typeId="3467-0678-083e-eb50">Whenever this operative is retaliating while Light or Heavy terrain is within its control range, you resolve the first attack dice (i.e. defender instead of attacker).</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Combat knife" hidden="false" id="26d9-e5b3-4197-8ca7">
<profiles>
<profile name="⚔ Combat knife" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="d9fd-1be1-3bee-80f3">
<characteristics>
<characteristic name="ATK" typeId="6056-b741-7cf3-5b43">3</characteristic>
<characteristic name="HIT" typeId="8044-2517-4ef7-33de">3+</characteristic>
<characteristic name="DMG" typeId="dd3e-ef09-5d1a-37b4">3/5</characteristic>
<characteristic name="WR" typeId="05b8-00a1-69af-14b6">Balanced</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="3b6e-67ec-a548-b78a-min" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="3b6e-67ec-a548-b78a-max" includeChildSelections="false"/>
</constraints>
<infoLinks>
<infoLink name="Balanced" id="5160-baf7-45f5-6063" hidden="false" type="rule" targetId="28f7-0d96-d1fc-f75b"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Hunter" hidden="false" id="5415-619b-6cfe-4999">
<profiles>
<profile name="Hunter" typeId="f887-5881-0e6d-755c" typeName="Abilities" hidden="false" id="6a50-2c51-0bfb-b825">
<characteristics>
<characteristic name="Ability" typeId="3467-0678-083e-eb50">This operative can perform the **Charge** action while it has a Conceal order. If it does so during its activation, until the end of that activation, add 1 to the Atk stat of its combat knife and that melee weapon has the Brutal weapon rule.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="c8f0-88f1-fefd-a382-min" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="c8f0-88f1-fefd-a382-max" includeChildSelections="false"/>
</constraints>
<infoLinks>
<infoLink name="Brutal" id="9619-27b7-f1cc-3cf1" hidden="false" type="rule" targetId="5151-5449-ca81-70ed"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink import="true" name="Battle rifle" hidden="false" id="2fb7-bf56-74fb-7969" type="selectionEntry" targetId="1e6a-a937-664d-b912">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="03e6-9f71-6a63-8f47-min" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="03e6-9f71-6a63-8f47-max" includeChildSelections="false"/>
</constraints>
</entryLink>
</entryLinks>
<categoryLinks>
<categoryLink name="Operative" hidden="false" id="a227-cd1d-edaf-73e2" targetId="cf83-4496-b58e-ac82" primary="true"/>
<categoryLink name="RATLING" hidden="false" id="9cc6-2266-86d8-8d84" targetId="d9e5-2c96-40b8-eb77" primary="false"/>
<categoryLink name="Imperium" hidden="false" id="49da-5d2d-a08c-a0d1" targetId="45a7-2d2f-ecfb-1d13" primary="false"/>
<categoryLink name="Astra Militarum" hidden="false" id="4f1c-91af-3dd5-590c" targetId="6361-ec46-c5e5-cbe9" primary="false"/>
<categoryLink name="Hardbit" hidden="false" id="9456-7758-0dd5-254b" targetId="409b-2ad5-8dc7-3025" primary="false"/>
</categoryLinks>
<constraints>
<constraint type="max" value="1" field="selections" scope="e64f-c6b9-3d26-4b7c" shared="true" id="a3fc-3fde-897c-f4de"/>
</constraints>
</selectionEntry>
<selectionEntry type="model" import="true" name="Ratling Raider" hidden="false" id="f869-65aa-dfaf-ea12">
<categoryLinks>
<categoryLink name="RATLING" hidden="false" id="2fab-789f-5bb6-bb59" targetId="d9e5-2c96-40b8-eb77" primary="false"/>
<categoryLink name="Operative" hidden="false" id="c016-03ce-d7f5-3e10" targetId="cf83-4496-b58e-ac82" primary="true"/>
<categoryLink name="Imperium" hidden="false" id="ea83-4a9e-3702-1436" targetId="45a7-2d2f-ecfb-1d13" primary="false"/>
<categoryLink name="Astra Militarum" hidden="false" id="703e-c109-54df-371e" targetId="6361-ec46-c5e5-cbe9" primary="false"/>
<categoryLink name="Raider" hidden="false" id="d7bb-b306-22a2-f5c6" targetId="a1b9-6ca1-575e-2841" primary="false"/>
</categoryLinks>
<profiles>
<profile name="Ratling Raider" typeId="5156-3fb9-39ce-7bdb" typeName="Operative" hidden="false" id="132f-bd84-7dc2-eae8">
<characteristics>
<characteristic name="APL" typeId="bc83-42aa-b7c1-f0b1">2</characteristic>
<characteristic name="Move" typeId="c996-ffb3-e0b4-ecfa">5"</characteristic>
<characteristic name="Save" typeId="3241-5548-12d6-f103">5+</characteristic>
<characteristic name="Wounds" typeId="74f9-f91c-b8fd-89d9">6</characteristic>
</characteristics>
</profile>
<profile name="Slingshot (1AP)" typeId="8f2a-d3d6-1a0c-7fa3" typeName="Unique Actions" hidden="false" id="565c-b5b1-0d6c-2d9c">
<characteristics>
<characteristic name="Unique Action" typeId="ba93-e32d-f1ac-e188">▶ Select a point on a terrain feature that's visible to, horizontally within 6" of and higher than this operative. Remove this operative from the killzone and set it back up wholly within x+1" horizontally of that point, not within control range of an enemy operative, and with that point visible to it. X is that point's height, rounded to the nearest inch (to a maximum of 6").
◆ This action is treated as a **Reposition** action. This operative cannot perform this action while within control range of an enemy operative, or during an activation in which it performed the **Charge**, **Fall Back**, or **Shoot** action (or vice versa).</characteristic>
</characteristics>
</profile>
<profile name="Grappling Hook" typeId="f887-5881-0e6d-755c" typeName="Abilities" hidden="false" id="a13f-c9ea-f216-f2af">
<characteristics>
<characteristic name="Ability" typeId="3467-0678-083e-eb50">Whenever this operative is climbing terrain, treat the vertical distance as 2" (regardless of how far the operative actually moved vertically).</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Dagger" hidden="false" id="94f9-150d-c39b-5a37">
<profiles>
<profile name="⚔ Dagger" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="8b74-1509-c4f6-decd">
<characteristics>
<characteristic name="ATK" typeId="6056-b741-7cf3-5b43">3</characteristic>
<characteristic name="HIT" typeId="8044-2517-4ef7-33de">4+</characteristic>
<characteristic name="DMG" typeId="dd3e-ef09-5d1a-37b4">2/3</characteristic>
<characteristic name="WR" typeId="05b8-00a1-69af-14b6">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="dfac-8007-bfa6-62d6-min" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="dfac-8007-bfa6-62d6-max" includeChildSelections="false"/>
</constraints>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink import="true" name="Suppressed sniper rifle" hidden="false" id="d49b-0ce7-c312-13d2" type="selectionEntry" targetId="5750-4bb7-4ef0-d750">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="fef3-12b5-488c-d657-min" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="fef3-12b5-488c-d657-max" includeChildSelections="false"/>
</constraints>
</entryLink>
</entryLinks>
<constraints>
<constraint type="max" value="1" field="selections" scope="e64f-c6b9-3d26-4b7c" shared="true" id="8744-3a5b-96d3-c143"/>
</constraints>
</selectionEntry>
<selectionEntry type="model" import="true" name="Ratling Sneak" hidden="false" id="2fb4-17af-1f91-0a56">
<categoryLinks>
<categoryLink name="RATLING" hidden="false" id="7713-21d7-5d7b-3710" targetId="d9e5-2c96-40b8-eb77" primary="false"/>
<categoryLink name="Imperium" hidden="false" id="4ee7-40ab-43ba-605a" targetId="45a7-2d2f-ecfb-1d13" primary="false"/>
<categoryLink name="Astra Militarum" hidden="false" id="6b94-371f-7f15-bd7f" targetId="6361-ec46-c5e5-cbe9" primary="false"/>
<categoryLink name="Operative" hidden="false" id="e7e4-64d2-5f67-fba8" targetId="cf83-4496-b58e-ac82" primary="true"/>
<categoryLink name="Sneak" hidden="false" id="524e-b331-bfc4-7b14" targetId="58b3-d930-a3c5-7270" primary="false"/>
</categoryLinks>
<profiles>
<profile name="Ratling Sneak" typeId="5156-3fb9-39ce-7bdb" typeName="Operative" hidden="false" id="2e8f-66a7-e729-11b2">
<characteristics>
<characteristic name="APL" typeId="bc83-42aa-b7c1-f0b1">2</characteristic>
<characteristic name="Move" typeId="c996-ffb3-e0b4-ecfa">5"</characteristic>
<characteristic name="Save" typeId="3241-5548-12d6-f103">5+</characteristic>
<characteristic name="Wounds" typeId="74f9-f91c-b8fd-89d9">6</characteristic>
</characteristics>
</profile>
<profile name="Optics (1AP)" typeId="8f2a-d3d6-1a0c-7fa3" typeName="Unique Actions" hidden="false" id="c0c0-5208-b70d-e608">
<characteristics>
<characteristic name="Unique Action" typeId="ba93-e32d-f1ac-e188">▶ Until the start of this operative's next activation, whenever it's shooting, enemy operatives cannot be obscured.
◆ This operative cannot perform this action while within control range of an enemy operative.</characteristic>
</characteristics>
</profile>
<profile name="Evade" typeId="f887-5881-0e6d-755c" typeName="Abilities" hidden="false" id="3321-f22b-68f6-c89f">
<characteristics>
<characteristic name="Ability" typeId="3467-0678-083e-eb50">Once per turning point, after an enemy operative performs an action, you can interrupt that activation (or counteraction) and perform a free **Dash** action with this operative. Note this operative cannot use the Scarper faction rule (it has this rule instead).</characteristic>
</characteristics>
</profile>
</profiles>
<entryLinks>
<entryLink import="true" name="Suppressed sniper rifle" hidden="false" id="cfbd-494d-478a-5ebe" type="selectionEntry" targetId="5750-4bb7-4ef0-d750">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="0c04-daf4-fc02-00bd-min" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="0c04-daf4-fc02-00bd-max" includeChildSelections="false"/>
</constraints>
</entryLink>
<entryLink import="true" name="Fists" hidden="false" id="6d49-c9a9-4e82-5888" type="selectionEntry" targetId="bf12-d037-f09d-940c">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="2eef-6d03-87fe-6790-min" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="2eef-6d03-87fe-6790-max" includeChildSelections="false"/>
</constraints>
</entryLink>
</entryLinks>
<constraints>
<constraint type="max" value="1" field="selections" scope="e64f-c6b9-3d26-4b7c" shared="true" id="0d93-8a25-a9fe-848f"/>
</constraints>
</selectionEntry>
<selectionEntry type="model" import="true" name="Ogryn" hidden="false" id="4321-c089-f210-4f34">
<categoryLinks>
<categoryLink name="Operative" hidden="false" id="913f-d16b-f1dc-8d19" targetId="cf83-4496-b58e-ac82" primary="true"/>
<categoryLink name="RATLING" hidden="false" id="0dfe-ceaf-1ef7-b6fb" targetId="d9e5-2c96-40b8-eb77" primary="false"/>
<categoryLink name="Imperium" hidden="false" id="17f1-81a2-beac-409a" targetId="45a7-2d2f-ecfb-1d13" primary="false"/>
<categoryLink name="Astra Militarum" hidden="false" id="53f8-c08b-1347-a3b5" targetId="6361-ec46-c5e5-cbe9" primary="false"/>
<categoryLink name="Ogryn" hidden="false" id="fe30-d4e8-101e-f133" targetId="389a-c86c-0b82-affb" primary="false"/>
<categoryLink name="Three of" hidden="false" id="ad7a-d846-0ef2-a9d0" targetId="7bdf-b087-84cf-9c37" primary="false"/>
</categoryLinks>
<profiles>
<profile name="Ogryn" typeId="5156-3fb9-39ce-7bdb" typeName="Operative" hidden="false" id="f0c7-641c-a4f2-ed8f">
<characteristics>
<characteristic name="APL" typeId="bc83-42aa-b7c1-f0b1">2</characteristic>
<characteristic name="Move" typeId="c996-ffb3-e0b4-ecfa">6"</characteristic>
<characteristic name="Save" typeId="3241-5548-12d6-f103">5+</characteristic>
<characteristic name="Wounds" typeId="74f9-f91c-b8fd-89d9">16</characteristic>
</characteristics>
</profile>
<profile name="Bayonet Charge" typeId="f887-5881-0e6d-755c" typeName="Abilities" hidden="false" id="904a-f12c-0949-eabb">
<characteristics>
<characteristic name="Ability" typeId="3467-0678-083e-eb50">Whenever this operative finishes moving during the **Charge** action, you can inflict D3+1 damage on one enemy operative within its control range.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Ripper gun" hidden="false" id="829e-3d13-0211-b7ad">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="6731-7149-c69e-f65c-min" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="6731-7149-c69e-f65c-max" includeChildSelections="false"/>
</constraints>
<profiles>
<profile name="⌖ Ripper gun" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="603b-5c9c-b16f-dc62">
<characteristics>
<characteristic name="ATK" typeId="6056-b741-7cf3-5b43">4</characteristic>
<characteristic name="HIT" typeId="8044-2517-4ef7-33de">3+</characteristic>
<characteristic name="DMG" typeId="dd3e-ef09-5d1a-37b4">4/5</characteristic>
<characteristic name="WR" typeId="05b8-00a1-69af-14b6">Range 8", Punishing</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Range x" id="3df5-176d-4982-ca1b" hidden="false" type="rule" targetId="a528-829e-8268-c005"/>
<infoLink name="Punishing" id="4a2c-10a0-9a74-2753" hidden="false" type="rule" targetId="4805-d37d-3ff2-5c9e"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Bayonet" hidden="false" id="03c0-7500-871d-06a0">
<profiles>
<profile name="⚔ Bayonet" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="e177-11f9-be20-91b8">
<characteristics>
<characteristic name="ATK" typeId="6056-b741-7cf3-5b43">4</characteristic>
<characteristic name="HIT" typeId="8044-2517-4ef7-33de">3+</characteristic>
<characteristic name="DMG" typeId="dd3e-ef09-5d1a-37b4">4/5</characteristic>
<characteristic name="WR" typeId="05b8-00a1-69af-14b6">-</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="ec79-104a-0fc1-3ec1-min" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="ec79-104a-0fc1-3ec1-max" includeChildSelections="false"/>
</constraints>
</selectionEntry>
</selectionEntries>
<infoLinks>
<infoLink name="Slow-witted" id="ada2-0f1a-e0c0-5dbd" hidden="false" type="profile" targetId="80b1-56b1-9f9d-733a"/>
<infoLink name="Brute" id="5c4a-9599-2e37-b7bd" hidden="false" type="profile" targetId="4b1b-02d7-af20-887a"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="model" import="true" name="Ratling Sniper" hidden="false" id="af07-231b-61e5-6865">
<categoryLinks>
<categoryLink name="Operative" hidden="false" id="6851-b5d2-c9b3-b502" targetId="cf83-4496-b58e-ac82" primary="true"/>
<categoryLink name="Sniper" hidden="false" id="de26-da28-827e-f9cf" targetId="093f-0110-8d45-5298" primary="false"/>
<categoryLink name="Imperium" hidden="false" id="068d-8107-7ea0-99b5" targetId="45a7-2d2f-ecfb-1d13" primary="false"/>
<categoryLink name="Astra Militarum" hidden="false" id="14e3-a4bb-36e3-dff3" targetId="6361-ec46-c5e5-cbe9" primary="false"/>
<categoryLink name="RATLING" hidden="false" id="dce5-261f-67d6-b34b" targetId="d9e5-2c96-40b8-eb77" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="Sniper rifle" hidden="false" id="70d5-c598-0aaa-0b4d" type="selectionEntry" targetId="b700-9c0e-f746-b3e1">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="acb8-e41e-4912-57d8-min" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="acb8-e41e-4912-57d8-max" includeChildSelections="false"/>
</constraints>
</entryLink>
<entryLink import="true" name="Fists" hidden="false" id="87f1-8ee8-264d-e630" type="selectionEntry" targetId="bf12-d037-f09d-940c">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="37d6-a760-9e68-aed1-min" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="37d6-a760-9e68-aed1-max" includeChildSelections="false"/>
</constraints>
</entryLink>
</entryLinks>
<profiles>
<profile name="Ratling Sniper" typeId="5156-3fb9-39ce-7bdb" typeName="Operative" hidden="false" id="6c6e-96eb-e1e3-769c">
<characteristics>
<characteristic name="APL" typeId="bc83-42aa-b7c1-f0b1">2</characteristic>
<characteristic name="Move" typeId="c996-ffb3-e0b4-ecfa">5"</characteristic>
<characteristic name="Save" typeId="3241-5548-12d6-f103">5+</characteristic>
<characteristic name="Wounds" typeId="74f9-f91c-b8fd-89d9">6</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="model" import="true" name="Ratling Spotter" hidden="false" id="7548-0075-36b9-54d2">
<categoryLinks>
<categoryLink name="RATLING" hidden="false" id="8812-0389-7460-2522" targetId="d9e5-2c96-40b8-eb77" primary="false"/>
<categoryLink name="Imperium" hidden="false" id="bd4f-7b50-94fd-38b6" targetId="45a7-2d2f-ecfb-1d13" primary="false"/>
<categoryLink name="Astra Militarum" hidden="false" id="1581-0a13-6e4f-3896" targetId="6361-ec46-c5e5-cbe9" primary="false"/>
<categoryLink name="Spotter" hidden="false" id="982d-863b-ea33-c948" targetId="9b69-2615-2211-42b6" primary="false"/>
<categoryLink name="Operative" hidden="false" id="7899-a82c-3a23-6a9f" targetId="cf83-4496-b58e-ac82" primary="true"/>
</categoryLinks>
<profiles>
<profile name="Ratling Spotter" typeId="5156-3fb9-39ce-7bdb" typeName="Operative" hidden="false" id="bf1a-26f0-b5af-581c">
<characteristics>
<characteristic name="APL" typeId="bc83-42aa-b7c1-f0b1">2</characteristic>
<characteristic name="Move" typeId="c996-ffb3-e0b4-ecfa">5"</characteristic>
<characteristic name="Save" typeId="3241-5548-12d6-f103">5+</characteristic>
<characteristic name="Wounds" typeId="74f9-f91c-b8fd-89d9">6</characteristic>
</characteristics>
</profile>
</profiles>
<entryLinks>
<entryLink import="true" name="Sniper rifle" hidden="false" id="cc60-1a57-6743-a17e" type="selectionEntry" targetId="b700-9c0e-f746-b3e1">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="e349-92bd-3a55-9ec2-min" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="e349-92bd-3a55-9ec2-max" includeChildSelections="false"/>
</constraints>
</entryLink>
<entryLink import="true" name="Fists" hidden="false" id="4f75-5262-e4d0-87f6" type="selectionEntry" targetId="bf12-d037-f09d-940c">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="9c8f-7fa8-57bb-b798-min" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="9c8f-7fa8-57bb-b798-max" includeChildSelections="false"/>
</constraints>
</entryLink>
</entryLinks>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Spot" hidden="false" id="2048-24c5-4ad3-d59d">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="40ea-b300-5bca-86a9-min" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="40ea-b300-5bca-86a9-max" includeChildSelections="false"/>
</constraints>
<profiles>
<profile name="Spot (1AP)" typeId="8f2a-d3d6-1a0c-7fa3" typeName="Unique Actions" hidden="false" id="5f5f-8889-9d3e-0de6">
<characteristics>
<characteristic name="Unique Action" typeId="ba93-e32d-f1ac-e188">▶ SUPPORT. Select one enemy operative visible to this operative. Once during this turning point, when a friendly RATLING operative within 3" of this operative is shooting that enemy operative, you can use this effect. If you do:
- That friendly operative's ranged weapons have the Seek Light weapon rule.
- That enemy operative is not obscured.
◆ This operative cannot perform this action while within control range of an enemy operative.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Seek" id="a879-572b-009a-1517" hidden="false" type="rule" targetId="a33d-4e90-5794-6e20"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="e64f-c6b9-3d26-4b7c" shared="true" id="e8af-3639-5a70-106a"/>
</constraints>
</selectionEntry>
<selectionEntry type="model" import="true" name="Ratling Stashmaster" hidden="false" id="0fe9-dcb1-ef41-4422">
<categoryLinks>
<categoryLink name="Operative" hidden="false" id="b91d-bf1a-dd2c-7d48" targetId="cf83-4496-b58e-ac82" primary="true"/>
<categoryLink name="RATLING" hidden="false" id="2a8c-6ec1-ad0e-b5eb" targetId="d9e5-2c96-40b8-eb77" primary="false"/>
<categoryLink name="Imperium" hidden="false" id="593e-2d49-3a47-398e" targetId="45a7-2d2f-ecfb-1d13" primary="false"/>
<categoryLink name="Astra Militarum" hidden="false" id="b12a-11b1-c142-6f01" targetId="6361-ec46-c5e5-cbe9" primary="false"/>
<categoryLink name="Stashmaster" hidden="false" id="776b-86ac-25be-10e1" targetId="b5c5-063f-9237-9f74" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="Sniper rifle" hidden="false" id="8a32-6cf9-8b87-9d76" type="selectionEntry" targetId="b700-9c0e-f746-b3e1">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="f353-27c2-6ea1-bd78-min" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="f353-27c2-6ea1-bd78-max" includeChildSelections="false"/>
</constraints>
</entryLink>
<entryLink import="true" name="Fists" hidden="false" id="bf71-9db7-7761-375a" type="selectionEntry" targetId="bf12-d037-f09d-940c">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="d163-9faf-6bce-5f36-min" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="d163-9faf-6bce-5f36-max" includeChildSelections="false"/>
</constraints>
</entryLink>
</entryLinks>
<profiles>
<profile name="Ratling Stashmaster" typeId="5156-3fb9-39ce-7bdb" typeName="Operative" hidden="false" id="21db-b61d-4a7e-afb6">
<characteristics>
<characteristic name="APL" typeId="bc83-42aa-b7c1-f0b1">2</characteristic>
<characteristic name="Move" typeId="c996-ffb3-e0b4-ecfa">5"</characteristic>
<characteristic name="Save" typeId="3241-5548-12d6-f103">5+</characteristic>
<characteristic name="Wounds" typeId="74f9-f91c-b8fd-89d9">6</characteristic>
</characteristics>
</profile>
<profile name="Light-fingered" typeId="f887-5881-0e6d-755c" typeName="Abilities" hidden="false" id="f526-680c-4150-b2a1">
<characteristics>
<characteristic name="Ability" typeId="3467-0678-083e-eb50">Once during each of this operative's activations, it can perform the **Place Marker**, **Pick Up Marker** or a mission action for 1 less AP.</characteristic>
</characteristics>
</profile>
<profile name="Well Stocked" typeId="f887-5881-0e6d-755c" typeName="Abilities" hidden="false" id="c8a3-bb68-cba9-c57a">
<characteristics>
<characteristic name="Ability" typeId="3467-0678-083e-eb50">If you select an Ammo Cache from universal equipment, you can set up an additional Ammo Cache marker.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="e64f-c6b9-3d26-4b7c" shared="true" id="20f6-b1ea-c755-8ffe"/>
</constraints>
</selectionEntry>
<selectionEntry type="model" import="true" name="Ratling Vox-thief" hidden="false" id="e88e-747b-5bea-9577">
<categoryLinks>
<categoryLink name="Operative" hidden="false" id="8973-9335-1f3b-4485" targetId="cf83-4496-b58e-ac82" primary="true"/>
<categoryLink name="Imperium" hidden="false" id="585e-3ac5-568e-57d0" targetId="45a7-2d2f-ecfb-1d13" primary="false"/>
<categoryLink name="Astra Militarum" hidden="false" id="6190-9a9d-ceaf-2858" targetId="6361-ec46-c5e5-cbe9" primary="false"/>
<categoryLink name="Vox-thief" hidden="false" id="1a7e-68b8-2035-f053" targetId="0f2b-d43c-2d6c-4525" primary="false"/>
<categoryLink name="RATLING" hidden="false" id="4d74-ce4b-a44e-7f18" targetId="d9e5-2c96-40b8-eb77" primary="false"/>
</categoryLinks>
<profiles>
<profile name="Ratling Vox-thief" typeId="5156-3fb9-39ce-7bdb" typeName="Operative" hidden="false" id="9d30-2283-c288-bd45">
<characteristics>
<characteristic name="APL" typeId="bc83-42aa-b7c1-f0b1">2</characteristic>
<characteristic name="Move" typeId="c996-ffb3-e0b4-ecfa">5"</characteristic>
<characteristic name="Save" typeId="3241-5548-12d6-f103">5+</characteristic>
<characteristic name="Wounds" typeId="74f9-f91c-b8fd-89d9">6</characteristic>
</characteristics>
</profile>
<profile name="Intercept Communications (1AP)" typeId="8f2a-d3d6-1a0c-7fa3" typeName="Unique Actions" hidden="false" id="b1ed-2aa8-1f7c-745c">
<characteristics>
<characteristic name="Unique Action" typeId="ba93-e32d-f1ac-e188">▶ SUPPORT. Select one other friendly RATLING operative visible to and within 6" of this operative. Until the end of its next activation, add 1 to that operative's APL stat.
◆ This operative cannot perform this action while within control range of an enemy operative.</characteristic>
</characteristics>
</profile>
</profiles>
<entryLinks>
<entryLink import="true" name="Fists" hidden="false" id="10b2-a0ff-4bff-17eb" type="selectionEntry" targetId="bf12-d037-f09d-940c">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="f56c-047c-5f99-58b9-min" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="f56c-047c-5f99-58b9-max" includeChildSelections="false"/>
</constraints>
</entryLink>
<entryLink import="true" name="Sniper rifle" hidden="false" id="a432-b534-146d-11c7" type="selectionEntry" targetId="b700-9c0e-f746-b3e1">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="ed70-ea6d-6a3a-f99e-min" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="ed70-ea6d-6a3a-f99e-max" includeChildSelections="false"/>
</constraints>
</entryLink>
</entryLinks>
<constraints>
<constraint type="max" value="1" field="selections" scope="e64f-c6b9-3d26-4b7c" shared="true" id="ac63-690f-7fb7-183c"/>
</constraints>
</selectionEntry>
</selectionEntries>
<sharedSelectionEntries>
<selectionEntry type="upgrade" import="true" name="Fists" hidden="false" id="bf12-d037-f09d-940c">
<profiles>
<profile name="⚔ Fists" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="c505-ce48-3f3c-1a1f">
<characteristics>
<characteristic name="ATK" typeId="6056-b741-7cf3-5b43">3</characteristic>
<characteristic name="HIT" typeId="8044-2517-4ef7-33de">5+</characteristic>
<characteristic name="DMG" typeId="dd3e-ef09-5d1a-37b4">1/2</characteristic>
<characteristic name="WR" typeId="05b8-00a1-69af-14b6">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Battle rifle" hidden="false" id="1e6a-a937-664d-b912">
<profiles>
<profile name="⌖ Battle rifle" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="04a2-dc6f-f4c8-6259">
<characteristics>
<characteristic name="ATK" typeId="6056-b741-7cf3-5b43">4</characteristic>
<characteristic name="HIT" typeId="8044-2517-4ef7-33de">3+</characteristic>
<characteristic name="DMG" typeId="dd3e-ef09-5d1a-37b4">3/4</characteristic>
<characteristic name="WR" typeId="05b8-00a1-69af-14b6">-</characteristic>
</characteristics>
<modifiers>
<modifier type="set" value="2+" field="8044-2517-4ef7-33de">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="root-entry" childId="95b4-ee49-457c-25f7" shared="true"/>
</conditions>
</modifier>
</modifiers>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Suppressed sniper rifle" hidden="false" id="5750-4bb7-4ef0-d750">
<profiles>
<profile name="⌖ Suppressed sniper rifle (mobile)" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="6706-3fa1-f1bd-6eb6">
<characteristics>
<characteristic name="ATK" typeId="6056-b741-7cf3-5b43">4</characteristic>
<characteristic name="HIT" typeId="8044-2517-4ef7-33de">4+</characteristic>
<characteristic name="DMG" typeId="dd3e-ef09-5d1a-37b4">3/4</characteristic>
<characteristic name="WR" typeId="05b8-00a1-69af-14b6">Silent</characteristic>
</characteristics>
</profile>
<profile name="⌖ Suppressed sniper rifle (stationary)" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="41bc-5506-2df0-2cd7">
<characteristics>
<characteristic name="ATK" typeId="6056-b741-7cf3-5b43">4</characteristic>
<characteristic name="HIT" typeId="8044-2517-4ef7-33de">3+</characteristic>
<characteristic name="DMG" typeId="dd3e-ef09-5d1a-37b4">3/3</characteristic>
<characteristic name="WR" typeId="05b8-00a1-69af-14b6">Devastating 1, Heavy, Silent</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Silent" id="f3e0-aa42-0ba2-049c" hidden="false" type="rule" targetId="1e3c-23c9-c6e2-9f62"/>
<infoLink name="Devastating x" id="ca18-ab29-ffa9-55f0" hidden="false" type="rule" targetId="a8ba-6e3a-76b3-f05c"/>
<infoLink name="Heavy" id="9155-2df3-bbfc-1882" hidden="false" type="rule" targetId="816e-44a2-6be4-6a9a"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Sniper rifle" hidden="false" id="b700-9c0e-f746-b3e1">
<profiles>
<profile name="⌖ Sniper rifle (mobile)" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="ace6-161d-c128-9f27">
<characteristics>
<characteristic name="ATK" typeId="6056-b741-7cf3-5b43">4</characteristic>
<characteristic name="HIT" typeId="8044-2517-4ef7-33de">4+</characteristic>
<characteristic name="DMG" typeId="dd3e-ef09-5d1a-37b4">3/4</characteristic>
<characteristic name="WR" typeId="05b8-00a1-69af-14b6">-</characteristic>
</characteristics>
<modifiers>
<modifier type="set" value="3+" field="8044-2517-4ef7-33de">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="root-entry" childId="093f-0110-8d45-5298" shared="true"/>
</conditions>
</modifier>
</modifiers>
</profile>
<profile name="⌖ Sniper rifle (stationary)" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="1b99-eb5d-b923-01ff">
<characteristics>
<characteristic name="ATK" typeId="6056-b741-7cf3-5b43">4</characteristic>
<characteristic name="HIT" typeId="8044-2517-4ef7-33de">3+</characteristic>
<characteristic name="DMG" typeId="dd3e-ef09-5d1a-37b4">3/3</characteristic>
<characteristic name="WR" typeId="05b8-00a1-69af-14b6">Devastating 3, Heavy</characteristic>
</characteristics>
<modifiers>
<modifier type="set" value="2+" field="8044-2517-4ef7-33de">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="root-entry" childId="093f-0110-8d45-5298" shared="true"/>
</conditions>