forked from BSData/horus-heresy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2022 - LA - Salamanders.cat
1001 lines (1001 loc) · 77.1 KB
/
2022 - LA - Salamanders.cat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<catalogue id="3547-84d8-d789-bab7" name="LA - XVIII: Salamanders" revision="4" battleScribeVersion="2.03" library="false" gameSystemId="28d4-bd2e-4858-ece6" gameSystemRevision="13" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<entryLinks>
<entryLink id="93d2-b1cb-b684-a9b3" name=" XVIII: Salamanders" hidden="false" collective="false" import="false" targetId="c805-ca3a-ff93-5e2f" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8033-566b-1abe-f966" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="57d2-e62d-e196-295b" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="e7bb-068e-33b8-7e33" name="New CategoryLink" hidden="false" targetId="e90d-e5a8-f42d-da84" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="a4b6-92c9-7e8b-bfcd" name="Cassian Dracos Reborn" hidden="true" collective="false" import="false" targetId="fb8a-ab72-52ce-38f3" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d0b6-712f-0b12-a308" type="equalTo"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d344-d97b-4687-8a62" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="2de5-e3bc-f6bc-5558" name="New CategoryLink" hidden="false" targetId="4f85-eb33-30c9-8f51" primary="true"/>
<categoryLink id="b475-cb4a-5a9b-cf9b" name="Compulsory HQ:" hidden="false" targetId="f823-8c1d-6a87-26a1" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="34f6-2994-6de1-98cc" name="Firedrake Terminator Squad" hidden="false" collective="false" import="false" targetId="6775-8379-8d6b-9614" type="selectionEntry">
<categoryLinks>
<categoryLink id="26b1-529c-841e-80c6" name="New CategoryLink" hidden="false" targetId="7aee-565f-b0ae-294e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="13d2-61df-c76d-7b32" name="Lord Chaplain Nomus Rhy'Tan" hidden="true" collective="false" import="false" targetId="74f6-96f4-ee55-9c78" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d0b6-712f-0b12-a308" type="equalTo"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d344-d97b-4687-8a62" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="ac1a-5683-b0a6-a1f5" name="New CategoryLink" hidden="false" targetId="4f85-eb33-30c9-8f51" primary="true"/>
<categoryLink id="2ac4-69c5-3a1e-7314" name="Compulsory HQ:" hidden="false" targetId="f823-8c1d-6a87-26a1" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="5e51-de9f-0a93-825b" name="Pyroclast Squad" hidden="false" collective="false" import="false" targetId="71fe-d3bc-b7f9-75ca" type="selectionEntry">
<categoryLinks>
<categoryLink id="eaf6-1e7a-32ab-b017" name="New CategoryLink" hidden="false" targetId="7aee-565f-b0ae-294e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="4c5f-15e0-0de3-af6a" name="Vulkan" hidden="true" collective="false" import="false" targetId="8c74-40b1-5019-f4d4" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d0b6-712f-0b12-a308" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="64a8-ba7d-4c9b-3f3e" name="New CategoryLink" hidden="false" targetId="ad5f-31db-8bc7-5c46" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="2607-05cd-6852-2f52" name="Xiaphas Jurr" hidden="true" collective="false" import="false" targetId="30b8-05a5-fef7-fe66" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d0b6-712f-0b12-a308" type="equalTo"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d344-d97b-4687-8a62" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="61c9-1410-be7e-6c64" name="New CategoryLink" hidden="false" targetId="4f85-eb33-30c9-8f51" primary="true"/>
<categoryLink id="28d1-eb1c-4e2e-0ce6" name="Compulsory HQ:" hidden="false" targetId="f823-8c1d-6a87-26a1" primary="false"/>
</categoryLinks>
</entryLink>
</entryLinks>
<sharedSelectionEntries>
<selectionEntry id="8c74-40b1-5019-f4d4" name="Vulkan" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="65d8-0392-0de1-6820" type="max"/>
</constraints>
<profiles>
<profile id="e9c4-70b0-428e-2d3e" name="Vulkan" publicationId="817a-6288-e016-7469" page="314" hidden="false" typeId="4bb2-cb95-e6c8-5a21" typeName="Unit">
<characteristics>
<characteristic name="Unit Type" typeId="ddd7-6f5c-a939-b69e">Primarch (Unique)</characteristic>
<characteristic name="Move" typeId="893e-2d76-8f04-44e5">7</characteristic>
<characteristic name="WS" typeId="cc42-7ed5-7092-5c84">7</characteristic>
<characteristic name="BS" typeId="74ae-c840-0036-d244">6</characteristic>
<characteristic name="S" typeId="e478-41d4-a092-48a8">7</characteristic>
<characteristic name="T" typeId="c32b-5fdd-3fbe-9b1f">7</characteristic>
<characteristic name="W" typeId="57ee-1126-32a9-5672">6</characteristic>
<characteristic name="I" typeId="62d3-22d7-2d49-52dc">5</characteristic>
<characteristic name="A" typeId="f111-2ce5-dd12-d6b0">6</characteristic>
<characteristic name="Ld" typeId="e8a6-1da9-d384-8727">10</characteristic>
<characteristic name="Save" typeId="e593-6b3c-f169-04f0">2+</characteristic>
</characteristics>
</profile>
<profile id="c48f-331d-be45-89e3" name="The Draken Scale" publicationId="817a-6288-e016-7469" page="315" hidden="false" typeId="2a1f-7837-f0ef-be44" typeName="Wargear Item">
<characteristics>
<characteristic name="Description" typeId="347e-ee4a-764f-6be3">The Draken Scale grants a 2+ Armour Save and a 3+ Invulnerable Save. In addition, Vulkan may re-roll any failed Armour saves for Wounds inflicted by Flame or Volkite weapons.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="f67d-64fb-108b-4425" name="Loyalist" hidden="false" targetId="d1de-a45d-2b9b-c878" type="rule"/>
<infoLink id="9855-2de1-1749-7fe0" name="It Will Not Die (X)" hidden="false" targetId="2784-d0be-a4e2-890f" type="rule">
<modifiers>
<modifier type="set" field="name" value="It Will Not Die (4+)"/>
</modifiers>
</infoLink>
<infoLink id="9f64-1d6f-3b6e-9d87" name="Master of the Legion" hidden="false" targetId="c772-87ea-d49c-c7ba" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="97f1-63ad-b403-6ae7" name="Legiones Astartes" hidden="false" targetId="11f2-472f-c1d1-9ae9" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="b52a-be67-5e91-6268" name="Dawnbringer" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b20a-b402-3cca-0ee5" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6d2b-61d9-db46-d465" type="max"/>
</constraints>
<profiles>
<profile id="2d09-73bf-786f-3016" name="Dawnbringer" publicationId="817a-6288-e016-7469" page="315" hidden="false" typeId="1a1a-e592-2849-a5c0" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="95ba-cda7-b831-6066">-</characteristic>
<characteristic name="Strength" typeId="24d9-b8e1-a355-2458">10</characteristic>
<characteristic name="AP" typeId="f7a6-e0d8-7973-cd8d">1</characteristic>
<characteristic name="Type" typeId="2f86-c8b4-b3b4-3ff9">Melee</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="3838-94ec-e581-075c" name="Master-crafted" hidden="false" targetId="6de0-55b0-bf21-48b9" type="rule"/>
<infoLink id="3096-ed64-c1de-5585" name="Two-handed" hidden="false" targetId="4c23-e863-a569-7617" type="rule"/>
<infoLink id="1721-bb9b-d3c2-a547" name="Armourbane (X)" hidden="false" targetId="cb59-f920-f071-7cd4" type="rule">
<modifiers>
<modifier type="set" field="name" value="Armourbane (Melee)"/>
</modifiers>
</infoLink>
<infoLink id="5a92-5530-1be3-6d87" name="Instant Death" hidden="false" targetId="9e96-fff1-b916-d9a3" type="rule"/>
</infoLinks>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="0b0a-6d48-9513-fbbf" name="The Furnace's Heart" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9bb1-578b-e0fe-e04a" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3dc0-9e4f-f81d-55ce" type="min"/>
</constraints>
<profiles>
<profile id="3a16-fd7b-1980-53c2" name="The Furnace's Heart" publicationId="817a-6288-e016-7469" page="315" hidden="false" typeId="1a1a-e592-2849-a5c0" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="95ba-cda7-b831-6066">18"</characteristic>
<characteristic name="Strength" typeId="24d9-b8e1-a355-2458">7</characteristic>
<characteristic name="AP" typeId="f7a6-e0d8-7973-cd8d">2</characteristic>
<characteristic name="Type" typeId="2f86-c8b4-b3b4-3ff9">Pistol 1</characteristic>
</characteristics>
</profile>
</profiles>
<rules>
<rule id="04a4-13fd-fec4-8ff3" name="Burst (D6)" publicationId="817a-6288-e016-7469" page="315" hidden="false">
<description>If this weapon inflicts a Hit then instead of one Hit it inflicts a number of hits equal to the number in brackets included as part of this rule.</description>
</rule>
</rules>
<infoLinks>
<infoLink id="8293-a025-d658-c377" name="Lance" hidden="false" targetId="3d6b-9e0b-56f0-8a1e" type="rule"/>
<infoLink id="eed9-317e-d1b9-e78d" name="Shock Pulse" hidden="false" targetId="9222-f6c5-dc19-905a" type="rule"/>
</infoLinks>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="636d-097e-8b4d-9603" name="Frag Grenades" hidden="false" collective="false" import="true" targetId="cf9c-327b-3449-00d7" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a5c7-a5a0-07f4-4211" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e5c7-adc1-478f-0948" type="min"/>
</constraints>
</entryLink>
<entryLink id="8528-e282-de0a-8bb4" name="Dragon's Breath Heavy Flamer" hidden="false" collective="false" import="true" targetId="1a5c-0c5f-d798-a067" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3d1a-1e53-d7d4-a5ac" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7630-9187-a9d0-5877" type="max"/>
</constraints>
</entryLink>
<entryLink id="ee55-740f-5176-67e0" name="Warlord" hidden="false" collective="false" import="true" targetId="0176-56a3-d590-b103" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c782-6733-4ebc-a5bb" type="max"/>
</constraints>
<rules>
<rule id="628e-7441-423f-f7f7" name="Warlord: Sire of the Salamanders" publicationId="817a-6288-e016-7469" page="314" hidden="false">
<description>All models with both the Infantry Unit Type and the Legiones Astartes (Salamanders) special rule in the same army as Vulkan gain the Stubborn special rule. In addition, an army with Vulkan as its Warlord gains an additional Reaction in the opposing player's Shooting phase as long as Vulkan has not been removed as a casualty.</description>
</rule>
</rules>
</entryLink>
</entryLinks>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="465.0"/>
</costs>
</selectionEntry>
<selectionEntry id="71fe-d3bc-b7f9-75ca" name="Pyroclast Squad" hidden="false" collective="false" import="true" type="unit">
<rules>
<rule id="135c-a0b8-c4d6-93ee" name="Mantle of Ash" hidden="false">
<description>Models with this special rule gain an Invulnerable Save of 5+ against all Flame, Plasma, Melta and Volkite weapons.</description>
</rule>
</rules>
<infoLinks>
<infoLink id="78ac-0e70-651e-01fa" name="Legiones Astartes (Salamanders) " hidden="false" targetId="5b72-d9a6-92c3-4a1c" type="rule"/>
<infoLink id="614e-38bb-0602-4acd" name="It Will Not Die (X)" hidden="false" targetId="2784-d0be-a4e2-890f" type="rule">
<modifiers>
<modifier type="set" field="name" value="It Will Not Die (5+)"/>
</modifiers>
</infoLink>
</infoLinks>
<categoryLinks>
<categoryLink id="d837-e352-e6f6-6b63" name="Infantry:" hidden="false" targetId="8b4f-bfe2-ce7b-f1b1" primary="false"/>
<categoryLink id="0f09-6dcb-5b34-c507" name="Legiones Astartes" hidden="false" targetId="11f2-472f-c1d1-9ae9" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="c8d5-7b74-c1d6-2535" name="Pyroclasts" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="9.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4e02-b478-e703-1dda" type="max"/>
<constraint field="selections" scope="parent" value="4.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="eb78-1203-8b64-cf3c" type="min"/>
</constraints>
<profiles>
<profile id="43f3-26bc-ec9d-40af" name="Pyroclasts" hidden="false" typeId="4bb2-cb95-e6c8-5a21" typeName="Unit">
<characteristics>
<characteristic name="Unit Type" typeId="ddd7-6f5c-a939-b69e">Infantry</characteristic>
<characteristic name="Move" typeId="893e-2d76-8f04-44e5">7"</characteristic>
<characteristic name="WS" typeId="cc42-7ed5-7092-5c84">4</characteristic>
<characteristic name="BS" typeId="74ae-c840-0036-d244">4</characteristic>
<characteristic name="S" typeId="e478-41d4-a092-48a8">4</characteristic>
<characteristic name="T" typeId="c32b-5fdd-3fbe-9b1f">4</characteristic>
<characteristic name="W" typeId="57ee-1126-32a9-5672">2</characteristic>
<characteristic name="I" typeId="62d3-22d7-2d49-52dc">4</characteristic>
<characteristic name="A" typeId="f111-2ce5-dd12-d6b0">2</characteristic>
<characteristic name="Ld" typeId="e8a6-1da9-d384-8727">8</characteristic>
<characteristic name="Save" typeId="e593-6b3c-f169-04f0">2+</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="30.0"/>
</costs>
</selectionEntry>
<selectionEntry id="59b5-2903-41d4-da1c" name="Pyroclast Warden" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f260-6299-5f47-d4d7" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="75c0-5a2c-caf0-1a48" type="min"/>
</constraints>
<profiles>
<profile id="73e1-2cf6-ef77-011d" name="Pyroclast Warden" hidden="false" typeId="4bb2-cb95-e6c8-5a21" typeName="Unit">
<characteristics>
<characteristic name="Unit Type" typeId="ddd7-6f5c-a939-b69e">Infantry (Character)</characteristic>
<characteristic name="Move" typeId="893e-2d76-8f04-44e5">7"</characteristic>
<characteristic name="WS" typeId="cc42-7ed5-7092-5c84">4</characteristic>
<characteristic name="BS" typeId="74ae-c840-0036-d244">4</characteristic>
<characteristic name="S" typeId="e478-41d4-a092-48a8">4</characteristic>
<characteristic name="T" typeId="c32b-5fdd-3fbe-9b1f">4</characteristic>
<characteristic name="W" typeId="57ee-1126-32a9-5672">2</characteristic>
<characteristic name="I" typeId="62d3-22d7-2d49-52dc">4</characteristic>
<characteristic name="A" typeId="f111-2ce5-dd12-d6b0">3</characteristic>
<characteristic name="Ld" typeId="e8a6-1da9-d384-8727">9</characteristic>
<characteristic name="Save" typeId="e593-6b3c-f169-04f0">2+</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="55.0"/>
</costs>
</selectionEntry>
<selectionEntry id="c64f-516f-4189-61c7" name="Basic Close Combat Weapon" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9501-65ed-d324-3801" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2068-d812-380c-5445" type="max"/>
</constraints>
<profiles>
<profile id="e8e7-8909-cb53-ccaa" name="Basic Close Combat Weapon" hidden="false" typeId="1a1a-e592-2849-a5c0" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="95ba-cda7-b831-6066">-</characteristic>
<characteristic name="Strength" typeId="24d9-b8e1-a355-2458">User</characteristic>
<characteristic name="AP" typeId="f7a6-e0d8-7973-cd8d">-</characteristic>
<characteristic name="Type" typeId="2f86-c8b4-b3b4-3ff9">Melee</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="df54-1867-5f66-ec15" name="Pyroclast Flame Projector" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9c16-093b-74f9-47c8" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f13c-6b86-1173-91fd" type="min"/>
</constraints>
<profiles>
<profile id="71f8-555e-c7c5-5301" name="Pyroclast Flame Projector - Dispersed" hidden="false" typeId="1a1a-e592-2849-a5c0" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="95ba-cda7-b831-6066">Template</characteristic>
<characteristic name="Strength" typeId="24d9-b8e1-a355-2458">6</characteristic>
<characteristic name="AP" typeId="f7a6-e0d8-7973-cd8d">4</characteristic>
<characteristic name="Type" typeId="2f86-c8b4-b3b4-3ff9">Assault 1, Dragon's Breath</characteristic>
</characteristics>
</profile>
<profile id="0d34-13a4-169c-3d13" name="Pyroclast Flame Projector - Focused" hidden="false" typeId="1a1a-e592-2849-a5c0" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="95ba-cda7-b831-6066">12"</characteristic>
<characteristic name="Strength" typeId="24d9-b8e1-a355-2458">8</characteristic>
<characteristic name="AP" typeId="f7a6-e0d8-7973-cd8d">1</characteristic>
<characteristic name="Type" typeId="2f86-c8b4-b3b4-3ff9">Assault 1, Armourbane (Melta)</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="8c08-37af-c163-98b0" name="Dragon's Breath" hidden="false" targetId="655c-988f-74b5-7e17" type="rule"/>
<infoLink id="7db3-3ed5-9e69-cafc" name="Armourbane (X)" hidden="false" targetId="cb59-f920-f071-7cd4" type="rule"/>
</infoLinks>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="d3cc-8f8c-a041-24f5" name="The Pyroclast Warden may exchange their Basic Close Combat weapon with:" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="88c2-8f64-cb1f-a447" type="max"/>
</constraints>
<entryLinks>
<entryLink id="22f0-1a50-bcfd-ac6b" name="Thunder Hammer" hidden="false" collective="false" import="true" targetId="838c-4002-713d-d7c6" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="25.0"/>
</costs>
</entryLink>
<entryLink id="a552-300e-60c0-cbc2" name="Power Fist" hidden="false" collective="false" import="true" targetId="768d-b89b-7328-d749" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="20.0"/>
</costs>
</entryLink>
<entryLink id="8f34-1d39-05f6-9c12" name="Power Axe" hidden="false" collective="false" import="true" targetId="c066-2ace-f68c-e440" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="10.0"/>
</costs>
</entryLink>
<entryLink id="5b90-2bbd-1ff1-aafa" name="Power Sword" hidden="false" collective="false" import="true" targetId="a3cd-aa97-a148-2309" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="10.0"/>
</costs>
</entryLink>
<entryLink id="9200-478f-5ca3-fd20" name="Power Maul" hidden="false" collective="false" import="true" targetId="0df4-c67e-cf64-82e0" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="10.0"/>
</costs>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="e42d-59a0-15a8-4958" name="Dedicated Transport" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1dd0-1194-98b8-06e4" type="max"/>
</constraints>
<entryLinks>
<entryLink id="58de-afbd-b0ab-1e6c" name="Rhino Transport" hidden="false" collective="false" import="true" targetId="03f1-8ed9-9867-8d18" type="selectionEntry"/>
<entryLink id="15c8-31e7-c135-afe9" name="Land Raider Proteus Carrier" hidden="false" collective="false" import="true" targetId="c123-bdc6-a6ba-79a2" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="8e95-3747-be36-5b6e" name="Artificer Armour" hidden="false" collective="false" import="true" targetId="583e-62cb-53f1-f952" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0625-805f-1fe2-aeef" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8039-2f69-8753-5b06" type="min"/>
</constraints>
</entryLink>
<entryLink id="6e5f-c295-2fe1-2389" name="Bolt Pistol" hidden="false" collective="false" import="true" targetId="e5ae-6872-37aa-8600" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="86de-244d-28bf-e1db" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="681f-6b92-0c46-8d59" type="min"/>
</constraints>
</entryLink>
<entryLink id="7ab6-e184-e76b-fd79" name="Meltabombs" hidden="false" collective="false" import="true" targetId="b9dd-3b21-f3f8-78e3" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f877-4d63-eff3-d04e" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3e51-3023-b3e6-9a9a" type="min"/>
</constraints>
</entryLink>
<entryLink id="e2ec-9889-8c19-c34c" name="Frag Grenades" hidden="false" collective="false" import="true" targetId="cf9c-327b-3449-00d7" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="23d4-4235-474c-5ed3" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="684a-4a80-7722-2e2e" type="min"/>
</constraints>
</entryLink>
<entryLink id="1241-864f-447d-ed3b" name="Krak Grenades" hidden="false" collective="false" import="true" targetId="99df-2421-acf7-a5ad" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f546-59d2-b9e7-2b09" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4f03-5f77-90c3-808b" type="min"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="6775-8379-8d6b-9614" name="Firedrake Terminator Squad" hidden="false" collective="false" import="true" type="unit">
<rules>
<rule id="5643-e6a1-a722-b0c6" name="Favoured of Vulkan " hidden="true">
<description>A Firedrake Squad may be selected as a Retinue Squad in a Detachment that includes at least one model with both the Master of the Legion and Legiones Astartes (Salamanders) special rules, instead of as an Elites choice. A unit selected as a ‘Retinue Squad’ must have one model with both the Master of the Legion and Legiones Astartes (Salamanders) special rules from the same Detachment selected by the controlling player as the Firedrake Squad’s Leader for the purposes of this special rule. A Firedrake Squad selected as a Retinue Squad does not use up a Force Organisation slot and is considered part of the same unit as the model selected as its Leader. A Firedrake Squad selected as a Retinue Squad must be deployed with the model selected as its Leader deployed as part of the unit and the Leader may not voluntarily leave the Retinue Squad during play</description>
</rule>
<rule id="3918-9a84-af8e-96b2" name="Forge-craft of Nocturne" hidden="false">
<description>The controlling player of a model with this special rule may re-roll all failed To Hit rolls of 1 for weapons of the Melee type.</description>
</rule>
</rules>
<infoLinks>
<infoLink id="3ad0-6c67-01f3-4d7a" name="Legiones Astartes (Salamanders) " hidden="false" targetId="5b72-d9a6-92c3-4a1c" type="rule"/>
<infoLink id="96b4-a039-5166-5365" name="Relentless" hidden="false" targetId="7adf-ac9a-5035-522d" type="rule"/>
<infoLink id="9c8a-ead3-d69d-7110" name="Bulky (X)" hidden="false" targetId="676c-7b75-4b6f-9405" type="rule">
<modifiers>
<modifier type="set" field="name" value="Bulky (2)"/>
</modifiers>
</infoLink>
<infoLink id="1b90-b832-8635-91c5" name="Stubborn" hidden="false" targetId="7989-1f2c-a43d-82ae" type="rule"/>
<infoLink id="62ae-f85b-4774-54d1" name="It Will Not Die (X)" hidden="false" targetId="2784-d0be-a4e2-890f" type="rule">
<modifiers>
<modifier type="set" field="name" value="It Will Not Die (5+)"/>
</modifiers>
</infoLink>
</infoLinks>
<categoryLinks>
<categoryLink id="b47e-4128-4626-5ab1" name="Heavy" hidden="false" targetId="9231-183c-b97b-63f9" primary="false"/>
<categoryLink id="0d65-1662-e010-f889" name="Infantry:" hidden="false" targetId="8b4f-bfe2-ce7b-f1b1" primary="false"/>
<categoryLink id="f28b-f86f-8c4f-ba4f" name="Legiones Astartes" hidden="false" targetId="11f2-472f-c1d1-9ae9" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="a06f-66d8-a8c1-63fa" name="Firedrakes" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="9.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e987-1355-d39b-5aa3" type="max"/>
<constraint field="selections" scope="parent" value="4.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="dee5-edd6-5dd8-237a" type="min"/>
</constraints>
<profiles>
<profile id="906d-a6e2-3a9d-06cb" name="Firedrake" hidden="false" typeId="4bb2-cb95-e6c8-5a21" typeName="Unit">
<characteristics>
<characteristic name="Unit Type" typeId="ddd7-6f5c-a939-b69e">Infantry (Heavy)</characteristic>
<characteristic name="Move" typeId="893e-2d76-8f04-44e5">6"</characteristic>
<characteristic name="WS" typeId="cc42-7ed5-7092-5c84">5</characteristic>
<characteristic name="BS" typeId="74ae-c840-0036-d244">4</characteristic>
<characteristic name="S" typeId="e478-41d4-a092-48a8">4</characteristic>
<characteristic name="T" typeId="c32b-5fdd-3fbe-9b1f">4</characteristic>
<characteristic name="W" typeId="57ee-1126-32a9-5672">2</characteristic>
<characteristic name="I" typeId="62d3-22d7-2d49-52dc">4</characteristic>
<characteristic name="A" typeId="f111-2ce5-dd12-d6b0">2</characteristic>
<characteristic name="Ld" typeId="e8a6-1da9-d384-8727">9</characteristic>
<characteristic name="Save" typeId="e593-6b3c-f169-04f0">2+</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntryGroups>
<selectionEntryGroup id="ce52-8553-5fe4-a475" name="1) Melee Options:" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7c2d-8bb7-e274-1c1c" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3da6-9245-c23f-41b8" type="min"/>
</constraints>
<entryLinks>
<entryLink id="b75b-28f6-b135-8dc0" name="Power Axe" hidden="false" collective="false" import="true" targetId="c066-2ace-f68c-e440" type="selectionEntry"/>
<entryLink id="5ac5-5bcc-7563-22a4" name="Power Sword" hidden="false" collective="false" import="true" targetId="a3cd-aa97-a148-2309" type="selectionEntry"/>
<entryLink id="6bbe-3687-7c8d-6686" name="Power Maul" hidden="false" collective="false" import="true" targetId="0df4-c67e-cf64-82e0" type="selectionEntry"/>
<entryLink id="37b9-9e40-eaf3-8bcb" name="Thunder Hammer" hidden="false" collective="false" import="true" targetId="838c-4002-713d-d7c6" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="10.0"/>
</costs>
</entryLink>
<entryLink id="0cd2-9418-c58f-a408" name="Power Fist" hidden="false" collective="false" import="true" targetId="768d-b89b-7328-d749" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="5.0"/>
</costs>
</entryLink>
<entryLink id="7ebe-953c-b979-e289" name="Chainfist" hidden="false" collective="false" import="true" targetId="7347-c5b1-5da3-a78f" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="10.0"/>
</costs>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="b4a7-c7a7-9adb-dd5a" name="2) Ranged Options:" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7ab5-4102-b635-708d" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6eb3-9389-ea95-66d7" type="min"/>
</constraints>
<entryLinks>
<entryLink id="07bc-1cd0-b38a-e782" name="Minor Combi-Weapon - Flamer" hidden="false" collective="false" import="true" targetId="34c4-db99-db36-0f2a" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="5.0"/>
</costs>
</entryLink>
<entryLink id="3e8b-5920-89dc-8bdb" name="Magna Combi-Weapon - Meltagun" hidden="false" collective="false" import="true" targetId="0d1c-227e-a3f8-cd63" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="10.0"/>
</costs>
</entryLink>
<entryLink id="f5ea-d4ff-92d9-c034" name="Combi-Bolter" hidden="false" collective="false" import="true" targetId="a498-c66f-9eb7-ca9a" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="ca9b-aacb-7bb3-0667" name="One model may exchange either their Combi-bolter or Dragonscale Shield with:" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b537-84b5-8d8e-1404" type="max"/>
</constraints>
<entryLinks>
<entryLink id="b1bb-6ec3-4402-f9d9" name="Dragon's Breath Heavy Flamer" hidden="false" collective="false" import="true" targetId="1a5c-0c5f-d798-a067" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="10.0"/>
</costs>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="45.0"/>
</costs>
</selectionEntry>
<selectionEntry id="d8b7-2197-33f3-6668" name="Firedrake Master" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f311-4d90-dbbd-05c4" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cd7b-4588-ade8-b5ac" type="min"/>
</constraints>
<profiles>
<profile id="6d1a-2120-51a7-406c" name="Firedrake Master" hidden="false" typeId="4bb2-cb95-e6c8-5a21" typeName="Unit">
<characteristics>
<characteristic name="Unit Type" typeId="ddd7-6f5c-a939-b69e">Infantry (Character, Heavy)</characteristic>
<characteristic name="Move" typeId="893e-2d76-8f04-44e5">6"</characteristic>
<characteristic name="WS" typeId="cc42-7ed5-7092-5c84">5</characteristic>
<characteristic name="BS" typeId="74ae-c840-0036-d244">4</characteristic>
<characteristic name="S" typeId="e478-41d4-a092-48a8">4</characteristic>
<characteristic name="T" typeId="c32b-5fdd-3fbe-9b1f">4</characteristic>
<characteristic name="W" typeId="57ee-1126-32a9-5672">2</characteristic>
<characteristic name="I" typeId="62d3-22d7-2d49-52dc">4</characteristic>
<characteristic name="A" typeId="f111-2ce5-dd12-d6b0">3</characteristic>
<characteristic name="Ld" typeId="e8a6-1da9-d384-8727">9</characteristic>
<characteristic name="Save" typeId="e593-6b3c-f169-04f0">2+</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntryGroups>
<selectionEntryGroup id="5aec-2671-da16-e919" name="1) Melee Options:" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="982e-7d12-4379-5538" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b6f0-ced1-d4d9-a2d8" type="min"/>
</constraints>
<entryLinks>
<entryLink id="d225-f3bc-ded4-bc25" name="Power Axe" hidden="false" collective="false" import="true" targetId="c066-2ace-f68c-e440" type="selectionEntry"/>
<entryLink id="c167-f4c9-6ab3-7a15" name="Power Sword" hidden="false" collective="false" import="true" targetId="a3cd-aa97-a148-2309" type="selectionEntry"/>
<entryLink id="555c-03b3-7f2e-da29" name="Power Maul" hidden="false" collective="false" import="true" targetId="0df4-c67e-cf64-82e0" type="selectionEntry"/>
<entryLink id="bb94-c4b3-a6c8-564b" name="Thunder Hammer" hidden="false" collective="false" import="true" targetId="838c-4002-713d-d7c6" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="10.0"/>
</costs>
</entryLink>
<entryLink id="52ed-c8e7-debd-6d5c" name="Power Fist" hidden="false" collective="false" import="true" targetId="768d-b89b-7328-d749" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="5.0"/>
</costs>
</entryLink>
<entryLink id="5596-0bb5-495f-2dde" name="Chainfist" hidden="false" collective="false" import="true" targetId="7347-c5b1-5da3-a78f" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="10.0"/>
</costs>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="4a62-eb83-337a-5daa" name="One model may exchange either their Combi-bolter or Dragonscale Shield with:" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ff5e-afcb-e186-b5e3" type="max"/>
</constraints>
<entryLinks>
<entryLink id="4c7d-c23c-41ce-0b12" name="Dragon's Breath Heavy Flamer" hidden="false" collective="false" import="true" targetId="1a5c-0c5f-d798-a067" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="10.0"/>
</costs>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="3c0f-5bb3-8489-5c68" name="2) Ranged Options:" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0978-66a2-363a-6557" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e54a-5fee-f1d7-1dc8" type="min"/>
</constraints>
<entryLinks>
<entryLink id="6176-c633-6203-d255" name="Minor Combi-Weapon - Flamer" hidden="false" collective="false" import="true" targetId="34c4-db99-db36-0f2a" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="5.0"/>
</costs>
</entryLink>
<entryLink id="c3be-d3a2-7d71-bf0e" name="Magna Combi-Weapon - Meltagun" hidden="false" collective="false" import="true" targetId="0d1c-227e-a3f8-cd63" type="selectionEntry">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="10.0"/>
</costs>
</entryLink>
<entryLink id="5df0-2fc6-a4ac-2fcf" name="Combi-Bolter" hidden="false" collective="false" import="true" targetId="a498-c66f-9eb7-ca9a" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="70.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="cb99-db0b-3c35-1894" name="Dedicated Transport" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="da50-52b8-f67f-d9f4" type="max"/>
</constraints>
<entryLinks>
<entryLink id="9a77-82bb-35c7-ad9a" name="Land Raider Spartan" hidden="false" collective="false" import="true" targetId="bac1-f30e-2c04-d27d" type="selectionEntry"/>
<entryLink id="f489-0fd9-fa96-2acb" name="Land Raider Proteus Carrier" hidden="false" collective="false" import="true" targetId="c123-bdc6-a6ba-79a2" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true"/>
</modifiers>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="599c-723a-7917-cff8" name="The entire squad may swap their combi-bolters for:" hidden="false" collective="false" import="true">
<entryLinks>
<entryLink id="15d8-2b31-3173-523b" name="Dragonscale Shield" hidden="false" collective="false" import="true" targetId="489d-88d0-a0d8-b3e6" type="selectionEntry">
<modifiers>
<modifier type="increment" field="d2ee-04cb-5f8a-2642" value="5.0"/>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="30b1-9a31-ce7d-22a6" type="max"/>
</constraints>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="5.0"/>
</costs>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="0202-ea46-e65e-99e9" name="Cataphractii Terminator Armour" hidden="false" collective="false" import="true" targetId="7c9b-b9ab-9a40-8eb5" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="fb8a-ab72-52ce-38f3" name="Cassian Dracos Reborn" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="05bb-a7ee-45fa-877a" type="max"/>
</constraints>
<profiles>
<profile id="03c1-b57e-9f00-23a6" name="Cassian Dracos Reborn" hidden="false" typeId="4bb2-cb95-e6c8-5a21" typeName="Unit">
<characteristics>
<characteristic name="Unit Type" typeId="ddd7-6f5c-a939-b69e">Dreadnought (Heavy, Unique)</characteristic>
<characteristic name="Move" typeId="893e-2d76-8f04-44e5">6"</characteristic>
<characteristic name="WS" typeId="cc42-7ed5-7092-5c84">5</characteristic>
<characteristic name="BS" typeId="74ae-c840-0036-d244">5</characteristic>
<characteristic name="S" typeId="e478-41d4-a092-48a8">6</characteristic>
<characteristic name="T" typeId="c32b-5fdd-3fbe-9b1f">6</characteristic>
<characteristic name="W" typeId="57ee-1126-32a9-5672">5</characteristic>
<characteristic name="I" typeId="62d3-22d7-2d49-52dc">4</characteristic>
<characteristic name="A" typeId="f111-2ce5-dd12-d6b0">4</characteristic>
<characteristic name="Ld" typeId="e8a6-1da9-d384-8727">10</characteristic>
<characteristic name="Save" typeId="e593-6b3c-f169-04f0">2+</characteristic>
</characteristics>
</profile>
<profile id="0f09-cbd9-a8be-5706" name="Two Gravis power fists with in-built Dragon’s breath heavy flamers.*" publicationId="d0df-7166-5cd3-89fd" page="69" hidden="false" typeId="2a1f-7837-f0ef-be44" typeName="Wargear Item">
<characteristics>
<characteristic name="Description" typeId="347e-ee4a-764f-6be3">*The additional close combat attacks are already included in profile.</characteristic>
</characteristics>
</profile>
</profiles>
<rules>
<rule id="1516-c458-401d-f865" name="The Voice of the Machine" publicationId="d0df-7166-5cd3-89fd" page="69" hidden="false">
<description>Cassian Dracos Reborn has the Cybertheurgic Arcana: Artificia Machina (see Liber Mechanicum).</description>
</rule>
<rule id="34da-6158-0050-f6c2" name="Avatar of the Sacred Flames" publicationId="d0df-7166-5cd3-89fd" page="69" hidden="false">
<description>As long as no HQ choices other than Xiaphas Jurr and Nârik Dreygur are included in the same Detachment, Cassian Dracos Reborn may be selected as the army’s Warlord. If selected as the army’s Warlord, Cassian Dracos must use the Bloody-handed Warlord Trait.</description>
</rule>
</rules>
<infoLinks>
<infoLink id="61e5-b6c9-2ba2-c317" name="Ferromantic Deflector" hidden="false" targetId="7884-e18a-16ee-068c" type="profile"/>
<infoLink id="f519-be14-82e4-042f" name="Loyalist" hidden="false" targetId="d1de-a45d-2b9b-c878" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="5331-cf6a-8ca6-dc20" name="Dreadnought Unit-type:" hidden="false" targetId="4280-4963-02b5-e31d" primary="true"/>
<categoryLink id="3af7-46b2-2419-4a55" name="Heavy" hidden="false" targetId="9231-183c-b97b-63f9" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="8df9-b411-be3d-51a9" name="Dreadnought Drop Pod" hidden="false" collective="false" import="true" targetId="1ffe-82e4-12db-538d" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="113d-649d-2712-e7d3" type="max"/>
</constraints>
</entryLink>
<entryLink id="2df1-a876-8813-ed61" name="Gravis Power Fist" hidden="false" collective="false" import="true" targetId="08be-6994-6a63-6279" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="becd-2d72-199e-92cf" type="min"/>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="73ca-d233-ba23-6352" type="max"/>
</constraints>
</entryLink>
<entryLink id="edb7-11c3-d4c5-6818" name="Dragon's Breath Heavy Flamer" hidden="false" collective="false" import="true" targetId="1a5c-0c5f-d798-a067" type="selectionEntry">
<modifiers>
<modifier type="set" field="name" value="In-built Dragon's Breath Heavy Flamer"/>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="eb96-3d6b-1505-61c9" type="max"/>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6784-262f-b315-51f5" type="min"/>
</constraints>
</entryLink>
<entryLink id="5e10-2ac4-044b-8d62" name="Warlord" hidden="false" collective="false" import="true" targetId="0176-56a3-d590-b103" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="3766-ea98-0aa7-62d0" type="greaterThan"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="1b79-1951-5a63-4b9e" type="greaterThan"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="3760-204e-444c-1044" type="greaterThan"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="25a2-7a52-632a-6b2c" type="greaterThan"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="f806-8a4e-d0d6-beaa" type="greaterThan"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="03be-5d55-d05a-771d" type="greaterThan"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="e337-8239-5e92-7f5f" type="greaterThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e38e-3f0f-0960-5a76" type="max"/>
</constraints>
<entryLinks>
<entryLink id="b5b6-e87c-10c6-efbf" name="Bloody-handed" hidden="false" collective="false" import="true" targetId="2b87-826d-22a1-682c" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5e96-241f-12f1-2c4c" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5f0f-19bf-18cb-027d" type="max"/>
</constraints>
</entryLink>
</entryLinks>
</entryLink>
</entryLinks>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="310.0"/>
</costs>
</selectionEntry>
<selectionEntry id="74f6-96f4-ee55-9c78" name="Lord Chaplain Nomus Rhy'Tan" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="918e-d896-4cbf-4b53" type="max"/>
</constraints>
<profiles>
<profile id="4307-c42a-fc2f-5651" name="Lord Chaplain Nomus Rhy'Tan" publicationId="d0df-7166-5cd3-89fd" page="70" hidden="false" typeId="4bb2-cb95-e6c8-5a21" typeName="Unit">
<characteristics>
<characteristic name="Unit Type" typeId="ddd7-6f5c-a939-b69e">Infantry (Character, Unique)</characteristic>
<characteristic name="Move" typeId="893e-2d76-8f04-44e5">7"</characteristic>
<characteristic name="WS" typeId="cc42-7ed5-7092-5c84">4</characteristic>
<characteristic name="BS" typeId="74ae-c840-0036-d244">4</characteristic>
<characteristic name="S" typeId="e478-41d4-a092-48a8">4</characteristic>
<characteristic name="T" typeId="c32b-5fdd-3fbe-9b1f">4</characteristic>
<characteristic name="W" typeId="57ee-1126-32a9-5672">3</characteristic>
<characteristic name="I" typeId="62d3-22d7-2d49-52dc">5</characteristic>
<characteristic name="A" typeId="f111-2ce5-dd12-d6b0">4</characteristic>
<characteristic name="Ld" typeId="e8a6-1da9-d384-8727">10</characteristic>
<characteristic name="Save" typeId="e593-6b3c-f169-04f0">2+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="5cd8-9002-a68a-7198" name="Master of the Legion" hidden="false" targetId="c772-87ea-d49c-c7ba" type="rule"/>
<infoLink id="61ab-fc87-edda-aab7" name="Relentless" hidden="false" targetId="7adf-ac9a-5035-522d" type="rule"/>
<infoLink id="4c76-c529-12b4-d083" name="Stubborn" hidden="false" targetId="7989-1f2c-a43d-82ae" type="rule"/>
<infoLink id="af12-4093-15a8-1270" name="Hatred (X)" hidden="false" targetId="dc0b-fe69-6b71-e0a4" type="rule">
<modifiers>
<modifier type="set" field="name" value="Hatred (Everything)"/>
</modifiers>
</infoLink>
</infoLinks>
<categoryLinks>
<categoryLink id="f22c-47a5-ca44-ccdc" name="Infantry:" hidden="false" targetId="8b4f-bfe2-ce7b-f1b1" primary="false"/>
<categoryLink id="b624-3e54-171d-2b09" name="Legiones Astartes" hidden="false" targetId="11f2-472f-c1d1-9ae9" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="ad7a-6a4c-6cc0-a007" name="Darkstar Falling" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b12d-de34-e96b-d4b0" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="950b-f722-41c3-dd89" type="max"/>
</constraints>
<profiles>
<profile id="56af-6142-3b02-9ee6" name="Darkstar Falling" publicationId="d0df-7166-5cd3-89fd" page="70" hidden="false" typeId="1a1a-e592-2849-a5c0" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="95ba-cda7-b831-6066">-</characteristic>
<characteristic name="Strength" typeId="24d9-b8e1-a355-2458">+2</characteristic>
<characteristic name="AP" typeId="f7a6-e0d8-7973-cd8d">2</characteristic>
<characteristic name="Type" typeId="2f86-c8b4-b3b4-3ff9">Melee, Two handed, Unwieldy</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="7d13-8a2a-aa1c-b384" name="Two-handed" hidden="false" targetId="4c23-e863-a569-7617" type="rule"/>
<infoLink id="d978-604d-a917-e108" name="Unwieldy" hidden="false" targetId="1570-c21a-881f-8b8a" type="rule"/>
</infoLinks>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="b3de-e055-306a-c9c0" name="Warlord" hidden="false" collective="false" import="true" targetId="0176-56a3-d590-b103" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c76d-b08f-ea58-b2f8" type="max"/>
</constraints>
<rules>
<rule id="340c-70cd-d9a1-ae39" name="Warlord: Keeper of the Keys" publicationId="d0df-7166-5cd3-89fd" page="70" hidden="false">
<description>Any model with the Dreadnought Unit Type and the Legiones Astartes (Salamanders) special rule within 6" of a Warlord with this Trait may add +2" to their Charge Distance. In addition, an army whose Warlord has this Trait may make an additional Reaction during the opposing player’s Shooting phase as long as the Warlord has not been removed as a casualty.</description>
</rule>
</rules>
</entryLink>
<entryLink id="bc8e-4fe8-003b-7976" name="Minor Combi-Weapon - Flamer" hidden="false" collective="false" import="true" targetId="34c4-db99-db36-0f2a" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ba4c-5848-4df8-f151" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="323b-ffdc-bea2-e0ec" type="min"/>
</constraints>
</entryLink>
<entryLink id="6281-3735-3315-6f1d" name="Bolt Pistol" hidden="false" collective="false" import="true" targetId="e5ae-6872-37aa-8600" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0cb9-23d3-7dbb-f0c0" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2ead-24db-9898-c66c" type="max"/>
</constraints>
</entryLink>
<entryLink id="eb74-cc50-9659-586b" name="Frag Grenades" hidden="false" collective="false" import="true" targetId="cf9c-327b-3449-00d7" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2009-42cc-a83a-a974" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="aa8d-9626-5d34-36ec" type="max"/>
</constraints>
</entryLink>
<entryLink id="5927-cd3c-e333-8755" name="Krak Grenades" hidden="false" collective="false" import="true" targetId="99df-2421-acf7-a5ad" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f6a0-29cd-adb9-6451" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1605-be23-169e-08d4" type="max"/>
</constraints>
</entryLink>
<entryLink id="4de3-b46b-b96e-b470" name="Artificer Armour" hidden="false" collective="false" import="true" targetId="583e-62cb-53f1-f952" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="256b-3a34-d900-fe00" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4bfe-a939-bd09-c10f" type="max"/>
</constraints>
</entryLink>
<entryLink id="f509-080e-d334-a5a3" name="Iron Halo" hidden="false" collective="false" import="true" targetId="b081-bf3c-f43d-4bd5" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a83c-7749-70c2-890c" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3016-4345-4f5f-aaac" type="max"/>
</constraints>
</entryLink>
<entryLink id="dffd-a4de-8572-9947" name="Mantle of the Elder Drake" hidden="false" collective="false" import="true" targetId="bba6-42e4-5147-fe4f" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6679-560b-88ad-cf03" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2184-eed5-4497-8364" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="215.0"/>
</costs>
</selectionEntry>
<selectionEntry id="30b8-05a5-fef7-fe66" name="Xiaphas Jurr" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="ad8d-9fdb-7550-1d9d" type="max"/>
</constraints>
<profiles>
<profile id="cb39-0702-a198-6f3a" name="Xiaphas Jurr" publicationId="d0df-7166-5cd3-89fd" page="71" hidden="false" typeId="4bb2-cb95-e6c8-5a21" typeName="Unit">
<characteristics>
<characteristic name="Unit Type" typeId="ddd7-6f5c-a939-b69e">Infantry (Character, Unique)</characteristic>
<characteristic name="Move" typeId="893e-2d76-8f04-44e5">7"</characteristic>
<characteristic name="WS" typeId="cc42-7ed5-7092-5c84">5</characteristic>
<characteristic name="BS" typeId="74ae-c840-0036-d244">5</characteristic>
<characteristic name="S" typeId="e478-41d4-a092-48a8">4</characteristic>
<characteristic name="T" typeId="c32b-5fdd-3fbe-9b1f">4</characteristic>
<characteristic name="W" typeId="57ee-1126-32a9-5672">3</characteristic>
<characteristic name="I" typeId="62d3-22d7-2d49-52dc">5</characteristic>
<characteristic name="A" typeId="f111-2ce5-dd12-d6b0">4</characteristic>
<characteristic name="Ld" typeId="e8a6-1da9-d384-8727">10</characteristic>
<characteristic name="Save" typeId="e593-6b3c-f169-04f0">2+</characteristic>
</characteristics>
</profile>
</profiles>
<rules>
<rule id="903d-5066-fcd4-6646" name="Prophet of the Flame" publicationId="d0df-7166-5cd3-89fd" page="71" hidden="false">
<description>Xiaphas Jurr has the Pyromancy discipline but counts as having Leadership 7 for the purposes of making Psychic checks.</description>
</rule>
</rules>
<infoLinks>
<infoLink id="3180-2202-fd13-8a8a" name="Relentless" hidden="false" targetId="7adf-ac9a-5035-522d" type="rule"/>
<infoLink id="4460-a5a9-4d10-ecb4" name="Stubborn" hidden="false" targetId="7989-1f2c-a43d-82ae" type="rule"/>
<infoLink id="588e-6359-b745-8f85" name="Hatred (X)" hidden="false" targetId="dc0b-fe69-6b71-e0a4" type="rule">
<modifiers>
<modifier type="set" field="name" value="Hatred (Everything)"/>
</modifiers>
</infoLink>
</infoLinks>
<categoryLinks>
<categoryLink id="8e0a-7307-985f-50a6" name="Infantry:" hidden="false" targetId="8b4f-bfe2-ce7b-f1b1" primary="false"/>
<categoryLink id="4585-3e1e-8e4c-4a36" name="Legiones Astartes" hidden="false" targetId="11f2-472f-c1d1-9ae9" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="9c05-d6b4-ed8b-c06a" name="Ignatus" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="641e-c75a-be68-c063" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="49a3-8780-d396-5d50" type="min"/>
</constraints>
<profiles>
<profile id="aebd-6744-2b6a-6aab" name="Ignatus" publicationId="d0df-7166-5cd3-89fd" page="71" hidden="false" typeId="1a1a-e592-2849-a5c0" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="95ba-cda7-b831-6066">-</characteristic>
<characteristic name="Strength" typeId="24d9-b8e1-a355-2458">+2</characteristic>
<characteristic name="AP" typeId="f7a6-e0d8-7973-cd8d">3</characteristic>
<characteristic name="Type" typeId="2f86-c8b4-b3b4-3ff9">Melee, Master-crafted, Blind</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="2cec-8f0d-b8e7-153c" name="Blind" hidden="false" targetId="d836-747d-07d6-2b63" type="rule"/>
<infoLink id="f010-74ed-ea87-6b5b" name="Master-crafted" hidden="false" targetId="6de0-55b0-bf21-48b9" type="rule"/>
</infoLinks>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="f728-18e4-8ddd-cf4a" name="The Burning Halo" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a491-328a-d198-37a8" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="904d-d426-2efd-c0eb" type="min"/>
</constraints>
<profiles>
<profile id="c859-89a8-8127-5326" name="The Burning Halo" publicationId="d0df-7166-5cd3-89fd" page="71" hidden="false" typeId="2a1f-7837-f0ef-be44" typeName="Wargear Item">
<characteristics>
<characteristic name="Description" typeId="347e-ee4a-764f-6be3">The Burning Halo provides a 4+ Invulnerable Save, and automatically inflicts D3 Hits on the target unit when making an Overwatch Reaction, resolved at Strength 4, AP -.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="3fd8-a2c8-d71c-5fee" name="Artificer Armour" hidden="false" collective="false" import="true" targetId="583e-62cb-53f1-f952" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2c17-b7ea-f6cf-10b9" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="27f6-f6ac-ae46-ad4a" type="min"/>
</constraints>
</entryLink>
<entryLink id="c223-d630-15c1-c75d" name="Bolt Pistol" hidden="false" collective="false" import="true" targetId="e5ae-6872-37aa-8600" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5233-49f8-ae4f-83b5" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b2f1-c530-bb8f-8c76" type="max"/>
</constraints>
</entryLink>
<entryLink id="8ef5-9570-8242-2c45" name="Frag Grenades" hidden="false" collective="false" import="true" targetId="cf9c-327b-3449-00d7" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ee64-93f3-e775-5091" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7378-84d3-ba17-bab9" type="max"/>
</constraints>
</entryLink>
<entryLink id="5dcd-e5b9-32d3-2ebb" name="Krak Grenades" hidden="false" collective="false" import="true" targetId="99df-2421-acf7-a5ad" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d42d-6e64-a870-9a1d" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d08a-3630-5987-d9dd" type="max"/>
</constraints>
</entryLink>
<entryLink id="338b-c02f-8448-41e8" name="Dragonscale Shield" hidden="false" collective="false" import="true" targetId="489d-88d0-a0d8-b3e6" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3b8e-1c0a-d954-56cd" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="bfd0-aaad-f4bf-42d2" type="max"/>
</constraints>
</entryLink>
<entryLink id="ea59-d357-bf9b-9ce7" name="Warlord" hidden="false" collective="false" import="true" targetId="0176-56a3-d590-b103" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a43c-4dd6-0187-b9ed" type="max"/>
</constraints>
<rules>
<rule id="ce14-6a37-9500-4a7b" name="Warlord: Beacon of Hope" hidden="false">
<description>As long as Xiaphas Jurr has not been removed from play, is in Reserve or Embarked upon a model with the Transport Sub-type, a single friendly unit comprised of models with the Legiones Astartes (Salamanders) special rules may choose to use Xiaphas Jurr’s unmodified Leadership value instead of their own, when making a Morale check or Pinning test in any turn.</description>
</rule>
</rules>
</entryLink>
</entryLinks>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="145.0"/>
</costs>
</selectionEntry>
</sharedSelectionEntries>
<catalogueLinks>
<catalogueLink id="2f60-18fb-e6ed-8574" name="(HH V2) Legions Astartes" targetId="6393-649c-7213-a327" type="catalogue" importRootEntries="true"/>
</catalogueLinks>