-
Notifications
You must be signed in to change notification settings - Fork 92
/
2024 - Warpcoven.cat
1191 lines (1191 loc) · 84.5 KB
/
2024 - Warpcoven.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="2c48-0a38-f96d-2fbf" name="Warpcoven" gameSystemId="c521-ad27-44df-f959" gameSystemRevision="2" revision="3" battleScribeVersion="2.03" type="catalogue" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<forceEntries>
<forceEntry name="Warpcoven Kill Team" id="19b5-fd1f-a9b5-2c94" hidden="false">
<categoryLinks>
<categoryLink name="Reference" hidden="false" id="8bf3-52c9-50c7-5137" targetId="b318-a8d7-2d38-99a3"/>
<categoryLink name="Configuration" hidden="false" id="7bb0-6a09-9d19-365b" targetId="874b-0390-e5e2-1daa"/>
<categoryLink name="Operative" hidden="false" id="cb36-919c-f846-f423" targetId="cf83-4496-b58e-ac82">
<constraints>
<constraint type="min" value="12" field="selections" scope="parent" shared="true" id="e630-e1e4-5a86-3dfa-min"/>
<constraint type="max" value="12" field="selections" scope="parent" shared="true" id="e630-e1e4-5a86-3dfa-max"/>
</constraints>
<modifiers>
<modifier type="decrement" value="1" field="e630-e1e4-5a86-3dfa-min">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="force" childId="3873-6aee-38ef-34cd" shared="true" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" value="1" field="e630-e1e4-5a86-3dfa-max">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="force" childId="3873-6aee-38ef-34cd" shared="true" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</categoryLink>
<categoryLink name="Leader" hidden="false" id="b21d-db65-f719-b76a" targetId="d999-8cad-8145-4efe">
<constraints>
<constraint type="max" value="1" field="selections" scope="force" shared="true" id="2604-8e1a-b1ba-de90" includeChildSelections="true"/>
</constraints>
</categoryLink>
</categoryLinks>
</forceEntry>
</forceEntries>
<rules>
<rule name="Astartes" id="ccaf-ba21-2da4-8b77" hidden="false">
<description>During each friendly **WARPCOVEN HERETIC ASTARTES** operative’s activation, it can perform either two **Shoot** actions or two **Fight** actions. If it’s two **Shoot** actions and a soulreaper cannon or a warpflamer is selected for both, 1 additional AP must be spent for the second action. You cannot select the same **PSYCHIC** ranged weapon more than once per activation.
Each friendly **WARPCOVEN HERETIC ASTARTES** operative can counteract regardless of its order.</description>
</rule>
</rules>
<sharedSelectionEntryGroups>
<selectionEntryGroup name="Boons of Tzeentch" id="896d-1ac5-422f-82cb" hidden="false">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Incorporeal Sight" hidden="false" id="b8db-e60d-f365-7357">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="9d1f-42a2-6016-4ed6"/>
<constraint type="max" value="1" field="selections" scope="19b5-fd1f-a9b5-2c94" shared="true" id="ddaa-0db0-3663-2aae" includeChildSelections="true"/>
</constraints>
<profiles>
<profile name="Incorporeal Sight" typeId="acaf-9256-537b-6722" typeName="Boons of Tzeentch" hidden="false" id="c082-80b8-6d8e-081d">
<characteristics>
<characteristic name="Boon of Tzeentch" typeId="5ca3-2211-8869-5740">This operative’s ranged weapons have the Saturate weapon rule. Whenever this operative is shooting, enemy operatives cannot be obscured.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Saturate" id="1e7a-aca7-3d85-0f1f" hidden="false" type="rule" targetId="3c10-2d52-d1ac-b0f6"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Time-Walk" hidden="false" id="90df-3690-6df6-ae34">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="1722-505a-92dc-98eb"/>
<constraint type="max" value="1" field="selections" scope="19b5-fd1f-a9b5-2c94" shared="true" id="d3a6-476b-7b62-dc43" includeChildSelections="true"/>
</constraints>
<profiles>
<profile name="Time-Walk" typeId="acaf-9256-537b-6722" typeName="Boons of Tzeentch" hidden="false" id="bd14-5e17-eac7-8aa3">
<characteristics>
<characteristic name="Boon of Tzeentch" typeId="5ca3-2211-8869-5740">Add 1" to this operative’s Move stat.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Echoes from the Warp" hidden="false" id="5893-2c15-ca3c-2155">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="f38e-9d8b-75c0-a7c5"/>
<constraint type="max" value="1" field="selections" scope="19b5-fd1f-a9b5-2c94" shared="true" id="863f-1b9b-94d0-b973" includeChildSelections="true"/>
</constraints>
<profiles>
<profile name="Echoes from the Warp" typeId="acaf-9256-537b-6722" typeName="Boons of Tzeentch" hidden="false" id="6957-408a-61c2-f50b">
<characteristics>
<characteristic name="Boon of Tzeentch" typeId="5ca3-2211-8869-5740">Once per battle, when you counteract with this operative, you can change its order, and it can perform an additional 1AP action for free during that counteraction, but both actions must be different.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Warp Swell" hidden="false" id="f26a-23b1-7f73-6dd0">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="8d7a-1bc5-5fef-a766"/>
<constraint type="max" value="1" field="selections" scope="19b5-fd1f-a9b5-2c94" shared="true" id="ceaa-6d16-a70a-f7d0" includeChildSelections="true"/>
</constraints>
<profiles>
<profile name="Warp Swell" typeId="acaf-9256-537b-6722" typeName="Boons of Tzeentch" hidden="false" id="096a-e139-8fa9-e62b">
<characteristics>
<characteristic name="Boon of Tzeentch" typeId="5ca3-2211-8869-5740">Add 1 to the Normal Dmg stat of this operative’s melee weapons.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Master of the Immaterium" hidden="false" id="0dc1-6732-4a54-cf67">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="6b0a-c186-1eb3-d1d7"/>
<constraint type="max" value="1" field="selections" scope="19b5-fd1f-a9b5-2c94" shared="true" id="86fe-3d75-0679-9b06" includeChildSelections="true"/>
</constraints>
<profiles>
<profile name="Master of the Immaterium" typeId="acaf-9256-537b-6722" typeName="Boons of Tzeentch" hidden="false" id="5be2-b2cf-0600-2fd2">
<characteristics>
<characteristic name="Boon of Tzeentch" typeId="5ca3-2211-8869-5740">Add 3" to the distance requirements of this operative’s **PSYCHIC** actions that have a distance requirement.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Immaterial Flight" hidden="false" id="b653-8133-328d-0440">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="3253-b466-bb03-40a1"/>
<constraint type="max" value="1" field="selections" scope="19b5-fd1f-a9b5-2c94" shared="true" id="4179-28fc-e65a-0b73" includeChildSelections="true"/>
</constraints>
<profiles>
<profile name="Immaterial Flight" typeId="acaf-9256-537b-6722" typeName="Boons of Tzeentch" hidden="false" id="4b60-6081-1817-3c4e">
<characteristics>
<characteristic name="Boon of Tzeentch" typeId="5ca3-2211-8869-5740">Once per turning point, when this operative is performing the **Charge** or **Reposition** action during its activation, it can **FLY**. If it does, don’t move it. Instead, remove it from the killzone and set it back up wholly within a distance equal to its Move stat of its original location, measuring the horizontal distance only. In a killzone that uses the close quarters rules (e.g. Killzone: Gallowdark), this distance cannot be measured over or through Wall terrain, and that operative cannot be set up on the other side of an access point (in other words, it cannot **FLY** through an open hatchway). Note that it gains no additional distance when performing the **Charge** action. It must be set up in a location it can be placed, and unless it’s the **Charge** action, it cannot be set up within control range of an enemy operative.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Astral Bombardment" hidden="false" id="803c-0608-f295-81f3">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="2cf4-4925-7240-0e9a"/>
<constraint type="max" value="1" field="selections" scope="19b5-fd1f-a9b5-2c94" shared="true" id="b792-1c02-9266-cfe9" includeChildSelections="true"/>
</constraints>
<profiles>
<profile name="Astral Bombardment" typeId="acaf-9256-537b-6722" typeName="Boons of Tzeentch" hidden="false" id="7f11-385a-e2a9-480d">
<characteristics>
<characteristic name="Boon of Tzeentch" typeId="5ca3-2211-8869-5740">Select one of this operative's **PSYCHIC** ranged weapons. That weapon has the Devastating 1 weapon rule. If you select a doombolt, it has the 2" Devastating 2 weapon rule instead of Devastating 2.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Devastating x" id="d7cb-a25f-1f0d-38cd" hidden="false" type="rule" targetId="a8ba-6e3a-76b3-f05c"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Twist of Fate" hidden="false" id="7832-d98a-e2a3-4d29">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="c17e-d74e-339b-c432"/>
<constraint type="max" value="1" field="selections" scope="19b5-fd1f-a9b5-2c94" shared="true" id="a4b4-52bd-f151-d053" includeChildSelections="true"/>
</constraints>
<profiles>
<profile name="Twist of Fate" typeId="acaf-9256-537b-6722" typeName="Boons of Tzeentch" hidden="false" id="05f6-1599-94b9-e977">
<characteristics>
<characteristic name="Boon of Tzeentch" typeId="5ca3-2211-8869-5740">This operative’s PSYCHIC ranged weapons have the Piercing Crits 1 weapon rule.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Piercing x" id="2b85-4c46-cd2e-124c" hidden="false" type="rule" targetId="4c07-2cb3-1417-cbb7"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Mutant Appendage" hidden="false" id="48ff-9e6d-18e1-4db9">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="2f28-c674-a988-ac1f"/>
<constraint type="max" value="1" field="selections" scope="19b5-fd1f-a9b5-2c94" shared="true" id="879b-0207-a50c-b1db" includeChildSelections="true"/>
</constraints>
<profiles>
<profile name="Mutant Appendage" typeId="f887-5881-0e6d-755c" typeName="Abilities" hidden="false" id="a7ed-106b-bba9-90e4">
<characteristics>
<characteristic name="Ability" typeId="3467-0678-083e-eb50">Having an enemy operative within this operative's control range doesn’t prevent it from performing the **Pick Up Marker** or mission actions. Once per activation, this operative can perform the **Pick Up Marker**, **Place Marker** or a mission action for 1 less AP.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
<selectionEntryGroup name="Faction Equipment" id="17c9-d363-a94b-fd6b" hidden="false">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Ensorcelled Rounds" hidden="false" id="d338-a9eb-31ee-ff2a">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="f833-39ba-9762-fb02"/>
</constraints>
<profiles>
<profile name="Ensorcelled Rounds" typeId="f887-5881-0e6d-755c" typeName="Abilities" hidden="false" id="2a31-bbe2-7c6a-7da4">
<characteristics>
<characteristic name="Ability" typeId="3467-0678-083e-eb50">Friendly **WARPCOVEN** operatives’ inferno boltguns, inferno bolt pistols and autopistols have the Devastating 1 weapon rule.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Devastating x" id="44a6-94d4-ac4c-c595" hidden="false" type="rule" targetId="a8ba-6e3a-76b3-f05c"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Daemonmaw Weapons" hidden="false" id="ba24-cf22-f189-ef2e">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="0368-d452-57a3-b427"/>
</constraints>
<profiles>
<profile name="Daemonmaw Weapons" typeId="f887-5881-0e6d-755c" typeName="Abilities" hidden="false" id="1b91-3f6e-2eec-d296">
<characteristics>
<characteristic name="Ability" typeId="3467-0678-083e-eb50">Add 1 to the Atk stat of friendly **WARPCOVEN RUBRIC MARINE** operatives’ melee weapons. Whenever a friendly **WARPCOVEN RUBRIC MARINE** operative is retaliating, its melee weapons have the Accurate 1 weapon rule.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Accurate x" id="0e5a-95fb-51d6-1013" hidden="false" type="rule" targetId="ba48-6452-4bf6-e9fa"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Arcane Robes" hidden="false" id="b275-7c41-264a-dbd2">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="9ca4-5b8a-5634-ca66"/>
</constraints>
<profiles>
<profile name="Arcane Robes" typeId="f887-5881-0e6d-755c" typeName="Abilities" hidden="false" id="ca6b-b6ae-e491-12e5">
<characteristics>
<characteristic name="Ability" typeId="3467-0678-083e-eb50">Whenever an attack dice would inflict Critical Dmg on a friendly **WARPCOVEN SORCERER** operative, you can choose for that attack dice to inflict Normal Dmg instead. You cannot use this rule for each friendly **WARPCOVEN SORCERER** operative more than once per turning point.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Sorcerous Scrolls" hidden="false" id="1ffc-6bac-fbf7-6153">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="d40e-e0c2-311b-7603"/>
</constraints>
<profiles>
<profile name="Sorcerous Scrolls" typeId="f887-5881-0e6d-755c" typeName="Abilities" hidden="false" id="0516-27e2-b959-148e">
<characteristics>
<characteristic name="Ability" typeId="3467-0678-083e-eb50">Once per battle, when a friendly **WARPCOVEN SORCERER** operative is activated or counteracts, you can select one additional **BOON OF TZEENTCH** for it to have until the end of the turning point, but it cannot be the same **BOON OF TZEENTCH** that it or any other friendly operative has. This takes precedence over the normal Boons of Tzeentch rules. Note that if you use this rule when a friendly operative counteracts and you select Echoes from the Warp, it can be used immediately to change the operative’s order and perform a free action during that counteraction.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</sharedSelectionEntryGroups>
<entryLinks>
<entryLink import="true" name="Equipment Reference" hidden="false" id="8aad-f9a8-8125-fdc9" type="selectionEntry" targetId="e004-a0c4-8a03-0b8b">
<entryLinks>
<entryLink import="true" name="Faction Equipment" hidden="false" id="3047-4a2b-6e1e-c518" type="selectionEntryGroup" targetId="17c9-d363-a94b-fd6b"/>
</entryLinks>
</entryLink>
<entryLink import="true" name="Boons of Tzeentch Reference" hidden="false" id="7dae-3d1f-d737-4f7d" type="selectionEntry" targetId="5e6a-dfa2-7d26-8c78"/>
</entryLinks>
<categoryEntries>
<categoryEntry name="WARPCOVEN" id="59ff-0a1a-4018-1c16" hidden="false"/>
<categoryEntry name="Sorcerer" id="3f84-3552-5a1a-b966" hidden="false"/>
<categoryEntry name="Destiny" id="dd31-0502-53ba-8c99" hidden="false"/>
<categoryEntry name="Tempyrion" id="65a6-2358-4568-9aa1" hidden="false"/>
<categoryEntry name="Warpfire" id="7e93-2fbf-68a3-7436" hidden="false"/>
<categoryEntry name="Tzaangor" id="0726-4a7c-8afb-1b21" hidden="false"/>
<categoryEntry name="Rubric Marine" id="0167-9819-2942-fbc6" hidden="false"/>
<categoryEntry name="Icon Bearer" id="8162-ca91-7968-2ba8" hidden="false"/>
<categoryEntry name="Champion" id="80c8-335f-2294-bf5d" hidden="false"/>
<categoryEntry name="Horn Bearer" id="a920-f0cd-ed2e-d8f5" hidden="false"/>
</categoryEntries>
<selectionEntries>
<selectionEntry type="model" import="true" name="Sorcerer of Destiny" hidden="false" id="9429-7bf0-c5e2-2535">
<categoryLinks>
<categoryLink name="Operative" hidden="false" id="9d7e-5be2-5286-06f8" targetId="cf83-4496-b58e-ac82" primary="true"/>
<categoryLink name="Sorcerer" hidden="false" id="25a7-1cdf-773c-d3b2" targetId="3f84-3552-5a1a-b966" primary="false"/>
<categoryLink name="Chaos" hidden="false" id="c6c6-7d3a-66ff-11ff" targetId="13fe-a54f-f2f2-f034" primary="false"/>
<categoryLink name="Psyker" hidden="false" id="43fc-06bb-ece4-07cc" targetId="6f95-9b94-d661-3243" primary="false"/>
<categoryLink name="Destiny" hidden="false" id="2be5-50f9-df70-4987" targetId="dd31-0502-53ba-8c99" primary="false"/>
<categoryLink name="Heretic Astartes" hidden="false" id="b7fd-cdd4-def6-b87a" targetId="3873-6aee-38ef-34cd" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="Force stave" hidden="false" id="4a2d-baf0-3e35-d84b" type="selectionEntry" targetId="0f28-82f9-aab3-31cd">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="1c53-ab0c-6f65-fc4f-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="1c53-ab0c-6f65-fc4f-max"/>
</constraints>
</entryLink>
<entryLink import="true" name="Leader" hidden="false" id="ab2b-1efc-8239-048c" type="selectionEntry" targetId="14ec-764a-b53f-ab46"/>
<entryLink import="true" name="Boons of Tzeentch" hidden="false" id="96ff-b66b-cbef-01e7" type="selectionEntryGroup" targetId="896d-1ac5-422f-82cb">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="25c4-f389-a806-f12a-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="25c4-f389-a806-f12a-max"/>
</constraints>
</entryLink>
</entryLinks>
<selectionEntryGroups>
<selectionEntryGroup name="Weapon" id="4713-2bda-90dd-b66a" hidden="false">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="d632-2c6e-859f-6f4a-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="d632-2c6e-859f-6f4a-max"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Inferno bolt pistol" hidden="false" id="b4d8-ce3e-0b43-8037" type="selectionEntry" targetId="73a3-4279-1d05-37aa"/>
<entryLink import="true" name="Prosperine kopesh" hidden="false" id="45b1-0396-27af-832c" type="selectionEntry" targetId="4d83-c7be-f376-605c"/>
<entryLink import="true" name="Warpflame pistol" hidden="false" id="6043-551d-339d-6346" type="selectionEntry" targetId="3e7e-ccd0-8e38-80b3"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="b332-2ef7-53c7-ba90"/>
</constraints>
<modifiers>
<modifier type="set" value="1" field="b332-2ef7-53c7-ba90">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="force" childId="19b5-fd1f-a9b5-2c94" shared="true"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile name="Sorcerer of Destiny" typeId="5156-3fb9-39ce-7bdb" typeName="Operative" hidden="false" id="4a80-583e-dc05-108c">
<characteristics>
<characteristic name="APL" typeId="bc83-42aa-b7c1-f0b1">3</characteristic>
<characteristic name="Move" typeId="c996-ffb3-e0b4-ecfa">6"</characteristic>
<characteristic name="Save" typeId="3241-5548-12d6-f103">3+</characteristic>
<characteristic name="Wounds" typeId="74f9-f91c-b8fd-89d9">14</characteristic>
</characteristics>
<modifiers>
<modifier type="increment" value="1" field="74f9-f91c-b8fd-89d9">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="parent" childId="ab2b-1efc-8239-048c" shared="true"/>
</conditions>
</modifier>
</modifiers>
</profile>
<profile name="Protected by Fate (1AP)" typeId="8f2a-d3d6-1a0c-7fa3" typeName="Unique Actions" hidden="false" id="a473-adb1-bda0-7911">
<characteristics>
<characteristic name="Unique Action" typeId="ba93-e32d-f1ac-e188">▶ **PSYCHIC**. Select one friendly **WARPCOVEN** operative visible to this operative. Until the start of this operative’s next activation, until it's incapacitated or until this action is performed again by a friendly operative (whichever comes first), whenever an operative is shooting that selected operative, you can re-roll any of your defence dice.
◆ This operative cannot perform this action while within control range of an enemy operative.</characteristic>
</characteristics>
</profile>
<profile name="Ravage Destiny (1AP)" typeId="8f2a-d3d6-1a0c-7fa3" typeName="Unique Actions" hidden="false" id="e085-ff4c-46a3-a6b6">
<characteristics>
<characteristic name="Unique Action" typeId="ba93-e32d-f1ac-e188">▶ **PSYCHIC**. Select one enemy operative visible to and within 9" of this operative. Until the start of this operative’s next activation, until it's incapacitated or until this action is performed again by a friendly operative (whichever comes first), whenever that enemy operative is shooting, fighting or retaliating, your opponent must re-roll their attack dice results of 6, and whenever determining control of a marker, treat that enemy operative’s APL stat as 1 lower. Note this isn't a change to its APL stat, so any changes are cumulative with this.
◆ This operative cannot perform this action while within control range of an enemy operative.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Doombolt" hidden="false" id="ec22-eeef-0668-2e20">
<profiles>
<profile name="⌖ Doombolt" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="2935-6ab2-8d8c-e6b6">
<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">PSYCHIC, Devastating 2, Lethal 5+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Devastating x" id="e25d-8da4-631f-30b8" hidden="false" type="rule" targetId="a8ba-6e3a-76b3-f05c"/>
<infoLink name="Lethal x+" id="db6d-0098-b651-71f7" hidden="false" type="rule" targetId="8b97-e3e3-2857-817a"/>
</infoLinks>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="08ea-3afe-0283-b5b3-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="08ea-3afe-0283-b5b3-max"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="model" import="true" name="Sorcerer of Tempyrion" hidden="false" id="37af-056f-8ae4-3b9e">
<categoryLinks>
<categoryLink name="Operative" hidden="false" id="3cbe-55ed-8b20-2120" targetId="cf83-4496-b58e-ac82" primary="true"/>
<categoryLink name="Sorcerer" hidden="false" id="3d96-f5ed-fb1d-e29d" targetId="3f84-3552-5a1a-b966" primary="false"/>
<categoryLink name="Chaos" hidden="false" id="0bd3-016c-7665-506e" targetId="13fe-a54f-f2f2-f034" primary="false"/>
<categoryLink name="Psyker" hidden="false" id="5fea-a40e-c2ef-51b7" targetId="6f95-9b94-d661-3243" primary="false"/>
<categoryLink name="Heretic Astartes" hidden="false" id="da51-d0a5-f8da-f529" targetId="3873-6aee-38ef-34cd" primary="false"/>
<categoryLink name="Tempyrion" hidden="false" id="ed5b-e7a9-8e38-5422" targetId="65a6-2358-4568-9aa1" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="Force stave" hidden="false" id="613f-9622-04cb-4b8e" type="selectionEntry" targetId="0f28-82f9-aab3-31cd">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="fb3d-abab-8da5-b829-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="fb3d-abab-8da5-b829-max"/>
</constraints>
</entryLink>
<entryLink import="true" name="Leader" hidden="false" id="dcfc-6081-2bd4-55f5" type="selectionEntry" targetId="14ec-764a-b53f-ab46"/>
<entryLink import="true" name="Boons of Tzeentch" hidden="false" id="6532-20a1-1012-d806" type="selectionEntryGroup" targetId="896d-1ac5-422f-82cb">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="1714-afa3-c874-3948-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="1714-afa3-c874-3948-max"/>
</constraints>
</entryLink>
</entryLinks>
<selectionEntryGroups>
<selectionEntryGroup name="Weapon" id="7548-f4cf-02b7-0289" hidden="false">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="1c5c-250f-5e89-09e0-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="1c5c-250f-5e89-09e0-max"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Inferno bolt pistol" hidden="false" id="1ea6-ca90-5280-6530" type="selectionEntry" targetId="73a3-4279-1d05-37aa"/>
<entryLink import="true" name="Prosperine kopesh" hidden="false" id="c938-bba1-5bcc-1a97" type="selectionEntry" targetId="4d83-c7be-f376-605c"/>
<entryLink import="true" name="Warpflame pistol" hidden="false" id="ea1f-b2f4-7a60-23d7" type="selectionEntry" targetId="3e7e-ccd0-8e38-80b3"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<profiles>
<profile name="Sorcerer of Tempyrion" typeId="5156-3fb9-39ce-7bdb" typeName="Operative" hidden="false" id="47fd-094b-ba44-2649">
<characteristics>
<characteristic name="APL" typeId="bc83-42aa-b7c1-f0b1">3</characteristic>
<characteristic name="Move" typeId="c996-ffb3-e0b4-ecfa">6"</characteristic>
<characteristic name="Save" typeId="3241-5548-12d6-f103">3+</characteristic>
<characteristic name="Wounds" typeId="74f9-f91c-b8fd-89d9">14</characteristic>
</characteristics>
<modifiers>
<modifier type="set" value="15" field="74f9-f91c-b8fd-89d9">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="d999-8cad-8145-4efe" shared="true"/>
</conditions>
</modifier>
</modifiers>
</profile>
<profile name="Temporal Flux (1AP)" typeId="8f2a-d3d6-1a0c-7fa3" typeName="Unique Actions" hidden="false" id="5a89-8299-e909-fd26">
<characteristics>
<characteristic name="Unique Action" typeId="ba93-e32d-f1ac-e188">▶ **PSYCHIC**. Select one friendly **WARPCOVEN** operative visible to and within 6" of this operative and place your Temporal Flux marker within that operative’s control range.
▶ At the end of that operative’s next activation, if it hasn’t been incapacitated and is still wholly within 6" of your Temporal Flux marker, remove that operative from the killzone and set it back up in a location it can be placed; when it's set back up, it must have your Temporal Flux marker within its control range (or as close as possible). Then remove your Temporal Flux marker from the killzone. If that operative isn't wholly within 6" of your Temporal Flux marker (including if it’s incapacitated), remove that marker from the killzone.
◆ This operative cannot perform this action while within control range of an enemy operative, or if your Temporal Flux marker is currently in the killzone.</characteristic>
</characteristics>
</profile>
<profile name="Reconstitution Ritual" typeId="8f2a-d3d6-1a0c-7fa3" typeName="Unique Actions" hidden="false" id="4746-141a-a9fa-8ba4">
<characteristics>
<characteristic name="Unique Action" typeId="ba93-e32d-f1ac-e188">▶ **PSYCHIC**. Select one friendly **WARPCOVEN** operative visible to and within 6" of this operative. That operative regains up to 2D3 lost wounds
◆ This operative cannot perform this action while within control range of an enemy operative.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Fluxblast" hidden="false" id="a843-31cf-2319-fbab">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="7c98-9a6c-9472-2293-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="7c98-9a6c-9472-2293-max"/>
</constraints>
<profiles>
<profile name="⌖ Fluxblast" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="03dc-f103-7780-02a8">
<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">PSYCHIC, Blast 2", Rending</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Rending" id="906e-9cb0-ab52-47cc" hidden="false" type="rule" targetId="b903-6f79-129d-4ec9"/>
<infoLink name="Blast x" id="2892-bfb5-2add-3773" hidden="false" type="rule" targetId="0d74-0977-b481-bd13"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="0c2f-ea20-8cfa-9ac7"/>
</constraints>
<modifiers>
<modifier type="set" value="1" field="0c2f-ea20-8cfa-9ac7">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="force" childId="19b5-fd1f-a9b5-2c94" shared="true"/>
</conditions>
</modifier>
</modifiers>
</selectionEntry>
<selectionEntry type="model" import="true" name="Sorcerer of Warpfire" hidden="false" id="ee08-5d83-2737-4a29">
<categoryLinks>
<categoryLink name="Operative" hidden="false" id="bebf-f531-e16c-5926" targetId="cf83-4496-b58e-ac82" primary="true"/>
<categoryLink name="Sorcerer" hidden="false" id="cc1a-7e98-78d6-a1fc" targetId="3f84-3552-5a1a-b966" primary="false"/>
<categoryLink name="Chaos" hidden="false" id="b353-01b7-41de-81a7" targetId="13fe-a54f-f2f2-f034" primary="false"/>
<categoryLink name="Psyker" hidden="false" id="261a-ae57-3e52-6cb6" targetId="6f95-9b94-d661-3243" primary="false"/>
<categoryLink name="Heretic Astartes" hidden="false" id="abcf-fd71-1bc1-20c0" targetId="3873-6aee-38ef-34cd" primary="false"/>
<categoryLink name="Warpfire" hidden="false" id="f586-4186-6460-8add" targetId="7e93-2fbf-68a3-7436" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="Force stave" hidden="false" id="1ab3-dfbe-e048-fd21" type="selectionEntry" targetId="0f28-82f9-aab3-31cd">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="fdf7-f819-24ae-1cbc-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="fdf7-f819-24ae-1cbc-max"/>
</constraints>
</entryLink>
<entryLink import="true" name="Leader" hidden="false" id="6e8e-8e95-e4ee-248f" type="selectionEntry" targetId="14ec-764a-b53f-ab46"/>
<entryLink import="true" name="Boons of Tzeentch" hidden="false" id="3135-96b0-9e20-74af" type="selectionEntryGroup" targetId="896d-1ac5-422f-82cb">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="7b5b-9bf9-5738-1c4d-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="7b5b-9bf9-5738-1c4d-max"/>
</constraints>
</entryLink>
</entryLinks>
<selectionEntryGroups>
<selectionEntryGroup name="Weapon" id="6a84-e8bf-d216-531d" hidden="false">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="a317-d612-a595-4fc3-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="a317-d612-a595-4fc3-max"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Inferno bolt pistol" hidden="false" id="12b7-74a0-3c0a-ff6e" type="selectionEntry" targetId="73a3-4279-1d05-37aa"/>
<entryLink import="true" name="Prosperine kopesh" hidden="false" id="66bf-1a61-fd9c-d725" type="selectionEntry" targetId="4d83-c7be-f376-605c"/>
<entryLink import="true" name="Warpflame pistol" hidden="false" id="4935-8282-0baa-4437" type="selectionEntry" targetId="3e7e-ccd0-8e38-80b3"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<profiles>
<profile name="Sorcerer of Warpfire" typeId="5156-3fb9-39ce-7bdb" typeName="Operative" hidden="false" id="488d-73aa-a8f7-1c47">
<characteristics>
<characteristic name="APL" typeId="bc83-42aa-b7c1-f0b1">3</characteristic>
<characteristic name="Move" typeId="c996-ffb3-e0b4-ecfa">6"</characteristic>
<characteristic name="Save" typeId="3241-5548-12d6-f103">3+</characteristic>
<characteristic name="Wounds" typeId="74f9-f91c-b8fd-89d9">14</characteristic>
</characteristics>
<modifiers>
<modifier type="set" value="15" field="74f9-f91c-b8fd-89d9">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="d999-8cad-8145-4efe" shared="true"/>
</conditions>
</modifier>
</modifiers>
</profile>
<profile name="Alight (1AP)" typeId="8f2a-d3d6-1a0c-7fa3" typeName="Unique Actions" hidden="false" id="942b-d0ad-3df7-f254">
<characteristics>
<characteristic name="Unique Action" typeId="ba93-e32d-f1ac-e188">▶ **PSYCHIC**. Select one enemy operative visible to this operative. Until the start of this operative’s next activation, until it's incapacitated or until this action is performed again by a friendly operative (whichever comes first), that enemy operative gains one of your Alight tokens (if it doesn’t already have one). Whenever a friendly **WARPCOVEN** operative is shooting against, fighting against or retaliating against an enemy operative that has one of your Alight tokens, that friendly operative’s weapons have the Relentless weapon rule.
◆ This operative cannot perform this action while within control range of an enemy operative.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Firestorm" hidden="false" id="718a-eff8-4117-d274">
<profiles>
<profile name="⌖ Firestorm" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="fafa-d1ff-1ff6-1351">
<characteristics>
<characteristic name="ATK" typeId="6056-b741-7cf3-5b43">5</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">PSYCHIC, Saturate, Seek Light, Torrent 2"</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="d768-1cc6-2dd1-5e2c-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="d768-1cc6-2dd1-5e2c-max"/>
</constraints>
<infoLinks>
<infoLink name="Saturate" id="e047-27f8-631b-9556" hidden="false" type="rule" targetId="3c10-2d52-d1ac-b0f6"/>
<infoLink name="Seek" id="8d68-7a08-226d-e7d1" hidden="false" type="rule" targetId="a33d-4e90-5794-6e20"/>
<infoLink name="Torrent x" id="469b-8cf5-d80a-3661" hidden="false" type="rule" targetId="ad45-b4bb-1345-e4f9"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Mindburn" hidden="false" id="a862-78df-43a1-a2c3">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="46dc-9d20-44c5-e8a1-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="46dc-9d20-44c5-e8a1-max"/>
</constraints>
<profiles>
<profile name="⌖ Mindburn" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="15ac-66d3-50e5-30a3">
<characteristics>
<characteristic name="ATK" typeId="6056-b741-7cf3-5b43">5</characteristic>
<characteristic name="HIT" typeId="8044-2517-4ef7-33de">4+</characteristic>
<characteristic name="DMG" typeId="dd3e-ef09-5d1a-37b4">1/1</characteristic>
<characteristic name="WR" typeId="05b8-00a1-69af-14b6">PSYCHIC, Lethal 5+, Saturate, Seek, Mindburn*</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Lethal x+" id="faa2-87ed-c65b-be70" hidden="false" type="rule" targetId="8b97-e3e3-2857-817a"/>
<infoLink name="Saturate" id="a4fb-baeb-4a16-74c0" hidden="false" type="rule" targetId="3c10-2d52-d1ac-b0f6"/>
<infoLink name="Seek" id="9447-ccd8-c4b7-b5f4" hidden="false" type="rule" targetId="a33d-4e90-5794-6e20"/>
</infoLinks>
<rules>
<rule name="*Mindburn" id="f2b5-3d8f-ff2f-579b" hidden="false">
<description>In the Resolve Attack Dice step, if you inflict damage with any critical successes, the operative this weapon is being used against gains one of your Mindburn tokens (if it doesn't already have one) until the end of its next activation, until it’s incapacitated or until a friendly operative uses this weapon again (whichever comes first). Whenever an operative has one of your Mindburn tokens, worsen the Hit stat of its weapons by 1 (this isn’t cumulative with being injured).</description>
</rule>
</rules>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="d6ed-19d9-e4a2-e139"/>
</constraints>
<modifiers>
<modifier type="set" value="1" field="d6ed-19d9-e4a2-e139">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="force" childId="19b5-fd1f-a9b5-2c94" shared="true"/>
</conditions>
</modifier>
</modifiers>
</selectionEntry>
<selectionEntry type="model" import="true" name="Rubric Marine Gunner" hidden="false" id="061a-f6e9-d087-fff9">
<profiles>
<profile name="Rubric Marine Gunner" typeId="5156-3fb9-39ce-7bdb" typeName="Operative" hidden="false" id="9de3-096a-b937-2c42">
<characteristics>
<characteristic name="APL" typeId="bc83-42aa-b7c1-f0b1">3</characteristic>
<characteristic name="Move" typeId="c996-ffb3-e0b4-ecfa">5"</characteristic>
<characteristic name="Save" typeId="3241-5548-12d6-f103">2+</characteristic>
<characteristic name="Wounds" typeId="74f9-f91c-b8fd-89d9">14</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="Operative" hidden="false" id="959c-6c95-5c83-9cd5" targetId="cf83-4496-b58e-ac82" primary="true"/>
<categoryLink name="Chaos" hidden="false" id="da06-d581-5143-11ec" targetId="13fe-a54f-f2f2-f034" primary="false"/>
<categoryLink name="WARPCOVEN" hidden="false" id="e2d0-6f2b-721f-6385" targetId="59ff-0a1a-4018-1c16" primary="false"/>
<categoryLink name="Heretic Astartes" hidden="false" id="c38c-e368-3409-0f39" targetId="3873-6aee-38ef-34cd" primary="false"/>
<categoryLink name="Rubric Marine" hidden="false" id="0c7f-4493-a710-b8e2" targetId="0167-9819-2942-fbc6" primary="false"/>
<categoryLink name="Gunner" hidden="false" id="2fe0-f4a6-a0b0-4ec7" targetId="3033-7558-d28f-53cf" primary="false"/>
</categoryLinks>
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="22df-ae8c-7b83-caf7"/>
</constraints>
<modifiers>
<modifier type="set" value="2" field="22df-ae8c-7b83-caf7">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="force" childId="19b5-fd1f-a9b5-2c94" shared="true"/>
</conditions>
</modifier>
</modifiers>
<selectionEntryGroups>
<selectionEntryGroup name="Ranged Weapon" id="fa4b-e1d0-45ec-18d1" hidden="false">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Soulreaper cannon" hidden="false" id="0ec2-f325-6a46-2019">
<profiles>
<profile name="⌖ Soulreaper cannon (focused)" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="95bc-9900-830e-fc26">
<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">Piercing 1</characteristic>
</characteristics>
</profile>
<profile name="⌖ Soulreaper cannon (sweeping)" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="ad4b-7708-336e-f546">
<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">Piercing 1, Torrent 1"</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Piercing x" id="46e9-6185-f9de-7fda" hidden="false" type="rule" targetId="4c07-2cb3-1417-cbb7"/>
<infoLink name="Torrent x" id="dfc3-2a90-c20b-5a1c" hidden="false" type="rule" targetId="ad45-b4bb-1345-e4f9"/>
</infoLinks>
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="b770-7cef-170b-93a4" includeChildSelections="true"/>
</constraints>
<modifiers>
<modifier type="set" value="1" field="b770-7cef-170b-93a4">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="force" childId="19b5-fd1f-a9b5-2c94" shared="true"/>
</conditions>
</modifier>
</modifiers>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Warpflamer" hidden="false" id="d10b-54a1-5b88-d9f6">
<profiles>
<profile name="⌖ Warpflamer" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="0f36-6928-f769-d922">
<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/4</characteristic>
<characteristic name="WR" typeId="05b8-00a1-69af-14b6">Range 8", Saturate, Piercing 1, Torrent 2"</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Range x" id="172e-f11c-4209-4dcc" hidden="false" type="rule" targetId="a528-829e-8268-c005"/>
<infoLink name="Saturate" id="8932-ab1c-3c80-b107" hidden="false" type="rule" targetId="3c10-2d52-d1ac-b0f6"/>
<infoLink name="Piercing x" id="01fa-eaf2-f59a-a175" hidden="false" type="rule" targetId="4c07-2cb3-1417-cbb7"/>
<infoLink name="Torrent x" id="26f3-ade6-d860-453b" hidden="false" type="rule" targetId="ad45-b4bb-1345-e4f9"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="e0ff-9da7-155a-4bca-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="e0ff-9da7-155a-4bca-max"/>
</constraints>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink import="true" name="Fists" hidden="false" id="f534-8ba4-634c-6c15" type="selectionEntry" targetId="c955-ec80-d13f-5901">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="4d8a-763f-571c-7c5f-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="4d8a-763f-571c-7c5f-max"/>
</constraints>
</entryLink>
</entryLinks>
<infoLinks>
<infoLink name="Sorcerous Automata" id="eefa-5301-b8a4-367b" hidden="false" type="profile" targetId="0288-3733-d213-3223"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="model" import="true" name="Rubric Marine Icon Bearer" hidden="false" id="0e5a-6b3a-41fb-69a2">
<categoryLinks>
<categoryLink name="Operative" hidden="false" id="44d3-1eff-a295-90a6" targetId="cf83-4496-b58e-ac82" primary="true"/>
<categoryLink name="Chaos" hidden="false" id="9e79-8fe4-364d-c37b" targetId="13fe-a54f-f2f2-f034" primary="false"/>
<categoryLink name="Heretic Astartes" hidden="false" id="3b44-6c2c-213c-b2d4" targetId="3873-6aee-38ef-34cd" primary="false"/>
<categoryLink name="Rubric Marine" hidden="false" id="38d2-70c5-e33c-e0f8" targetId="0167-9819-2942-fbc6" primary="false"/>
<categoryLink name="Icon Bearer" hidden="false" id="b486-01a7-5ec1-f6de" targetId="8162-ca91-7968-2ba8" primary="false"/>
<categoryLink name="WARPCOVEN" hidden="false" id="3c64-e375-abce-bc2a" targetId="59ff-0a1a-4018-1c16" primary="false"/>
</categoryLinks>
<profiles>
<profile name="Rubric Marine Icon Bearer" typeId="5156-3fb9-39ce-7bdb" typeName="Operative" hidden="false" id="d3b6-3d1e-9028-3bfa">
<characteristics>
<characteristic name="APL" typeId="bc83-42aa-b7c1-f0b1">3</characteristic>
<characteristic name="Move" typeId="c996-ffb3-e0b4-ecfa">5"</characteristic>
<characteristic name="Save" typeId="3241-5548-12d6-f103">2+</characteristic>
<characteristic name="Wounds" typeId="74f9-f91c-b8fd-89d9">14</characteristic>
</characteristics>
</profile>
<profile name="Icon Bearer" typeId="f887-5881-0e6d-755c" typeName="Abilities" hidden="false" id="9ba7-966a-2056-79dc">
<characteristics>
<characteristic name="Ability" typeId="3467-0678-083e-eb50">Whenever determining control of a marker, treat this operative’s APL stat as 1 higher. Note this isn’t a change to its APL stat, so any changes are cumulative with this.</characteristic>
</characteristics>
</profile>
</profiles>
<modifiers>
<modifier type="set" value="1" field="5916-6e99-ca9e-f556">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="force" childId="19b5-fd1f-a9b5-2c94" shared="true"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="5916-6e99-ca9e-f556"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Inferno boltgun" hidden="false" id="afc2-19f5-8d16-a2bd" type="selectionEntry" targetId="f004-a2da-61e1-0a69">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="d8d0-d901-be99-4e09-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="d8d0-d901-be99-4e09-max"/>
</constraints>
</entryLink>
<entryLink import="true" name="Fists" hidden="false" id="7a23-0638-0dde-1f07" type="selectionEntry" targetId="c955-ec80-d13f-5901">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="058a-299b-fe37-59ac-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="058a-299b-fe37-59ac-max"/>
</constraints>
</entryLink>
</entryLinks>
<infoLinks>
<infoLink name="Sorcerous Automata" id="7b44-5dcc-c62f-54cb" hidden="false" type="profile" targetId="0288-3733-d213-3223"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="model" import="true" name="Rubric Marine Warrior" hidden="false" id="ad5e-e66c-cbf0-b2c8">
<categoryLinks>
<categoryLink name="Operative" hidden="false" id="9ace-3701-a7b0-9972" targetId="cf83-4496-b58e-ac82" primary="true"/>
<categoryLink name="WARPCOVEN" hidden="false" id="ab59-5eeb-e039-2100" targetId="59ff-0a1a-4018-1c16" primary="false"/>
<categoryLink name="Chaos" hidden="false" id="1172-6f7c-cd09-8e3d" targetId="13fe-a54f-f2f2-f034" primary="false"/>
<categoryLink name="Heretic Astartes" hidden="false" id="63dd-e4db-fb2c-c0cf" targetId="3873-6aee-38ef-34cd" primary="false"/>
<categoryLink name="Rubric Marine" hidden="false" id="f696-60c2-db61-bba3" targetId="0167-9819-2942-fbc6" primary="false"/>
<categoryLink name="Warrior" hidden="false" id="aa78-8946-088c-01e1" targetId="2b69-f2aa-bd5c-70b2" primary="false"/>
</categoryLinks>
<infoLinks>
<infoLink name="Sorcerous Automata" id="ea50-e8cf-00a4-fe68" hidden="false" type="profile" targetId="0288-3733-d213-3223"/>
</infoLinks>
<profiles>
<profile name="Rubric Marine Warrior" typeId="5156-3fb9-39ce-7bdb" typeName="Operative" hidden="false" id="f746-6359-85c4-157a">
<characteristics>
<characteristic name="APL" typeId="bc83-42aa-b7c1-f0b1">3</characteristic>
<characteristic name="Move" typeId="c996-ffb3-e0b4-ecfa">5"</characteristic>
<characteristic name="Save" typeId="3241-5548-12d6-f103">2+</characteristic>
<characteristic name="Wounds" typeId="74f9-f91c-b8fd-89d9">14</characteristic>
</characteristics>
</profile>
</profiles>
<entryLinks>
<entryLink import="true" name="Inferno boltgun" hidden="false" id="e7fb-e78b-d8c5-f1b4" type="selectionEntry" targetId="f004-a2da-61e1-0a69">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="dfc5-1f01-2bab-bf01-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="dfc5-1f01-2bab-bf01-max"/>
</constraints>
</entryLink>
<entryLink import="true" name="Fists" hidden="false" id="4ef8-c991-4ab0-4076" type="selectionEntry" targetId="c955-ec80-d13f-5901">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="31ee-038e-301d-f989-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="31ee-038e-301d-f989-max"/>
</constraints>
</entryLink>
</entryLinks>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Slow and Purposeful" hidden="false" id="a7f5-a0ab-4c5a-1302">
<profiles>
<profile name="Slow and Purposeful" typeId="f887-5881-0e6d-755c" typeName="Abilities" hidden="false" id="247d-b803-6bee-172c">
<characteristics>
<characteristic name="Ability" typeId="3467-0678-083e-eb50">Whenever this operative is shooting, if it hasn’t performed the **Charge** or **Reposition** action during the activation, or if it's a counteraction, its ranged weapons have the Ceaseless weapon rule. Note this operative isn’t restricted from performing these actions after shooting.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="a8c0-13e0-51a9-f1d4-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="a8c0-13e0-51a9-f1d4-max"/>
</constraints>
<infoLinks>
<infoLink name="Ceaseless" id="2edd-3b81-81da-fcd0" hidden="false" type="rule" targetId="752d-ce38-c325-4b8a"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="model" import="true" name="Tzaangor Champion" hidden="false" id="4151-147b-d84e-c38f">
<profiles>
<profile name="Tzaangor Champion" typeId="5156-3fb9-39ce-7bdb" typeName="Operative" hidden="false" id="5479-8acb-419b-4224">
<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">10</characteristic>
</characteristics>
</profile>
<profile name="Savage Brutality" typeId="f887-5881-0e6d-755c" typeName="Abilities" hidden="false" id="cfd7-039e-84df-2e85">
<characteristics>
<characteristic name="Ability" typeId="3467-0678-083e-eb50">The first time this operative performs the **Fight** action during each of its activations, if it isn’t incapacitated, it can immediately perform a free **Fight** action afterwards (you don't have to select the same enemy operative to fight against). This takes precedence over action restrictions.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntryGroups>
<selectionEntryGroup name="Weapon" id="67f2-52b3-bd31-1547" hidden="false">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="89eb-be9e-439d-ce79-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="89eb-be9e-439d-ce79-max"/>
</constraints>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Greataxe" hidden="false" id="8bb4-fe6b-0dd2-7088">
<profiles>
<profile name="⚔ Greataxe" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="263f-431d-b12b-7018">
<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">Brutal, Lethal 5+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Brutal" id="a320-7ca0-0942-b9ee" hidden="false" type="rule" targetId="5151-5449-ca81-70ed"/>
<infoLink name="Lethal x+" id="a7bf-7052-87e1-2488" hidden="false" type="rule" targetId="8b97-e3e3-2857-817a"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Greatblade" hidden="false" id="8488-f053-2d94-dd7b">
<profiles>
<profile name="⚔ Greatblade" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="c7f4-6eb8-2a4b-b2b2">
<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">Lethal 5+, Rending</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Lethal x+" id="bcc7-0ff1-2b08-bfc9" hidden="false" type="rule" targetId="8b97-e3e3-2857-817a"/>
<infoLink name="Rending" id="3f45-bd66-95f2-14a9" hidden="false" type="rule" targetId="b903-6f79-129d-4ec9"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<categoryLinks>
<categoryLink name="WARPCOVEN" hidden="false" id="df0f-4051-fbc7-a20c" targetId="59ff-0a1a-4018-1c16" primary="false"/>
<categoryLink name="Operative" hidden="false" id="0011-84d2-e457-7f0b" targetId="cf83-4496-b58e-ac82" primary="true"/>
<categoryLink name="Chaos" hidden="false" id="b9d5-5145-9786-0860" targetId="13fe-a54f-f2f2-f034" primary="false"/>
<categoryLink name="Tzaangor" hidden="false" id="c728-3b64-9977-a277" targetId="0726-4a7c-8afb-1b21" primary="false"/>
<categoryLink name="Champion" hidden="false" id="cff3-c990-b93d-7903" targetId="80c8-335f-2294-bf5d" primary="false"/>
</categoryLinks>
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="18b5-80aa-0a1e-3311"/>
</constraints>
<modifiers>
<modifier type="set" value="1" field="18b5-80aa-0a1e-3311">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="force" childId="19b5-fd1f-a9b5-2c94" shared="true"/>
</conditions>
</modifier>
</modifiers>
</selectionEntry>
<selectionEntry type="model" import="true" name="Tzaangor Horn Bearer" hidden="false" id="7f4f-3cde-450e-4186">
<categoryLinks>
<categoryLink name="WARPCOVEN" hidden="false" id="15c9-e452-7997-6a29" targetId="59ff-0a1a-4018-1c16" primary="false"/>
<categoryLink name="Operative" hidden="false" id="212e-4cee-9f6c-28a3" targetId="cf83-4496-b58e-ac82" primary="true"/>
<categoryLink name="Tzaangor" hidden="false" id="5f58-da31-e085-a648" targetId="0726-4a7c-8afb-1b21" primary="false"/>
<categoryLink name="Chaos" hidden="false" id="8906-a71f-9f71-93dd" targetId="13fe-a54f-f2f2-f034" primary="false"/>
<categoryLink name="Horn Bearer" hidden="false" id="7c73-010e-2f13-13f2" targetId="a920-f0cd-ed2e-d8f5" primary="false"/>
</categoryLinks>
<profiles>
<profile name="Tzaangor Horn Bearer" typeId="5156-3fb9-39ce-7bdb" typeName="Operative" hidden="false" id="2d66-8a54-be32-62e7">
<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">9</characteristic>
</characteristics>
</profile>
<profile name="Brayhorn (0AP)" typeId="8f2a-d3d6-1a0c-7fa3" typeName="Unique Actions" hidden="false" id="bffd-d9f7-ee6d-4d3c">
<characteristics>
<characteristic name="Unique Action" typeId="ba93-e32d-f1ac-e188">▶ Until the Ready step of the next Strategy phase, add 1" to the Move stat of friendly **WARPCOVEN TZAANGOR** operatives.
◆ This operative cannot perform this action while within control range of an enemy operative.</characteristic>
</characteristics>
</profile>
</profiles>
<entryLinks>
<entryLink import="true" name="Dagger" hidden="false" id="d52d-243d-4cd9-aa03" type="selectionEntry" targetId="5755-02a7-0005-ba34">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="9568-0ab5-1029-ca8a-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="9568-0ab5-1029-ca8a-max"/>
</constraints>
</entryLink>
</entryLinks>
<modifiers>
<modifier type="set" value="1" field="1eae-1136-2ff6-7d75">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="force" childId="19b5-fd1f-a9b5-2c94" shared="true"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="1eae-1136-2ff6-7d75"/>
</constraints>
</selectionEntry>
<selectionEntry type="model" import="true" name="Tzaangor Icon Bearer" hidden="false" id="bd42-9b23-fafb-4d1b">
<categoryLinks>
<categoryLink name="WARPCOVEN" hidden="false" id="b287-d10e-f892-d245" targetId="59ff-0a1a-4018-1c16" primary="false"/>
<categoryLink name="Operative" hidden="false" id="d681-cff2-58c6-17af" targetId="cf83-4496-b58e-ac82" primary="true"/>
<categoryLink name="Tzaangor" hidden="false" id="fb30-e3cf-86c6-3567" targetId="0726-4a7c-8afb-1b21" primary="false"/>
<categoryLink name="Chaos" hidden="false" id="46f0-71a6-111a-2dc1" targetId="13fe-a54f-f2f2-f034" primary="false"/>
<categoryLink name="Icon Bearer" hidden="false" id="e3cc-bd76-240f-df03" targetId="8162-ca91-7968-2ba8" primary="false"/>
</categoryLinks>
<profiles>
<profile name="Tzaangor Icon Bearer" typeId="5156-3fb9-39ce-7bdb" typeName="Operative" hidden="false" id="3fdf-2eb0-2e5f-bfee">
<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">9</characteristic>
</characteristics>
</profile>
<profile name="Herd Banner" typeId="f887-5881-0e6d-755c" typeName="Abilities" hidden="false" id="ffc7-8f07-cbe5-32f0">
<characteristics>
<characteristic name="Ability" typeId="3467-0678-083e-eb50">Whenever an attack dice inflicts damage of 3 or more on a friendly **WARPCOVEN TZAANGOR** operative that’s visible to and within 3" of this operative, subtract 1 from that inflicted damage.</characteristic>
</characteristics>
</profile>
<profile name="Icon Bearer" typeId="f887-5881-0e6d-755c" typeName="Abilities" hidden="false" id="8ee4-46fc-e9d2-5bd0">
<characteristics>
<characteristic name="Ability" typeId="3467-0678-083e-eb50">Whenever determining control of a marker, treat this operative’s APL stat as 1 higher. Note this isn't a change to its APL stat, so any changes are cumulative with this.</characteristic>
</characteristics>
</profile>
</profiles>
<entryLinks>
<entryLink import="true" name="Dagger" hidden="false" id="f56d-52b0-4171-a185" type="selectionEntry" targetId="5755-02a7-0005-ba34">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="7240-d3e3-1552-3afe-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="7240-d3e3-1552-3afe-max"/>
</constraints>
</entryLink>
</entryLinks>
<modifiers>
<modifier type="set" value="1" field="7e65-a0c6-eb08-6ba5">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="force" childId="19b5-fd1f-a9b5-2c94" shared="true"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint type="max" value="-1" field="selections" scope="force" shared="true" id="7e65-a0c6-eb08-6ba5"/>
</constraints>
</selectionEntry>
<selectionEntry type="model" import="true" name="Tzaangor Warrior" hidden="false" id="b1d1-eefe-afaf-e191">
<categoryLinks>
<categoryLink name="Operative" hidden="false" id="5ce6-99a9-576c-ccab" targetId="cf83-4496-b58e-ac82" primary="true"/>
<categoryLink name="Chaos" hidden="false" id="058a-a0d5-87db-f322" targetId="13fe-a54f-f2f2-f034" primary="false"/>
<categoryLink name="Tzaangor" hidden="false" id="e250-955d-ee5c-1024" targetId="0726-4a7c-8afb-1b21" primary="false"/>
<categoryLink name="Warrior" hidden="false" id="0e67-b071-fda5-ad94" targetId="2b69-f2aa-bd5c-70b2" primary="false"/>
<categoryLink name="WARPCOVEN" hidden="false" id="16b5-18bd-4de0-f28c" targetId="59ff-0a1a-4018-1c16" primary="false"/>
</categoryLinks>
<profiles>
<profile name="Tzaangor Warrior" typeId="5156-3fb9-39ce-7bdb" typeName="Operative" hidden="false" id="a102-6642-7e08-bb66">
<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">9</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntryGroups>
<selectionEntryGroup name="Weapons" id="d74a-fd9d-e3c8-eb1b" hidden="false">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="dae9-2c12-271f-c6f9-min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="dae9-2c12-271f-c6f9-max"/>
</constraints>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Tzaangor blades" hidden="false" id="7ae2-c8e2-0600-397f">
<profiles>
<profile name="⚔ Tzaangor blades" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="0015-9dd3-d61b-d886">
<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">4/5</characteristic>
<characteristic name="WR" typeId="05b8-00a1-69af-14b6">Balanced</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Balanced" id="2cdb-c259-23a6-88fd" hidden="false" type="rule" targetId="28f7-0d96-d1fc-f75b"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Tzaangor blade & shield" hidden="false" id="b49e-fc04-84a0-13c6">
<profiles>
<profile name="⚔ Tzaangor blade & shield" typeId="f25f-4b13-b724-d5a8" typeName="Weapons" hidden="false" id="c95b-270c-1aa8-957a">
<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">Shield*</characteristic>
</characteristics>
</profile>
</profiles>
<rules>
<rule name="*Shield" id="13ad-c196-fb91-1174" hidden="false">
<description>This operative has a 4+ Save stat, and whenever it’s fighting or retaliating with this weapon, each of your blocks can be allocated to block two unresolved successes (instead of one).</description>
</rule>