generated from BSData/TemplateDataRepo
-
Notifications
You must be signed in to change notification settings - Fork 94
/
Imperium - Dark Angels.cat
4302 lines (4301 loc) · 323 KB
/
Imperium - Dark 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="470a-6daa-9014-12df" name="Imperium - Adeptus Astartes - Dark Angels" gameSystemId="sys-352e-adc2-7639-d6a9" gameSystemRevision="1" revision="28" battleScribeVersion="2.03" authorName="Simon Porter" type="catalogue">
<catalogueLinks>
<catalogueLink type="catalogue" name="Imperium - Space Marines" id="a650-8be4-a99-ea41" targetId="e0af-67df-9d63-8fb7" importRootEntries="true"/>
<catalogueLink type="catalogue" name="Imperium - Imperial Knights - Library" id="f6c0-6a84-98dc-c47b" targetId="1b6d-dc06-5db9-c7d1" importRootEntries="true"/>
<catalogueLink type="catalogue" name="Imperium - Agents of the Imperium" id="f161-7bb8-b521-bc26" targetId="b00-cd86-4b4c-97ba" importRootEntries="true"/>
</catalogueLinks>
<publications>
<publication name="Index - Dark Angels" hidden="false" id="3931-1b04-c00e-afad" publisher="Index - Dark Angels" publicationDate="12-06-2023" publisherUrl="https://www.warhammer-community.com/wp-content/uploads/2023/06/C6o7G0zjRSxCUvhK.pdf" shortName="Index - Dark Angels"/>
</publications>
<categoryEntries>
<categoryEntry name="Azrael" hidden="false" id="b567-3588-1d37-26e9"/>
<categoryEntry name="Belial" hidden="false" id="bd38-6889-130a-b51e" page="9"/>
<categoryEntry name="Sammael" hidden="false" id="abb9-c850-5b55-6809"/>
<categoryEntry name="Ezekiel" hidden="false" id="2afc-d6d3-e731-8a83" page="13"/>
<categoryEntry name="Asmodai" hidden="false" id="2690-2ccf-683d-74e3" page="15"/>
<categoryEntry name="Lion El'Jonson" hidden="false" id="42a0-db93-ff81-d939" page="41"/>
<categoryEntry name="Lazarus" hidden="false" id="286f-ba94-2fa3-2606"/>
<categoryEntry name="Nephilim Jetfighter" hidden="false" id="2595-2fac-49c4-64ea" page="39"/>
<categoryEntry name="Dark Talon" hidden="false" id="7f34-c3ed-cc4b-a273"/>
<categoryEntry name="Land Speeder Vengeance" hidden="false" id="e74d-4be2-7d3e-d993"/>
<categoryEntry name="Darkshroud" hidden="false" id="294a-2f23-e0ce-386c"/>
<categoryEntry name="Ravenwing Black Knights" hidden="false" id="1d42-6a24-1842-b424"/>
<categoryEntry name="Ravenwing Command Squad" hidden="false" id="ee13-ff16-80a1-5e3e"/>
<categoryEntry name="Deathwing Knights" hidden="false" id="8c-33f-ebc7-f623"/>
<categoryEntry name="Deathwing Terminator Squad" hidden="false" id="5bd9-7a8f-e83e-2021"/>
<categoryEntry name="Inner Circle Companions" hidden="false" id="3d65-6753-15a5-47ba"/>
<categoryEntry name="Ravenwing Talonmaster" hidden="false" id="4b4e-689a-d721-df70"/>
<categoryEntry name="Deathwing Strikemaster" hidden="false" id="1869-8b16-3b2a-713e"/>
<categoryEntry name="Deathwing Command Squad" hidden="false" id="c45c-a930-eb7c-f67f"/>
</categoryEntries>
<sharedSelectionEntries>
<selectionEntry type="model" import="true" name="Azrael" hidden="false" id="81bd-ce4e-229f-a88" page="7">
<categoryLinks>
<categoryLink targetId="9cfd-1c32-585f-7d5c" id="4b67-e56b-3d8d-a74d" primary="false" name="Character"/>
<categoryLink targetId="4f3a-f0f7-6647-348d" id="83f-6cf0-d670-86ee" primary="true" name="Epic Hero"/>
<categoryLink targetId="cf47-a0d7-7207-29dc" id="a819-1b5c-55cd-9b1f" primary="false" name="Infantry"/>
<categoryLink targetId="5a61-81ac-eb7c-a87e" id="4949-7dbf-dcdb-8a75" primary="false" name="Grenades"/>
<categoryLink targetId="aff3-d6a3-2a95-9dc" id="dbb0-4602-35bb-58d6" primary="false" name="Imperium"/>
<categoryLink targetId="5179-8ede-45e3-49a2" id="d49d-ada2-d674-e99f" primary="false" name="Tacticus"/>
<categoryLink targetId="b567-3588-1d37-26e9" id="be32-224d-ca92-e0e2" primary="false" name="Azrael"/>
<categoryLink targetId="aab1-4f05-fabe-5ba5" id="2488-592b-ae38-60d5" primary="false" name="Faction: Dark Angels"/>
<categoryLink targetId="6e7-40c-58d9-e402" id="ac7e-5d14-2aa3-8989" primary="false" name="Faction: Adeptus Astartes"/>
<categoryLink targetId="5bd8-882d-302b-48f3" id="c70a-eb6d-3262-6788" primary="false" name="Chapter Master"/>
<categoryLink targetId="e21f-8e64-c5d-7df0" id="f70b-bd8e-2dd4-4762" primary="false" name="Deathwing"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Lion's Wrath" hidden="false" id="b4a7-5f8-b8d1-f3d7" page="7">
<profiles>
<profile name="Lion's Wrath" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" hidden="false" id="5ed7-47f8-c-d88c" page="7">
<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">8</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">-3</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">2</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Anti-Infantry 4+, Devastating Wounds, Rapid Fire 1</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="ff08-d7cd-b3f8-9597"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="cb79-c25a-6f76-28b7"/>
</constraints>
<infoLinks>
<infoLink name="Anti-" hidden="false" type="rule" id="46fe-2984-efd0-1509" targetId="4111-82e3-9444-e942"/>
<infoLink name="Devastating Wounds" hidden="false" type="rule" id="993f-af58-208a-ecdd" targetId="be1e-ac8e-1e2c-3528"/>
<infoLink name="Rapid Fire" hidden="false" type="rule" id="413d-816f-5d4b-e6bc" targetId="c5c8-8b58-b8b6-7786"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="The Sword of Secrets" hidden="false" id="5846-a08b-2bb7-ec5a" page="7">
<profiles>
<profile name="The Sword of Secrets" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons" hidden="false" id="60b6-cc33-a89e-8430" page="7">
<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">6</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">-4</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>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="9913-6d96-fb7-957b"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="869c-c5d3-7624-db22"/>
</constraints>
<infoLinks>
<infoLink name="Devastating Wounds" hidden="false" type="rule" id="157e-c6cd-1695-260e" targetId="be1e-ac8e-1e2c-3528"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
<profiles>
<profile name="Azrael" typeId="c547-1836-d8a-ff4f" typeName="Unit" hidden="false" id="dd33-8a4-6ff0-9572" page="7">
<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">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="Supreme Grand Master" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="419d-1edd-9c5d-dff7" page="7">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">While this model is leading a unit, weapons equipped by models in that unit have the [SUSTAINED HITS 1] ability.</characteristic>
</characteristics>
</profile>
<profile name="Masterful Tactician" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="5cab-d147-af7c-b68c" page="7">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">At the start of your Command phase, if this model is on the battlefield, you gain 1CP.</characteristic>
</characteristics>
</profile>
<profile name="The Lion Helm" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="3bab-46d5-38a4-e70f" page="7">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">Models in the bearer’s unit have a 4+ invulnerable save. In addition, once per battle, in any phase, the bearer can summon a Watcher in the Dark. When it does, until the end of the phase, models in the bearer’s unit have the Feel No Pain 4+ ability against mortal wounds.</characteristic>
</characteristics>
</profile>
<profile id="a1d2-31fe-75da-858c" name="Invulnerable save" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" page="7">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">4+</characteristic>
</characteristics>
</profile>
<profile name="Leader" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="c42f-33c4-62d9-93d9" page="9">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">This model can be attached to the following units:
■ Assault Intercessor Squad
■ Bladeguard Veteran Squad
■ Hellblaster Squad
■ Infernus Squad
■ Inner Circle Companions
■ Intercessor Squad
■ Sternguard Veteran Squad
■ Tactical Squad</characteristic>
</characteristics>
</profile>
</profiles>
<entryLinks>
<entryLink import="true" name="Warlord" hidden="false" type="selectionEntry" id="f9b4-af73-c499-66ce" targetId="caa-f869-3cbd-b48e"/>
</entryLinks>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="ff16-654c-9f5f-d392"/>
</constraints>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="115"/>
<cost name="Crusade Points" typeId="b03b-c239-15a5-da55" value="0"/>
<cost name="Crusade: Battle Honours" typeId="75bb-ded1-c86d-bdf0" value="0"/>
<cost name="Crusade: Experience" typeId="a623-fe74-1d33-cddf" value="0"/>
<cost name="Crusade: Weapon Modifications" typeId="716d-91b7-d55a-1022" value="0"/>
</costs>
<infoLinks>
<infoLink name="Oath of Moment" hidden="false" type="rule" id="f0dd-1efc-d3f-f5f0" targetId="3b76-4053-ece9-6e7d"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="model" import="true" name="Belial" hidden="false" id="bf62-244b-f9db-6cf" page="9">
<profiles>
<profile name="Belial" typeId="c547-1836-d8a-ff4f" typeName="Unit" hidden="false" id="7464-e8ef-58f4-8421" page="9">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">5"</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="Grand Master of the Deathwing" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="5c8e-e7f9-5ded-2a58" page="9">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">While this model is leading a unit, each time a model in that unit makes an attack, if a Critical Hit is scored, that attack has the [PRECISION] ability.</characteristic>
</characteristics>
</profile>
<profile name="Strikes of Retribution" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="1f47-7e55-2cae-535c" page="9">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">Each time a melee attack is allocated to this model, after the attacking model’s unit has finished making its attacks, roll one D6 (to a maximum of six D6 per attacking unit): for each 4+, the attacking unit suffers 1 mortal wound.</characteristic>
</characteristics>
</profile>
<profile name="Invulnerable Save" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="ec73-66f5-f92a-addf">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">4+</characteristic>
</characteristics>
</profile>
<profile name="Leader" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="ea5f-a72d-372f-69f" page="9">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">This unit can be attached to the following units:
■ Deathwing Knights
■ Deathwing Terminator Squad
■ Terminator Assault Squad
■ Terminator Squad</characteristic>
</characteristics>
</profile>
</profiles>
<entryLinks>
<entryLink import="true" name="Warlord" hidden="false" type="selectionEntry" id="f866-3d70-3616-663a" targetId="caa-f869-3cbd-b48e" page="9"/>
</entryLinks>
<categoryLinks>
<categoryLink targetId="9cfd-1c32-585f-7d5c" id="baad-400b-f8dc-88c1" primary="false" name="Character"/>
<categoryLink targetId="4f3a-f0f7-6647-348d" id="3a4b-58aa-23d6-927c" primary="true" name="Epic Hero"/>
<categoryLink targetId="cf47-a0d7-7207-29dc" id="4081-23b9-52e5-8b0e" primary="false" name="Infantry"/>
<categoryLink targetId="2d7f-1892-2fd0-e29c" id="3ee6-ccb2-f065-a220" primary="false" name="Captain"/>
<categoryLink targetId="aab1-4f05-fabe-5ba5" id="759b-32db-57fa-145a" primary="false" name="Faction: Dark Angels"/>
<categoryLink targetId="6e7-40c-58d9-e402" id="d2a7-ceb7-4015-62bf" primary="false" name="Faction: Adeptus Astartes"/>
<categoryLink targetId="aff3-d6a3-2a95-9dc" id="febe-6315-a80e-6f70" primary="false" name="Imperium"/>
<categoryLink targetId="bd38-6889-130a-b51e" id="2c7d-fad7-7742-de4b" primary="false" name="Belial"/>
<categoryLink targetId="740a-892c-8958-defa" id="86eb-b083-225b-200e" primary="false" name="Terminator"/>
<categoryLink targetId="e21f-8e64-c5d-7df0" id="377a-c9e9-a0ca-4486" primary="false" name="Deathwing"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Master-crafted storm bolter" hidden="false" id="4333-4e21-ec79-e05d">
<profiles>
<profile name="Master-crafted storm bolter" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" hidden="false" id="31d4-9fb6-a699-1174" page="9">
<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">0</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">2</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Precision, Rapid Fire 2</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="c22b-d25d-8d5e-31ec"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="fe60-614-6553-285d"/>
</constraints>
<infoLinks>
<infoLink name="Precision" hidden="false" type="rule" id="8ff5-c8d5-bdaf-c3ad" targetId="9143-31ae-e0a6-6007"/>
<infoLink name="Rapid Fire" hidden="false" type="rule" id="6a9-5dc0-301f-1a25" targetId="c5c8-8b58-b8b6-7786"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="The Sword of Silence" hidden="false" id="1914-5431-ff58-3bc0">
<profiles>
<profile name="The Sword of Silence" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons" hidden="false" id="32a8-dd80-651-3378" page="9">
<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">6</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">-2</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">2</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">Precision</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="bd23-2571-9861-fb5"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="89a1-e9ca-aed-d50e"/>
</constraints>
<infoLinks>
<infoLink name="Precision" hidden="false" type="rule" id="5bc8-e17c-c65e-43d" targetId="9143-31ae-e0a6-6007"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="ff16-654c-9f5f-d392"/>
</constraints>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="85"/>
</costs>
<infoLinks>
<infoLink name="Oath of Moment" hidden="false" type="rule" id="5281-f2e5-43cd-c2a4" targetId="3b76-4053-ece9-6e7d"/>
<infoLink name="Deep Strike" hidden="false" type="rule" id="57eb-5450-2d6e-9db7" targetId="7cb5-dd6b-dd87-ad3b"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="model" import="true" name="Sammael" hidden="false" id="8f4b-c343-bef5-6779" page="11">
<categoryLinks>
<categoryLink targetId="9cfd-1c32-585f-7d5c" id="a3d2-ba3f-3998-419c" primary="false" name="Character"/>
<categoryLink targetId="4f3a-f0f7-6647-348d" id="5e5-23c7-a844-11ad" primary="true" name="Epic Hero"/>
<categoryLink targetId="14a0-40c9-2748-ae6e" id="fa3d-946a-c929-b0f9" primary="false" name="Mounted"/>
<categoryLink targetId="2d7f-1892-2fd0-e29c" id="5163-608b-26be-b29f" primary="false" name="Captain"/>
<categoryLink targetId="aff3-d6a3-2a95-9dc" id="3531-223f-bbe4-a68b" primary="false" name="Imperium"/>
<categoryLink targetId="c619-2086-bbcf-69c9" id="20b1-44df-eb2d-f818" primary="false" name="Fly"/>
<categoryLink targetId="5a61-81ac-eb7c-a87e" id="f0c3-683-bbf9-e3c7" primary="false" name="Grenades"/>
<categoryLink targetId="abb9-c850-5b55-6809" id="a08-565b-d30d-d9" primary="false" name="Sammael"/>
<categoryLink targetId="aab1-4f05-fabe-5ba5" id="d4d4-ced7-3580-fc6a" primary="false" name="Faction: Dark Angels"/>
<categoryLink targetId="6e7-40c-58d9-e402" id="acc8-18c-1851-f39c" primary="false" name="Faction: Adeptus Astartes"/>
<categoryLink targetId="e9c7-1590-1bda-bf7f" id="392d-19aa-5a6f-8fb7" primary="false" name="Ravenwing"/>
</categoryLinks>
<profiles>
<profile name="Sammael" typeId="c547-1836-d8a-ff4f" typeName="Unit" hidden="false" id="267d-3d21-56c5-9738" page="11">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">12"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">5</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">3+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">7</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">6+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">2</characteristic>
</characteristics>
</profile>
<profile name="Leader" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="cb53-58b7-a95a-b21c" page="11">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">This model can be attached to the following units:
■ Outrider Squad
■ Ravenwing Black Knights</characteristic>
</characteristics>
</profile>
<profile name="Invulnerable Save" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="9d2d-43a7-1561-e57">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">4+</characteristic>
</characteristics>
</profile>
<profile name="Grand Master of the Ravenwing" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="8858-35c5-7be5-9f0a" page="11">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">While this model is leading a unit, that unit is eligible to shoot and declare a charge in a turn in which it Advanced.</characteristic>
</characteristics>
</profile>
<profile name="Cut Off Their Escape" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="226-2678-90ed-5d5" page="11">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">Each time an enemy unit (excluding Monsters and Vehicles) within Engagement Range of this model’s unit is selected to Fall Back, models in that enemy unit must take Desperate Escape tests as if their unit was Battle-shocked. When doing so, if that enemy unit is also Battle-shocked by other means, subtract 1 from each of those Desperate Escape tests.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Bolt Pistol" hidden="false" id="31a7-cee5-c20b-1965" page="11">
<profiles>
<profile name="Bolt Pistol" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" hidden="false" id="c2f0-8273-a3f0-43eb">
<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">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">Pistol</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="9a98-428a-a2be-f5be"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="4230-19f6-d4e4-b49"/>
</constraints>
<infoLinks>
<infoLink name="Pistol" hidden="false" type="rule" id="8dca-4620-404f-8732" targetId="8bf7-8812-923d-29e4"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Master-crafted plasma cannon" hidden="false" id="bfbe-ac79-2a43-5d81" page="11">
<profiles>
<profile name="Master-crafted plasma cannon" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" hidden="false" id="ffde-95ee-4df6-6dea">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">36"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">D3</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">-3</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">2</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Blast</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="9379-4aca-ac93-5d79"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="d258-d6da-ae7a-36e5"/>
</constraints>
<infoLinks>
<infoLink name="Blast" hidden="false" type="rule" id="fa5c-751-4652-cad7" targetId="6c1f-1cf7-ff25-c99e"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Twin storm bolter" hidden="false" id="96b6-fc33-d163-4e2c" page="11">
<profiles>
<profile name="Twin storm bolter" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" hidden="false" id="45dc-cbf3-fcfa-8039">
<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">0</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">1</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Rapid Fire 2, Twin-Linked</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="9d95-8b45-d5ce-97c4"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="9627-8248-8097-a006"/>
</constraints>
<infoLinks>
<infoLink name="Rapid Fire" hidden="false" type="rule" id="5282-6284-e07b-272b" targetId="c5c8-8b58-b8b6-7786"/>
<infoLink name="Twin-linked" hidden="false" type="rule" id="2992-19ef-95b0-edd2" targetId="cf93-ad4d-2f08-a79d"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="The Raven Sword" hidden="false" id="af43-f417-3d3-66a6" page="11">
<profiles>
<profile name="The Raven Sword" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons" hidden="false" id="60ca-a584-144d-3077">
<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">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">Sustained Hits 2</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="1738-ac-4b49-458"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="c02a-a49c-64be-2e21"/>
</constraints>
<infoLinks>
<infoLink name="Sustained Hits" hidden="false" type="rule" id="6754-c6d2-564e-ce3d" targetId="1897-c22c-9597-12b1"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="ff16-654c-9f5f-d392"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Warlord" hidden="false" type="selectionEntry" id="813e-fd83-ecf8-21aa" targetId="caa-f869-3cbd-b48e"/>
</entryLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="115"/>
<cost name="Crusade Points" typeId="b03b-c239-15a5-da55" value="0"/>
<cost name="Crusade: Battle Honours" typeId="75bb-ded1-c86d-bdf0" value="0"/>
<cost name="Crusade: Experience" typeId="a623-fe74-1d33-cddf" value="0"/>
<cost name="Crusade: Weapon Modifications" typeId="716d-91b7-d55a-1022" value="0"/>
</costs>
<infoLinks>
<infoLink name="Oath of Moment" hidden="false" type="rule" id="7cbf-abf8-d893-ef4d" targetId="3b76-4053-ece9-6e7d"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="model" import="true" name="Ezekiel" hidden="false" id="38c9-66a1-fe60-46af" page="13">
<profiles>
<profile name="Ezekiel" typeId="c547-1836-d8a-ff4f" typeName="Unit" hidden="false" id="fbc5-9529-2ab7-438c" page="13">
<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 id="6fdb-c01c-b297-170f" name="Invulnerable save" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" page="7">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">4+</characteristic>
</characteristics>
</profile>
<profile name="Engulfing Fear [Psychic]" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="f048-48f8-8dc0-3001" page="13">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">In your Shooting phase, you can select one enemy unit within 18" of this model. That enemy unit must take a Battle-shock test.</characteristic>
</characteristics>
</profile>
<profile name="Book of Salvation" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="b91e-a6de-9238-9ee1" page="13">
<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. When this model is destroyed, each friendly Adeptus Astartes unit within 6" of this model must take a Battle-shock test.</characteristic>
</characteristics>
</profile>
<profile name="Leader" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="cf97-b93c-c35-1e55" page="14">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">This model can be attached to the following units:
■ Assault Intercessor Squad
■ Bladeguard Veteran Squad
■ Hellblaster Squad
■ Infernus Squad
■ Inner Circle Companions
■ Intercessor Squad
■ Sternguard Veterans Squad
■ Tactical Squad</characteristic>
</characteristics>
</profile>
</profiles>
<entryLinks>
<entryLink import="true" name="Warlord" hidden="false" type="selectionEntry" id="af9b-34af-a41-d47c" targetId="caa-f869-3cbd-b48e"/>
</entryLinks>
<categoryLinks>
<categoryLink targetId="9cfd-1c32-585f-7d5c" id="c417-1402-fa22-3119" primary="false" name="Character"/>
<categoryLink targetId="4f3a-f0f7-6647-348d" id="97ca-4bc-d306-7be3" primary="true" name="Epic Hero"/>
<categoryLink targetId="cf47-a0d7-7207-29dc" id="f916-ea40-d541-c655" primary="false" name="Infantry"/>
<categoryLink targetId="5a61-81ac-eb7c-a87e" id="32be-7f9c-176f-d3dc" primary="false" name="Grenades"/>
<categoryLink targetId="aff3-d6a3-2a95-9dc" id="ad7c-6210-3346-a3c6" primary="false" name="Imperium"/>
<categoryLink targetId="13bf-2bee-3ae0-b414" id="95e5-d9ba-e95b-1ec1" primary="false" name="Psyker"/>
<categoryLink targetId="2afc-d6d3-e731-8a83" id="cdd9-76f3-a20c-1ffe" primary="false" name="Ezekiel"/>
<categoryLink targetId="aab1-4f05-fabe-5ba5" id="7ce-b1ab-c28b-8411" primary="false" name="Faction: Dark Angels"/>
<categoryLink targetId="6e7-40c-58d9-e402" id="c825-b4dc-7741-624d" primary="false" name="Faction: Adeptus Astartes"/>
<categoryLink targetId="2c02-e616-7038-bcd7" id="7334-79d7-7f6b-2a01" primary="false" name="Librarian"/>
<categoryLink targetId="e21f-8e64-c5d-7df0" id="dc1c-5f33-31f0-b726" primary="false" name="Deathwing"/>
</categoryLinks>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="2040-73da-ec02-6d19" includeChildSelections="true"/>
</constraints>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="The Deliverer" hidden="false" id="da5e-dda8-cb14-4560" page="13">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="c0ab-ca80-156f-c97b"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="eee4-6004-43e5-5c98"/>
</constraints>
<profiles>
<profile name="The Deliverer" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" hidden="false" id="fd5a-72db-5bc8-7025" page="13">
<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">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">Pistol, Precision</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Pistol" hidden="false" type="rule" id="6efb-8606-6dd-d5d8" targetId="8bf7-8812-923d-29e4"/>
<infoLink name="Precision" hidden="false" type="rule" id="b7d7-8137-5f83-7e0a" targetId="9143-31ae-e0a6-6007"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Mind Wipe" hidden="false" id="753f-d443-e1a-73a8" page="13">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="8e41-563d-91d5-29a2"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="bfa7-239-f50c-776a"/>
</constraints>
<profiles>
<profile name="➤ Mind Wipe - witchfire" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" hidden="false" id="fc03-30cd-58b6-788f">
<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">6</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">-2</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">D6</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Devastating Wounds, Precision, Psychic</characteristic>
</characteristics>
</profile>
<profile name="➤ Mind Wipe - focussed witchfire" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" hidden="false" id="fdaf-6291-16d1-6051" page="13">
<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">6</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">-2</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">D6</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Anti-Character 4+, Devastating Wounds, Hazardous, Precision, Psychic</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Devastating Wounds" hidden="false" type="rule" id="d29a-2c0b-8aa3-69a" targetId="be1e-ac8e-1e2c-3528"/>
<infoLink name="Precision" hidden="false" type="rule" id="8c5d-991a-177a-9b10" targetId="9143-31ae-e0a6-6007"/>
<infoLink name="Psychic" hidden="false" type="rule" id="d2c3-c958-d312-c558" targetId="e9c4-2bb8-12ee-cd1b"/>
<infoLink name="Hazardous" hidden="false" type="rule" id="5bd8-a203-95d4-e117" targetId="8367-374c-f87-c627"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Traitor's Bane" hidden="false" id="d54d-a3b1-1814-e7ca" page="13">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="9bfa-b341-90a3-3421"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="640b-d037-639d-6c44"/>
</constraints>
<profiles>
<profile name="Traitor's Bane" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons" hidden="false" id="a896-5701-6c4a-7753" page="13">
<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">-2</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">D3</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">Anti-Chaos 2+, Psychic</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Psychic" hidden="false" type="rule" id="6c92-9213-196b-a00f" targetId="e9c4-2bb8-12ee-cd1b"/>
<infoLink name="Anti-" hidden="false" type="rule" id="b1d1-90b1-c5-1cf1" targetId="4111-82e3-9444-e942"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
<infoLinks>
<infoLink name="Psychic Hood" hidden="false" type="profile" id="cab8-fb88-9e2f-363e" targetId="116b-b23c-4ea4-30ed"/>
<infoLink name="Oath of Moment" hidden="false" type="rule" id="b624-4c53-c98f-376d" targetId="3b76-4053-ece9-6e7d"/>
</infoLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="75"/>
</costs>
</selectionEntry>
<selectionEntry type="model" import="true" name="Asmodai" hidden="false" id="9bf9-1e30-e4b4-939c">
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="69e8-9482-ca2f-ba40"/>
</constraints>
<profiles>
<profile name="Asmodai" typeId="c547-1836-d8a-ff4f" typeName="Unit" hidden="false" id="9cc2-8f0-aec2-5f87" page="15">
<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">5+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">1</characteristic>
</characteristics>
</profile>
<profile id="bc71-ac50-79a-7ce8" name="Invulnerable save" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" page="7">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">4+</characteristic>
</characteristics>
</profile>
<profile name="Exemplar of Hate" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="cb36-69d9-6027-34d7" page="15">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">While this model is leading a unit, each time a model in that unit makes a melee attack, you can re-roll the Hit roll.</characteristic>
</characteristics>
</profile>
<profile name="Feared Interrogator" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="4483-333d-1b7-1499" page="15">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">At the start of the Fight phase, each enemy Character unit within 6" of this model must take a Battle-shock test, subtracting 1 from that test when they do. In addition, each time this model destroys an enemy Character model with a melee attack, you gain 1CP.</characteristic>
</characteristics>
</profile>
<profile name="Leader" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="3b91-c4c6-818d-4442" page="15">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">This model can be attached to the following units:
■ Assault Intercessor Squad
■ Bladeguard Veteran Squad
■ Hellblaster Squad
■ Infernus Squad
■ Inner Circle Companions
■ Intercessor Squad
■ Sternguard Veteran Squad
■ Tactical Squad</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink targetId="9cfd-1c32-585f-7d5c" id="5ee1-9126-f9b1-8d17" primary="false" name="Character"/>
<categoryLink targetId="4f3a-f0f7-6647-348d" id="eee2-c79a-b3b5-e5e6" primary="true" name="Epic Hero"/>
<categoryLink targetId="cf47-a0d7-7207-29dc" id="f056-6f6d-8670-8359" primary="false" name="Infantry"/>
<categoryLink targetId="5a61-81ac-eb7c-a87e" id="6b8e-6e8c-2113-625d" primary="false" name="Grenades"/>
<categoryLink targetId="aff3-d6a3-2a95-9dc" id="71a0-57d1-519-7a1c" primary="false" name="Imperium"/>
<categoryLink targetId="aab1-4f05-fabe-5ba5" id="c350-5391-380c-7aca" primary="false" name="Faction: Dark Angels"/>
<categoryLink targetId="6e7-40c-58d9-e402" id="c3df-17af-dae6-6de5" primary="false" name="Faction: Adeptus Astartes"/>
<categoryLink targetId="2690-2ccf-683d-74e3" id="6064-8f6d-7cc3-8eca" primary="false" name="Asmodai"/>
<categoryLink targetId="1fb1-3603-a4bd-485" id="962-f46c-2683-3057" primary="false" name="Chaplain"/>
<categoryLink targetId="5179-8ede-45e3-49a2" id="27ee-b2cb-ecae-fda2" primary="false" name="Tacticus"/>
<categoryLink targetId="e21f-8e64-c5d-7df0" id="d6a0-8d42-7d2d-5de4" primary="false" name="Deathwing"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Heavy Bolt Pistol" hidden="false" id="713c-b312-58f3-5bdf" page="15">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="d32b-e26d-ae06-f97b"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="9cde-996a-adaa-81e0"/>
</constraints>
<profiles>
<profile name="Heavy Bolt Pistol" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" hidden="false" id="4f30-1743-64e9-4e82">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">18"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">1</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">-1</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">1</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Pistol</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Pistol" hidden="false" type="rule" id="ceac-4dd1-bda6-7153" targetId="8bf7-8812-923d-29e4"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Crozius Arcanum and Power Weapon" hidden="false" id="d373-91c9-3d89-e893" page="15">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="37b3-b9ec-824b-58ac"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="88e2-e663-af6d-503e"/>
</constraints>
<profiles>
<profile name="➤ Crozius Arcanum and Power Weapon - strike" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons" hidden="false" id="4ff3-d79b-5a5c-5e2f" page="15">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">5</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">-2</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">2</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">-</characteristic>
</characteristics>
</profile>
<profile name="➤ Crozius Arcanum and Power Weapon - sweep" hidden="false" id="48ef-c02b-cfa4-9797" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons">
<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">5</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">-2</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">1</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink import="true" name="Warlord" hidden="false" type="selectionEntry" id="5776-d280-768-f69e" targetId="caa-f869-3cbd-b48e"/>
</entryLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="70"/>
</costs>
<infoLinks>
<infoLink name="Oath of Moment" hidden="false" type="rule" id="ec15-2b16-6cb4-e9cc" targetId="3b76-4053-ece9-6e7d"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="model" import="true" name="Lion El'Jonson" hidden="false" id="15d3-ebc7-d28b-daf4" page="41">
<profiles>
<profile name="Lion El'Jonson" typeId="c547-1836-d8a-ff4f" typeName="Unit" hidden="false" id="ecde-97eb-5e04-9b43" page="41">
<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">10</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">5+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">4</characteristic>
</characteristics>
</profile>
<profile name="Primarch of the First Legion" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="d7-26f-1f5c-5d7b" page="41">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">In your Command phase, select one Primarch of the First Legion abilities (see left). Until the start of your next Command phase, this model has that ability.</characteristic>
</characteristics>
</profile>
<profile name="All Secrets Revealed" typeId="a400-f511-a59-fca7" typeName="Primarch of the First Legion" hidden="false" id="b8af-d4a-e67e-5308" page="41">
<characteristics>
<characteristic name="Effect" typeId="d9a-5fdb-d4de-51a8">Once per turn, when your opponent targets a unit from their army with a Stratagem but before that Stratagem’s effects are resolved, if that unit is within 12" of this model, you gain 1CP and that enemy unit must take a Battle-shock test. If that test is failed, in addition to that unit being Battle-shocked, that Stratagem’s effects are not resolved (that Stratagem still counts as having been used this phase).</characteristic>
</characteristics>
</profile>
<profile name="Martial Exemplar [Aura]" typeId="a400-f511-a59-fca7" typeName="Primarch of the First Legion" hidden="false" id="5e13-be29-6e38-997d" page="41">
<characteristics>
<characteristic name="Effect" typeId="d9a-5fdb-d4de-51a8">While a friendly Adeptus Astartes unit is within 6" of this model, each time a model in that unit makes a melee attack, add 1 to the Hit roll.</characteristic>
</characteristics>
</profile>
<profile name="No Hiding From the Watchers [Aura]" typeId="a400-f511-a59-fca7" typeName="Primarch of the First Legion" hidden="false" id="e162-ac51-433-7cc6" page="41">
<characteristics>
<characteristic name="Effect" typeId="d9a-5fdb-d4de-51a8">While a friendly Adeptus Astartes unit is within 6" of this model, models in that unit have the Feel No Pain 4+ ability against mortal wounds.</characteristic>
</characteristics>
</profile>
<profile name="The Emperor's Shield" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="525f-c5d8-d135-e7a1" page="41">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">Each time a melee attack is allocated to this model, on an unmodified saving throw of 6, the attacking unit suffers 1 mortal wound after it has finished making its attacks.</characteristic>
</characteristics>
</profile>
<profile name="Dark Angels Bodyguard" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="330c-47ba-cddb-1910" page="41">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">While this model is within 3" of one or more friendly Adeptus Astartes Infantry units, this model has the Lone Operative ability.</characteristic>
</characteristics>
</profile>
<profile id="e25a-6293-2852-6904" name="Invulnerable save" hidden="false" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" page="41">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">3+</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink targetId="9cfd-1c32-585f-7d5c" id="d53e-d543-1be0-baac" primary="false" name="Character"/>
<categoryLink targetId="4f3a-f0f7-6647-348d" id="3afe-855d-42dd-9b2d" primary="true" name="Epic Hero"/>
<categoryLink targetId="9693-cf84-fe69-37a9" id="29c8-8195-995b-be07" primary="false" name="Monster"/>
<categoryLink targetId="aff3-d6a3-2a95-9dc" id="6aa1-500c-ac95-754f" primary="false" name="Imperium"/>
<categoryLink targetId="aab1-4f05-fabe-5ba5" id="ed17-1961-c99d-dc37" primary="false" name="Faction: Dark Angels"/>
<categoryLink targetId="6e7-40c-58d9-e402" id="c911-6d9-56ad-18d2" primary="false" name="Faction: Adeptus Astartes"/>
<categoryLink targetId="6474-0ce3-6b5a-120c" id="dc1b-1d3e-6b2a-436a" primary="false" name="Primarch"/>
<categoryLink targetId="42a0-db93-ff81-d939" id="d249-a5a-dcf0-6cdf" primary="false" name="Lion El'Jonson"/>
</categoryLinks>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="a38-8830-2c5f-3c8f"/>
</constraints>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Arma Luminis" hidden="false" id="e177-275c-4a06-3e5d" page="41">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="6d9e-3ee8-7bd9-3d1b"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="a2f7-89aa-2da2-f412"/>
</constraints>
<profiles>
<profile name="➤ Arma Luminis - bolt" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" hidden="false" id="f6e1-fa37-f674-3966" page="41">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">12"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">4</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">Pistol</characteristic>
</characteristics>
</profile>
<profile name="➤ Arma Luminis - plasma" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" hidden="false" id="708a-4618-fdfd-8775" page="41">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">12"</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">8</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">-3</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">2</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Pistol</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Pistol" hidden="false" type="rule" id="ca6b-a582-97e8-ef72" targetId="8bf7-8812-923d-29e4"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Fealty" hidden="false" id="b81d-c41a-4951-ffe" page="41">
<profiles>
<profile name="➤ Fealty - strike" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons" hidden="false" id="9008-3db1-12b7-6d88" page="41">
<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">12</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">-4</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">4</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">Lethal Hits</characteristic>
</characteristics>
</profile>
<profile name="➤ Fealty - sweep" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons" hidden="false" id="246b-3626-72d1-6262" page="41">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">16</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">1</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">Sustained Hits 1</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="6911-66d8-a32-aa5"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="35d7-a652-dbd7-ce86"/>
</constraints>
<infoLinks>
<infoLink name="Lethal Hits" hidden="false" type="rule" id="3fcf-b9eb-214a-d3b" targetId="d1d1-611e-5191-1095"/>
<infoLink name="Sustained Hits" hidden="false" type="rule" id="ca6f-ef0f-85d1-75e3" targetId="1897-c22c-9597-12b1"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
<infoLinks>
<infoLink name="Deep Strike" hidden="false" type="rule" id="7a39-c581-f6b0-607e" targetId="7cb5-dd6b-dd87-ad3b"/>
<infoLink name="Fights First" hidden="false" type="rule" id="a3f9-fe5-1a53-95ed" targetId="24-c886-e8ba-5a89"/>
<infoLink name="Oath of Moment" hidden="false" type="rule" id="dc3b-b36e-3d07-e7b" targetId="3b76-4053-ece9-6e7d"/>
</infoLinks>
<entryLinks>
<entryLink import="true" name="Warlord" hidden="false" type="selectionEntry" id="9370-b89e-1e0a-6c22" targetId="caa-f869-3cbd-b48e">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="6adf-61b8-241a-c074"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="23e0-4d73-b302-957f"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="285"/>
<cost name="Crusade Points" typeId="b03b-c239-15a5-da55" value="0"/>
<cost name="Crusade: Battle Honours" typeId="75bb-ded1-c86d-bdf0" value="0"/>
<cost name="Crusade: Experience" typeId="a623-fe74-1d33-cddf" value="0"/>
<cost name="Crusade: Weapon Modifications" typeId="716d-91b7-d55a-1022" value="0"/>
</costs>
</selectionEntry>
<selectionEntry type="model" import="true" name="Lazarus" hidden="false" id="4b0d-45ff-fab3-7472" page="19">
<categoryLinks>
<categoryLink targetId="9cfd-1c32-585f-7d5c" id="e770-1f7a-930-a18a" primary="false" name="Character"/>
<categoryLink targetId="4f3a-f0f7-6647-348d" id="d8b4-5a23-7012-8b56" primary="true" name="Epic Hero"/>
<categoryLink targetId="cf47-a0d7-7207-29dc" id="7b17-784c-9ab1-d33f" primary="false" name="Infantry"/>
<categoryLink targetId="2d7f-1892-2fd0-e29c" id="c818-77c2-296-d27b" primary="false" name="Captain"/>
<categoryLink targetId="5a61-81ac-eb7c-a87e" id="1f51-a92a-5189-bf75" primary="false" name="Grenades"/>
<categoryLink targetId="aff3-d6a3-2a95-9dc" id="d55e-ddd2-f6b3-359f" primary="false" name="Imperium"/>
<categoryLink targetId="aab1-4f05-fabe-5ba5" id="1b76-cc31-848c-8097" primary="false" name="Faction: Dark Angels"/>
<categoryLink targetId="6e7-40c-58d9-e402" id="ee86-b1e0-f501-b833" primary="false" name="Faction: Adeptus Astartes"/>
<categoryLink targetId="286f-ba94-2fa3-2606" id="65a2-d1e9-5758-6505" primary="false" name="Lazarus"/>
<categoryLink targetId="5179-8ede-45e3-49a2" id="e402-eceb-ef14-8fa1" primary="false" name="Tacticus"/>
</categoryLinks>
<profiles>
<profile name="Lazarus" typeId="c547-1836-d8a-ff4f" typeName="Unit" hidden="false" id="6cfd-4749-b770-d730" page="19">
<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">5</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="Intractable Will" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="d624-cd8c-e5fa-4603" page="19">
<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 unit has finished making its attacks, and is then removed from play.</characteristic>
</characteristics>
</profile>
<profile name="The Spiritshield Helm" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="c2a8-5405-6d21-f044" page="19">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">This model has the Feel No Pain 3+ ability against Psychic Attacks and mortal wounds.</characteristic>
</characteristics>
</profile>
<profile name="Invulnerable Save" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="620b-a55b-f7f1-5e58" page="19">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">4+</characteristic>
</characteristics>
</profile>
<profile name="Leader" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="a74d-6e5a-52a3-8a29" page="20">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">This model can be attached to the following units:
■ Assault Intercessor Squad
■ Bladeguard Veteran Squad
■ Infernus Squad
■ Inner Circle Companions
■ Intercessor Squad
■ Sternguard Veteran Squad
■ Tactical Squad</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Bolt pistol" hidden="false" id="3ad9-2652-f5e1-faa9" page="19">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="ddec-df85-80ea-7eec"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="9bf5-cc15-67b0-e334"/>
</constraints>
<profiles>
<profile name="Bolt pistol" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" hidden="false" id="3976-6698-3fe3-201c">
<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">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">Pistol</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Enmity’s Edge" hidden="false" id="35f3-3981-8b17-9826" page="19">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="fa65-7bb0-ba23-9494"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="ed3f-7fd6-d54d-c753"/>
</constraints>
<profiles>
<profile name="Enmity’s Edge" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons" hidden="false" id="7814-635d-622a-c628" page="19">
<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">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">Anti-Psyker 2+</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink import="true" name="Warlord" hidden="false" type="selectionEntry" id="19b9-1536-c543-80d2" targetId="caa-f869-3cbd-b48e"/>
</entryLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="70"/>
</costs>
<infoLinks>
<infoLink name="Oath of Moment" hidden="false" type="rule" id="ea1e-e2d4-492c-41a6" targetId="3b76-4053-ece9-6e7d"/>
</infoLinks>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="1791-ef95-1820-6805" includeChildSelections="true"/>
</constraints>
</selectionEntry>
<selectionEntry type="model" import="true" name="Nephilim Jetfighter" hidden="false" id="4f36-6609-efac-baa6" page="39">
<categoryLinks>
<categoryLink targetId="dbd4-63-af05-998" id="4c60-10cd-f60e-e14" primary="true" name="Vehicle"/>
<categoryLink targetId="c619-2086-bbcf-69c9" id="28a0-cda-400f-9459" primary="false" name="Fly"/>
<categoryLink targetId="63f1-e6e8-f6f6-a4f0" id="d8d9-32db-f70f-7faf" primary="false" name="Aircraft"/>
<categoryLink targetId="aff3-d6a3-2a95-9dc" id="af7c-22c7-902b-6347" primary="false" name="Imperium"/>
<categoryLink targetId="2595-2fac-49c4-64ea" id="e7a5-e1bd-a0c9-faad" primary="false" name="Nephilim Jetfighter"/>
<categoryLink targetId="6e7-40c-58d9-e402" id="b555-da16-4aa1-52d" primary="false" name="Faction: Adeptus Astartes"/>
<categoryLink targetId="aab1-4f05-fabe-5ba5" id="8d32-3664-cf8d-26d3" primary="false" name="Faction: Dark Angels"/>
<categoryLink targetId="e9c7-1590-1bda-bf7f" id="88cd-bed4-641e-d1e6" primary="false" name="Ravenwing"/>
</categoryLinks>
<profiles>
<profile name="Nephilim Jetfighter" typeId="c547-1836-d8a-ff4f" typeName="Unit" hidden="false" id="523f-b6c1-31b1-2d68" page="39">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">20+"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">8</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">0</characteristic>
</characteristics>
</profile>
<profile name="Lightning-fast Manoeuvres" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="8639-6848-43d7-63e7" page="39">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">Each time a ranged attack targets this model, subtract 1 from the Hit roll. If that attack was made by a model that can Fly, subtract 1 from the Wound roll as well.</characteristic>
</characteristics>
</profile>
<profile name="DAMAGED: 1-3 WOUNDS REMAINING" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="2cff-f9b1-965c-5e8d">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">While this model has 1-3 wounds remaining, each time this model makes an attack, subtract 1 from the Hit roll.</characteristic>
</characteristics>
</profile>
<profile name="Invulnerable Save" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="ad17-d6b0-ea21-926c">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">5+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Hover" hidden="false" type="rule" id="ce06-f943-10ba-14bd" targetId="eec5-5f54-9c03-c305"/>
<infoLink name="Deadly Demise" hidden="false" type="rule" id="df9d-5162-cc6c-70b0" targetId="b68a-5ded-65ac-98c">
<modifiers>
<modifier type="append" value="D3" field="name"/>
</modifiers>
</infoLink>
<infoLink name="Oath of Moment" hidden="false" type="rule" id="fbce-2561-c158-60ef" targetId="3b76-4053-ece9-6e7d"/>
</infoLinks>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Blacksword missiles" hidden="false" id="b920-723e-9b06-3467">