forked from BSData/wh40k-10e
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Imperium - Blood Angels.cat
2814 lines (2799 loc) · 199 KB
/
Imperium - Blood Angels.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 xmlns="http://www.battlescribe.net/schema/catalogueSchema" library="false" id="4ef9-15ce-e3e6-36de" name="Imperium - Adeptus Astartes - Blood Angels" gameSystemId="sys-352e-adc2-7639-d6a9" gameSystemRevision="1" revision="22" battleScribeVersion="2.03" type="catalogue" authorName="Acebaur">
<catalogueLinks>
<catalogueLink type="catalogue" name="Imperium - Space Marines" id="abd0-8ebd-6fbd-2d94" targetId="e0af-67df-9d63-8fb7" importRootEntries="true"/>
<catalogueLink type="catalogue" name="Imperium - Imperial Knights - Library" id="9c08-8ffc-d746-7384" targetId="1b6d-dc06-5db9-c7d1" importRootEntries="true"/>
<catalogueLink type="catalogue" name="Imperium - Agents of the Imperium" id="d012-8d6a-860f-79f0" targetId="b00-cd86-4b4c-97ba" importRootEntries="true"/>
</catalogueLinks>
<sharedSelectionEntries>
<selectionEntry type="model" import="true" name="Astorath" hidden="false" id="f943-72c8-581c-e6f2">
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="373e-99de-ce49-806b"/>
</constraints>
<categoryLinks>
<categoryLink targetId="4f3a-f0f7-6647-348d" id="d23a-e650-3750-9f1c" primary="true" name="Epic Hero"/>
<categoryLink targetId="9cfd-1c32-585f-7d5c" id="de99-73ce-af5a-db0b" primary="false" name="Character"/>
<categoryLink targetId="cf47-a0d7-7207-29dc" id="fc44-41f9-326d-2178" primary="false" name="Infantry"/>
<categoryLink targetId="5a61-81ac-eb7c-a87e" id="333-3750-4e57-1ac7" primary="false" name="Grenades"/>
<categoryLink targetId="c619-2086-bbcf-69c9" id="8453-b83a-5c-4a5a" primary="false" name="Fly"/>
<categoryLink targetId="dda2-bb0a-215e-ad9c" id="4069-39a2-f945-a58f" primary="false" name="Jump Pack"/>
<categoryLink targetId="aff3-d6a3-2a95-9dc" id="35c2-8950-42de-80f7" primary="false" name="Imperium"/>
<categoryLink targetId="1fb1-3603-a4bd-485" id="c781-4807-a539-d4d5" primary="false" name="Chaplain"/>
<categoryLink targetId="6e7-40c-58d9-e402" id="7602-2152-3830-4f1d" primary="false" name="Faction: Adeptus Astartes"/>
<categoryLink targetId="62ac-ef42-27b4-ae7" id="b2fd-e768-9174-9e5b" primary="false" name="Faction: Blood Angels"/>
<categoryLink targetId="da64-bc59-71f9-96e8" id="5e2c-d136-51e8-cf0c" primary="false" name="Astorath"/>
</categoryLinks>
<profiles>
<profile name="Astorath" typeId="c547-1836-d8a-ff4f" typeName="Unit" hidden="false" id="bd83-7f95-9b20-3b25">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">12"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">4</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">2+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">5</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">5+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">1</characteristic>
</characteristics>
</profile>
<profile name="Redeemer of the Lost" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="c5e1-99a6-a51e-251e">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">While this model is leading a unit, each time a model in that unit is destroyed by a melee attack, if that model has not fought this phase, roll one D6. On a 4+, do not remove it from play; that destroyed model can fight after the attacking model’s unit has finished making its attacks, and is then removed from play.</characteristic>
</characteristics>
</profile>
<profile name="Mass of Doom" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="2cc0-3a51-cd4f-429e">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">Once per battle, when this model’s unit makes a Charge move, this model can use this ability. When it does, until the end of the turn, melee weapons equipped by models in that unit have the [DEVASTATING WOUNDS] ability.</characteristic>
</characteristics>
</profile>
<profile name="Leader" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="7ee0-8183-ece2-25c9">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">This model can be attached to the following unit:
■ Death Company Marines with Jump Packs</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Leader" hidden="false" type="rule" id="7b0-1020-2ea9-e14e" targetId="b4dd-3e1f-41cb-218f"/>
<infoLink name="Oath of Moment" hidden="false" type="rule" id="adae-4433-67ed-1793" targetId="3b76-4053-ece9-6e7d"/>
<infoLink name="Deep Strike" hidden="false" type="rule" id="87bd-4a20-9d91-21bd" targetId="7cb5-dd6b-dd87-ad3b"/>
<infoLink name="Invulnerable Save" hidden="false" type="profile" id="5e2e-f2fa-5963-b8e4" targetId="db19-dee7-9530-ef0e"/>
</infoLinks>
<entryLinks>
<entryLink import="true" name="Bolt Pistol" hidden="false" type="selectionEntry" id="f629-ee70-cf01-6b20" targetId="b273-b85e-4018-a0cd">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="d47c-3214-e86b-fcb4"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="7620-7b65-35b5-8c49"/>
</constraints>
</entryLink>
<entryLink import="true" name="Warlord" hidden="false" type="selectionEntry" id="a04b-7774-2d80-be8b" targetId="caa-f869-3cbd-b48e"/>
</entryLinks>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="The Executioner's Axe" hidden="false" id="8522-5c3c-15e7-4d78">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="1f54-8950-db7e-ef05"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="f850-7583-12d3-3f22"/>
</constraints>
<profiles>
<profile name="The Executioner's Axe" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons" hidden="false" id="d655-eefd-e172-20ae">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">4</characteristic>
<characteristic name="WS" typeId="95d1-95f-45b4-11d6">2+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">6</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">-3</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">2</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">Devastating Wounds</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Devastating Wounds" hidden="false" type="rule" id="78af-df21-fdda-b093" targetId="be1e-ac8e-1e2c-3528"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="9276-a8c8-908a-463d" shared="true" id="f062-b0e3-cac0-f447" includeChildSelections="true" includeChildForces="true"/>
</conditions>
</modifier>
</modifiers>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="85"/>
</costs>
</selectionEntry>
<selectionEntry type="model" import="true" name="Baal Predator" hidden="false" id="640-9969-d5b9-875c">
<categoryLinks>
<categoryLink targetId="aff3-d6a3-2a95-9dc" id="70fc-e940-f904-d4c" primary="false" name="Imperium"/>
<categoryLink targetId="6df-937-16bc-8c1a" id="fecf-7176-e00e-f0a" primary="false" name="Smoke"/>
<categoryLink targetId="dbd4-63-af05-998" id="1739-48e-79f6-6f85" primary="true" name="Vehicle"/>
<categoryLink targetId="6e7-40c-58d9-e402" id="75fe-49f1-f5af-bed6" primary="false" name="Faction: Adeptus Astartes"/>
<categoryLink targetId="6305-2974-3890-6ba0" id="f8b-78a6-2bdc-6c0d" primary="false" name="Baal Predator"/>
<categoryLink targetId="62ac-ef42-27b4-ae7" id="306d-bc56-434a-ae0a" primary="false" name="Faction: Blood Angels"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="125"/>
</costs>
<constraints>
<constraint type="max" value="3" field="selections" scope="roster" shared="true" id="8ebc-45bb-9bb4-1b2b"/>
</constraints>
<infoLinks>
<infoLink name="Oath of Moment" hidden="false" type="rule" id="f51b-2b2b-7a41-9aed" targetId="3b76-4053-ece9-6e7d"/>
<infoLink name="Damaged: 1-4 Wounds Remaining" hidden="false" type="profile" id="9351-f221-b8f7-ad3" targetId="ee64-aaaf-75df-8da9"/>
<infoLink name="Deadly Demise" hidden="false" type="rule" id="7a3-55ae-a742-e844" targetId="b68a-5ded-65ac-98c">
<modifiers>
<modifier type="append" value="D3" field="name"/>
</modifiers>
</infoLink>
</infoLinks>
<profiles>
<profile name="Baal Predator" typeId="c547-1836-d8a-ff4f" typeName="Unit" hidden="false" id="6f69-eb86-620f-80c">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">12"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">10</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">3+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">11</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">6+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">3</characteristic>
</characteristics>
</profile>
<profile name="Overcharged Engines" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="acf-498-6031-bf2f">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">You can re-roll Advance rolls made for this model. Each time this model Advances, until the end of the turn, ranged weapons equipped by this model have the [ASSAULT] ability but they can only target Infantry units.</characteristic>
</characteristics>
</profile>
</profiles>
<entryLinks>
<entryLink import="true" name="Armoured Tracks" hidden="false" type="selectionEntry" id="87c1-e409-328b-e9aa" targetId="d3da-d5f3-70a9-50ed">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="1b20-849f-168c-ca4e"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="2ba-1090-fea6-a20b"/>
</constraints>
</entryLink>
<entryLink import="true" name="Hunter Killer Missile" hidden="false" type="selectionEntry" id="2d8f-d57d-c9a-1746" targetId="2523-36d-531f-9910">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="d7c7-a960-a290-3579"/>
</constraints>
</entryLink>
<entryLink import="true" name="Storm Bolter" hidden="false" type="selectionEntry" id="f270-2255-9e6f-7382" targetId="eb61-5cd0-5242-74cc">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="6820-3445-c698-8640"/>
</constraints>
</entryLink>
</entryLinks>
<selectionEntryGroups>
<selectionEntryGroup name="Turret Weapon" hidden="false" id="d6b1-a463-2afa-bf38">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="15f2-5e78-6c4b-892d"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="49c1-12d9-5db5-9740"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Twin Assault Cannon" hidden="false" type="selectionEntry" id="8435-5564-b9b5-ed86" targetId="4641-242b-9584-c54a"/>
</entryLinks>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Baal Flamestorm Cannon" hidden="false" id="253b-b157-a181-71bd">
<profiles>
<profile name="Baal Flamestorm Cannon" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" hidden="false" id="f5ac-b675-9bd2-ac92">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">18"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">D6+3</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">N/A</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">6</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">-2</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">2</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Ignores Cover, Torrent</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Ignores Cover" hidden="false" type="rule" id="b747-3302-29f7-d550" targetId="4640-43e7-30b-215a"/>
<infoLink name="Torrent" hidden="false" type="rule" id="a6a9-1e19-bc04-f294" targetId="5edf-d619-23e0-9b56"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
<selectionEntryGroup name="Sponson Weapons" hidden="false" id="a538-3b22-104c-6547">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="cd0b-e1a2-1a58-16a7"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Heavy Bolter" hidden="false" type="selectionEntry" id="fe85-ea41-1fb-cc03" targetId="7b46-de5b-2c60-4597">
<modifiers>
<modifier type="set" value="2 Heavy Bolters" field="name"/>
</modifiers>
</entryLink>
<entryLink import="true" name="Heavy Flamer" hidden="false" type="selectionEntry" id="8cd6-267e-3b0f-766b" targetId="b3e6-f7a7-8357-2055">
<modifiers>
<modifier type="set" value="2 Heavy Flamers" field="name"/>
</modifiers>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
</selectionEntry>
<selectionEntry type="model" import="true" name="Brother Corbulo" hidden="false" id="8d87-ee8a-6af4-3715">
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="75"/>
</costs>
<categoryLinks>
<categoryLink targetId="4f3a-f0f7-6647-348d" id="3f91-e12e-3518-b709" primary="true" name="Epic Hero"/>
<categoryLink targetId="9cfd-1c32-585f-7d5c" id="df23-fd8f-9e0b-2148" primary="false" name="Character"/>
<categoryLink targetId="cf47-a0d7-7207-29dc" id="58bc-26e8-dafd-e46d" primary="false" name="Infantry"/>
<categoryLink targetId="5a61-81ac-eb7c-a87e" id="d56e-1423-90ad-4ae3" primary="false" name="Grenades"/>
<categoryLink targetId="aff3-d6a3-2a95-9dc" id="2dec-aa55-d7a2-12ad" primary="false" name="Imperium"/>
<categoryLink targetId="6e7-40c-58d9-e402" id="b7ca-4d28-b200-8f0a" primary="false" name="Faction: Adeptus Astartes"/>
<categoryLink targetId="62ac-ef42-27b4-ae7" id="db71-8400-3ed3-5bfa" primary="false" name="Faction: Blood Angels"/>
<categoryLink targetId="561f-8606-9555-b3ba" id="53f2-c27e-8d11-5294" primary="false" name="Sanguinary Priest"/>
<categoryLink targetId="3ab-66f3-c313-f621" id="8b0a-280e-41b2-ab7b" primary="false" name="Brother Corbulo"/>
</categoryLinks>
<profiles>
<profile name="Brother Corbulo" typeId="c547-1836-d8a-ff4f" typeName="Unit" hidden="false" id="486-937d-72d-f329">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">6"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">4</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">3+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">4</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">6+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">1</characteristic>
</characteristics>
</profile>
<profile name="Sanguinary Priest" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="997a-75ae-da4b-a534">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">While this model is leading a unit, models in that unit have the Feel No Pain 5+ ability.</characteristic>
</characteristics>
</profile>
<profile name="The Red Grail" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="ba5c-785b-b694-3943">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">While this model is leading a unit, add 1 to the Attacks characteristic of melee weapons equipped by models in that unit.</characteristic>
</characteristics>
</profile>
<profile name="Leader" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="1a2a-a768-270-a49b">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">This model can be attached to the following units:
■ Assault Squad
■ Assault Intercessor Squad
■ Sternguard Veteran Squad
■ Devastator Squad
■ Tactical Squad
■ Vanguard Veteran Squad</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="85f0-ec14-4435-8845"/>
</constraints>
<infoLinks>
<infoLink name="Leader" hidden="false" type="rule" id="545c-6a39-c9e6-fc83" targetId="b4dd-3e1f-41cb-218f"/>
<infoLink name="Oath of Moment" hidden="false" type="rule" id="4af0-d164-ba80-441c" targetId="3b76-4053-ece9-6e7d"/>
</infoLinks>
<entryLinks>
<entryLink import="true" name="Bolt Pistol" hidden="false" type="selectionEntry" id="a4c6-1b17-832-c68c" targetId="b273-b85e-4018-a0cd">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="857-6b4b-efa4-ce2d"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="293e-af64-da73-a04"/>
</constraints>
</entryLink>
<entryLink import="true" name="Warlord" hidden="false" type="selectionEntry" id="5a15-9767-c07c-edc5" targetId="caa-f869-3cbd-b48e"/>
</entryLinks>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Heaven's Teeth" hidden="false" id="94a-71ca-6563-21f8">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="d46a-572a-aeac-2447"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="f67e-e411-ca4f-b735"/>
</constraints>
<profiles>
<profile name="Heaven's Teeth" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons" hidden="false" id="ae01-73c6-5ee7-62e4">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">6</characteristic>
<characteristic name="WS" typeId="95d1-95f-45b4-11d6">2+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">5</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">-1</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">1</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">Sustained Hits 1</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Sustained Hits" hidden="false" type="rule" id="43dd-c063-47da-1d96" targetId="1897-c22c-9597-12b1"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="9276-a8c8-908a-463d" shared="true" id="32c0-959b-4d0-60b0" includeChildSelections="true" includeChildForces="true"/>
</conditions>
</modifier>
</modifiers>
</selectionEntry>
<selectionEntry type="model" import="true" name="Captain Tycho" hidden="false" id="ae0a-e23c-2184-7c65">
<categoryLinks>
<categoryLink targetId="4f3a-f0f7-6647-348d" id="44f3-8488-c6b1-f2a2" primary="true" name="Epic Hero"/>
<categoryLink targetId="9cfd-1c32-585f-7d5c" id="29c4-86f3-656a-6b93" primary="false" name="Character"/>
<categoryLink targetId="cf47-a0d7-7207-29dc" id="1036-a081-9cdb-e04b" primary="false" name="Infantry"/>
<categoryLink targetId="2d7f-1892-2fd0-e29c" id="e386-8452-ed6b-1570" primary="false" name="Captain"/>
<categoryLink targetId="5a61-81ac-eb7c-a87e" id="21f0-a0a2-da40-7760" primary="false" name="Grenades"/>
<categoryLink targetId="aff3-d6a3-2a95-9dc" id="456e-e510-29de-8811" primary="false" name="Imperium"/>
<categoryLink targetId="6e7-40c-58d9-e402" id="ad72-1131-2a46-2ae2" primary="false" name="Faction: Adeptus Astartes"/>
<categoryLink targetId="62ac-ef42-27b4-ae7" id="6ab8-fadb-f274-a74d" primary="false" name="Faction: Blood Angels"/>
<categoryLink targetId="8739-4fc4-25e3-5bac" id="ac31-23ae-6380-f4e6" primary="false" name="Tycho"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="75"/>
</costs>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="cbf0-6863-deea-572a"/>
</constraints>
<modifiers>
<modifier type="set" value="0" field="cbf0-6863-deea-572a">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="8577-8a5d-75f6-a630" shared="true" id="74e0-e9b-feeb-da99" includeChildSelections="true" includeChildForces="true"/>
</conditions>
</modifier>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="9276-a8c8-908a-463d" shared="true" id="6285-f5d7-9ad4-363d" includeChildSelections="true" includeChildForces="true"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile name="Captain Tycho" typeId="c547-1836-d8a-ff4f" typeName="Unit" hidden="false" id="75a1-547f-754f-8237">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">6"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">4</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">2+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">4</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">6+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">1</characteristic>
</characteristics>
</profile>
<profile name="Gifted Commander" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="f81-2576-e3dd-1a7">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">While this model is leading a unit, each time that unit is selected to shoot, select one of the following abilities to apply to ranged weapons equipped by models in that unit until the end of the phase:
■ [ASSAULT]
■ [HEAVY]
■ [RAPID FIRE 1]</characteristic>
</characteristics>
</profile>
<profile name="Embittered" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="4941-ff7-a233-6730">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">The first time an attack is allocated to this model, after the attacking unit has finished making its attacks, until the end of the battle, change the Attacks characteristic of this model’s Dead Man’s Hand to 12</characteristic>
</characteristics>
</profile>
<profile name="Leader" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="9a2c-4043-5435-40ea">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">This model can be attached to the following units:
■ Assault Squad
■ Command Squad
■ Assault Intercessor Squad
■ Sternguard Veteran Squad
■ Company Heroes
■ Tactical Squad
■ Vanguard Veteran Squad</characteristic>
</characteristics>
</profile>
<profile name="Tycho" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="a116-17c9-deb4-9f1d">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">Your army cannot contain both Captain Tycho and Tycho the Lost.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Invulnerable Save" hidden="false" type="profile" id="3584-40d2-db5b-c34f" targetId="db19-dee7-9530-ef0e"/>
<infoLink name="Leader" hidden="false" type="rule" id="8b7c-ae2-3db9-bed5" targetId="b4dd-3e1f-41cb-218f"/>
<infoLink name="Oath of Moment" hidden="false" type="rule" id="d97c-d299-8ab6-351e" targetId="3b76-4053-ece9-6e7d"/>
</infoLinks>
<entryLinks>
<entryLink import="true" name="Bolt Pistol" hidden="false" type="selectionEntry" id="d3fa-e15b-c152-567a" targetId="b273-b85e-4018-a0cd">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="857-6b4b-efa4-ce2d"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="293e-af64-da73-a04"/>
</constraints>
</entryLink>
<entryLink import="true" name="Warlord" hidden="false" type="selectionEntry" id="802a-7b54-40b5-2354" targetId="caa-f869-3cbd-b48e"/>
</entryLinks>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Blood Song" hidden="false" id="bf48-f849-7321-dc2c">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="15d1-8c83-52a-74d5"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="8110-38e6-ee51-8571"/>
</constraints>
<profiles>
<profile name="Blood Song" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" hidden="false" id="5e7e-cc35-d119-b999">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">24"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">2</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">2+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">4</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">-1</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">2</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Anti-Infantry 4+, Devastating Wounds, Melta 2</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Anti-" hidden="false" type="rule" id="b160-eac6-4bfc-af3" targetId="4111-82e3-9444-e942"/>
<infoLink name="Devastating Wounds" hidden="false" type="rule" id="c0de-eb2e-2e28-6d5c" targetId="be1e-ac8e-1e2c-3528"/>
<infoLink name="Melta" hidden="false" type="rule" id="cd9e-538-650e-cb6e" targetId="7cdb-fb99-44a9-8849"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Dead Man's Hand" hidden="false" id="4fb-9343-58b7-4ca5">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="c724-62a-f302-7d79"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="60c0-cfee-77ba-e61d"/>
</constraints>
<profiles>
<profile name="Dead Man's Hand" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons" hidden="false" id="d17e-779a-e3ef-fee">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">6</characteristic>
<characteristic name="WS" typeId="95d1-95f-45b4-11d6">2+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">4</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">-1</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">2</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="model" import="true" name="Tycho the Lost" hidden="false" id="8577-8a5d-75f6-a630">
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="96ce-1ad2-d58f-e368"/>
</constraints>
<modifiers>
<modifier type="set" value="0" field="96ce-1ad2-d58f-e368">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="ae0a-e23c-2184-7c65" shared="true" id="63de-ca64-d3a0-4886" includeChildSelections="true" includeChildForces="true"/>
</conditions>
</modifier>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="9276-a8c8-908a-463d" shared="true" id="3833-ee0-9388-6eec" includeChildSelections="true" includeChildForces="true"/>
</conditions>
</modifier>
</modifiers>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="90"/>
</costs>
<infoLinks>
<infoLink name="Invulnerable Save" hidden="false" type="profile" id="1966-207a-a44-16ce" targetId="db19-dee7-9530-ef0e"/>
<infoLink name="Leader" hidden="false" type="rule" id="57c2-782a-6f70-5625" targetId="b4dd-3e1f-41cb-218f"/>
<infoLink name="Oath of Moment" hidden="false" type="rule" id="3fd2-62af-449d-b38f" targetId="3b76-4053-ece9-6e7d"/>
<infoLink name="Black Rage" hidden="false" type="profile" id="14bd-78ae-f114-f933" targetId="3e0a-31f-8be-e293"/>
</infoLinks>
<entryLinks>
<entryLink import="true" name="Bolt Pistol" hidden="false" type="selectionEntry" id="b465-50fa-71a8-12b9" targetId="b273-b85e-4018-a0cd">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="857-6b4b-efa4-ce2d"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="293e-af64-da73-a04"/>
</constraints>
</entryLink>
<entryLink import="true" name="Blood Song" hidden="false" type="selectionEntry" id="fdba-3636-8266-9a20" targetId="bf48-f849-7321-dc2c"/>
<entryLink import="true" name="Dead Man's Hand" hidden="false" type="selectionEntry" id="81f1-eab2-7dde-45d1" targetId="4fb-9343-58b7-4ca5"/>
<entryLink import="true" name="Warlord" hidden="false" type="selectionEntry" id="6fd2-e3e3-ab6e-434" targetId="caa-f869-3cbd-b48e"/>
</entryLinks>
<profiles>
<profile name="Tycho the Lost" typeId="c547-1836-d8a-ff4f" typeName="Unit" hidden="false" id="37e0-9a10-acda-a5bd">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">6"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">4</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">2+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">4</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">6+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">1</characteristic>
</characteristics>
</profile>
<profile name="Forlorn Hero" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="5fd1-7d5a-c19a-64db">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">While this model is leading a unit, that unit is eligible to declare a charge in a turn in which it Advanced</characteristic>
</characteristics>
</profile>
<profile name="Death Visions of Sanguinius" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="6d90-b55-d2b0-6522">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">If this model is destroyed by a melee attack, after the attacking unit has finished making its attacks, you can roll one D6, adding 2 to the result if the attacking unit contains the enemy Warlord: on a 2-3, that enemy unit suffers 3 mortal wounds; on a 4-5, that enemy unit suffers D3+3 mortal wounds; on a 6+, that enemy unit suffers D6+3 mortal wounds.</characteristic>
</characteristics>
</profile>
<profile name="Tycho" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="601e-dad9-348b-4ceb">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">Your army cannot contain both Captain Tycho and Tycho the Lost.</characteristic>
</characteristics>
</profile>
<profile name="Leader" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="a92c-5b74-19ab-ab59">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">This model can be attached to the following unit:
■ Death Company Marines</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink targetId="9cfd-1c32-585f-7d5c" id="b73c-4ad2-b62e-1857" primary="false" name="Character"/>
<categoryLink targetId="4f3a-f0f7-6647-348d" id="b5e7-41de-b3-fb97" primary="true" name="Epic Hero"/>
<categoryLink targetId="cf47-a0d7-7207-29dc" id="f9d6-8203-ece8-64a1" primary="false" name="Infantry"/>
<categoryLink targetId="2d7f-1892-2fd0-e29c" id="c81b-28c5-8dc-5101" primary="false" name="Captain"/>
<categoryLink targetId="aff3-d6a3-2a95-9dc" id="976b-770b-f779-ef5e" primary="false" name="Imperium"/>
<categoryLink targetId="5a61-81ac-eb7c-a87e" id="8bde-c844-4901-46cf" primary="false" name="Grenades"/>
<categoryLink targetId="4254-134e-b56f-a5bd" id="46b4-861-1dac-4e38" primary="false" name="Tycho the Lost"/>
<categoryLink targetId="6e7-40c-58d9-e402" id="3027-f9d4-1b79-275a" primary="false" name="Faction: Adeptus Astartes"/>
<categoryLink targetId="62ac-ef42-27b4-ae7" id="248c-290a-adfd-5577" primary="false" name="Faction: Blood Angels"/>
</categoryLinks>
</selectionEntry>
<selectionEntry type="model" import="true" name="Chief Librarian Mephiston" hidden="false" id="ab35-2c36-9389-d1d5">
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="100"/>
</costs>
<categoryLinks>
<categoryLink targetId="4f3a-f0f7-6647-348d" id="3237-1a66-35d0-d554" primary="true" name="Epic Hero"/>
<categoryLink targetId="9cfd-1c32-585f-7d5c" id="a7ac-3054-3c4f-5316" primary="false" name="Character"/>
<categoryLink targetId="cf47-a0d7-7207-29dc" id="1738-e3f9-79df-a4d8" primary="false" name="Infantry"/>
<categoryLink targetId="5a61-81ac-eb7c-a87e" id="91d0-1af3-4358-569c" primary="false" name="Grenades"/>
<categoryLink targetId="5179-8ede-45e3-49a2" id="3abf-3c69-1687-6a48" primary="false" name="Tacticus"/>
<categoryLink targetId="13bf-2bee-3ae0-b414" id="38cc-768a-1825-5bf" primary="false" name="Psyker"/>
<categoryLink targetId="6e7-40c-58d9-e402" id="440f-cff0-1134-f3d2" primary="false" name="Faction: Adeptus Astartes"/>
<categoryLink targetId="62ac-ef42-27b4-ae7" id="9a7e-5e89-fe1c-afb9" primary="false" name="Faction: Blood Angels"/>
<categoryLink targetId="369e-b2c9-4637-8cba" id="1e2c-42d8-5d7c-2a8c" primary="false" name="Chief Librarian Mephiston"/>
</categoryLinks>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="76f1-154d-581a-b2ae"/>
</constraints>
<infoLinks>
<infoLink name="Leader" hidden="false" type="rule" id="bbd9-ef6d-ff95-fe5f" targetId="b4dd-3e1f-41cb-218f"/>
<infoLink name="Oath of Moment" hidden="false" type="rule" id="c09b-5168-fe10-510" targetId="3b76-4053-ece9-6e7d"/>
<infoLink name="Feel No Pain" hidden="false" type="rule" id="5f6-7507-b7e2-652" targetId="9bf4-280f-bbe2-6fbb">
<modifiers>
<modifier type="append" value="5+" field="name"/>
</modifiers>
</infoLink>
<infoLink name="Psychic Hood" hidden="false" type="profile" id="5b16-b8d5-1cbc-9de6" targetId="116b-b23c-4ea4-30ed"/>
</infoLinks>
<profiles>
<profile name="Chief Librarian Mephiston" typeId="c547-1836-d8a-ff4f" typeName="Unit" hidden="false" id="5bf5-5db9-18d4-55d1">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">7"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">5</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">2+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">6</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">6+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">1</characteristic>
</characteristics>
</profile>
<profile name="The Quickening [Psychic]" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="f775-5667-be0b-35bc">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">While this model is leading a unit, models in that unit have the Fights First ability</characteristic>
</characteristics>
</profile>
<profile name="Transfixing Gaze [Psychic]" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="b48f-aef0-7aa9-3500">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">At the start of the Fight phase, you can select one enemy unit within Engagement Range of this Psyker’s unit and roll one D6: on a 1, this Psyker model suffers D3 mortal wounds; on a 2-5, until the end of the phase, worsen the Weapon Skill characteristic of melee weapons equipped by models in that enemy unit by 1; on a 6, until the end of the phase, worsen the Weapon Skill and Attacks characteristics of those weapons by 1.</characteristic>
</characteristics>
</profile>
<profile name="Leader" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="e90c-8a1b-f2c1-9e7">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">This model can be attached to the following units:
■ Assault Intercessor Squad
■ Intercessor Squad
■ Sternguard Veteran Squad</characteristic>
</characteristics>
</profile>
<profile name="Invulnerable Save 5+" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="b2e5-6730-a3c2-8011">
<characteristics>
<characteristic name="Description" hidden="false" id="cd6e-3f8f-50e8-6d4f" typeId="9b8f-694b-e5e-b573">This model has a 5+ invulnerable save</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Plasma Pistol" hidden="false" id="3dd1-b096-64dd-5861">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="8147-ec13-33d2-4cd9"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="7122-1367-ed66-cd4e"/>
</constraints>
<profiles>
<profile id="791a-41a4-d0da-c9a4" name="➤ Plasma Pistol - Standard" hidden="false" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">12"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">1</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">2+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">7</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">-2</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">1</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Pistol</characteristic>
</characteristics>
</profile>
<profile id="2519-8ac-a043-f87a" name="➤ Plasma Pistol - Supercharge" hidden="false" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">12"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">1</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">2+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">8</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">-2</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">2</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Hazardous, Pistol</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Pistol" hidden="false" type="rule" id="fae5-9323-814-870c" targetId="8bf7-8812-923d-29e4"/>
<infoLink name="Hazardous" hidden="false" type="rule" id="b8b2-74f0-c6e3-c88" targetId="8367-374c-f87-c627"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Fury of the Ancients" hidden="false" id="3e81-bf38-a34e-8750">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="23c9-b338-f308-4f28"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="1239-e17c-525f-ef58"/>
</constraints>
<profiles>
<profile name="➤ Fury of the Ancients - Witchfire" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" hidden="false" id="eb07-22b3-d1eb-7552">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">12"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">3</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">2+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">4</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">-1</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">D3</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Pistol, Psychic, Sustained Hits 1</characteristic>
</characteristics>
</profile>
<profile name="➤ Fury of the Ancients - Focused Witchfire" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" hidden="false" id="9fcd-a0d8-4804-c08a">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">12"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">3</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">2+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">5</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">-2</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">D3</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Hazardous, Pistol, Psychic, Sustained Hits 3</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Hazardous" hidden="false" type="rule" id="db6e-451f-943a-870a" targetId="8367-374c-f87-c627"/>
<infoLink name="Sustained Hits" hidden="false" type="rule" id="dfe-8eda-7f91-d0ac" targetId="1897-c22c-9597-12b1"/>
<infoLink name="Pistol" hidden="false" type="rule" id="4d3f-56a1-d3dd-ee01" targetId="8bf7-8812-923d-29e4"/>
<infoLink name="Psychic" hidden="false" type="rule" id="2b16-bb92-1501-efc" targetId="e9c4-2bb8-12ee-cd1b"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Vitarus" hidden="false" id="6b1d-168e-4014-2289">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="a919-5f4c-ebed-40fe"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="286c-4d19-2daf-6a7d"/>
</constraints>
<profiles>
<profile name="Vitarus" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons" hidden="false" id="3da4-7876-bd83-6904">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">6</characteristic>
<characteristic name="WS" typeId="95d1-95f-45b4-11d6">2+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">9</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">-3</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">D3</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">Psychic</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Psychic" hidden="false" type="rule" id="8857-71d-141b-9b55" targetId="e9c4-2bb8-12ee-cd1b"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="9276-a8c8-908a-463d" shared="true" id="f953-ecb8-9398-b16c" includeChildSelections="true" includeChildForces="true"/>
</conditions>
</modifier>
</modifiers>
<entryLinks>
<entryLink import="true" name="Warlord" hidden="false" type="selectionEntry" id="27f7-9d4c-d894-cc79" targetId="caa-f869-3cbd-b48e"/>
</entryLinks>
</selectionEntry>
<selectionEntry type="model" import="true" name="Commander Dante" hidden="false" id="7323-ebf-9afe-7e7a">
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="573f-bbc-4c57-25ce"/>
</constraints>
<categoryLinks>
<categoryLink targetId="4f3a-f0f7-6647-348d" id="923b-c5fc-cd3b-c5bc" primary="true" name="Epic Hero"/>
<categoryLink targetId="9cfd-1c32-585f-7d5c" id="f571-17c8-73c0-142d" primary="false" name="Character"/>
<categoryLink targetId="cf47-a0d7-7207-29dc" id="3ee5-fd0-d03f-2875" primary="false" name="Infantry"/>
<categoryLink targetId="5a61-81ac-eb7c-a87e" id="f4b8-1ad6-1316-e4a2" primary="false" name="Grenades"/>
<categoryLink targetId="aff3-d6a3-2a95-9dc" id="3efa-34dd-be75-3a12" primary="false" name="Imperium"/>
<categoryLink targetId="c619-2086-bbcf-69c9" id="601f-3afb-73dc-d183" primary="false" name="Fly"/>
<categoryLink targetId="6e7-40c-58d9-e402" id="42ad-a8f4-fc9-f298" primary="false" name="Faction: Adeptus Astartes"/>
<categoryLink targetId="62ac-ef42-27b4-ae7" id="c8f8-358b-2c0d-e74c" primary="false" name="Faction: Blood Angels"/>
<categoryLink targetId="dda2-bb0a-215e-ad9c" id="537b-2f08-b6e9-53e" primary="false" name="Jump Pack"/>
<categoryLink targetId="5179-8ede-45e3-49a2" id="27e3-c191-7a97-b3ca" primary="false" name="Tacticus"/>
<categoryLink targetId="5bd8-882d-302b-48f3" id="cc1a-ed37-aa1b-1d08" primary="false" name="Chapter Master"/>
<categoryLink targetId="742d-f2f8-2cec-67b3" id="dc1e-edb6-29a-c9ce" primary="false" name="Commander Dante"/>
</categoryLinks>
<profiles>
<profile name="Commander Dante" typeId="c547-1836-d8a-ff4f" typeName="Unit" hidden="false" id="b450-c96f-6de3-ce60">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">12"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">4</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">2+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">6</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">6+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">1</characteristic>
</characteristics>
</profile>
<profile name="Death Mask of Sanguinius" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="edcb-c05a-9bcb-12c7">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">At the start of the Fight phase, each enemy unit within 6" of this model must take a Battle-shock test, subtracting 1 from that test when they do</characteristic>
</characteristics>
</profile>
<profile name="Lord Regent of the Imperium Nihilus" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="56e5-d5ec-38c6-e113">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">While this model is leading a unit, add 1 to Charge rolls made for that unit and each time a model in that unit makes an attack, add 1 to the Hit roll.</characteristic>
</characteristics>
</profile>
<profile name="Leader" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="b139-df4f-7162-cce8">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">This model can be attached to the following units:
■ Assault Squad with Jump Packs
■ Sanguinary Guard
■ Vanguard Veteran Squad with Jump Packs
■ Assault Intercessors with Jump Packs</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Leader" hidden="false" type="rule" id="c160-102b-4a96-6800" targetId="b4dd-3e1f-41cb-218f"/>
<infoLink name="Deep Strike" hidden="false" type="rule" id="9f0a-5bd0-d9ad-c5dd" targetId="7cb5-dd6b-dd87-ad3b"/>
<infoLink name="Oath of Moment" hidden="false" type="rule" id="9b64-f32e-a05d-fa35" targetId="3b76-4053-ece9-6e7d"/>
<infoLink name="Invulnerable Save" hidden="false" type="profile" id="36e7-4ae0-3619-8e6" targetId="db19-dee7-9530-ef0e"/>
</infoLinks>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Perdition" hidden="false" id="bb14-e5bb-e2b3-8e8f">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="72a7-eeb5-8dd7-9a77"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="cd2-dec5-5937-dfdc"/>
</constraints>
<profiles>
<profile name="Perdition" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" hidden="false" id="8a9c-58f8-e882-c7d">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">6"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">1</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">2+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">8</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">-4</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">D6</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Melta 2, Pistol, Sustained Hits D3</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Melta" hidden="false" type="rule" id="14c7-d026-3f33-df36" targetId="7cdb-fb99-44a9-8849"/>
<infoLink name="Pistol" hidden="false" type="rule" id="ae5e-e22-b492-b463" targetId="8bf7-8812-923d-29e4"/>
<infoLink name="Sustained Hits" hidden="false" type="rule" id="4a1d-1068-3f3c-f477" targetId="1897-c22c-9597-12b1"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="The Axe Mortalis" hidden="false" id="5520-c4aa-4543-7961">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="1227-ec-7043-ed3f"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="f2c5-8ae-8c30-82fd"/>
</constraints>
<profiles>
<profile name="The Axe Mortalis" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons" hidden="false" id="49e5-830e-9a2d-1b9a">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">8</characteristic>
<characteristic name="WS" typeId="95d1-95f-45b4-11d6">2+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">7</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">-3</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">2</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">Lethal Hits</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Lethal Hits" hidden="false" type="rule" id="db7a-70c3-253d-e267" targetId="d1d1-611e-5191-1095"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="120"/>
</costs>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="roster" childId="9276-a8c8-908a-463d" shared="true" id="1660-1af7-6773-9f58" includeChildSelections="true" includeChildForces="true"/>
</conditions>
</modifier>
</modifiers>
<entryLinks>
<entryLink import="true" name="Warlord" hidden="false" type="selectionEntry" id="75b-952d-efa4-257c" targetId="caa-f869-3cbd-b48e"/>
</entryLinks>
</selectionEntry>
<selectionEntry type="model" import="true" name="Death Company Dreadnought" hidden="false" id="e7ee-e70-bd87-7c5c">
<categoryLinks>
<categoryLink targetId="dbd4-63-af05-998" id="c656-6c6e-1ac7-c903" primary="true" name="Vehicle"/>
<categoryLink targetId="6dda-e157-334d-e93a" id="6fc0-b806-da33-6400" primary="false" name="Walker"/>
<categoryLink targetId="aff3-d6a3-2a95-9dc" id="6160-12a0-d509-88a3" primary="false" name="Imperium"/>
<categoryLink targetId="6df-937-16bc-8c1a" id="784a-e63f-a583-8bce" primary="false" name="Smoke"/>
<categoryLink targetId="d7bd-dd9-4492-cf9a" id="d98d-a76-3f1-13c8" primary="false" name="Death Company Dreadnought"/>
<categoryLink targetId="6e7-40c-58d9-e402" id="d7c7-126d-3040-f37a" primary="false" name="Faction: Adeptus Astartes"/>
<categoryLink targetId="62ac-ef42-27b4-ae7" id="9cf3-9ed1-de9e-313c" primary="false" name="Faction: Blood Angels"/>
<categoryLink targetId="a820-cf8-f29d-7b06" id="49f-30c0-d855-3177" primary="false" name="Dreadnought"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="145"/>
</costs>
<profiles>
<profile name="Death Company Dreadnought" typeId="c547-1836-d8a-ff4f" typeName="Unit" hidden="false" id="7c92-2127-893c-25b0">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">8"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">9</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">2+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">8</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">6+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">3</characteristic>
</characteristics>
</profile>
<profile name="Frenzied Reprisal" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="2933-487d-d513-21d9">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">Each time an enemy unit targets this model, after that unit has finished making its attacks, this model can either shoot as if it were your Shooting phase or fight as if it were the Fight phase.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="3" field="selections" scope="roster" shared="true" id="136b-450c-66b0-8e79"/>
</constraints>
<infoLinks>
<infoLink name="Black Rage" hidden="false" type="profile" id="acba-458-7f70-b92c" targetId="3e0a-31f-8be-e293"/>
<infoLink name="Feel No Pain" hidden="false" type="rule" id="9e27-2f91-455e-4f15" targetId="9bf4-280f-bbe2-6fbb">
<modifiers>
<modifier type="append" value="6+" field="name"/>
</modifiers>
</infoLink>
<infoLink name="Deadly Demise" hidden="false" type="rule" id="32ff-1432-6b00-15f1" targetId="b68a-5ded-65ac-98c">
<modifiers>
<modifier type="append" value="1" field="name"/>
</modifiers>
</infoLink>
<infoLink name="Oath of Moment" hidden="false" type="rule" id="308a-641c-1be5-774b" targetId="3b76-4053-ece9-6e7d"/>
</infoLinks>
<modifiers>
<modifier type="remove" value="6df-937-16bc-8c1a" field="category">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="parent" childId="e10f-d69c-d7f4-2da2" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
<selectionEntryGroups>
<selectionEntryGroup name="Weapon Option 1" hidden="false" id="35bb-90d7-6a16-fee4">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="9ab8-80b-ba7c-814c"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="3476-6e43-b85-8efb"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Heavy Flamer" hidden="false" type="selectionEntry" id="15cd-5d24-af6-fdbe" targetId="b3e6-f7a7-8357-2055"/>
</entryLinks>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Storm Bolter" hidden="false" id="de07-4256-a577-5ff6">
<profiles>
<profile name="Storm Bolter" hidden="false" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" id="6fdc-66a8-8eda-16b6">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">24"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">2</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">3+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">4</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">0</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">1</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Rapid Fire 2</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Rapid Fire" hidden="false" type="rule" id="5cde-1867-1e9c-be72" targetId="c5c8-8b58-b8b6-7786"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
<selectionEntryGroup name="Weapon Option 2" hidden="false" id="72eb-3928-12be-62a3">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="896b-2f02-5cde-d88b"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="334b-76f1-21bd-6ca7"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Meltagun" hidden="false" type="selectionEntry" id="2a75-2b92-1185-d20b" targetId="958-24c7-8843-459f"/>
<entryLink import="true" name="Heavy Flamer" hidden="false" type="selectionEntry" id="5ce5-4183-b5ea-b056" targetId="b3e6-f7a7-8357-2055"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup name="Melee Weapon" hidden="false" id="52f3-82d5-c00a-1471" defaultSelectionEntryId="eaab-c081-1b83-d006">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="11ea-d1d4-2ebe-e474"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="f4ef-a401-294f-a37b"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Blood Talons" hidden="false" type="selectionEntry" id="a911-6335-9592-e597" targetId="2fdd-d483-e57c-c85c"/>
<entryLink import="true" name="Twin Furioso Fists" hidden="false" type="selectionEntry" id="f802-ccaf-2016-12d6" targetId="5ff3-dd75-ccbd-a39f"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink import="true" name="Magna-grapple" hidden="false" type="selectionEntry" id="9eec-2a60-84aa-b51b" targetId="e10f-d69c-d7f4-2da2">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="1fd0-1ff3-f841-260a"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Death Company Intercessors" hidden="false" id="bb83-db85-6ce1-9a61">
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="75"/>
</costs>
<categoryLinks>
<categoryLink targetId="cf47-a0d7-7207-29dc" id="4968-96d3-f33-589" primary="true" name="Infantry"/>
<categoryLink targetId="5a61-81ac-eb7c-a87e" id="3a9-2af9-d3f2-8868" primary="false" name="Grenades"/>
<categoryLink targetId="aff3-d6a3-2a95-9dc" id="3d0a-2353-809d-93e5" primary="false" name="Imperium"/>
<categoryLink targetId="5179-8ede-45e3-49a2" id="91f0-6ae-9457-c441" primary="false" name="Tacticus"/>
<categoryLink targetId="6e7-40c-58d9-e402" id="69bb-d09e-270b-cda0" primary="false" name="Faction: Adeptus Astartes"/>
<categoryLink targetId="62ac-ef42-27b4-ae7" id="a630-5977-cfa4-7261" primary="false" name="Faction: Blood Angels"/>
<categoryLink targetId="18d-e753-9859-b059" id="fdbc-4a76-736f-6574" primary="false" name="Death Company Intercessors"/>
</categoryLinks>
<profiles>
<profile name="Death Company Intercessors" typeId="c547-1836-d8a-ff4f" typeName="Unit" hidden="false" id="2e80-824c-1726-95bb">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">6"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">4</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">3+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">2</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">6+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">1</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Feel No Pain" hidden="false" type="rule" id="e936-8768-a2b9-7859" targetId="9bf4-280f-bbe2-6fbb">
<modifiers>
<modifier type="append" value="6+" field="name"/>
</modifiers>
</infoLink>
<infoLink name="Oath of Moment" hidden="false" type="rule" id="ea03-d8f6-3c8b-8580" targetId="3b76-4053-ece9-6e7d"/>
<infoLink name="Black Rage" hidden="false" type="profile" id="a27e-60e7-d711-33b0" targetId="3e0a-31f-8be-e293"/>
<infoLink name="Visions of Heresy" hidden="false" type="profile" id="c8a9-d894-da08-cea4" targetId="6b69-8f10-6d74-706c"/>
</infoLinks>
<selectionEntryGroups>
<selectionEntryGroup name="Death Company Intercessors" hidden="false" id="4519-b054-bbd5-2a26" defaultSelectionEntryId="8d8d-9a24-5d23-8283">
<selectionEntries>
<selectionEntry type="model" import="true" name="Death Company Intercessor" hidden="false" id="8d8d-9a24-5d23-8283">
<selectionEntryGroups>
<selectionEntryGroup name="Weapon Option" hidden="false" id="b780-ab8-35fc-3caf" defaultSelectionEntryId="b160-79d-7e6f-402c">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Bolt Rifle, Bolt Pistol & Close Combat Weapon" hidden="false" id="b160-79d-7e6f-402c" collective="true">
<entryLinks>
<entryLink import="true" name="Bolt Pistol" hidden="false" type="selectionEntry" id="2f33-5ea9-aa8f-4304" targetId="18b0-8c2-173f-5">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="ac9b-f9f1-887f-3238"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="b38d-1560-a315-dd2e"/>
</constraints>
</entryLink>
<entryLink import="true" name="Close Combat Weapon" hidden="false" type="selectionEntry" id="940e-d105-2045-47b9" targetId="6c7d-af5b-482-6fbe">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="35b0-f945-cd5a-93e9"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="a83f-518b-9929-4b85"/>
</constraints>
</entryLink>
<entryLink import="true" name="Bolt Rifle" hidden="false" type="selectionEntry" id="19ee-2190-975d-f8fa" targetId="6155-c404-a228-cb72">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="2695-764f-f590-d7"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="a0cd-ddb9-d317-fad1"/>
</constraints>
</entryLink>
</entryLinks>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="49f8-5d1c-2134-12ad"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Astartes Chainsword & Heavy Bolt Pistol" hidden="false" id="c71f-5f1d-137f-e212" collective="true">
<entryLinks>
<entryLink import="true" name="Heavy Bolt Pistol" hidden="false" type="selectionEntry" id="774-70d6-7555-eb3b" targetId="83a1-feb8-d495-aa28">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="fa7e-82a1-a32f-16a4"/>