forked from BSData/horus-heresy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
2022 - Daemons - Daemons of the Ruinstorm.cat
2538 lines (2514 loc) · 174 KB
/
2022 - Daemons - Daemons of the Ruinstorm.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="ac63-5340-2e9e-1eb6" name="Daemons - Daemons of the Ruinstorm" gameSystemId="28d4-bd2e-4858-ece6" gameSystemRevision="77" revision="11" battleScribeVersion="2.03" type="catalogue">
<entryLinks>
<entryLink import="false" name="Daemons of the Ruinstorm" hidden="false" type="selectionEntry" id="e271-f450-1c28-5b7b" targetId="afca-3047-fb26-d097">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="142b-4893-b1b8-df6b"/>
</constraints>
<categoryLinks>
<categoryLink targetId="e90d-e5a8-f42d-da84" id="27c7-e48-9b25-b38f" primary="true" name="Allegiance:"/>
</categoryLinks>
<modifiers>
<modifier type="add" field="category" value="7b69-bf2f-4547-e83b">
<conditions>
<condition field="selections" scope="ancestor" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="5430-5be1-1613-be44" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink import="false" name="Ruinstorm Daemon Sovereign" hidden="false" type="selectionEntry" id="61db-a83f-c0b6-90fd" targetId="2f3f-adc4-b19f-a5c7">
<categoryLinks>
<categoryLink targetId="36c3-e85e-97cc-c503" id="5bef-275-968-1f88" primary="false" name="Unit:"/>
<categoryLink targetId="f823-8c1d-6a87-26a1" id="9b39-aee6-628-7679" primary="false" name="Compulsory HQ:"/>
<categoryLink targetId="4f85-eb33-30c9-8f51" id="6903-a2c4-3819-1892" primary="true" name="HQ:"/>
</categoryLinks>
</entryLink>
<entryLink import="false" name="Ruinstorm Daemon Hierarch" hidden="false" type="selectionEntry" id="50a8-b11-67b1-26b5" targetId="ae8b-ee65-95b6-a8f9">
<categoryLinks>
<categoryLink targetId="36c3-e85e-97cc-c503" id="6800-5472-898b-94d1" primary="false" name="Unit:"/>
<categoryLink targetId="f823-8c1d-6a87-26a1" id="77be-912b-c5fb-b948" primary="false" name="Compulsory HQ:"/>
<categoryLink targetId="4f85-eb33-30c9-8f51" id="d7d1-8d7c-5d78-bed1" primary="true" name="HQ:"/>
</categoryLinks>
</entryLink>
<entryLink import="false" name="Ruinstorm Daemon Harbinger" hidden="false" type="selectionEntry" id="aaad-9ba0-9f12-f55" targetId="5a2e-abe2-3044-3c1c">
<categoryLinks>
<categoryLink targetId="36c3-e85e-97cc-c503" id="f277-8c54-15a0-5f68" primary="false" name="Unit:"/>
<categoryLink targetId="f823-8c1d-6a87-26a1" id="8ac4-47e5-8e06-a2f" primary="false" name="Compulsory HQ:"/>
<categoryLink targetId="4f85-eb33-30c9-8f51" id="3bfa-8d7e-75a9-1b55" primary="true" name="HQ:"/>
</categoryLinks>
</entryLink>
<entryLink import="false" name="Ruinstorm Daemon Brutes" hidden="false" type="selectionEntry" id="24b7-aabd-c772-ff9" targetId="2219-cb60-b52-a36c">
<categoryLinks>
<categoryLink targetId="36c3-e85e-97cc-c503" id="e447-148d-c915-ad03" primary="false" name="Unit:"/>
<categoryLink targetId="bb1f-ae32-b587-c3e1" id="9413-d3f9-f69b-6129" primary="false" name="Compulsory Elite:"/>
<categoryLink targetId="7aee-565f-b0ae-294e" id="f3ae-a32c-5970-ecc" primary="true" name="Elites:"/>
</categoryLinks>
</entryLink>
<entryLink import="false" name="Ruinstorm Daemon Beasts" hidden="false" type="selectionEntry" id="6c10-5ca2-fe18-f7b2" targetId="69ad-927-c71b-6b24">
<categoryLinks>
<categoryLink targetId="36c3-e85e-97cc-c503" id="aa6e-9ff9-e76-7758" primary="false" name="Unit:"/>
<categoryLink targetId="bb1f-ae32-b587-c3e1" id="bcb1-847b-a07a-4052" primary="false" name="Compulsory Elite:"/>
<categoryLink targetId="7aee-565f-b0ae-294e" id="cda2-6ccb-5d6a-739a" primary="true" name="Elites:"/>
</categoryLinks>
</entryLink>
<entryLink import="false" name="Ruinstorm Lesser Daemons" hidden="false" type="selectionEntry" id="7a1e-4bc1-85cb-7569" targetId="157c-7592-a6b9-f96">
<categoryLinks>
<categoryLink targetId="36c3-e85e-97cc-c503" id="85fe-4c18-ede4-a0d7" primary="false" name="Unit:"/>
<categoryLink targetId="9b5d-fac7-799b-d7e7" id="8307-4506-c34b-adbe" primary="true" name="Troops:"/>
<categoryLink targetId="8f42-a824-fb5f-8fea" id="c3e1-270c-5235-177" primary="false" name="Compulsory Troops:"/>
</categoryLinks>
</entryLink>
<entryLink import="false" name="Ruinstorm Daemon Swarms" hidden="false" type="selectionEntry" id="d155-b3f4-5fca-6df2" targetId="bb35-e585-a226-28e">
<categoryLinks>
<categoryLink targetId="36c3-e85e-97cc-c503" id="f5a1-1368-93db-e3d2" primary="false" name="Unit:"/>
<categoryLink targetId="9b5d-fac7-799b-d7e7" id="d41a-a3a0-91df-9626" primary="true" name="Troops:"/>
</categoryLinks>
</entryLink>
<entryLink import="false" name="Ruinstorm Daemon Cavalry" hidden="false" type="selectionEntry" id="47f6-44fe-d2ec-819e" targetId="b7b5-c59a-768c-276c">
<categoryLinks>
<categoryLink targetId="36c3-e85e-97cc-c503" id="f1c9-ed9e-71f-8fe9" primary="false" name="Unit:"/>
<categoryLink targetId="20ef-cd01-a8da-376e" id="fdaa-7d5c-1cc0-ae42" primary="true" name="Fast Attack:"/>
<categoryLink targetId="3c75-d5f8-1ad4-24e5" id="f650-576a-51fe-77a3" primary="false" name="Compulsory Fast Attack:"/>
</categoryLinks>
</entryLink>
<entryLink import="false" name="Ruinstorm Daemon Harriers" hidden="false" type="selectionEntry" id="af04-d38a-aa6e-8d43" targetId="14c1-3063-c9b4-d99b">
<categoryLinks>
<categoryLink targetId="36c3-e85e-97cc-c503" id="7ad1-ecbc-cf4d-7e90" primary="false" name="Unit:"/>
<categoryLink targetId="20ef-cd01-a8da-376e" id="45b1-7cfa-5ef1-d973" primary="true" name="Fast Attack:"/>
<categoryLink targetId="3c75-d5f8-1ad4-24e5" id="29ec-205a-4ab4-c76f" primary="false" name="Compulsory Fast Attack:"/>
</categoryLinks>
</entryLink>
<entryLink import="false" name="Greater Ruinstorm Daemon Beast" hidden="false" type="selectionEntry" id="271c-cc74-3c17-d759" targetId="41a0-6caa-af06-3684">
<categoryLinks>
<categoryLink targetId="36c3-e85e-97cc-c503" id="1f63-b797-ecca-9698" primary="false" name="Unit:"/>
<categoryLink targetId="7031-469a-1aeb-eab0" id="e6c-80f3-6dcc-9285" primary="true" name="Heavy Support:"/>
<categoryLink targetId="030f-3801-4f54-e7f8" id="3c93-e4ed-a82b-172c" primary="false" name="Compulsory Heavy Support:"/>
</categoryLinks>
</entryLink>
<entryLink import="false" name="Ruinstorm Daemon Behemoth" hidden="false" type="selectionEntry" id="59ea-d83-a465-2697" targetId="240a-1822-9e4f-3080">
<categoryLinks>
<categoryLink targetId="36c3-e85e-97cc-c503" id="4366-6f11-50bb-788b" primary="false" name="Unit:"/>
<categoryLink targetId="7031-469a-1aeb-eab0" id="b906-2c88-de71-f891" primary="true" name="Heavy Support:"/>
<categoryLink targetId="030f-3801-4f54-e7f8" id="8411-4fbb-1d6c-b7bf" primary="false" name="Compulsory Heavy Support:"/>
</categoryLinks>
</entryLink>
<entryLink import="false" name="Ruinstorm Arch-Daemon" hidden="false" type="selectionEntry" id="bde9-cbb2-1c62-da9a" targetId="1fbb-b82e-ae1e-5a12">
<categoryLinks>
<categoryLink targetId="36c3-e85e-97cc-c503" id="ac16-61f4-489b-9b43" primary="false" name="Unit:"/>
<categoryLink targetId="c658-dc6b-727b-c488" id="b3f-ca75-5e86-c6fe" primary="true" name="Lords of War:"/>
<categoryLink targetId="2eaf-32d6-9d1d-d906" id="2b18-2927-40b4-a00a" primary="false" name="LoW & Primarchs (25% Limit)"/>
</categoryLinks>
</entryLink>
<entryLink import="false" name="Ka’bandha Unbound" hidden="false" type="selectionEntry" id="d606-d66-9d34-6fb4" targetId="baa5-baed-1a62-c820">
<categoryLinks>
<categoryLink targetId="36c3-e85e-97cc-c503" id="5a84-831c-e73f-7391" primary="false" name="Unit:"/>
<categoryLink targetId="c658-dc6b-727b-c488" id="8b06-8469-b53d-66f0" primary="true" name="Lords of War:"/>
<categoryLink targetId="2eaf-32d6-9d1d-d906" id="4ff1-219d-774a-e2e7" primary="false" name="LoW & Primarchs (25% Limit)"/>
</categoryLinks>
</entryLink>
<entryLink import="false" name="Cor’bax Utterblight Unbound" hidden="false" type="selectionEntry" id="957e-2292-544d-8031" targetId="ef9d-3ad6-1f39-b84b">
<categoryLinks>
<categoryLink targetId="36c3-e85e-97cc-c503" id="6452-7f07-bc29-5d6f" primary="false" name="Unit:"/>
<categoryLink targetId="c658-dc6b-727b-c488" id="69a1-4379-610d-416c" primary="true" name="Lords of War:"/>
<categoryLink targetId="2eaf-32d6-9d1d-d906" id="909c-dabc-d82d-7bf1" primary="false" name="LoW & Primarchs (25% Limit)"/>
</categoryLinks>
</entryLink>
<entryLink import="false" name="Samus Unbound" hidden="false" type="selectionEntry" id="6f48-b881-40f3-5da" targetId="63f0-9b87-6482-87ee">
<categoryLinks>
<categoryLink targetId="36c3-e85e-97cc-c503" id="d89d-34dc-cb3d-7b9f" primary="false" name="Unit:"/>
<categoryLink targetId="c658-dc6b-727b-c488" id="e313-85de-a363-2ca9" primary="true" name="Lords of War:"/>
<categoryLink targetId="2eaf-32d6-9d1d-d906" id="3bd5-dd10-1738-7cb0" primary="false" name="LoW & Primarchs (25% Limit)"/>
</categoryLinks>
</entryLink>
<entryLink import="true" name="Expeditionary Navigator" hidden="false" type="selectionEntry" id="9c45-3bab-77a7-1588" targetId="ce53-e40c-65b6-4d3a"/>
<entryLink import="true" name="Davinite Lodge Priest" hidden="false" type="selectionEntry" id="430c-1c94-e60f-653" targetId="fe13-4a8f-b2af-1e40"/>
<entryLink import="true" name="Cults Abominatio" hidden="false" type="selectionEntry" id="5b8b-6c4f-15ec-ba95" targetId="4a00-03d4-a850-884b"/>
</entryLinks>
<sharedSelectionEntries>
<selectionEntry type="unit" import="true" name="Ruinstorm Daemon Sovereign" hidden="false" id="2f3f-adc4-b19f-a5c7" publicationId="8775-88f5-cfdd-24f6" page="6">
<selectionEntries>
<selectionEntry type="model" import="true" name="Sovereign" hidden="false" id="3964-e438-272c-42cc" page="6" publicationId="8775-88f5-cfdd-24f6">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="3917-7d65-d159-8e5c"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="d826-d520-7492-454c"/>
</constraints>
<profiles>
<profile name="Sovereign" typeId="4bb2-cb95-e6c8-5a21" typeName="Unit" hidden="false" id="b21a-c8cb-fc4-6d43" publicationId="8775-88f5-cfdd-24f6" page="6">
<characteristics>
<characteristic name="Unit Type" typeId="ddd7-6f5c-a939-b69e">Daemon (Character, Monstrous)</characteristic>
<characteristic name="Move" typeId="893e-2d76-8f04-44e5">8</characteristic>
<characteristic name="WS" typeId="cc42-7ed5-7092-5c84">6</characteristic>
<characteristic name="BS" typeId="74ae-c840-0036-d244">5</characteristic>
<characteristic name="S" typeId="e478-41d4-a092-48a8">7</characteristic>
<characteristic name="T" typeId="c32b-5fdd-3fbe-9b1f">6</characteristic>
<characteristic name="W" typeId="57ee-1126-32a9-5672">7</characteristic>
<characteristic name="I" typeId="62d3-22d7-2d49-52dc">6</characteristic>
<characteristic name="A" typeId="f111-2ce5-dd12-d6b0">5</characteristic>
<characteristic name="Ld" typeId="e8a6-1da9-d384-8727">9</characteristic>
<characteristic name="Save" typeId="e593-6b3c-f169-04f0">3+</characteristic>
</characteristics>
<modifiers>
<modifier type="append" field="ddd7-6f5c-a939-b69e" value="(Heavy)">
<conditions>
<condition field="selections" scope="2f3f-adc4-b19f-a5c7" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b7db-bf16-47c5-dc05" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
</profile>
</profiles>
<categoryLinks>
<categoryLink targetId="e699-d9cd-e68e-46d9" id="c75d-cc84-4f8f-91b7" name="Daemon Unit Type" primary="false"/>
<categoryLink targetId="f75a-d5c1-59ba-5c5a" id="f366-260f-4815-b01d" name="Character" primary="false"/>
<categoryLink targetId="7d95-f9d1-440a-67bd" id="4729-9aff-48a8-b0ff" name="Monstrous Sub-type" primary="false"/>
</categoryLinks>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="350"/>
</costs>
<entryLinks>
<entryLink import="true" name="The Ætheric Dominion (Unit)" hidden="false" type="selectionEntryGroup" id="d12d-ef33-dfdb-2ec" targetId="caad-e621-38e5-cb5f"/>
<entryLink import="true" name="Warlord" hidden="false" type="selectionEntry" id="c7e9-b5ee-aac-92c0" targetId="0176-56a3-d590-b103"/>
<entryLink import="true" name="Warlord Traits (Ruinstorm Daemons)" hidden="false" type="selectionEntryGroup" id="2a1-8be4-17b-75ca" targetId="2f76-74c1-d329-d3ab"/>
</entryLinks>
<categoryLinks>
<categoryLink targetId="e699-d9cd-e68e-46d9" id="65b8-a251-c47a-d600" primary="false" name="Daemon Unit Type"/>
<categoryLink targetId="f75a-d5c1-59ba-5c5a" id="ca77-e05c-8eea-841b" primary="false" name="Character"/>
<categoryLink targetId="7d95-f9d1-440a-67bd" id="3264-7be5-e979-a356" primary="false" name="Monstrous Sub-type"/>
</categoryLinks>
<infoLinks>
<infoLink id="cf0d-80f5-9ec0-dfba" name="Traitor" hidden="false" targetId="eff2-8b0e-21da-2f0d" type="rule"/>
<infoLink id="dd33-d57c-23f8-763d" name="Bulky (X)" hidden="false" targetId="676c-7b75-4b6f-9405" type="rule">
<modifiers>
<modifier type="set" value="Bulky (7)" field="name"/>
</modifiers>
</infoLink>
<infoLink id="ce7c-b51f-eb8c-ef40" name="It Will Not Die (X)" hidden="false" targetId="2784-d0be-a4e2-890f" type="rule">
<modifiers>
<modifier type="set" value="It Will Not Die (5+)" field="name"/>
</modifiers>
</infoLink>
<infoLink name="Empyrean Avatar" hidden="false" type="rule" id="bcc8-d39b-f3d9-4cba" targetId="c694-20c8-455-baca"/>
<infoLink id="74dc-d59d-306e-bde6" name="Æthereal Invulnerability (X)" hidden="false" targetId="e05e-ed23-64fb-a535" type="rule">
<modifiers>
<modifier type="set" field="name" value="Æthereal Invulnerability (4+)"/>
</modifiers>
</infoLink>
<infoLink name="Hammer of Wrath (X)" hidden="false" type="rule" id="41e0-d71f-ba88-64a6" targetId="aec0-c3aa-1e4e-1779">
<modifiers>
<modifier type="set" value="Hammer of Wrath (1)" field="name"/>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="equalTo" value="0" field="selections" scope="force" childId="e4fb-66cd-e07d-609b" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
</infoLink>
</infoLinks>
<selectionEntryGroups>
<selectionEntryGroup name="Weapon" hidden="false" id="72b7-d57a-653d-81f4" defaultSelectionEntryId="b3b5-7931-6c9b-1007">
<entryLinks>
<entryLink import="true" name="Sovereign Armaments" hidden="false" type="selectionEntry" id="b3b5-7931-6c9b-1007" targetId="c859-2be-6d66-d3da">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="2853-2539-d4a2-ddf3"/>
</constraints>
</entryLink>
<entryLink import="true" name="Sovereign Greatblade" hidden="false" type="selectionEntry" id="3881-3c88-43f-bdac" targetId="47ef-8e52-1051-2e92">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="bf49-e79d-d174-eb95"/>
</constraints>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="10"/>
</costs>
</entryLink>
</entryLinks>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="bf84-8573-9082-4042"/>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="b7b2-ebde-d9d2-f7c9"/>
</constraints>
</selectionEntryGroup>
<selectionEntryGroup name="May take up to three of the following options:" hidden="false" id="e1f6-c1d2-62c2-381b">
<constraints>
<constraint type="max" value="3" field="selections" scope="parent" shared="true" id="a31-7ef5-8250-2f15"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Ætheric Conduit" hidden="false" type="selectionEntry" id="d369-7116-5d2f-42b5" targetId="9c2-edf8-c9bd-ec05">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="30"/>
</costs>
</entryLink>
<entryLink import="true" name="Immaterial Wings" hidden="false" type="selectionEntry" id="bc4-6f59-2af1-116d" targetId="fd64-626a-d3d4-9b8e">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="30"/>
</costs>
</entryLink>
<entryLink import="true" name="Ætheric Flight" hidden="false" type="selectionEntry" id="cfc-f8bc-d665-7c0c" targetId="7647-8112-eaf7-fbea">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="15"/>
</costs>
</entryLink>
<entryLink import="true" name="Miasma of Rage" hidden="false" type="selectionEntry" id="bba1-4729-73dd-fe33" targetId="ce6-3fae-8519-e10d">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="25"/>
</costs>
</entryLink>
<entryLink import="true" name="Dark Flame" hidden="false" type="selectionEntry" id="522-facb-e9c2-c114" targetId="4499-6cd2-3673-acde">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="15"/>
</costs>
</entryLink>
<entryLink import="true" name="The Unmaking" hidden="false" type="selectionEntry" id="e74b-248c-94cc-c4d4" targetId="eb14-1d7a-62f3-60ac">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="15"/>
</costs>
</entryLink>
<entryLink import="true" name="Warp-forged Flesh" hidden="false" type="selectionEntry" id="77a7-cb9a-bac5-6e92" targetId="fe38-e422-d5c-2ed3">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="25"/>
</costs>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<modifiers>
<modifier type="add" field="category" value="9231-183c-b97b-63f9">
<conditions>
<condition field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b7db-bf16-47c5-dc05" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Ruinstorm Daemon Hierarch" hidden="false" id="ae8b-ee65-95b6-a8f9" publicationId="8775-88f5-cfdd-24f6" page="7">
<selectionEntries>
<selectionEntry type="model" import="true" name="Hierarch" hidden="false" id="bba5-7153-f7d2-facf" publicationId="8775-88f5-cfdd-24f6" page="7">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="3c45-8f06-7b8c-aa0f"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="cb15-def0-25a8-7539"/>
</constraints>
<profiles>
<profile name="Hierarch" typeId="4bb2-cb95-e6c8-5a21" typeName="Unit" hidden="false" id="8a95-e077-ac4f-6866" publicationId="8775-88f5-cfdd-24f6" page="7">
<characteristics>
<characteristic name="Unit Type" typeId="ddd7-6f5c-a939-b69e">Daemon (Character)</characteristic>
<characteristic name="Move" typeId="893e-2d76-8f04-44e5">8</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">5</characteristic>
<characteristic name="T" typeId="c32b-5fdd-3fbe-9b1f">5</characteristic>
<characteristic name="W" typeId="57ee-1126-32a9-5672">4</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">8</characteristic>
<characteristic name="Save" typeId="e593-6b3c-f169-04f0">3+</characteristic>
</characteristics>
<modifiers>
<modifier type="append" field="ddd7-6f5c-a939-b69e" value="(Heavy)">
<conditions>
<condition field="selections" scope="ae8b-ee65-95b6-a8f9" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b7db-bf16-47c5-dc05" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
</profile>
</profiles>
<categoryLinks>
<categoryLink targetId="e699-d9cd-e68e-46d9" id="df2c-3c89-475f-a078" name="Daemon Unit Type" primary="false"/>
<categoryLink targetId="f75a-d5c1-59ba-5c5a" id="f12d-a1e4-4ba4-aee2" name="Character" primary="false"/>
</categoryLinks>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="250"/>
</costs>
<entryLinks>
<entryLink import="true" name="The Ætheric Dominion (Unit)" hidden="false" type="selectionEntryGroup" id="d43f-71c8-cbf2-cff0" targetId="caad-e621-38e5-cb5f"/>
<entryLink import="true" name="Infernal Armaments" hidden="false" type="selectionEntry" id="40ef-9284-1d09-74c0" targetId="9abc-11e8-9031-d104">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="de9-d9cd-9f99-404d"/>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="d098-eed3-d888-ab67"/>
</constraints>
</entryLink>
<entryLink import="true" name="Warlord" hidden="false" type="selectionEntry" id="1655-8fed-b79a-24f6" targetId="0176-56a3-d590-b103"/>
<entryLink import="true" name="Warlord Traits (Ruinstorm Daemons)" hidden="false" type="selectionEntryGroup" id="f5c1-536d-3f92-a419" targetId="2f76-74c1-d329-d3ab"/>
</entryLinks>
<categoryLinks>
<categoryLink targetId="e699-d9cd-e68e-46d9" id="ea69-c0e0-5be1-9568" primary="false" name="Daemon Unit Type"/>
<categoryLink targetId="f75a-d5c1-59ba-5c5a" id="5946-8140-a4ef-4ce0" primary="false" name="Character"/>
</categoryLinks>
<infoLinks>
<infoLink id="16e2-54c0-9a84-d98f" name="Traitor" hidden="false" targetId="eff2-8b0e-21da-2f0d" type="rule"/>
<infoLink id="b4f5-9d04-f4a7-12a2" name="It Will Not Die (X)" hidden="false" targetId="2784-d0be-a4e2-890f" type="rule">
<modifiers>
<modifier type="set" value="It Will Not Die (6+)" field="name"/>
</modifiers>
</infoLink>
<infoLink id="e58c-5ff-1303-2110" name="Bulky (X)" hidden="false" targetId="676c-7b75-4b6f-9405" type="rule">
<modifiers>
<modifier type="set" value="Bulky (5)" field="name"/>
</modifiers>
</infoLink>
<infoLink name="Empyrean Avatar" hidden="false" type="rule" id="2715-642a-2a25-12" targetId="c694-20c8-455-baca"/>
<infoLink id="448e-5ec8-e660-1e5e" name="Æthereal Invulnerability (X)" hidden="false" targetId="e05e-ed23-64fb-a535" type="rule">
<modifiers>
<modifier type="set" field="name" value="Æthereal Invulnerability (4+)"/>
</modifiers>
</infoLink>
<infoLink name="Hammer of Wrath (X)" hidden="false" type="rule" id="9b4c-d419-6ff1-68b1" targetId="aec0-c3aa-1e4e-1779">
<modifiers>
<modifier type="set" value="Hammer of Wrath (1)" field="name"/>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="equalTo" value="0" field="selections" scope="force" childId="e4fb-66cd-e07d-609b" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
</infoLink>
</infoLinks>
<selectionEntryGroups>
<selectionEntryGroup name="May take up to two of the following options:" hidden="false" id="ea1-884d-4e8a-4a66">
<constraints>
<constraint type="max" value="2" field="selections" scope="parent" shared="true" id="3f1d-ba8-9fb3-ff7c"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Ætheric Conduit" hidden="false" type="selectionEntry" id="bf49-853-57f1-f88f" targetId="9c2-edf8-c9bd-ec05">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="25"/>
</costs>
</entryLink>
<entryLink import="true" name="Immaterial Wings" hidden="false" type="selectionEntry" id="59a9-b8c8-4643-526e" targetId="fd64-626a-d3d4-9b8e">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="25"/>
</costs>
</entryLink>
<entryLink import="true" name="Ætheric Flight" hidden="false" type="selectionEntry" id="cc4f-ab83-11dc-4441" targetId="7647-8112-eaf7-fbea">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="15"/>
</costs>
</entryLink>
<entryLink import="true" name="Miasma of Rage" hidden="false" type="selectionEntry" id="294a-5ca5-16f2-2722" targetId="ce6-3fae-8519-e10d">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="25"/>
</costs>
</entryLink>
<entryLink import="true" name="Dark Flame" hidden="false" type="selectionEntry" id="fa02-2980-4cee-9744" targetId="4499-6cd2-3673-acde">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="15"/>
</costs>
</entryLink>
<entryLink import="true" name="The Unmaking" hidden="false" type="selectionEntry" id="8e15-9876-464-91bc" targetId="eb14-1d7a-62f3-60ac">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="15"/>
</costs>
</entryLink>
<entryLink import="true" name="Warp-forged Flesh" hidden="false" type="selectionEntry" id="ce56-182b-65e3-2d5d" targetId="fe38-e422-d5c-2ed3">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="25"/>
</costs>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<modifiers>
<modifier type="add" field="category" value="9231-183c-b97b-63f9">
<conditions>
<condition field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b7db-bf16-47c5-dc05" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Ruinstorm Daemon Harbinger" hidden="false" id="5a2e-abe2-3044-3c1c" publicationId="8775-88f5-cfdd-24f6" page="8">
<selectionEntries>
<selectionEntry type="model" import="true" name="Harbinger" hidden="false" id="45fa-e6f-ff0-9c02" publicationId="8775-88f5-cfdd-24f6" page="8">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="6f73-8fd1-7e38-91be"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="b24a-ef08-ec9-aab1"/>
</constraints>
<profiles>
<profile name="Harbinger" typeId="4bb2-cb95-e6c8-5a21" typeName="Unit" hidden="false" id="2277-da36-54c2-f692" publicationId="8775-88f5-cfdd-24f6" page="8">
<characteristics>
<characteristic name="Unit Type" typeId="ddd7-6f5c-a939-b69e">Daemon (Character)</characteristic>
<characteristic name="Move" typeId="893e-2d76-8f04-44e5">8</characteristic>
<characteristic name="WS" typeId="cc42-7ed5-7092-5c84">5</characteristic>
<characteristic name="BS" typeId="74ae-c840-0036-d244">3</characteristic>
<characteristic name="S" typeId="e478-41d4-a092-48a8">4</characteristic>
<characteristic name="T" typeId="c32b-5fdd-3fbe-9b1f">5</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">3</characteristic>
<characteristic name="Ld" typeId="e8a6-1da9-d384-8727">8</characteristic>
<characteristic name="Save" typeId="e593-6b3c-f169-04f0">4+</characteristic>
</characteristics>
<modifiers>
<modifier type="append" field="ddd7-6f5c-a939-b69e" value="(Heavy)">
<conditions>
<condition field="selections" scope="5a2e-abe2-3044-3c1c" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b7db-bf16-47c5-dc05" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
</profile>
</profiles>
<categoryLinks>
<categoryLink targetId="f75a-d5c1-59ba-5c5a" id="9846-2d44-5af6-49b7" primary="false" name="Character"/>
<categoryLink targetId="e699-d9cd-e68e-46d9" id="e1fd-163c-4e37-8164" name="Daemon Unit Type" primary="false"/>
</categoryLinks>
<infoLinks>
<infoLink id="562c-a180-1968-72ab" name="Æthereal Invulnerability (X)" hidden="false" targetId="e05e-ed23-64fb-a535" type="rule">
<modifiers>
<modifier type="set" field="name" value="Æthereal Invulnerability (5+)"/>
</modifiers>
</infoLink>
<infoLink id="ae51-3edb-f81-998e" name="Traitor" hidden="false" targetId="eff2-8b0e-21da-2f0d" type="rule"/>
<infoLink name="Hammer of Wrath (X)" hidden="false" type="rule" id="663e-f215-a5a3-5da9" targetId="aec0-c3aa-1e4e-1779">
<modifiers>
<modifier type="set" value="Hammer of Wrath (1)" field="name"/>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="equalTo" value="0" field="selections" scope="force" childId="e4fb-66cd-e07d-609b" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
</infoLink>
</infoLinks>
<selectionEntryGroups>
<selectionEntryGroup name="May take one of the following options:" hidden="false" id="1cd1-d847-5f91-ad65">
<entryLinks>
<entryLink import="true" name="Ætheric Conduit" hidden="false" type="selectionEntry" id="7ae8-2f36-eea0-5d7" targetId="9c2-edf8-c9bd-ec05">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="25"/>
</costs>
</entryLink>
<entryLink import="true" name="Miasma of Rage" hidden="false" type="selectionEntry" id="fada-9abd-558f-a86e" targetId="ce6-3fae-8519-e10d">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="25"/>
</costs>
</entryLink>
<entryLink import="true" name="Warp-forged Flesh" hidden="false" type="selectionEntry" id="d08f-2e27-53ad-320f" targetId="fe38-e422-d5c-2ed3">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="25"/>
</costs>
</entryLink>
</entryLinks>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="f45c-bfb7-f86c-bc65"/>
</constraints>
</selectionEntryGroup>
<selectionEntryGroup name="Weapons" hidden="false" id="2b71-5e04-4b77-c072" defaultSelectionEntryId="ba69-b72-c0fc-1b18">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="8b67-b6ce-5d47-5f0"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="48ea-5e54-a731-953b"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Harbinger Blade" hidden="false" type="selectionEntry" id="ba69-b72-c0fc-1b18" targetId="7192-6fa1-c141-41fd"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink import="true" name="Warlord" hidden="false" type="selectionEntry" id="4c82-36a0-e269-75c9" targetId="0176-56a3-d590-b103"/>
<entryLink import="true" name="Warlord Traits (Ruinstorm Daemons)" hidden="false" type="selectionEntryGroup" id="9cfe-8d86-748f-2bf1" targetId="2f76-74c1-d329-d3ab"/>
</entryLinks>
</selectionEntry>
<selectionEntry type="model" import="true" name="Daemon Attendant" hidden="false" id="ddd6-2d23-531f-12b7" publicationId="8775-88f5-cfdd-24f6" page="8">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="45"/>
</costs>
<constraints>
<constraint type="max" value="3" field="selections" scope="parent" shared="true" id="257d-42a0-ca4e-c675"/>
</constraints>
<profiles>
<profile name="Daemon Attendant" typeId="4bb2-cb95-e6c8-5a21" typeName="Unit" hidden="false" id="83bb-9589-fdd-3d4d" publicationId="8775-88f5-cfdd-24f6" page="8">
<characteristics>
<characteristic name="Unit Type" typeId="ddd7-6f5c-a939-b69e">Daemon</characteristic>
<characteristic name="Move" typeId="893e-2d76-8f04-44e5">8</characteristic>
<characteristic name="WS" typeId="cc42-7ed5-7092-5c84">5</characteristic>
<characteristic name="BS" typeId="74ae-c840-0036-d244">3</characteristic>
<characteristic name="S" typeId="e478-41d4-a092-48a8">5</characteristic>
<characteristic name="T" typeId="c32b-5fdd-3fbe-9b1f">5</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">3</characteristic>
<characteristic name="Ld" typeId="e8a6-1da9-d384-8727">7</characteristic>
<characteristic name="Save" typeId="e593-6b3c-f169-04f0">4+</characteristic>
</characteristics>
<modifiers>
<modifier type="append" field="ddd7-6f5c-a939-b69e" value="(Heavy)">
<conditions>
<condition field="selections" scope="5a2e-abe2-3044-3c1c" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b7db-bf16-47c5-dc05" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
</profile>
</profiles>
<infoLinks>
<infoLink id="9f9f-912a-2b6a-d29a" name="Bulky (X)" hidden="false" targetId="676c-7b75-4b6f-9405" type="rule">
<modifiers>
<modifier type="set" value="Bulky (3)" field="name"/>
</modifiers>
</infoLink>
<infoLink name="Chosen Warriors" hidden="false" type="rule" id="be28-4c50-b92a-1c15" targetId="13d1-9270-6539-08ed"/>
<infoLink id="135e-8ae-843-b2a0" name="Æthereal Invulnerability (X)" hidden="false" targetId="e05e-ed23-64fb-a535" type="rule">
<modifiers>
<modifier type="set" field="name" value="Æthereal Invulnerability (5+)"/>
</modifiers>
</infoLink>
<infoLink id="9e4d-875f-444c-e9ce" name="Traitor" hidden="false" targetId="eff2-8b0e-21da-2f0d" type="rule"/>
<infoLink id="44f3-3000-56bb-5d25" name="Hammer of Wrath (X)" hidden="false" targetId="aec0-c3aa-1e4e-1779" type="rule">
<modifiers>
<modifier type="set" field="name" value="Hammer of Wrath (1)">
<conditions>
<condition type="equalTo" value="0" field="selections" scope="force" childId="e4fb-66cd-e07d-609b" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
<modifier type="set" field="name" value="Hammer of Wrath (2)">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="force" childId="e4fb-66cd-e07d-609b" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
</infoLink>
</infoLinks>
<selectionEntryGroups>
<selectionEntryGroup name="Weapons" hidden="false" id="d8e2-4c00-fe25-76b">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="dd0a-53-fbae-6a25"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="3500-d65d-bf4f-e174"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Infernal Armaments" hidden="false" type="selectionEntry" id="9a0e-a41d-3e37-555" targetId="9abc-11e8-9031-d104">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="f7a9-fe36-4f38-ac48"/>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="df9e-f7f6-68cb-2b55"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<categoryLinks>
<categoryLink targetId="e699-d9cd-e68e-46d9" id="c1f3-ac66-41ed-8304" name="Daemon Unit Type" primary="false"/>
</categoryLinks>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="135"/>
</costs>
<entryLinks>
<entryLink import="true" name="The Ætheric Dominion (Unit)" hidden="false" type="selectionEntryGroup" id="5d3d-4561-ca3-1b5a" targetId="caad-e621-38e5-cb5f"/>
</entryLinks>
<categoryLinks>
<categoryLink targetId="e699-d9cd-e68e-46d9" id="e2f3-8a17-7b35-4909" primary="false" name="Daemon Unit Type"/>
</categoryLinks>
<modifiers>
<modifier type="add" field="category" value="9231-183c-b97b-63f9">
<conditions>
<condition field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b7db-bf16-47c5-dc05" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Ruinstorm Daemon Brutes" hidden="false" id="2219-cb60-b52-a36c" publicationId="8775-88f5-cfdd-24f6" page="9">
<selectionEntries>
<selectionEntry type="model" import="true" name="Daemon Brute" hidden="false" id="e3e-4f46-2300-a35" publicationId="8775-88f5-cfdd-24f6" page="9">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="40"/>
</costs>
<constraints>
<constraint type="min" value="3" field="selections" scope="parent" shared="true" id="af97-32f4-4bc8-32fa"/>
<constraint type="max" value="9" field="selections" scope="parent" shared="true" id="b531-f549-85a7-c9fe"/>
</constraints>
<profiles>
<profile name="Daemon Brute" typeId="4bb2-cb95-e6c8-5a21" typeName="Unit" hidden="false" id="80ff-96dc-a739-2593" publicationId="8775-88f5-cfdd-24f6" page="9">
<characteristics>
<characteristic name="Unit Type" typeId="ddd7-6f5c-a939-b69e">Daemon</characteristic>
<characteristic name="Move" typeId="893e-2d76-8f04-44e5">8</characteristic>
<characteristic name="WS" typeId="cc42-7ed5-7092-5c84">5</characteristic>
<characteristic name="BS" typeId="74ae-c840-0036-d244">3</characteristic>
<characteristic name="S" typeId="e478-41d4-a092-48a8">5</characteristic>
<characteristic name="T" typeId="c32b-5fdd-3fbe-9b1f">5</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">3</characteristic>
<characteristic name="Ld" typeId="e8a6-1da9-d384-8727">7</characteristic>
<characteristic name="Save" typeId="e593-6b3c-f169-04f0">4+</characteristic>
</characteristics>
<modifiers>
<modifier type="append" field="ddd7-6f5c-a939-b69e" value="(Heavy)">
<conditions>
<condition field="selections" scope="2219-cb60-b52-a36c" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b7db-bf16-47c5-dc05" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
</profile>
</profiles>
<categoryLinks>
<categoryLink targetId="e699-d9cd-e68e-46d9" id="4b32-5023-4ef3-bad3" name="Daemon Unit Type" primary="false"/>
</categoryLinks>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="15"/>
</costs>
<entryLinks>
<entryLink import="true" name="The Ætheric Dominion (Unit)" hidden="false" type="selectionEntryGroup" id="b5cc-4b7f-66f9-183f" targetId="caad-e621-38e5-cb5f"/>
</entryLinks>
<categoryLinks>
<categoryLink targetId="e699-d9cd-e68e-46d9" id="eddf-34f6-417f-401a" primary="false" name="Daemon Unit Type"/>
</categoryLinks>
<infoLinks>
<infoLink id="2191-ca7d-4b7-721b" name="Traitor" hidden="false" targetId="eff2-8b0e-21da-2f0d" type="rule"/>
<infoLink id="8b8d-e458-95c0-4bc4" name="Bulky (X)" hidden="false" targetId="676c-7b75-4b6f-9405" type="rule">
<modifiers>
<modifier type="set" value="Bulky (3)" field="name"/>
</modifiers>
</infoLink>
<infoLink id="eaa7-e67f-765d-8210" name="Æthereal Invulnerability (X)" hidden="false" targetId="e05e-ed23-64fb-a535" type="rule">
<modifiers>
<modifier type="set" field="name" value="Æthereal Invulnerability (5+)"/>
</modifiers>
</infoLink>
<infoLink id="fd20-b609-3248-6d51" name="Hammer of Wrath (X)" hidden="false" targetId="aec0-c3aa-1e4e-1779" type="rule">
<modifiers>
<modifier type="set" field="name" value="Hammer of Wrath (1)">
<conditions>
<condition type="equalTo" value="0" field="selections" scope="force" childId="e4fb-66cd-e07d-609b" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
<modifier type="set" field="name" value="Hammer of Wrath (2)">
<conditions>
<condition type="atLeast" value="1" field="selections" scope="force" childId="e4fb-66cd-e07d-609b" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
</infoLink>
</infoLinks>
<modifiers>
<modifier type="add" field="category" value="9231-183c-b97b-63f9">
<conditions>
<condition field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b7db-bf16-47c5-dc05" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<selectionEntryGroups>
<selectionEntryGroup name="Weapons" hidden="false" id="5b87-924a-4731-f695">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="b430-a8c3-3cb1-a0ad"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="f63-b8a8-f4d7-459e"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Infernal Armaments" hidden="false" type="selectionEntry" id="88c4-a75e-482b-877e" targetId="9abc-11e8-9031-d104">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="999c-2a3d-e550-3439"/>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="18bf-736-c35b-c2cc"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Ruinstorm Daemon Beasts" hidden="false" id="69ad-927-c71b-6b24" publicationId="8775-88f5-cfdd-24f6" page="10">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="20"/>
</costs>
<entryLinks>
<entryLink import="true" name="The Ætheric Dominion (Unit)" hidden="false" type="selectionEntryGroup" id="db7d-815a-fd7-6518" targetId="caad-e621-38e5-cb5f"/>
<entryLink import="true" name="Ætheric Flight" hidden="false" type="selectionEntry" id="7f27-c850-ccf-95ab" targetId="7647-8112-eaf7-fbea">
<modifiers>
<modifier type="increment" value="5" field="d2ee-04cb-5f8a-2642">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="69ad-927-c71b-6b24" childId="8d09-1913-b79f-5c35" shared="true" roundUp="false" id="5be5-a76d-bfce-7cbe"/>
</repeats>
</modifier>
</modifiers>
</entryLink>
</entryLinks>
<categoryLinks>
<categoryLink targetId="e699-d9cd-e68e-46d9" id="b0a9-42b3-be57-e685" primary="false" name="Daemon Unit Type"/>
</categoryLinks>
<infoLinks>
<infoLink id="7e13-ac0e-f455-aed7" name="Bulky (X)" hidden="false" targetId="676c-7b75-4b6f-9405" type="rule">
<modifiers>
<modifier type="set" value="Bulky (3)" field="name"/>
</modifiers>
</infoLink>
<infoLink id="bc54-4354-f95d-b92e" name="Æthereal Invulnerability (X)" hidden="false" targetId="e05e-ed23-64fb-a535" type="rule">
<modifiers>
<modifier type="set" field="name" value="Æthereal Invulnerability (5+)"/>
</modifiers>
</infoLink>
<infoLink id="62c4-c339-363b-79a8" name="Traitor" hidden="false" targetId="eff2-8b0e-21da-2f0d" type="rule"/>
<infoLink name="Hammer of Wrath (X)" hidden="false" type="rule" id="71ec-9e8f-4c64-8e9d" targetId="aec0-c3aa-1e4e-1779">
<modifiers>
<modifier type="set" value="Hammer of Wrath (1)" field="name"/>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="equalTo" value="0" field="selections" scope="force" childId="e4fb-66cd-e07d-609b" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
</infoLink>
</infoLinks>
<selectionEntryGroups>
<selectionEntryGroup name="Daemon Beasts" hidden="false" id="8d09-1913-b79f-5c35" defaultSelectionEntryId="e8d9-781b-531d-9386">
<selectionEntries>
<selectionEntry type="model" import="true" name="Daemon Beast w/ Daemon Armaments" hidden="false" id="e8d9-781b-531d-9386" publicationId="8775-88f5-cfdd-24f6" page="10">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="30"/>
</costs>
<constraints>
<constraint type="max" value="9" field="selections" scope="parent" shared="true" id="12ce-1575-7802-1ec6"/>
<constraint type="min" value="3" field="selections" scope="parent" shared="true" id="e343-4e07-35a4-9ab"/>
</constraints>
<profiles>
<profile name="Daemon Beast" typeId="4bb2-cb95-e6c8-5a21" typeName="Unit" hidden="false" id="769e-9cd1-a53-a4c0" publicationId="8775-88f5-cfdd-24f6" page="10">
<characteristics>
<characteristic name="Unit Type" typeId="ddd7-6f5c-a939-b69e">Daemon</characteristic>
<characteristic name="Move" typeId="893e-2d76-8f04-44e5">10</characteristic>
<characteristic name="WS" typeId="cc42-7ed5-7092-5c84">4</characteristic>
<characteristic name="BS" typeId="74ae-c840-0036-d244">3</characteristic>
<characteristic name="S" typeId="e478-41d4-a092-48a8">5</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">4</characteristic>
<characteristic name="A" typeId="f111-2ce5-dd12-d6b0">3</characteristic>
<characteristic name="Ld" typeId="e8a6-1da9-d384-8727">7</characteristic>
<characteristic name="Save" typeId="e593-6b3c-f169-04f0">5+</characteristic>
</characteristics>
<modifiers>
<modifier type="append" field="ddd7-6f5c-a939-b69e" value="(Heavy)">
<conditions>
<condition field="selections" scope="69ad-927-c71b-6b24" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b7db-bf16-47c5-dc05" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
</profile>
</profiles>
<entryLinks>
<entryLink import="true" name="Daemon Armaments" hidden="false" type="selectionEntry" id="1224-5a19-f873-67a2" targetId="a925-dedd-64e9-b613">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="3fd-785b-b658-d779"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="f3a7-a0e9-6422-8886"/>
</constraints>
</entryLink>
</entryLinks>
<modifiers>
<modifier type="decrement" value="3" field="e343-4e07-35a4-9ab"/>
</modifiers>
<categoryLinks>
<categoryLink targetId="e699-d9cd-e68e-46d9" id="bf28-d2d0-4185-9f31" name="Daemon Unit Type" primary="false"/>
</categoryLinks>
</selectionEntry>
<selectionEntry type="model" import="true" name="Daemon Beast w/ Immaterial Flame" hidden="false" id="5828-5d74-9c9b-edc5" publicationId="8775-88f5-cfdd-24f6" page="10">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="30"/>
</costs>
<constraints>
<constraint type="max" value="9" field="selections" scope="parent" shared="true" id="d0f7-ad9b-b159-8d54"/>
</constraints>
<profiles>
<profile name="Daemon Beast" typeId="4bb2-cb95-e6c8-5a21" typeName="Unit" hidden="false" id="2d3f-1f95-9cf4-ec39" publicationId="8775-88f5-cfdd-24f6" page="10">
<characteristics>
<characteristic name="Unit Type" typeId="ddd7-6f5c-a939-b69e">Daemon</characteristic>
<characteristic name="Move" typeId="893e-2d76-8f04-44e5">10</characteristic>
<characteristic name="WS" typeId="cc42-7ed5-7092-5c84">4</characteristic>
<characteristic name="BS" typeId="74ae-c840-0036-d244">3</characteristic>
<characteristic name="S" typeId="e478-41d4-a092-48a8">5</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">4</characteristic>
<characteristic name="A" typeId="f111-2ce5-dd12-d6b0">3</characteristic>
<characteristic name="Ld" typeId="e8a6-1da9-d384-8727">7</characteristic>
<characteristic name="Save" typeId="e593-6b3c-f169-04f0">5+</characteristic>
</characteristics>
<modifiers>
<modifier type="append" field="ddd7-6f5c-a939-b69e" value="(Heavy)">
<conditions>
<condition field="selections" scope="69ad-927-c71b-6b24" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b7db-bf16-47c5-dc05" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
</profile>
</profiles>
<entryLinks>
<entryLink import="true" name="Immaterial Flame" hidden="false" type="selectionEntry" id="d842-c533-cd64-8ac9" targetId="9d38-bbef-bc48-2ac1">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="5"/>
</costs>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="32cc-8826-e1ca-73"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="a2d7-94da-a34c-9bc9"/>
</constraints>
</entryLink>
</entryLinks>
<categoryLinks>
<categoryLink targetId="e699-d9cd-e68e-46d9" id="9520-afe4-45b9-822d" name="Daemon Unit Type" primary="false"/>
</categoryLinks>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="3" field="selections" scope="parent" shared="true" id="c742-33ce-5486-cd41"/>
<constraint type="max" value="9" field="selections" scope="parent" shared="true" id="f09-f2e2-9697-c2e"/>
</constraints>
</selectionEntryGroup>
</selectionEntryGroups>
<modifiers>
<modifier type="add" field="category" value="9231-183c-b97b-63f9">
<conditions>
<condition field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b7db-bf16-47c5-dc05" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Ruinstorm Lesser Daemons" hidden="false" id="157c-7592-a6b9-f96" publicationId="8775-88f5-cfdd-24f6" page="11">
<selectionEntries>
<selectionEntry type="model" import="true" name="Lesser Daemon" hidden="false" id="5da5-c15b-dfe5-d1b5" publicationId="8775-88f5-cfdd-24f6" page="11">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="10"/>
</costs>
<constraints>
<constraint type="min" value="10" field="selections" scope="parent" shared="true" id="8163-7ac4-85d7-f584"/>
<constraint type="max" value="20" field="selections" scope="parent" shared="true" id="82e-bbd5-df4b-dcd1"/>
</constraints>
<profiles>
<profile name="Lesser Daemon" typeId="4bb2-cb95-e6c8-5a21" typeName="Unit" hidden="false" id="9c66-e95c-8370-225" publicationId="8775-88f5-cfdd-24f6" page="11">
<characteristics>
<characteristic name="Unit Type" typeId="ddd7-6f5c-a939-b69e">Daemon (Line)</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">3</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">1</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">7</characteristic>
<characteristic name="Save" typeId="e593-6b3c-f169-04f0">5+</characteristic>
</characteristics>
<modifiers>
<modifier type="append" field="ddd7-6f5c-a939-b69e" value="(Heavy)">
<conditions>
<condition field="selections" scope="157c-7592-a6b9-f96" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b7db-bf16-47c5-dc05" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
</profile>
</profiles>
<categoryLinks>
<categoryLink targetId="e699-d9cd-e68e-46d9" id="90e7-f681-4b31-bad7" name="Daemon Unit Type" primary="false"/>
<categoryLink targetId="6399-5c65-7833-1025" id="1460-27e8-499e-8488" name="Line Sub-type" primary="false"/>
</categoryLinks>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="20"/>
</costs>
<entryLinks>
<entryLink import="true" name="The Ætheric Dominion (Unit)" hidden="false" type="selectionEntryGroup" id="984b-1653-1706-eaf" targetId="caad-e621-38e5-cb5f"/>
</entryLinks>
<categoryLinks>
<categoryLink targetId="e699-d9cd-e68e-46d9" id="83d4-7ef0-2bce-18cb" primary="false" name="Daemon Unit Type"/>
<categoryLink targetId="6399-5c65-7833-1025" id="7bf1-d30-86a3-e2e5" primary="false" name="Line Sub-type"/>
</categoryLinks>
<infoLinks>
<infoLink id="669f-718b-897c-7898" name="Traitor" hidden="false" targetId="eff2-8b0e-21da-2f0d" type="rule"/>
<infoLink id="e70-800b-7e94-4943" name="Æthereal Invulnerability (X)" hidden="false" targetId="e05e-ed23-64fb-a535" type="rule">
<modifiers>
<modifier type="set" field="name" value="Æthereal Invulnerability (5+)"/>
</modifiers>
</infoLink>
<infoLink name="Hammer of Wrath (X)" hidden="false" type="rule" id="2e40-9836-1db8-4c1" targetId="aec0-c3aa-1e4e-1779">
<modifiers>
<modifier type="set" value="Hammer of Wrath (1)" field="name"/>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="equalTo" value="0" field="selections" scope="force" childId="e4fb-66cd-e07d-609b" shared="true" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
</infoLink>
</infoLinks>
<selectionEntryGroups>
<selectionEntryGroup name="Weapons" hidden="false" id="ae2b-1534-a94a-6448" defaultSelectionEntryId="8b6b-f0e0-821-b328">
<entryLinks>
<entryLink import="true" name="Daemon Armaments" hidden="false" type="selectionEntry" id="8b6b-f0e0-821-b328" targetId="28c4-89cc-5ed1-7e18"/>
<entryLink import="true" name="Immaterial Projectiles" hidden="false" type="selectionEntry" id="d3c7-bdc4-abc4-631a" targetId="b485-4c34-151f-e7f3">
<modifiers>
<modifier type="increment" value="1" field="d2ee-04cb-5f8a-2642">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="157c-7592-a6b9-f96" childId="5da5-c15b-dfe5-d1b5" shared="true" roundUp="false" id="9a59-4021-f381-c7d2"/>
</repeats>
</modifier>
</modifiers>
</entryLink>
</entryLinks>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="fa89-c16d-86f9-d247"/>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="4bf1-c44-6fcb-2db5"/>
</constraints>
</selectionEntryGroup>
</selectionEntryGroups>
<modifiers>
<modifier type="add" field="category" value="9231-183c-b97b-63f9">
<conditions>
<condition field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b7db-bf16-47c5-dc05" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Ruinstorm Daemon Swarms" hidden="false" id="bb35-e585-a226-28e" publicationId="8775-88f5-cfdd-24f6" page="12">
<selectionEntries>
<selectionEntry type="model" import="true" name="Daemon Swarm" hidden="false" id="cb8c-b27a-ea4e-1c91" publicationId="8775-88f5-cfdd-24f6" page="12">
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="15"/>
</costs>
<constraints>
<constraint type="min" value="5" field="selections" scope="parent" shared="true" id="76c3-4a01-c49d-67d9"/>
<constraint type="max" value="10" field="selections" scope="parent" shared="true" id="3426-8409-ce4a-3c85"/>
</constraints>
<profiles>
<profile name="Daemon Swarm" typeId="4bb2-cb95-e6c8-5a21" typeName="Unit" hidden="false" id="136f-bd4f-b28f-24" publicationId="8775-88f5-cfdd-24f6" page="12">
<characteristics>
<characteristic name="Unit Type" typeId="ddd7-6f5c-a939-b69e">Daemon (Line, Skirmish)</characteristic>
<characteristic name="Move" typeId="893e-2d76-8f04-44e5">8</characteristic>
<characteristic name="WS" typeId="cc42-7ed5-7092-5c84">3</characteristic>
<characteristic name="BS" typeId="74ae-c840-0036-d244">3</characteristic>
<characteristic name="S" typeId="e478-41d4-a092-48a8">3</characteristic>
<characteristic name="T" typeId="c32b-5fdd-3fbe-9b1f">3</characteristic>
<characteristic name="W" typeId="57ee-1126-32a9-5672">4</characteristic>
<characteristic name="I" typeId="62d3-22d7-2d49-52dc">3</characteristic>
<characteristic name="A" typeId="f111-2ce5-dd12-d6b0">2</characteristic>
<characteristic name="Ld" typeId="e8a6-1da9-d384-8727">6</characteristic>
<characteristic name="Save" typeId="e593-6b3c-f169-04f0">6+</characteristic>
</characteristics>
<modifiers>
<modifier type="append" field="ddd7-6f5c-a939-b69e" value="(Heavy)">
<conditions>
<condition field="selections" scope="bb35-e585-a226-28e" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b7db-bf16-47c5-dc05" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
</profile>
</profiles>
<categoryLinks>
<categoryLink targetId="e699-d9cd-e68e-46d9" id="296c-5750-4797-8849" name="Daemon Unit Type" primary="false"/>
<categoryLink targetId="6399-5c65-7833-1025" id="5117-229f-4e4b-9d10" name="Line Sub-type" primary="false"/>
<categoryLink targetId="59a4-7b61-600a-c457" id="17da-3c9d-454c-8c01" name="Skirmish Sub-type" primary="false"/>
</categoryLinks>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="Pts" typeId="d2ee-04cb-5f8a-2642" value="5"/>
</costs>
<entryLinks>
<entryLink import="true" name="The Ætheric Dominion (Unit)" hidden="false" type="selectionEntryGroup" id="8b54-9c7b-7706-f5fb" targetId="caad-e621-38e5-cb5f"/>
</entryLinks>
<categoryLinks>