forked from BSData/wh40k-killteam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Space Marines.cat
5024 lines (5023 loc) · 372 KB
/
Space Marines.cat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<catalogue id="fce0-30e5-a4fc-8736" name="Space Marines" revision="24" battleScribeVersion="2.03" library="true" gameSystemId="a467-5f42-d24c-6e5b" gameSystemRevision="39" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<profileTypes>
<profileType id="6c15-6156-5ba7-10f3" name="Special Issue Ammunition">
<characteristicTypes>
<characteristicType id="73c2-48a4-878b-30dd" name="Modifier"/>
</characteristicTypes>
</profileType>
</profileTypes>
<categoryEntries>
<categoryEntry id="8274-fe6e-50c7-c8ac" name="Primaris" hidden="false"/>
<categoryEntry id="e9f5-a77c-8bd9-7569" name="Grav-chute" hidden="false"/>
<categoryEntry id="3333-6452-51dd-5243" name="Infiltrator" hidden="false"/>
<categoryEntry id="70b7-7609-91ae-2755" name="Suppressor" hidden="false"/>
<categoryEntry id="2230-c77d-bc56-439c" name="Eliminator" hidden="false"/>
<categoryEntry id="c793-9ff1-e5c0-c6d0" name="Sternguard Veteran" hidden="false"/>
<categoryEntry id="a3fb-18f1-f728-dc5d" name="Vanguard Veteran" hidden="false"/>
<categoryEntry id="7daa-feba-8317-5773" name="Company Veteran" hidden="false"/>
<categoryEntry id="8828-0395-080e-7e88" name="Jump Pack" hidden="false"/>
<categoryEntry id="76f6-42a4-c0d7-01a1" name="Black Templars" hidden="false"/>
<categoryEntry id="f7df-60bf-379d-8847" name="Blood Angels" hidden="false"/>
<categoryEntry id="6dc1-298a-5459-4a25" name="Dark Angels" hidden="false"/>
<categoryEntry id="dd3b-adcc-8bc3-c31d" name="Imperial Fists" hidden="false"/>
<categoryEntry id="757f-382d-12cf-0f49" name="Iron Hands" hidden="false"/>
<categoryEntry id="dc4e-633e-b7e7-91fc" name="Raven Guard" hidden="false"/>
<categoryEntry id="def9-9207-76e0-fefd" name="Salamanders" hidden="false"/>
<categoryEntry id="2ea9-3cbd-e934-0180" name="Space Wolves" hidden="false"/>
<categoryEntry id="db00-918b-4bd1-9446" name="Ultramarines" hidden="false"/>
<categoryEntry id="3b17-281f-ac2d-0410" name="White Scars" hidden="false"/>
<categoryEntry id="3306-72f8-96be-a551" name="Incursor" hidden="false"/>
<categoryEntry id="36b5-200b-2e1f-8910" name="Reiver" hidden="false"/>
</categoryEntries>
<rules>
<rule id="b9d3-f144-2eae-fe1b" name="Righteous Zeal (Black Templars)" hidden="false">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d6e9-5af3-c17c-77a0" type="equalTo"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="76f6-42a4-c0d7-01a1" type="equalTo"/>
</conditions>
</conditionGroup>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="f7df-60bf-379d-8847" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="6dc1-298a-5459-4a25" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="dd3b-adcc-8bc3-c31d" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="757f-382d-12cf-0f49" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="dc4e-633e-b7e7-91fc" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="def9-9207-76e0-fefd" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2ea9-3cbd-e934-0180" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="db00-918b-4bd1-9446" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="3b17-281f-ac2d-0410" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="77cd-3383-52b2-a4e3" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="76f6-42a4-c0d7-01a1" type="equalTo"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="beaf-798d-961f-353d" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<description>You can re-roll charge rolls for models in your kill team.</description>
</rule>
<rule id="a79d-77b9-671b-cca9" name="The Red Thirst (Blood Angels)" hidden="false">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d6e9-5af3-c17c-77a0" type="equalTo"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="f7df-60bf-379d-8847" type="equalTo"/>
</conditions>
</conditionGroup>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="76f6-42a4-c0d7-01a1" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="6dc1-298a-5459-4a25" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="dd3b-adcc-8bc3-c31d" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="757f-382d-12cf-0f49" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="dc4e-633e-b7e7-91fc" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="def9-9207-76e0-fefd" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2ea9-3cbd-e934-0180" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="db00-918b-4bd1-9446" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="3b17-281f-ac2d-0410" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="77cd-3383-52b2-a4e3" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="f7df-60bf-379d-8847" type="equalTo"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="beaf-798d-961f-353d" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<description>In any battle round in which a model from your kill team charged, was charged or made a pile-in move granted by the Heroic Intervention Commander Tactic, add 1 to wound rolls for attacks made by that model in the Fight phase.</description>
</rule>
<rule id="044a-445b-9846-45bf" name="Grim Resolve (Dark Angels)" hidden="false">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="f7df-60bf-379d-8847" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="76f6-42a4-c0d7-01a1" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="dd3b-adcc-8bc3-c31d" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="757f-382d-12cf-0f49" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="dc4e-633e-b7e7-91fc" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="def9-9207-76e0-fefd" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2ea9-3cbd-e934-0180" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="db00-918b-4bd1-9446" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="3b17-281f-ac2d-0410" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="77cd-3383-52b2-a4e3" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="6dc1-298a-5459-4a25" type="equalTo"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="beaf-798d-961f-353d" type="equalTo"/>
</conditions>
</conditionGroup>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d6e9-5af3-c17c-77a0" type="equalTo"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="6dc1-298a-5459-4a25" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<description>Re-roll unmodified hit rolls of 1 for attacks made with ranged weapons by models in your kill team (including when firing Overwatch) that have not moved in this battle round.</description>
</rule>
<rule id="1e89-4789-866e-5d34" name="Siege Masters (Imperial Fists)" hidden="false">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d6e9-5af3-c17c-77a0" type="equalTo"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="dd3b-adcc-8bc3-c31d" type="equalTo"/>
</conditions>
</conditionGroup>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="f7df-60bf-379d-8847" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="6dc1-298a-5459-4a25" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="76f6-42a4-c0d7-01a1" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="dc4e-633e-b7e7-91fc" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="def9-9207-76e0-fefd" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2ea9-3cbd-e934-0180" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="db00-918b-4bd1-9446" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="3b17-281f-ac2d-0410" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="77cd-3383-52b2-a4e3" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="757f-382d-12cf-0f49" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="dd3b-adcc-8bc3-c31d" type="equalTo"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="beaf-798d-961f-353d" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<description>Models in your kill team do not suffer the penalty to Injury rolls for the target of their attacks being obscured and within 1" of a model or piece of terrain that is between the two models.</description>
</rule>
<rule id="1b7b-2d08-5bdf-ff9d" name="The Flesh is Weak (Iron Hands)" hidden="false">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d6e9-5af3-c17c-77a0" type="equalTo"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="757f-382d-12cf-0f49" type="equalTo"/>
</conditions>
</conditionGroup>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="f7df-60bf-379d-8847" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="6dc1-298a-5459-4a25" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="dd3b-adcc-8bc3-c31d" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="76f6-42a4-c0d7-01a1" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="dc4e-633e-b7e7-91fc" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="def9-9207-76e0-fefd" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2ea9-3cbd-e934-0180" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="db00-918b-4bd1-9446" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="3b17-281f-ac2d-0410" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="77cd-3383-52b2-a4e3" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="757f-382d-12cf-0f49" type="equalTo"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="beaf-798d-961f-353d" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<description>Roll a dice each time a model in your kill team loses a wound. On a 6, the damage is ignored and the model does not lose a wound. If a model already has a similar ability, choose which effect applies, and re-roll 1s when making these rolls.</description>
</rule>
<rule id="023b-b1a1-9e6d-c407" name="Shadow Masters (Raven Guard)" hidden="false">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d6e9-5af3-c17c-77a0" type="equalTo"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="dc4e-633e-b7e7-91fc" type="equalTo"/>
</conditions>
</conditionGroup>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="f7df-60bf-379d-8847" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="6dc1-298a-5459-4a25" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="dd3b-adcc-8bc3-c31d" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="757f-382d-12cf-0f49" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="76f6-42a4-c0d7-01a1" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="def9-9207-76e0-fefd" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2ea9-3cbd-e934-0180" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="db00-918b-4bd1-9446" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="3b17-281f-ac2d-0410" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="77cd-3383-52b2-a4e3" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="dc4e-633e-b7e7-91fc" type="equalTo"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="beaf-798d-961f-353d" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<description>Models in your kill team are considered to be obscured to enemy models that target them if they are more than 12" away from those models.</description>
</rule>
<rule id="b317-a031-f868-9561" name="Master Artisans (Salamanders)" hidden="false">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d6e9-5af3-c17c-77a0" type="equalTo"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="def9-9207-76e0-fefd" type="equalTo"/>
</conditions>
</conditionGroup>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="f7df-60bf-379d-8847" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="6dc1-298a-5459-4a25" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="dd3b-adcc-8bc3-c31d" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="757f-382d-12cf-0f49" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="dc4e-633e-b7e7-91fc" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="76f6-42a4-c0d7-01a1" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2ea9-3cbd-e934-0180" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="db00-918b-4bd1-9446" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="3b17-281f-ac2d-0410" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="77cd-3383-52b2-a4e3" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="def9-9207-76e0-fefd" type="equalTo"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="beaf-798d-961f-353d" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<description>You can re-roll a single hit roll and a single wound roll in each phase, as long as the attack was made by a model in your kill team.</description>
</rule>
<rule id="c441-6931-289c-e3ff" name="Hunters Unleashed (Space Wolves)" hidden="false">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="f7df-60bf-379d-8847" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="6dc1-298a-5459-4a25" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="dd3b-adcc-8bc3-c31d" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="757f-382d-12cf-0f49" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="dc4e-633e-b7e7-91fc" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="def9-9207-76e0-fefd" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="76f6-42a4-c0d7-01a1" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="db00-918b-4bd1-9446" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="3b17-281f-ac2d-0410" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="77cd-3383-52b2-a4e3" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2ea9-3cbd-e934-0180" type="equalTo"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="beaf-798d-961f-353d" type="equalTo"/>
</conditions>
</conditionGroup>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d6e9-5af3-c17c-77a0" type="equalTo"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2ea9-3cbd-e934-0180" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<description>In any battle round in which a model from your kill team charged, was charged or made a pile-in move granted by the Heroic Intervention Commander Tactic, add 1 to hit rolls for attacks made by that model in the Fight phase. In addition, you can use the Heroic Intervention Commander Tactic if there are any enemy models within 6" (rather than 3") of your Commander, and when you do so they can make a pile-in move of 6", rather than 3".</description>
</rule>
<rule id="9ec8-8736-4dbf-fde6" name="Codex Discipline (Ultramarines)" hidden="false">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="f7df-60bf-379d-8847" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="6dc1-298a-5459-4a25" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="dd3b-adcc-8bc3-c31d" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="757f-382d-12cf-0f49" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="dc4e-633e-b7e7-91fc" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="def9-9207-76e0-fefd" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2ea9-3cbd-e934-0180" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="76f6-42a4-c0d7-01a1" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="3b17-281f-ac2d-0410" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="77cd-3383-52b2-a4e3" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="db00-918b-4bd1-9446" type="equalTo"/>
</conditions>
</conditionGroup>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="beaf-798d-961f-353d" type="equalTo"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="db00-918b-4bd1-9446" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<description>Add 1 to the Leadership characteristic of all models in your kill team. In addition, models in your kill team can still shoot in a battle round in which they Retreated or Fell Back, but if they do, a 6 is always required for a successful hit roll, irrespective of the firing model's Ballistic Skill or any modifiers.</description>
</rule>
<rule id="6a74-f31e-ff21-e2cd" name="Lightning Assault (White Scars)" hidden="false">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="f7df-60bf-379d-8847" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="6dc1-298a-5459-4a25" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="dd3b-adcc-8bc3-c31d" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="757f-382d-12cf-0f49" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="dc4e-633e-b7e7-91fc" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="def9-9207-76e0-fefd" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2ea9-3cbd-e934-0180" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="db00-918b-4bd1-9446" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="76f6-42a4-c0d7-01a1" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="77cd-3383-52b2-a4e3" type="greaterThan"/>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="3b17-281f-ac2d-0410" type="equalTo"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="beaf-798d-961f-353d" type="equalTo"/>
</conditions>
</conditionGroup>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d6e9-5af3-c17c-77a0" type="equalTo"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="3b17-281f-ac2d-0410" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<description>When a model from your kill team Advances, add an additional 2" to the distance it can move. In addition, if a model in your kill team started the Movement phase within 1" of an enemy model, but when you pick it to move there are no enemy models within 1", that model can make a charge attempt instead of Falling Back or remaining stationary.</description>
</rule>
</rules>
<sharedSelectionEntries>
<selectionEntry id="9bab-e586-46f1-a293" name="Lieutenant in Phobos Armour" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="33aa-bfda-db7d-8f1e" value="1">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="beaf-798d-961f-353d" type="equalTo"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="set" field="5291-dc2c-cfa5-a77f" value="66">
<conditions>
<condition field="selections" scope="9bab-e586-46f1-a293" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="32ef-fb0a-d404-f1ea" type="atLeast"/>
</conditions>
</modifier>
<modifier type="set" field="5291-dc2c-cfa5-a77f" value="81.0">
<conditions>
<condition field="selections" scope="9bab-e586-46f1-a293" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0a93-6219-2f28-9a37" type="atLeast"/>
</conditions>
</modifier>
<modifier type="set" field="5291-dc2c-cfa5-a77f" value="106">
<conditions>
<condition field="selections" scope="9bab-e586-46f1-a293" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="363a-fe8e-4043-4722" type="atLeast"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="36b5-200b-2e1f-8910">
<conditions>
<condition field="selections" scope="9bab-e586-46f1-a293" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="118a-8e83-a9e2-bd7d" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="force" value="-1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="33aa-bfda-db7d-8f1e" type="max"/>
</constraints>
<profiles>
<profile id="520d-240c-41bb-b065" name="Lieutenant in Phobos Armour" hidden="false" typeId="bb0a-aba1-abd0-beb3" typeName="Model">
<characteristics>
<characteristic name="M" typeId="0a65-6cb0-f00d-e414">6"</characteristic>
<characteristic name="WS" typeId="99d4-2590-8bac-3ad3">2+</characteristic>
<characteristic name="BS" typeId="27ff-d5c5-5422-1614">3+</characteristic>
<characteristic name="S" typeId="d474-89b0-047c-4f3a">4</characteristic>
<characteristic name="T" typeId="803c-5453-20c4-4b94">4</characteristic>
<characteristic name="W" typeId="0c48-aed0-609b-9818">5</characteristic>
<characteristic name="A" typeId="d63d-20cc-db25-5dd5">4</characteristic>
<characteristic name="Ld" typeId="411b-5228-afed-8334">8</characteristic>
<characteristic name="Sv" typeId="c319-1a2d-3648-2294">3+</characteristic>
<characteristic name="Max" typeId="44ec-172b-6381-4908">1</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="d35e-8a91-fca7-6266" name="And They Shall Know No Fear" hidden="false" targetId="49a9-7117-4c92-78f9" type="profile"/>
<infoLink id="5304-3b3e-82b4-8dac" name="Transhuman Physiology" hidden="false" targetId="01fd-b8b9-3c51-53db" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="37d2-8b9f-0d35-474a" name="Imperium" hidden="false" targetId="8d6d-8c4b-f475-e74a" primary="false"/>
<categoryLink id="5a59-d6a7-eaee-37f1" name="New CategoryLink" hidden="false" targetId="6c25-5825-9054-44a7" primary="true"/>
<categoryLink id="6d25-7a95-7973-1655" name="Infantry" hidden="false" targetId="96c1-32dc-d9dc-4678" primary="false"/>
<categoryLink id="2866-5e24-73ec-f358" name="Primaris" hidden="false" targetId="8274-fe6e-50c7-c8ac" primary="false"/>
<categoryLink id="1d94-47aa-b0ec-cba0" name="Model" hidden="false" targetId="50dd-a755-e02d-1c30" primary="false"/>
<categoryLink id="2dea-88bf-be70-1a39" name="Grav-chute" hidden="false" targetId="e9f5-a77c-8bd9-7569" primary="false"/>
<categoryLink id="5ec5-e2c6-d460-fc95" name="Lieutenant" hidden="false" targetId="3634-f76f-42f8-7b23" primary="false"/>
<categoryLink id="84c8-511d-6feb-d789" name="Phobos" hidden="false" targetId="9c92-7f60-82bf-33ba" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="fff9-8cd4-d104-e1d9" name="Loadout" hidden="false" collective="false" import="true" defaultSelectionEntryId="59b4-41e8-8797-ab8f">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5644-1809-b95a-0563" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="699e-7b5e-248e-15e0" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="59b4-41e8-8797-ab8f" name="Carbine and blades" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="b474-f0c0-86eb-6a7d" name="Grav-chute" hidden="false" targetId="f040-b9fb-248c-074d" type="profile"/>
</infoLinks>
<selectionEntries>
<selectionEntry id="15a3-751a-41c3-7f81" name="Master-crafted occulus bolt carbine" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a64a-352d-c006-075f" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1878-7fd1-5a50-9c3b" type="max"/>
</constraints>
<profiles>
<profile id="8f2d-679b-b450-3285" name="Master-crafted occulus bolt carbine" hidden="false" typeId="c067-7929-f4dc-7825" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="5410-0b42-87cc-bbc6">24"</characteristic>
<characteristic name="Type" typeId="38ea-c4e0-d3bb-d1e9">Rapid Fire 1</characteristic>
<characteristic name="S" typeId="fcc6-35ea-38b6-f4ca">4</characteristic>
<characteristic name="AP" typeId="fc0e-2874-184d-9f64">0</characteristic>
<characteristic name="D" typeId="cc1f-e463-c014-2251">2</characteristic>
<characteristic name="Abilities" typeId="72cf-5b8f-5b71-79b2">Add 1 to hit rolls for this weapon when targeting a model that is obscured.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="5291-dc2c-cfa5-a77f" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="0540-9f0b-b8a2-fe08" name="Bolt pistol" hidden="false" collective="false" import="true" targetId="7780-b707-dff3-642d" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="23bb-db26-5422-509e" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7c39-d618-c545-ce3c" type="max"/>
</constraints>
</entryLink>
<entryLink id="b4fa-6678-7ed1-340b" name="Paired combat blades" hidden="false" collective="false" import="true" targetId="eb16-ad1e-287d-3e0a" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="78a1-f3c5-28a9-9e2c" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="bd7b-f381-e850-6e2e" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="5291-dc2c-cfa5-a77f" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="118a-8e83-a9e2-bd7d" name="Heavy bolt pistol and combat knife" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="3bf8-6053-375d-9849" name="Terror Troops" hidden="false" typeId="1015-f0b1-9137-0060" typeName="Ability">
<characteristics>
<characteristic name="Description" typeId="b373-019d-503a-1124">Enemy models must subtract 1 from their Leadership characteristic if they are within 3" of any REIVER models.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry id="2cc0-9c19-4e7a-a2d6" name="Heavy bolt pistol" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6f3e-992a-ed70-2a8a" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7483-971f-472d-8138" type="max"/>
</constraints>
<profiles>
<profile id="253e-3886-e0c4-fc05" name="Heavy bolt pistol" hidden="false" typeId="c067-7929-f4dc-7825" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="5410-0b42-87cc-bbc6">12"</characteristic>
<characteristic name="Type" typeId="38ea-c4e0-d3bb-d1e9">Pistol 1</characteristic>
<characteristic name="S" typeId="fcc6-35ea-38b6-f4ca">4</characteristic>
<characteristic name="AP" typeId="fc0e-2874-184d-9f64">-1</characteristic>
<characteristic name="D" typeId="cc1f-e463-c014-2251">1</characteristic>
<characteristic name="Abilities" typeId="72cf-5b8f-5b71-79b2">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="5291-dc2c-cfa5-a77f" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="0fb7-b487-7add-b678" name="Combat knife" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="71af-5826-ea0e-fbf5" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9187-d60c-a75b-5469" type="max"/>
</constraints>
<profiles>
<profile id="c22f-d709-883c-f0ec" name="Combat knife" hidden="false" typeId="c067-7929-f4dc-7825" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="5410-0b42-87cc-bbc6">Melee</characteristic>
<characteristic name="Type" typeId="38ea-c4e0-d3bb-d1e9">Melee</characteristic>
<characteristic name="S" typeId="fcc6-35ea-38b6-f4ca">User</characteristic>
<characteristic name="AP" typeId="fc0e-2874-184d-9f64">0</characteristic>
<characteristic name="D" typeId="cc1f-e463-c014-2251">1</characteristic>
<characteristic name="Abilities" typeId="72cf-5b8f-5b71-79b2">Each time the bearer fights, it can make one additional attack with this weapon.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="5291-dc2c-cfa5-a77f" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="pts" typeId="5291-dc2c-cfa5-a77f" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="ebb2-0077-4527-7408" name="Frag and krak grenades" hidden="false" collective="false" import="true" targetId="c0eb-48a8-64a0-8635" type="selectionEntry"/>
<entryLink id="371a-a2d3-c669-6a50" name="Chapter" hidden="false" collective="false" import="true" targetId="72dc-01ba-36f1-563f" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="5291-dc2c-cfa5-a77f" value="51.0"/>
</costs>
</selectionEntry>
<selectionEntry id="c0eb-48a8-64a0-8635" name="Frag and krak grenades" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6b62-52a7-0a0f-1dab" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4d80-5a04-9b25-9686" type="max"/>
</constraints>
<profiles>
<profile id="577a-d619-5d2c-14a0" name="Frag grenade" hidden="false" typeId="c067-7929-f4dc-7825" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="5410-0b42-87cc-bbc6">6"</characteristic>
<characteristic name="Type" typeId="38ea-c4e0-d3bb-d1e9">Grenade D6</characteristic>
<characteristic name="S" typeId="fcc6-35ea-38b6-f4ca">3</characteristic>
<characteristic name="AP" typeId="fc0e-2874-184d-9f64">0</characteristic>
<characteristic name="D" typeId="cc1f-e463-c014-2251">1</characteristic>
<characteristic name="Abilities" typeId="72cf-5b8f-5b71-79b2">-</characteristic>
</characteristics>
</profile>
<profile id="779d-0dd1-8188-82eb" name="Krak grenade" hidden="false" typeId="c067-7929-f4dc-7825" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="5410-0b42-87cc-bbc6">6"</characteristic>
<characteristic name="Type" typeId="38ea-c4e0-d3bb-d1e9">Grenade 1</characteristic>
<characteristic name="S" typeId="fcc6-35ea-38b6-f4ca">6</characteristic>
<characteristic name="AP" typeId="fc0e-2874-184d-9f64">-1</characteristic>
<characteristic name="D" typeId="cc1f-e463-c014-2251">D3</characteristic>
<characteristic name="Abilities" typeId="72cf-5b8f-5b71-79b2">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="5291-dc2c-cfa5-a77f" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="7780-b707-dff3-642d" name="Bolt pistol" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="increment" field="5291-dc2c-cfa5-a77f" value="2">
<conditions>
<condition field="selections" scope="primary-catalogue" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="7548-75cf-ab24-7e9c" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="9221-197c-a44b-9eef" name="Bolt pistol" hidden="false" typeId="c067-7929-f4dc-7825" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="5410-0b42-87cc-bbc6">12"</characteristic>
<characteristic name="Type" typeId="38ea-c4e0-d3bb-d1e9">Pistol 1</characteristic>
<characteristic name="S" typeId="fcc6-35ea-38b6-f4ca">4</characteristic>
<characteristic name="AP" typeId="fc0e-2874-184d-9f64">0</characteristic>
<characteristic name="D" typeId="cc1f-e463-c014-2251">1</characteristic>
<characteristic name="Abilities" typeId="72cf-5b8f-5b71-79b2">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="5291-dc2c-cfa5-a77f" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="4e19-9c2e-053b-5f29" name="Combat knife" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="441a-729a-6b22-c3b3" name="Combat knife" hidden="false" typeId="c067-7929-f4dc-7825" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="5410-0b42-87cc-bbc6">Melee</characteristic>
<characteristic name="Type" typeId="38ea-c4e0-d3bb-d1e9">Melee</characteristic>
<characteristic name="S" typeId="fcc6-35ea-38b6-f4ca">User</characteristic>
<characteristic name="AP" typeId="fc0e-2874-184d-9f64">0</characteristic>
<characteristic name="D" typeId="cc1f-e463-c014-2251">1</characteristic>
<characteristic name="Abilities" typeId="72cf-5b8f-5b71-79b2">Each time the bearer fights, it can make 1 additional attack with this weapon.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="5291-dc2c-cfa5-a77f" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="f4e6-fc31-8475-2fda" name="Captain in Phobos Armour" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="57ac-2f0e-c2ce-5b86" value="1">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="beaf-798d-961f-353d" type="equalTo"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="set" field="5291-dc2c-cfa5-a77f" value="101">
<conditions>
<condition field="selections" scope="f4e6-fc31-8475-2fda" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="32ef-fb0a-d404-f1ea" type="atLeast"/>
</conditions>
</modifier>
<modifier type="set" field="5291-dc2c-cfa5-a77f" value="121">
<conditions>
<condition field="selections" scope="f4e6-fc31-8475-2fda" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0a93-6219-2f28-9a37" type="atLeast"/>
</conditions>
</modifier>
<modifier type="set" field="5291-dc2c-cfa5-a77f" value="146">
<conditions>
<condition field="selections" scope="f4e6-fc31-8475-2fda" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="363a-fe8e-4043-4722" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="force" value="-1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="57ac-2f0e-c2ce-5b86" type="max"/>
</constraints>
<profiles>
<profile id="b1ac-104f-8300-4ce7" name="Captain in Phobos Armour" hidden="false" typeId="bb0a-aba1-abd0-beb3" typeName="Model">
<characteristics>
<characteristic name="M" typeId="0a65-6cb0-f00d-e414">6"</characteristic>
<characteristic name="WS" typeId="99d4-2590-8bac-3ad3">2+</characteristic>
<characteristic name="BS" typeId="27ff-d5c5-5422-1614">2+</characteristic>
<characteristic name="S" typeId="d474-89b0-047c-4f3a">4</characteristic>
<characteristic name="T" typeId="803c-5453-20c4-4b94">4</characteristic>
<characteristic name="W" typeId="0c48-aed0-609b-9818">6</characteristic>
<characteristic name="A" typeId="d63d-20cc-db25-5dd5">5</characteristic>
<characteristic name="Ld" typeId="411b-5228-afed-8334">9</characteristic>
<characteristic name="Sv" typeId="c319-1a2d-3648-2294">3+</characteristic>
<characteristic name="Max" typeId="44ec-172b-6381-4908">1</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="a75a-b050-dcb1-0b8a" name="And They Shall Know No Fear" hidden="false" targetId="49a9-7117-4c92-78f9" type="profile"/>
<infoLink id="b35c-82cb-df55-03dd" name="Camo Cloak" hidden="false" targetId="81d8-993a-7624-5934" type="profile"/>
<infoLink id="c76b-22ec-bfc0-ee6d" name="Iron Halo" hidden="false" targetId="a4e3-98de-1418-8431" type="profile"/>
<infoLink id="c10e-0b10-9d90-15c0" name="Concealed Position" hidden="false" targetId="85eb-f35c-6245-3ff5" type="profile"/>
<infoLink id="37d1-33f4-1cba-a6bc" name="Omni-scrambler" hidden="false" targetId="24a6-b460-a1e0-5954" type="profile"/>
<infoLink id="6371-f382-ad28-1c23" name="Transhuman Physiology" hidden="false" targetId="01fd-b8b9-3c51-53db" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="ab19-3406-bdd2-201c" name="Imperium" hidden="false" targetId="8d6d-8c4b-f475-e74a" primary="false"/>
<categoryLink id="5fef-7563-6961-a4ff" name="New CategoryLink" hidden="false" targetId="6c25-5825-9054-44a7" primary="true"/>
<categoryLink id="cecf-bb1f-c2df-d323" name="Infantry" hidden="false" targetId="96c1-32dc-d9dc-4678" primary="false"/>
<categoryLink id="0e59-7d17-d356-5aaf" name="Primaris" hidden="false" targetId="8274-fe6e-50c7-c8ac" primary="false"/>
<categoryLink id="09f6-8f30-e26b-25ec" name="Captain" hidden="false" targetId="3320-1c26-1def-a58e" primary="false"/>
<categoryLink id="fdbd-fa0c-e402-d361" name="Model" hidden="false" targetId="50dd-a755-e02d-1c30" primary="false"/>
<categoryLink id="9159-fc69-5486-3c48" name="Phobos" hidden="false" targetId="9c92-7f60-82bf-33ba" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="676c-e22e-0157-d8cf" name="Master-crafted instigator bolt rifle" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="aad8-0e5e-4195-301f" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a7a3-4e7f-20be-61f7" type="max"/>
</constraints>
<profiles>
<profile id="8cee-85f8-cc8a-68b8" name="Master-crafted instigator bolt rifle" hidden="false" typeId="c067-7929-f4dc-7825" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="5410-0b42-87cc-bbc6">30"</characteristic>
<characteristic name="Type" typeId="38ea-c4e0-d3bb-d1e9">Heavy 1</characteristic>
<characteristic name="S" typeId="fcc6-35ea-38b6-f4ca">4</characteristic>
<characteristic name="AP" typeId="fc0e-2874-184d-9f64">-2</characteristic>
<characteristic name="D" typeId="cc1f-e463-c014-2251">2</characteristic>
<characteristic name="Abilities" typeId="72cf-5b8f-5b71-79b2">A model firing this weapon does not suffer the penalty to hit rolls for the target being at long range.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="5291-dc2c-cfa5-a77f" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="2ba5-bf0b-b5fe-2a1d" name="Bolt pistol" hidden="false" collective="false" import="true" targetId="7780-b707-dff3-642d" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="38ac-5896-b979-157b" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="dfc8-1889-9865-79b6" type="max"/>
</constraints>
</entryLink>
<entryLink id="e85c-077e-3655-b2d2" name="Frag and krak grenades" hidden="false" collective="false" import="true" targetId="c0eb-48a8-64a0-8635" type="selectionEntry"/>
<entryLink id="1949-1fc7-e221-716e" name="Combat knife" hidden="false" collective="false" import="true" targetId="4e19-9c2e-053b-5f29" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5ea5-0b0a-9ef6-d14b" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1fe2-95d7-3fef-38c5" type="max"/>
</constraints>
</entryLink>
<entryLink id="dc29-7825-eb55-41e0" name="Chapter" hidden="false" collective="false" import="true" targetId="72dc-01ba-36f1-563f" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="5291-dc2c-cfa5-a77f" value="81.0"/>
</costs>
</selectionEntry>
<selectionEntry id="0def-8e36-3a16-ab63" name="Librarian in Phobos Armour" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="4ab2-a1d1-26e5-7553" value="1">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="beaf-798d-961f-353d" type="equalTo"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="set" field="5291-dc2c-cfa5-a77f" value="111">
<conditions>
<condition field="selections" scope="0def-8e36-3a16-ab63" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="32ef-fb0a-d404-f1ea" type="atLeast"/>
</conditions>
</modifier>
<modifier type="set" field="5291-dc2c-cfa5-a77f" value="131">
<conditions>
<condition field="selections" scope="0def-8e36-3a16-ab63" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0a93-6219-2f28-9a37" type="atLeast"/>
</conditions>
</modifier>
<modifier type="set" field="5291-dc2c-cfa5-a77f" value="156">
<conditions>
<condition field="selections" scope="0def-8e36-3a16-ab63" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="363a-fe8e-4043-4722" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="force" value="-1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="4ab2-a1d1-26e5-7553" type="max"/>
</constraints>
<profiles>
<profile id="2b71-db77-c844-c296" name="Librarian in Phobos Armour" hidden="false" typeId="bb0a-aba1-abd0-beb3" typeName="Model">
<characteristics>
<characteristic name="M" typeId="0a65-6cb0-f00d-e414">6"</characteristic>
<characteristic name="WS" typeId="99d4-2590-8bac-3ad3">3+</characteristic>
<characteristic name="BS" typeId="27ff-d5c5-5422-1614">3+</characteristic>
<characteristic name="S" typeId="d474-89b0-047c-4f3a">4</characteristic>
<characteristic name="T" typeId="803c-5453-20c4-4b94">4</characteristic>
<characteristic name="W" typeId="0c48-aed0-609b-9818">5</characteristic>
<characteristic name="A" typeId="d63d-20cc-db25-5dd5">4</characteristic>
<characteristic name="Ld" typeId="411b-5228-afed-8334">9</characteristic>
<characteristic name="Sv" typeId="c319-1a2d-3648-2294">3+</characteristic>
<characteristic name="Max" typeId="44ec-172b-6381-4908">1</characteristic>
</characteristics>
</profile>
<profile id="6d4e-5327-2055-30ba" name="Librarian in Phobos Armour" hidden="false" typeId="201a-159a-7751-b85b" typeName="Psyker">
<characteristics>
<characteristic name="Manifest" typeId="998f-87b1-cc06-fb7e">2</characteristic>
<characteristic name="Deny" typeId="cb14-ded3-0978-88b8">1</characteristic>
<characteristic name="Powers known" typeId="67ce-9d6c-052c-d1eb">Psybolt and 2 powers from the Obscuration Discipline</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="c2cc-7d17-53b2-7d10" name="And They Shall Know No Fear" hidden="false" targetId="49a9-7117-4c92-78f9" type="profile"/>
<infoLink id="127f-15bc-867e-afe0" name="Transhuman Physiology" hidden="false" targetId="01fd-b8b9-3c51-53db" type="profile"/>
<infoLink id="52d9-98f4-abf6-3988" name="Camo Cloak" hidden="false" targetId="81d8-993a-7624-5934" type="profile"/>
<infoLink id="91d8-92f5-b544-1e06" name="Concealed Position" hidden="false" targetId="85eb-f35c-6245-3ff5" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="7fae-cb3d-f3ae-1ef7" name="Imperium" hidden="false" targetId="8d6d-8c4b-f475-e74a" primary="false"/>
<categoryLink id="764b-616e-7821-7ca7" name="New CategoryLink" hidden="false" targetId="6c25-5825-9054-44a7" primary="true"/>
<categoryLink id="1295-7dc0-12f0-5306" name="Infantry" hidden="false" targetId="96c1-32dc-d9dc-4678" primary="false"/>
<categoryLink id="9219-4be2-2464-f218" name="Primaris" hidden="false" targetId="8274-fe6e-50c7-c8ac" primary="false"/>
<categoryLink id="8370-0a6a-56c7-2e5b" name="Model" hidden="false" targetId="50dd-a755-e02d-1c30" primary="false"/>
<categoryLink id="1efc-9267-c150-6673" name="Librarian" hidden="false" targetId="d778-e774-3b07-1b67" primary="false"/>
<categoryLink id="376f-dd43-26e5-9328" name="Psyker" hidden="false" targetId="9b50-1372-5ee7-b0d9" primary="false"/>
<categoryLink id="e196-5372-87fd-09cf" name="Phobos" hidden="false" targetId="9c92-7f60-82bf-33ba" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="236e-9780-abd4-d23d" name="Bolt pistol" hidden="false" collective="false" import="true" targetId="7780-b707-dff3-642d" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fbc3-c5b3-8bc4-9b0a" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d94a-40fb-6d04-a055" type="max"/>
</constraints>
</entryLink>
<entryLink id="5338-c68d-28a0-3965" name="Frag and krak grenades" hidden="false" collective="false" import="true" targetId="c0eb-48a8-64a0-8635" type="selectionEntry"/>
<entryLink id="2d68-88cb-96bf-431e" name="Psychic Powers" hidden="false" collective="false" import="true" targetId="a13c-4359-e56d-3814" type="selectionEntryGroup">
<constraints>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2f1c-d7dc-f63c-467d" type="max"/>
</constraints>
</entryLink>
<entryLink id="66e5-cb2b-fb9b-39a3" name="Force sword" hidden="false" collective="false" import="true" targetId="5bf5-a688-34af-4863" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="28cb-4a56-80dc-bbca" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ef8f-e98f-a15b-c426" type="max"/>
</constraints>
</entryLink>
<entryLink id="b5c1-51c4-3618-55ad" name="Chapter" hidden="false" collective="false" import="true" targetId="72dc-01ba-36f1-563f" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="5291-dc2c-cfa5-a77f" value="91.0"/>
</costs>
</selectionEntry>
<selectionEntry id="5bf5-a688-34af-4863" name="Force sword" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="db9f-de7b-810d-4dfe" name="Force sword" hidden="false" typeId="c067-7929-f4dc-7825" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="5410-0b42-87cc-bbc6">Melee</characteristic>
<characteristic name="Type" typeId="38ea-c4e0-d3bb-d1e9">Melee</characteristic>
<characteristic name="S" typeId="fcc6-35ea-38b6-f4ca">User</characteristic>
<characteristic name="AP" typeId="fc0e-2874-184d-9f64">-3</characteristic>
<characteristic name="D" typeId="cc1f-e463-c014-2251">D3</characteristic>
<characteristic name="Abilities" typeId="72cf-5b8f-5b71-79b2">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="5291-dc2c-cfa5-a77f" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="337a-f2e3-2598-1b94" name="Librarian in Terminator Armour" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="5291-dc2c-cfa5-a77f" value="108">
<conditions>
<condition field="selections" scope="337a-f2e3-2598-1b94" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="32ef-fb0a-d404-f1ea" type="atLeast"/>
</conditions>
</modifier>
<modifier type="set" field="5291-dc2c-cfa5-a77f" value="128">
<conditions>
<condition field="selections" scope="337a-f2e3-2598-1b94" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0a93-6219-2f28-9a37" type="atLeast"/>
</conditions>
</modifier>
<modifier type="set" field="5291-dc2c-cfa5-a77f" value="153">
<conditions>
<condition field="selections" scope="337a-f2e3-2598-1b94" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="363a-fe8e-4043-4722" type="atLeast"/>
</conditions>
</modifier>
<modifier type="set" field="ec5a-48f9-697d-76df" value="1">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="beaf-798d-961f-353d" type="equalTo"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7c0b-7da1-facd-d326" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="force" value="-1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="ec5a-48f9-697d-76df" type="max"/>
</constraints>
<profiles>
<profile id="c15b-df51-d2de-d5a2" name="Librarian in Terminator Armour" hidden="false" typeId="bb0a-aba1-abd0-beb3" typeName="Model">
<characteristics>
<characteristic name="M" typeId="0a65-6cb0-f00d-e414">5"</characteristic>
<characteristic name="WS" typeId="99d4-2590-8bac-3ad3">3+</characteristic>
<characteristic name="BS" typeId="27ff-d5c5-5422-1614">3+</characteristic>
<characteristic name="S" typeId="d474-89b0-047c-4f3a">4</characteristic>
<characteristic name="T" typeId="803c-5453-20c4-4b94">4</characteristic>
<characteristic name="W" typeId="0c48-aed0-609b-9818">5</characteristic>
<characteristic name="A" typeId="d63d-20cc-db25-5dd5">3</characteristic>
<characteristic name="Ld" typeId="411b-5228-afed-8334">9</characteristic>
<characteristic name="Sv" typeId="c319-1a2d-3648-2294">2+</characteristic>
<characteristic name="Max" typeId="44ec-172b-6381-4908">1</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="8b5e-f34c-c3a6-9a4b" name="And They Shall Know No Fear" hidden="false" targetId="49a9-7117-4c92-78f9" type="profile"/>
<infoLink id="f70a-0b42-c07b-bb47" name="Transhuman Physiology" hidden="false" targetId="01fd-b8b9-3c51-53db" type="profile"/>
<infoLink id="252f-d531-26aa-b71a" name="Psychic Hood" hidden="false" targetId="48f7-db34-62db-3f26" type="profile"/>
<infoLink id="b3eb-c495-d7ae-309c" name="Crux Terminatus" hidden="false" targetId="7817-0e31-06ad-141b" type="profile"/>
<infoLink id="65e4-05a3-ffd7-f09a" name="Dragonfire bolt" hidden="false" targetId="ce35-d6c8-4064-98f2" type="profile"/>
<infoLink id="32ac-471a-4d4a-9427" name="Hellfire round" hidden="false" targetId="575d-2a48-6f10-d9b2" type="profile"/>
<infoLink id="9075-01e6-6e5c-a37b" name="Kraken bolt" hidden="false" targetId="ea88-41e4-b032-0245" type="profile"/>
<infoLink id="1124-0e99-3387-1c01" name="Vengeance round" hidden="false" targetId="9f7b-8f7c-2fa1-fe10" type="profile"/>
<infoLink id="24d5-015f-5221-903c" name="Special Issue Ammunition" hidden="false" targetId="e0fd-768f-c0f8-41d2" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="da94-eb69-3d81-ab1d" name="Imperium" hidden="false" targetId="8d6d-8c4b-f475-e74a" primary="false"/>
<categoryLink id="5e24-8bed-e504-5c1c" name="New CategoryLink" hidden="false" targetId="6c25-5825-9054-44a7" primary="true"/>
<categoryLink id="fa31-1e1c-ff0b-a08d" name="Infantry" hidden="false" targetId="96c1-32dc-d9dc-4678" primary="false"/>
<categoryLink id="d0b7-7207-9cdc-f7ba" name="Terminator" hidden="false" targetId="1ec0-dd6e-9680-2288" primary="false"/>
<categoryLink id="9fd7-f4a2-efe0-fd9e" name="Psyker" hidden="false" targetId="9b50-1372-5ee7-b0d9" primary="false"/>
<categoryLink id="c836-be4a-dde6-a287" name="Librarian" hidden="false" targetId="d778-e774-3b07-1b67" primary="false"/>
<categoryLink id="ec9a-9668-9ea3-2eee" name="Model" hidden="false" targetId="50dd-a755-e02d-1c30" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="1df8-6c20-362e-c6b6" name="Force weapon" hidden="false" collective="false" import="true" defaultSelectionEntryId="7a31-3e71-1d94-485a">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b421-9ac5-7f7d-5c6f" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="bd77-c64c-513e-767e" type="min"/>
</constraints>
<entryLinks>
<entryLink id="c6c2-7738-1a1c-4b0a" name="Force axe" hidden="false" collective="false" import="true" targetId="23bc-f103-5405-b9cc" type="selectionEntry"/>
<entryLink id="7a31-3e71-1d94-485a" name="Force stave" hidden="false" collective="false" import="true" targetId="a804-bd4b-f0e2-767e" type="selectionEntry"/>
<entryLink id="5f35-5931-0fc1-a8d6" name="Force sword" hidden="false" collective="false" import="true" targetId="5bf5-a688-34af-4863" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="bc44-452c-ab87-50ea" name="Ranged weapon" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ca2c-a2da-8b59-9c64" type="max"/>
</constraints>
<entryLinks>
<entryLink id="9128-4e9a-8e5e-7c61" name="Storm bolter" hidden="false" collective="false" import="true" targetId="fa76-84bc-7536-6c24" type="selectionEntry">
<modifiers>
<modifier type="increment" field="5291-dc2c-cfa5-a77f" value="2.0"/>
</modifiers>
</entryLink>
<entryLink id="ad79-3232-8250-d00d" name="Combi-flamer" hidden="false" collective="false" import="true" targetId="87cb-ba2f-b55c-b525" type="selectionEntry">
<modifiers>
<modifier type="increment" field="5291-dc2c-cfa5-a77f" value="1.0"/>
</modifiers>
</entryLink>
<entryLink id="944c-6e5a-839d-849d" name="Combi-melta" hidden="false" collective="false" import="true" targetId="9458-28fc-1037-5630" type="selectionEntry">
<modifiers>
<modifier type="increment" field="5291-dc2c-cfa5-a77f" value="3.0"/>
</modifiers>
</entryLink>
<entryLink id="1f09-5217-74f8-7276" name="Combi-plasma" hidden="false" collective="false" import="true" targetId="e86f-4313-7f7b-ca18" type="selectionEntry">
<modifiers>
<modifier type="increment" field="5291-dc2c-cfa5-a77f" value="2.0"/>
</modifiers>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="7b64-68d0-5de0-e055" name="Psychic Powers" hidden="false" collective="false" import="true" targetId="a13c-4359-e56d-3814" type="selectionEntryGroup">
<constraints>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c22e-516c-fa7e-e698" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="5291-dc2c-cfa5-a77f" value="88.0"/>
</costs>
</selectionEntry>
<selectionEntry id="23bc-f103-5405-b9cc" name="Force axe" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="13bc-e2b1-7170-ea39" name="Force axe" hidden="false" typeId="c067-7929-f4dc-7825" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="5410-0b42-87cc-bbc6">Melee</characteristic>
<characteristic name="Type" typeId="38ea-c4e0-d3bb-d1e9">Melee</characteristic>
<characteristic name="S" typeId="fcc6-35ea-38b6-f4ca">+1</characteristic>
<characteristic name="AP" typeId="fc0e-2874-184d-9f64">-2</characteristic>
<characteristic name="D" typeId="cc1f-e463-c014-2251">D3</characteristic>
<characteristic name="Abilities" typeId="72cf-5b8f-5b71-79b2">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="5291-dc2c-cfa5-a77f" value="2.0"/>
</costs>
</selectionEntry>
<selectionEntry id="a804-bd4b-f0e2-767e" name="Force stave" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="a759-d3fb-c939-b645" name="Force stave" hidden="false" typeId="c067-7929-f4dc-7825" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="5410-0b42-87cc-bbc6">Melee</characteristic>