forked from BSData/horus-heresy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
(HH) Daemons of the Ruinstorm Army List.cat
4224 lines (4199 loc) · 315 KB
/
(HH) Daemons of the Ruinstorm Army List.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="8700-b3bb-a471-a0ad" name="(HH V1) Daemons of the Ruinstorm" revision="25" battleScribeVersion="2.03" authorName="https://github.com/BSData/horus-heresy/" authorContact="" authorUrl="http://battlescribedata.appspot.com/#/repo/horus-heresy" library="false" gameSystemId="ca571888-56a9-c58e-ddaf-54f4713538bc" gameSystemRevision="164" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<categoryEntries>
<categoryEntry id="485123232344415441232323" name="HQ" hidden="false"/>
<categoryEntry id="456c6974657323232344415441232323" name="Elites" hidden="false"/>
<categoryEntry id="54726f6f707323232344415441232323" name="Troops" hidden="false"/>
<categoryEntry id="466173742041747461636b23232344415441232323" name="Fast Attack" hidden="false"/>
<categoryEntry id="486561767920537570706f727423232344415441232323" name="Heavy Support" hidden="false"/>
<categoryEntry id="2271-1b9a-5c30-9676" name="Aetheric Dominion" hidden="false">
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="c9fb-b8e5-20db-b9b9" type="min"/>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="86b2-5e9b-c913-73e4" type="max"/>
</constraints>
</categoryEntry>
<categoryEntry id="1bcc0dc0-daee-dd60-6d6b-8510ffb8202f" name="Lords of War" hidden="false"/>
<categoryEntry id="466f7274696669636174696f6e23232344415441232323" name="Fortification" hidden="false"/>
<categoryEntry id="0547-e031-0d25-4c6c" name="Compulsory Troops" publicationId="ca571888--pubN106502" hidden="false">
<rules>
<rule id="ecbb-6edb-aed5-4510" name="Compulsory" publicationId="ca571888--pubN106502" page="132" hidden="false">
<description>One box on a Force Organisation chart allows you to make one selection from that part of your army list. Dark boxes indicate compulsory selections, which must be included as part of the army, while the lighter boxes indicate optional choices, which are only included as part of the army if the player in question chooses to do so. If constructing an army using the Crusade Force Organisation chart, this would mean that an army would be required to take at least one HQ choice and two Troops choices. These compulsory choices are intended to ensure that the core of each army is illustrative of the force represented by the Army List in use, and that all armies are capable of properly participating in the varied missions available to players in the Age of Darkness.</description>
</rule>
</rules>
</categoryEntry>
<categoryEntry id="c9f6-0db2-037e-468d" name="Beasts" publicationId="ca571888--pubN106502" page="" hidden="false">
<infoLinks>
<infoLink id="024f-14e4-30c5-3a5a" name="Fleet" hidden="false" targetId="69e5-fc02-1f9d-63c2" type="rule"/>
<infoLink id="5210-0f89-a6a6-9fd0" name="Beasts" hidden="false" targetId="b53a-eba8-e3f8-4ae8" type="rule"/>
</infoLinks>
</categoryEntry>
<categoryEntry id="cbd7-da20-4ef1-fbda" name="Cavalry" publicationId="ca571888--pubN106502" page="" hidden="false">
<infoLinks>
<infoLink id="0671-4aa9-3f1e-2e5c" name="Fleet" hidden="false" targetId="69e5-fc02-1f9d-63c2" type="rule"/>
<infoLink id="ba01-afb0-5f62-665d" name="Hammer of Wrath" hidden="false" targetId="6f66-b417-6004-0916" type="rule"/>
<infoLink id="7749-34cc-757f-e03d" name="Cavalry" hidden="false" targetId="d956-6030-d01f-5f3a" type="rule"/>
</infoLinks>
</categoryEntry>
<categoryEntry id="12ca-5271-bc77-cd4f" name="Flying Monstrous Creature" publicationId="ca571888--pubN106502" hidden="false">
<infoLinks>
<infoLink id="03a7-38c5-cc0a-0269" name="Fear" hidden="false" targetId="52ff-4074-570b-4ea1" type="rule"/>
<infoLink id="f172-ab41-151c-1868" name="Hammer of Wrath" hidden="false" targetId="6f66-b417-6004-0916" type="rule"/>
<infoLink id="ce27-c76f-dbda-99e0" name="Move Through Cover" hidden="false" targetId="6d06-5ea0-9a17-ca97" type="rule"/>
<infoLink id="60ee-d9ba-a2ff-216f" name="Relentless" hidden="false" targetId="3c7d-a1fa-c68b-caad" type="rule"/>
<infoLink id="8f4b-f55b-eab5-3dfa" name="Smash" hidden="false" targetId="4284-18a1-9844-a0bd" type="rule"/>
<infoLink id="12c7-360c-75f3-bf44" name="Vector Strike" hidden="false" targetId="5341-7110-d8d4-171a" type="rule"/>
<infoLink id="5bd2-19d9-acbb-0436" name="Jink" hidden="false" targetId="d3e5-b43d-a89c-3bd8" type="rule"/>
</infoLinks>
</categoryEntry>
<categoryEntry id="3fd6-be25-ed1a-1799" name="Gargantuan Creature" publicationId="ca571888--pubN106502" page="" hidden="false">
<infoLinks>
<infoLink id="ea21-96be-b399-862a" name="Fear" hidden="false" targetId="52ff-4074-570b-4ea1" type="rule"/>
<infoLink id="5296-e5be-927e-bab5" name="Fearless" hidden="false" targetId="dc70-e199-5525-e78c" type="rule"/>
<infoLink id="066d-5cc2-194b-43ac" name="Hammer of Wrath" hidden="false" targetId="6f66-b417-6004-0916" type="rule"/>
<infoLink id="d942-c314-7374-0ff6" name="Move Through Cover" hidden="false" targetId="6d06-5ea0-9a17-ca97" type="rule"/>
<infoLink id="3acb-3be7-5eef-e925" name="Relentless" hidden="false" targetId="3c7d-a1fa-c68b-caad" type="rule"/>
<infoLink id="e2c9-6cbf-73b3-d987" name="Smash" hidden="false" targetId="4284-18a1-9844-a0bd" type="rule"/>
<infoLink id="8c60-6204-4040-4da0" name="Strikedown" hidden="false" targetId="dd83-7fb9-6f58-0c96" type="rule"/>
<infoLink id="5b36-988d-1779-27dc" name="Feel No Pain" hidden="false" targetId="9bdd-5ec7-8dd6-63c0" type="rule"/>
</infoLinks>
</categoryEntry>
<categoryEntry id="677c-f197-e522-3b68" name="Monstrous Creature" publicationId="ca571888--pubN106502" hidden="false">
<constraints>
<constraint field="selections" scope="force" value="-1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="f58a-0e6c-ed1d-a4c7" type="max"/>
</constraints>
<infoLinks>
<infoLink id="20fb-0751-0748-ab8c" name="Fear" hidden="false" targetId="52ff-4074-570b-4ea1" type="rule"/>
<infoLink id="8df7-30f3-1414-7580" name="Hammer of Wrath" hidden="false" targetId="6f66-b417-6004-0916" type="rule"/>
<infoLink id="c444-9a87-fdbf-103f" name="Move Through Cover" hidden="false" targetId="6d06-5ea0-9a17-ca97" type="rule"/>
<infoLink id="a2a4-af89-648e-af60" name="Relentless" hidden="false" targetId="3c7d-a1fa-c68b-caad" type="rule"/>
<infoLink id="448f-6868-eb2d-72ce" name="Smash" hidden="false" targetId="4284-18a1-9844-a0bd" type="rule"/>
</infoLinks>
</categoryEntry>
<categoryEntry id="abaf-c4f2-142d-0deb" name="Flying Gargantuan Creature" publicationId="ca571888--pubN106502" page="" hidden="false">
<infoLinks>
<infoLink id="d6a1-9bfd-8276-d60a" name="Fear" hidden="false" targetId="52ff-4074-570b-4ea1" type="rule"/>
<infoLink id="fb0e-ccea-8cd4-e34b" name="Fearless" hidden="false" targetId="dc70-e199-5525-e78c" type="rule"/>
<infoLink id="1c68-a338-eea3-bd01" name="Hammer of Wrath" hidden="false" targetId="6f66-b417-6004-0916" type="rule"/>
<infoLink id="7672-c698-8cbf-4f5c" name="Move Through Cover" hidden="false" targetId="6d06-5ea0-9a17-ca97" type="rule"/>
<infoLink id="a8ee-4432-4467-695e" name="Relentless" hidden="false" targetId="3c7d-a1fa-c68b-caad" type="rule"/>
<infoLink id="4068-37b8-8536-f24d" name="Smash" hidden="false" targetId="4284-18a1-9844-a0bd" type="rule"/>
<infoLink id="aa61-178f-88cc-0647" name="Strikedown" hidden="false" targetId="dd83-7fb9-6f58-0c96" type="rule"/>
<infoLink id="032a-7426-7c85-0902" name="Feel No Pain" hidden="false" targetId="9bdd-5ec7-8dd6-63c0" type="rule"/>
<infoLink id="c091-8b61-b393-dd6a" name="Vector Strike" hidden="false" targetId="5341-7110-d8d4-171a" type="rule"/>
</infoLinks>
</categoryEntry>
<categoryEntry id="613e-f21f-788e-ce0a" name="Jump Units" hidden="false">
<infoLinks>
<infoLink id="0228-524d-d77d-bca8" name="Bulky" hidden="false" targetId="38d5-b6eb-bda8-2497" type="rule"/>
<infoLink id="c121-c5c1-c5d5-5a4d" name="Deep Strike" hidden="false" targetId="d219-2314-4834-c054" type="rule"/>
<infoLink id="94b4-4201-8a69-34bb" name="Jump Unit" hidden="false" targetId="8cb0-ff25-22a2-d480" type="rule"/>
</infoLinks>
</categoryEntry>
</categoryEntries>
<forceEntries>
<forceEntry id="657a-bc81-4ae3-8a5b" name="Allied Detachment" hidden="false">
<categoryLinks>
<categoryLink id="3b95-133c-7378-9866" name="HQ" hidden="false" targetId="485123232344415441232323" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7d52-9a33-8a76-f0ab" type="min"/>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="191d-95d4-4652-be25" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="825e-c512-94d5-869d" name="Troops" hidden="false" targetId="54726f6f707323232344415441232323" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="bf39-7b4a-bd66-a1ec" type="min"/>
<constraint field="selections" scope="force" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c875-3549-0515-ed00" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="0281-412f-8ca9-e9de" name="Fast Attack" hidden="false" targetId="466173742041747461636b23232344415441232323" primary="false">
<constraints>
<constraint field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3059-fbea-1d17-6dab" type="min"/>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="131f-9710-0017-5459" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="43bd-4f9a-df01-33cc" name="Elites" hidden="false" targetId="456c6974657323232344415441232323" primary="false">
<constraints>
<constraint field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1d5d-82d8-6226-0223" type="min"/>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="522c-802e-228b-d2aa" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="edc1-44da-a7c7-a6d9" name="Heavy Support" hidden="false" targetId="486561767920537570706f727423232344415441232323" primary="false">
<constraints>
<constraint field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ac3f-40b0-1fc5-3b82" type="min"/>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="20c1-b04d-3ec4-5118" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="9485-1c54-2f0b-010c" name="Use Playtest Rules" hidden="false" targetId="fdf4-0683-3e84-5a4b" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="25ba-08c7-f871-f88c" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="7a11-130d-e08e-65be" name="Aetheric Dominion" hidden="false" targetId="2271-1b9a-5c30-9676" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="7bd9-4ea2-c150-12a5" type="max"/>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="33f3-f482-c2f8-353c" type="min"/>
</constraints>
</categoryLink>
<categoryLink id="63e0-0102-d8af-800e" name="Compulsory Troops" hidden="false" targetId="0547-e031-0d25-4c6c" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7daa-ff7f-f82a-4841" type="min"/>
</constraints>
</categoryLink>
<categoryLink id="019f-692f-ccea-cb9d" name="Aliens and Daemons" hidden="false" targetId="cd09-c1c6-237a-798e" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6ef4-e2d8-333f-abda" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f9e5-f5d6-b58b-311e" type="min"/>
</constraints>
</categoryLink>
<categoryLink id="4952-05a3-05f6-17ef" name="Allied Detachment" hidden="false" targetId="6077-281f-c55d-9bf0" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5f22-b83e-5cc7-6a4f" type="min"/>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="0ec3-d1a2-0ee1-9ea8" type="max"/>
</constraints>
</categoryLink>
</categoryLinks>
</forceEntry>
<forceEntry id="4086-2dd6-c49c-2445" name="Crusade Detachment" hidden="false">
<categoryLinks>
<categoryLink id="5936-60c0-10a5-dbd8" name="Aetheric Dominion" hidden="false" targetId="2271-1b9a-5c30-9676" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="2ce0-a2b7-e89c-8cd4" type="min"/>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="cd89-542d-b9f3-400c" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="5c6b-3027-0572-11c5" name="HQ" hidden="false" targetId="485123232344415441232323" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cc73-9d90-da04-2957" type="min"/>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="11b2-d569-e446-0cb0" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="8169-147e-d338-34dd" name="Troops" hidden="false" targetId="54726f6f707323232344415441232323" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fdee-c8c0-c384-bba3" type="min"/>
<constraint field="selections" scope="parent" value="6.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e214-5a74-b060-dbd9" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="5f7d-8e89-080c-e9ee" name="Fast Attack" hidden="false" targetId="466173742041747461636b23232344415441232323" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0aca-aab1-32e4-815c" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="9f26-f70a-25da-5ef1" name="Elites" hidden="false" targetId="456c6974657323232344415441232323" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="4.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8f0a-de0e-adc8-6d08" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="3ca6-4fe6-a400-559a" name="Heavy Support" hidden="false" targetId="486561767920537570706f727423232344415441232323" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8f38-5330-56f5-a18a" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="8e55-c80a-0f2c-1be3" name="Lords of War" hidden="false" targetId="1bcc0dc0-daee-dd60-6d6b-8510ffb8202f" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1e66-5c0b-29b5-266a" type="max"/>
<constraint field="limit::points" scope="roster" value="25.0" percentValue="true" shared="false" includeChildSelections="false" includeChildForces="false" id="aa7d-a854-8d2c-2b3d" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="4486-01d5-c984-74a8" name="Use Playtest Rules" hidden="false" targetId="fdf4-0683-3e84-5a4b" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="bd05-995d-e028-ad9f" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="862b-ca67-81a0-5d08" name="Aliens and Daemons" hidden="false" targetId="cd09-c1c6-237a-798e" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5e04-3c4a-cd59-824c" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1eea-709b-98c5-af0f" type="min"/>
</constraints>
</categoryLink>
<categoryLink id="6906-8d5c-0003-dead" name="Compulsory Troops" hidden="false" targetId="0547-e031-0d25-4c6c" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6655-db71-2cde-3974" type="min"/>
</constraints>
</categoryLink>
<categoryLink id="c899-d971-8fa3-a2fc" name="Warlord Traits" hidden="false" targetId="baa4-80e4-c41d-6875" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="f3e8-fed7-4921-ea31" type="max"/>
</constraints>
</categoryLink>
</categoryLinks>
</forceEntry>
<forceEntry id="f398-6ade-f25f-e336" name=" Zone Mortalis - Attacker" hidden="false">
<infoLinks>
<infoLink id="62bd-394e-d27f-9198" name="ZM (Unusable)" hidden="false" targetId="b1da-bb0d-6990-b5c7" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="dfc4-a2a4-d7c4-77de" name="Elites" hidden="false" targetId="456c6974657323232344415441232323" primary="false">
<constraints>
<constraint field="selections" scope="force" value="3.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="c29c-c350-1407-bf64" type="max"/>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="2f56-3aac-8309-ecfe" type="min"/>
</constraints>
</categoryLink>
<categoryLink id="7965-a291-bed6-c43f" name="HQ" hidden="false" targetId="485123232344415441232323" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="4374-294f-832f-76db" type="min"/>
<constraint field="selections" scope="force" value="2.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="5c79-7514-227c-179d" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="2d3e-9513-9f77-d0c2" name="Fast Attack" hidden="false" targetId="466173742041747461636b23232344415441232323" primary="false">
<constraints>
<constraint field="selections" scope="force" value="2.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="1d52-f13e-f80b-82c0" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="48ea-fa47-de6a-904d" name="Troops" hidden="false" targetId="54726f6f707323232344415441232323" primary="false">
<constraints>
<constraint field="selections" scope="force" value="3.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="7413-e67d-c282-8a6b" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="f083-8d63-1ecb-e807" name="Heavy Support" hidden="false" targetId="486561767920537570706f727423232344415441232323" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="bcc7-20c2-7757-adfb" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="df93-c044-652c-8f80" name="Use Playtest Rules" hidden="false" targetId="fdf4-0683-3e84-5a4b" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="9c98-d63e-0368-02e0" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="e60c-69d9-d799-370f" name="Mournival Rules" hidden="false" targetId="dbe0-716f-797c-66f7" primary="false"/>
<categoryLink id="6e81-4044-874b-3b4c" name="ZM (Unusable)" hidden="false" targetId="9335-93c1-6af7-feb0" primary="false">
<constraints>
<constraint field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="2964-6331-c4cd-387b" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="5c67-5031-2844-5f44" name="Flying Monstrous Creature" hidden="false" targetId="12ca-5271-bc77-cd4f" primary="false">
<constraints>
<constraint field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="7797-5859-4cee-3251" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="a419-a168-2a18-6fbb" name="Flying Gargantuan Creature" hidden="false" targetId="abaf-c4f2-142d-0deb" primary="false">
<constraints>
<constraint field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="36f4-8de7-1259-005f" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="cf6e-c774-167c-49b8" name="Aliens and Daemons" hidden="false" targetId="cd09-c1c6-237a-798e" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="951e-7bf1-6634-a45d" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="feac-bec5-fe39-97ef" type="min"/>
</constraints>
</categoryLink>
<categoryLink id="8fe7-91f0-98b0-8b29" name="Aetheric Dominion" hidden="false" targetId="2271-1b9a-5c30-9676" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="ae84-9d85-c1a7-66a1" type="max"/>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="fff3-944a-a5a5-697b" type="min"/>
</constraints>
</categoryLink>
<categoryLink id="2cd3-daac-5ca8-d27c" name="Warlord Traits" hidden="false" targetId="baa4-80e4-c41d-6875" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="45c9-ccee-a0ba-9fcf" type="max"/>
</constraints>
</categoryLink>
</categoryLinks>
</forceEntry>
<forceEntry id="a0b6-1a2f-3d64-b9d4" name=" Zone Mortalis - Combatant" hidden="false">
<infoLinks>
<infoLink id="e8cc-6700-113d-159b" name="ZM (Unusable)" hidden="false" targetId="b1da-bb0d-6990-b5c7" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="362f-1bd2-7eeb-3d4d" name="Elites" hidden="false" targetId="456c6974657323232344415441232323" primary="false">
<constraints>
<constraint field="selections" scope="force" value="2.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="a2e4-f3b4-345e-e55b" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="4a16-5374-4f67-bad4" name="HQ" hidden="false" targetId="485123232344415441232323" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="cc71-ad4c-e9a2-0f0c" type="min"/>
<constraint field="selections" scope="force" value="2.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="0d49-755e-7d1b-d041" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="5d85-263f-cb32-cf04" name="Fast Attack" hidden="false" targetId="466173742041747461636b23232344415441232323" primary="false">
<constraints>
<constraint field="selections" scope="force" value="2.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="011d-d009-9b9c-af97" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="66c1-bc9d-a755-f553" name="Troops" hidden="false" targetId="54726f6f707323232344415441232323" primary="false">
<constraints>
<constraint field="selections" scope="force" value="3.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="0314-e0f9-0417-5931" type="max"/>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="b2b5-0052-00d4-a742" type="min"/>
</constraints>
</categoryLink>
<categoryLink id="2089-6afa-52e2-dd99" name="Heavy Support" hidden="false" targetId="486561767920537570706f727423232344415441232323" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="dc07-36ac-f843-e7ab" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="785d-b8ce-1553-ddb4" name="Use Playtest Rules" hidden="false" targetId="fdf4-0683-3e84-5a4b" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="a641-3b5f-3d8a-b329" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="ffab-8fb7-bd15-7965" name="Mournival Rules" hidden="false" targetId="dbe0-716f-797c-66f7" primary="false"/>
<categoryLink id="e2b2-655f-fe7a-98e1" name="ZM (Unusable)" hidden="false" targetId="9335-93c1-6af7-feb0" primary="false">
<constraints>
<constraint field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="e543-b87c-6260-1d96" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="0f1d-9bf2-e239-62bf" name="Flying Monstrous Creature" hidden="false" targetId="12ca-5271-bc77-cd4f" primary="false">
<constraints>
<constraint field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="ddd2-7d01-ac01-0a3d" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="3e32-be03-ab34-3339" name="Flying Monstrous Creature" hidden="false" targetId="12ca-5271-bc77-cd4f" primary="false">
<constraints>
<constraint field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="431c-ae7a-9ed5-3e11" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="89f9-de2b-f74c-8996" name="Flying Monstrous Creature" hidden="false" targetId="12ca-5271-bc77-cd4f" primary="false">
<constraints>
<constraint field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="3cd1-198e-9df7-ab73" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="353d-52f3-65a9-2e14" name="Aliens and Daemons" hidden="false" targetId="cd09-c1c6-237a-798e" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e5a4-d7e0-0fbe-1bb4" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ba9b-9c7b-509a-be03" type="min"/>
</constraints>
</categoryLink>
<categoryLink id="a6cd-e310-59b5-2f63" name="Aetheric Dominion" hidden="false" targetId="2271-1b9a-5c30-9676" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="b40f-70e6-69a2-c978" type="max"/>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="fad2-7581-5daa-d42e" type="min"/>
</constraints>
</categoryLink>
<categoryLink id="ce11-2483-6a1e-aec3" name="Warlord Traits" hidden="false" targetId="baa4-80e4-c41d-6875" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="b2c7-3677-2672-7074" type="max"/>
</constraints>
</categoryLink>
</categoryLinks>
</forceEntry>
<forceEntry id="41d1-3cca-834f-f8e0" name=" Zone Mortalis - Defender" hidden="false">
<infoLinks>
<infoLink id="a5b8-bbba-feb4-c74b" name="ZM (Unusable)" hidden="false" targetId="b1da-bb0d-6990-b5c7" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="7025-eb83-1ed5-a55e" name="Elites" hidden="false" targetId="456c6974657323232344415441232323" primary="false">
<constraints>
<constraint field="selections" scope="force" value="2.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="3be4-794d-53e9-d0f2" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="920a-3949-0919-91fe" name="HQ" hidden="false" targetId="485123232344415441232323" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="2322-b77f-bcd7-7c0f" type="min"/>
<constraint field="selections" scope="force" value="2.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="0dc3-9798-8926-519d" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="8f1a-0c20-c42c-7ba3" name="Fast Attack" hidden="false" targetId="466173742041747461636b23232344415441232323" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="d17e-41e0-6cd4-73df" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="27f8-2082-5563-6cd1" name="Troops" hidden="false" targetId="54726f6f707323232344415441232323" primary="false">
<constraints>
<constraint field="selections" scope="force" value="4.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="272d-58e2-83c9-7cd5" type="max"/>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="ebc0-698f-365f-a92d" type="min"/>
</constraints>
</categoryLink>
<categoryLink id="e6d3-351c-e131-374a" name="Heavy Support" hidden="false" targetId="486561767920537570706f727423232344415441232323" primary="false">
<constraints>
<constraint field="selections" scope="force" value="2.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="9ab0-8aa9-5caa-7e0e" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="5e53-c92d-485c-2a62" name="Use Playtest Rules" hidden="false" targetId="fdf4-0683-3e84-5a4b" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="0e86-a83d-4c38-2aa4" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="4147-6754-b5cd-9f8c" name="Mournival Rules" hidden="false" targetId="dbe0-716f-797c-66f7" primary="false"/>
<categoryLink id="4ba6-cd5c-cec7-aee5" name="ZM (Unusable)" hidden="false" targetId="9335-93c1-6af7-feb0" primary="false">
<constraints>
<constraint field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="167a-bf63-eb63-91e9" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="3284-edd9-5c39-e5b0" name="Flying Monstrous Creature" hidden="false" targetId="12ca-5271-bc77-cd4f" primary="false">
<constraints>
<constraint field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="e3ea-74d0-43a2-14a7" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="76b4-fca6-7d7a-9ca8" name="Flying Gargantuan Creature" hidden="false" targetId="abaf-c4f2-142d-0deb" primary="false">
<constraints>
<constraint field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="4d91-3ec5-d55a-39f2" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="a6cf-39df-1f80-7cc7" name="Aliens and Daemons" hidden="false" targetId="cd09-c1c6-237a-798e" primary="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4a6d-6bc0-2dc9-4c58" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e283-f40f-6ef2-7e37" type="min"/>
</constraints>
</categoryLink>
<categoryLink id="2eca-39b9-2df0-04ea" name="Aetheric Dominion" hidden="false" targetId="2271-1b9a-5c30-9676" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="bb1c-fe7a-cc70-c1cc" type="max"/>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="ee6f-f78a-f1b5-651e" type="min"/>
</constraints>
</categoryLink>
<categoryLink id="5639-bad4-0869-35c0" name="Warlord Traits" hidden="false" targetId="baa4-80e4-c41d-6875" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="ccff-4d17-d6a6-a026" type="max"/>
</constraints>
</categoryLink>
</categoryLinks>
</forceEntry>
</forceEntries>
<selectionEntries>
<selectionEntry id="5ce6-31f1-4ab2-9607" name="Warlord Traits" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8b80-737e-1925-3fb5" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4aad-66cf-7079-d888" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9029-d464-6046-aad6" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="bd51-8af8-900f-1136" name="New CategoryLink" hidden="false" targetId="baa4-80e4-c41d-6875" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="dd90-fc15-44db-2c92" name="Warlord Traits (Work in Progress)" hidden="false" collective="false" import="true" targetId="8b04-5c2c-19a4-be71" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="29ef-6d56-9d3f-5c98" name="Imperial Castelum Stronghold" hidden="false" collective="false" import="true" targetId="e40b-468f-f1d7-d05d" type="selectionEntry">
<categoryLinks>
<categoryLink id="a1f2-c87d-dd58-10bb" name="New CategoryLink" hidden="false" targetId="466f7274696669636174696f6e23232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="115d-dd09-66b2-6c31" name="Manufactorum" hidden="false" collective="false" import="true" targetId="6140-dc64-5896-957f" type="selectionEntry">
<categoryLinks>
<categoryLink id="c693-e076-4cc8-b105" name="New CategoryLink" hidden="false" targetId="466f7274696669636174696f6e23232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="070b-1b44-05a7-3eb5" name="Sanctum Imperialis" hidden="false" collective="false" import="true" targetId="e0b3-77ca-af76-bd8b" type="selectionEntry">
<categoryLinks>
<categoryLink id="77d3-faf4-2341-bd38" name="New CategoryLink" hidden="false" targetId="466f7274696669636174696f6e23232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="4b47-d70e-36a5-bd6c" name="Plasma Obliterator" hidden="false" collective="false" import="true" targetId="3015-0b77-e848-c0f5" type="selectionEntry">
<categoryLinks>
<categoryLink id="e142-8254-2406-c925" name="New CategoryLink" hidden="false" targetId="466f7274696669636174696f6e23232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="b3dc-03a0-38c7-5ddb" name="Wall of Martyrs Vengeance Weapon Battery" hidden="false" collective="false" import="true" targetId="04bf-6c22-19fb-4e46" type="selectionEntry">
<categoryLinks>
<categoryLink id="606a-9cb6-c6dd-0072" name="New CategoryLink" hidden="false" targetId="466f7274696669636174696f6e23232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="f188-372e-516a-cffd" name="Shrine of the Aquila" hidden="false" collective="false" import="true" targetId="595a-908e-96a1-f121" type="selectionEntry">
<categoryLinks>
<categoryLink id="df5e-db09-64a6-c4f0" name="New CategoryLink" hidden="false" targetId="466f7274696669636174696f6e23232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="c248-b0e3-3965-def0" name="Imperial Primus Redoubt" hidden="false" collective="false" import="true" targetId="c05d-2231-2481-4037" type="selectionEntry">
<categoryLinks>
<categoryLink id="9737-b39b-35b0-996e" name="New CategoryLink" hidden="false" targetId="466f7274696669636174696f6e23232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="8ed3-70f3-4a74-6a67" name="Wall of Martyrs Imperial Defence Line" hidden="false" collective="false" import="true" targetId="0f73-97f2-b832-f6d0" type="selectionEntry">
<categoryLinks>
<categoryLink id="1dae-c6fa-6367-e4f6" name="New CategoryLink" hidden="false" targetId="466f7274696669636174696f6e23232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="fe9d-fd2f-0609-4d17" name="Defence Emplacement" hidden="false" collective="false" import="true" targetId="df05-8179-624e-f8b2" type="selectionEntry">
<categoryLinks>
<categoryLink id="6df8-14fa-4322-2d50" name="New CategoryLink" hidden="false" targetId="466f7274696669636174696f6e23232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="ae16-1579-6931-7d17" name="Firestorm Redoubt" hidden="false" collective="false" import="true" targetId="a172-78de-aaa6-2201" type="selectionEntry">
<categoryLinks>
<categoryLink id="f5a1-83e4-4037-0f57" name="New CategoryLink" hidden="false" targetId="466f7274696669636174696f6e23232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="7c96-69f8-24eb-4e39" name="Fortification" hidden="false" collective="false" import="true" targetId="66c9-eaa6-a91a-00ed" type="selectionEntry">
<categoryLinks>
<categoryLink id="3b57-3adb-66a8-6260" name="New CategoryLink" hidden="false" targetId="466f7274696669636174696f6e23232344415441232323" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="9463-14b2-5a43-17b0" name="Maddening Swarms" hidden="false" collective="false" import="true" targetId="5c39-d5e2-e0eb-3280" type="selectionEntry"/>
<entryLink id="af06-f020-4889-c926" name="Ruinstorm Lesser Daemons" hidden="false" collective="false" import="true" targetId="9ad5-5b92-5f1f-e661" type="selectionEntry">
<categoryLinks>
<categoryLink id="e3a9-522f-2f9a-6060" name="Troops" hidden="false" targetId="54726f6f707323232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="b7a3-4ed3-ee52-15ea" name="Daemon Lord" hidden="false" collective="false" import="true" targetId="92c6-2146-8ca7-bd35" type="selectionEntry"/>
<entryLink id="390e-66e4-54dd-2d48" name="Ruinstorm Greater Daemon" hidden="false" collective="false" import="true" targetId="b13b-5247-2078-4daf" type="selectionEntry"/>
<entryLink id="7e6c-e6d3-8cd8-4bab" name="Ruinstorm Daemon Chosen" hidden="false" collective="false" import="true" targetId="721a-409b-1ce8-0c50" type="selectionEntry"/>
<entryLink id="6abd-85be-2dde-6e52" name="Ruinstorm Daemon Brutes" hidden="false" collective="false" import="true" targetId="5eaf-49f3-f745-fd30" type="selectionEntry"/>
<entryLink id="21b0-f212-e2bd-cd24" name="Ruinstorm Daemon Beasts" hidden="false" collective="false" import="true" targetId="c877-3df6-7393-c32b" type="selectionEntry"/>
<entryLink id="39f3-6d6f-e05f-0c31" name="Ruinstorm Daemon Cavalry" hidden="false" collective="false" import="true" targetId="1137-8ddd-d812-1e70" type="selectionEntry"/>
<entryLink id="049d-b9de-3c25-91d5" name="Ruinstorm Daemon Shrike" hidden="false" collective="false" import="true" targetId="1f45-4da0-7891-e2cc" type="selectionEntry"/>
<entryLink id="2ec0-500d-4029-9f83" name="Ruinstorm Daemon Swarms" hidden="false" collective="false" import="true" targetId="ae3c-2429-b663-dcbc" type="selectionEntry"/>
<entryLink id="a67e-9984-e65c-a43a" name="Ruinstorm Arch-Daemon" hidden="false" collective="false" import="true" targetId="ea70-5e79-b1a0-3256" type="selectionEntry"/>
<entryLink id="2f27-5108-1a63-a58f" name="Ruinstorm Daemon Behemoth" hidden="false" collective="false" import="true" targetId="bf7e-0c26-b8b8-758a" type="selectionEntry"/>
<entryLink id="0dc1-e444-dfc2-52c6" name="Greater Ruinstorm Daemon Beast" hidden="false" collective="false" import="true" targetId="b7a8-a1e3-5f05-fc69" type="selectionEntry"/>
<entryLink id="b1f5-228b-2edc-93d5" name="Crimson Fury" hidden="false" collective="false" import="true" targetId="1c0c-a8bb-13c6-daea" type="selectionEntry"/>
<entryLink id="c40c-cbf9-905c-29e9" name="Creeping Scourge" hidden="false" collective="false" import="true" targetId="5a0b-2e45-8c90-360e" type="selectionEntry"/>
<entryLink id="f00e-f8ec-a67c-eb40" name="Lurid Onslaught" hidden="false" collective="false" import="true" targetId="0946-b1da-a2c7-12f9" type="selectionEntry"/>
<entryLink id="fdb5-4797-2bd0-efcd" name="Mirror of Hatred" hidden="false" collective="false" import="true" targetId="73dd-f79e-10cf-dc2f" type="selectionEntry"/>
<entryLink id="394c-38b0-fa5d-0598" name="Presplendend Terror" hidden="false" collective="false" import="true" targetId="dc24-bd44-bce4-a7f1" type="selectionEntry"/>
<entryLink id="59a5-8847-fad5-2758" name="Ka'Bandha, Daemon General of Signus" hidden="false" collective="false" import="true" targetId="3e2a-e0d1-0561-3872" type="selectionEntry">
<categoryLinks>
<categoryLink id="15ab-693a-dd31-d370" name="HQ" hidden="false" targetId="485123232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="6e88-de55-8f1a-c58f" name="Possessed Legionaries" hidden="false" collective="false" import="true" targetId="308e-c800-4fa9-efde" type="selectionEntry"/>
<entryLink id="ca1d-7026-8e22-46c8" name="Possessed Auxiliaries" hidden="false" collective="false" import="true" targetId="f3d7-3331-372c-a480" type="selectionEntry"/>
<entryLink id="f913-e33e-5360-df0f" name="Cor'bax Utterblight Unbound, Daemon Lord Of The Ruinstorm" hidden="false" collective="false" import="true" targetId="5ddb-4a5d-5b2d-c540" type="selectionEntry">
<categoryLinks>
<categoryLink id="d499-276f-f4fe-5100" name="HQ" hidden="false" targetId="485123232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="d518-5909-d60f-79db" name="Samus Unbound, Daemon Lord of the Ruinstorm" hidden="false" collective="false" import="true" targetId="777d-7ee1-4f6d-9ca8" type="selectionEntry">
<categoryLinks>
<categoryLink id="feb9-0a69-7838-340a" name="HQ" hidden="false" targetId="485123232344415441232323" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="5b60-f0c4-abb1-e1f4" name="Aliens and Daemons" hidden="false" collective="false" import="true" targetId="8221-a45d-16b8-2dcf" type="selectionEntry">
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1a38-1eed-c7e8-699a" type="max"/>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="10c9-a2d1-5e84-9a82" type="min"/>
</constraints>
<categoryLinks>
<categoryLink id="f556-e8fe-57c3-e682" name="New CategoryLink" hidden="false" targetId="cd09-c1c6-237a-798e" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="ee71-fb4f-ecd1-4c6f" name="Allied Detachment" hidden="false" collective="false" import="true" targetId="c91a-6e83-93ce-54ac" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="417b-6e99-19c2-0425" type="min"/>
</constraints>
</entryLink>
</entryLinks>
<sharedSelectionEntries>
<selectionEntry id="092e-7d74-b86e-14a4" name="Lord of Sorcery" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="c7e9-ff04-2095-0c9e" name="Lord of Sorcery" hidden="false" targetId="72b2-44f6-a487-9711" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="25.0"/>
</costs>
</selectionEntry>
<selectionEntry id="92c6-2146-8ca7-bd35" name="Ruinstorm Daemon Lord" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="set" field="4571-257a-8d04-03c5" value="0.0">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="3e2a-e0d1-0561-3872" type="equalTo"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="5ddb-4a5d-5b2d-c540" type="equalTo"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="777d-7ee1-4f6d-9ca8" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="add" field="category" value="9335-93c1-6af7-feb0">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="f398-6ade-f25f-e336" type="instanceOf"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="a0b6-1a2f-3d64-b9d4" type="instanceOf"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="41d1-3cca-834f-f8e0" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4571-257a-8d04-03c5" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="f02e-cc87-ce15-adf1" name="HQ" hidden="false" targetId="485123232344415441232323" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="12ad-550e-4bd4-a82b" name="Ruinstorm Daemon Brutes" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="92c6-2146-8ca7-bd35" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="4a3e-a87e-7efc-0a7a" type="atLeast"/>
</conditions>
</modifier>
<modifier type="set" field="b6e4-f425-e952-d617" value="0.0">
<conditions>
<condition field="selections" scope="92c6-2146-8ca7-bd35" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="4a3e-a87e-7efc-0a7a" type="atLeast"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="613e-f21f-788e-ce0a">
<conditions>
<condition field="selections" scope="12ad-550e-4bd4-a82b" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7d02-f800-e124-ea50" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b6e4-f425-e952-d617" type="max"/>
<constraint field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="31c8-198d-7ede-1680" type="min"/>
</constraints>
<selectionEntries>
<selectionEntry id="c3ea-cce7-8d35-0777" name="Ruinstorm Daemon Brutes" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5598-fad0-9b4d-5b32" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="785e-5e21-3cb3-f50a" type="min"/>
</constraints>
<infoLinks>
<infoLink id="5117-b351-c16e-99bc" name="Ruinstorm Daemon Brute" hidden="false" targetId="65d4-51fc-820f-9a1a" type="profile"/>
<infoLink id="8e37-8754-424e-21ab" name="Daemon of the Ruinstorm" hidden="false" targetId="0b0d-9d33-c0a8-06cd" type="rule"/>
<infoLink id="8abd-735b-8b7f-ec9d" name="Tide of Madness" hidden="false" targetId="a2dc-7a16-0067-a4db" type="rule"/>
<infoLink id="ecf1-4131-7921-3028" name="Vanguard of Hell" hidden="false" targetId="9340-ceb9-279b-ddbd" type="rule"/>
<infoLink id="636d-9632-92bd-e8c4" name="Parting the Veil" hidden="false" targetId="c828-3e09-a384-735b" type="rule"/>
<infoLink id="4421-6efb-975c-6218" name="Guardian Daemon" hidden="false" targetId="34c2-6943-3216-c5a2" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="50.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="ef14-1ec4-998b-436b" name="Emanations of Horror [1]" hidden="false" collective="false" import="true" targetId="377a-f74e-00b1-f5f5" type="selectionEntryGroup">
<modifiers>
<modifier type="set" field="e7c1-3a77-ef39-0f98" value="2"/>
</modifiers>
</entryLink>
<entryLink id="116e-20c0-6e54-b74e" name="Rift Barb Ambiguity" hidden="true" collective="false" import="true" targetId="725c-0c41-7a96-5901" type="selectionEntry">
<modifiers>
<modifier type="increment" field="points" value="3.0">
<repeats>
<repeat field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="19f9-a3b4-ae4e-845e" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="1aa6-e8a8-4288-3545" name="Ruinstorm Daemon Lord" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="add" field="category" value="677c-f197-e522-3b68">
<conditions>
<condition field="selections" scope="92c6-2146-8ca7-bd35" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="4a3e-a87e-7efc-0a7a" type="equalTo"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="12ca-5271-bc77-cd4f">
<conditions>
<condition field="selections" scope="92c6-2146-8ca7-bd35" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="4a3e-a87e-7efc-0a7a" type="equalTo"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="613e-f21f-788e-ce0a">
<conditions>
<condition field="selections" scope="92c6-2146-8ca7-bd35" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7d02-f800-e124-ea50" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="77dd-9d50-20dc-2179" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b10f-ec48-11ab-db5e" type="min"/>
</constraints>
<infoLinks>
<infoLink id="735d-7f27-f393-d551" name="Daemon of the Ruinstorm" hidden="false" targetId="0b0d-9d33-c0a8-06cd" type="rule"/>
<infoLink id="5884-cf8c-9e1d-90b4" name="Eternal Warrior" hidden="false" targetId="3e0b-be9f-b7eb-8c5e" type="rule"/>
<infoLink id="4f8a-3e76-c1eb-c8d4" name="Parting the Veil" hidden="false" targetId="c828-3e09-a384-735b" type="rule"/>
<infoLink id="a289-1043-b97d-cb74" name="Tides of Madness" hidden="false" targetId="a2dc-7a16-0067-a4db" type="rule"/>
<infoLink id="b0c6-7b78-7a96-ed8a" name="Vanguard of Hell" hidden="false" targetId="9340-ceb9-279b-ddbd" type="rule"/>
<infoLink id="a4fa-933f-6bd7-99de" name="Ruinstorm Daemon Lord" hidden="false" targetId="b7fd-97df-83f6-b2ab" type="profile">
<modifiers>
<modifier type="set" field="556e6974205479706523232344415441232323" value="Flying Monstrous Creature (Character)">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="4a3e-a87e-7efc-0a7a" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
</infoLink>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="4a3e-a87e-7efc-0a7a" name="Flying Monstrous Creature (Character)" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="12ad-550e-4bd4-a82b" type="atLeast"/>
</conditions>
</modifier>
<modifier type="set" field="728d-7d1b-a527-7a3e" value="0.0">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="12ad-550e-4bd4-a82b" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="728d-7d1b-a527-7a3e" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="30.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="c70a-e7a0-d805-3f8c" name="Emanations of Horror [2]" hidden="false" collective="false" import="true" targetId="fbff-b318-fc9d-9b88" type="selectionEntryGroup">
<modifiers>
<modifier type="increment" field="6444-bd31-dc43-d332" value="3"/>
</modifiers>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="200.0"/>
</costs>
</selectionEntry>
<selectionEntry id="5c39-d5e2-e0eb-3280" name="Maddening Swarms" hidden="false" collective="false" import="true" type="upgrade">
<rules>
<rule id="bef9-7420-a962-4800" name="Maddening Swarms" hidden="false">
<description>All models in the Detachment may select an additional Emanation of Horror.
Any unit capable of manifesting a psychic power, which does not attempt to do so during the controlling player's Psychic phase, must roll an extra dice for all Morale checks and Leadership rests for the remainder of the game rum and use the two highest dice rolled to calculate the result of that rest.
Any unit that consists of more than one model may select the Warp Scions Emanation.
In addition, an army whose Primary Detachment has this Dominion may choose to replace all other Primary Objectives in any mission with the following Primary Objective (their opponent's objectives remain unchanged, as do any Secondary Objectives in play):
Warp Conflagration: Each enemy unit destroyed, removed from play or forced to flee the table by a Psychic Power or by wounds caused by a Psychic Power scores 1 Victory point for the Daemons of the Ruinstorm player. In addition, if 4 or more Warp Charge points were allocated to a power that destroys or otherwise removes from play an enemy unit then it scores I additional Victory point for the Daemons of the Ruinstorm player.</description>
</rule>
</rules>
<categoryLinks>
<categoryLink id="1554-7c96-8a8e-ca23" name="New CategoryLink" hidden="false" targetId="2271-1b9a-5c30-9676" primary="true"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="7d02-f800-e124-ea50" name="Daemonic Wings" 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="8a93-de89-13e4-acc9" type="max"/>
</constraints>
<infoLinks>
<infoLink id="a803-3ad0-9158-a42a" name="Daemonic Wings" hidden="false" targetId="45a3-99f6-c011-ef06" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="9ad5-5b92-5f1f-e661" name="Ruinstorm Lesser Daemons" hidden="false" collective="false" import="true" type="unit">
<categoryLinks>
<categoryLink id="aec5-dd17-8bf5-d276" name="Compulsory Troops" hidden="false" targetId="0547-e031-0d25-4c6c" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="23df-3d35-fc4d-f51a" name="Ruinstorm Lesser Daemons" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="2129-273d-758e-06fd" value="15.0">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="f398-6ade-f25f-e336" type="instanceOf"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="a0b6-1a2f-3d64-b9d4" type="instanceOf"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="41d1-3cca-834f-f8e0" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="20.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2129-273d-758e-06fd" type="max"/>
<constraint field="selections" scope="parent" value="5.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6400-e7ee-9f4c-0e6e" type="min"/>
</constraints>
<infoLinks>
<infoLink id="427b-2709-5a08-83b0" name="Ruinstorm Lesser Daemon" hidden="false" targetId="1047-3a67-52d1-895c" type="profile"/>
<infoLink id="a169-01aa-fefb-bca6" name="Daemon of the Ruinstorm" hidden="false" targetId="0b0d-9d33-c0a8-06cd" type="rule"/>
<infoLink id="9a6d-492d-e895-8b61" name="Parting the Veil" hidden="false" targetId="c828-3e09-a384-735b" type="rule"/>
<infoLink id="05e8-49a5-505f-c663" name="Tides of Madness" hidden="false" targetId="a2dc-7a16-0067-a4db" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="12.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="8ee9-09bc-8039-bb3c" name="Emanations of Horror [1]" hidden="false" collective="false" import="true" targetId="377a-f74e-00b1-f5f5" type="selectionEntryGroup">
<modifiers>
<modifier type="increment" field="e7c1-3a77-ef39-0f98" value="3.0"/>
</modifiers>
</entryLink>
<entryLink id="655b-13a9-7270-0031" name="Rift Barb Ambiguity" hidden="true" collective="false" import="true" targetId="725c-0c41-7a96-5901" type="selectionEntry">
<modifiers>
<modifier type="increment" field="points" value="3.0">
<repeats>
<repeat field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="19f9-a3b4-ae4e-845e" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="a4fc-26a9-cd55-3b4b" name="Crushing Claws" 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="4ef9-4d4f-97dd-d462" type="max"/>
</constraints>
<infoLinks>
<infoLink id="3eaa-8efa-1970-e06c" name="Crushing Claws" hidden="false" targetId="3ca6-5e4c-f702-b983" type="profile"/>
<infoLink id="4998-53e1-b076-6f44" name="Rending" hidden="false" targetId="8269-2cd6-9236-16e7" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="e4ca-d240-cc12-1709" name="Flensing Talons" 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="e694-13a8-d32e-bab5" type="max"/>
</constraints>
<infoLinks>
<infoLink id="ecd8-3244-6a5c-e5c5" name="Flensing Talons" hidden="false" targetId="6956-e790-321e-9bf7" type="profile"/>
<infoLink id="e9b0-52d4-25a4-5daf" name="Shred" hidden="false" targetId="89da-0cb5-bee4-8ec2" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="84b2-d1d6-1872-c4ef" name="Corrosive Vomit" 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="5f87-a57c-d34a-1de1" type="max"/>
</constraints>
<infoLinks>
<infoLink id="4b08-c869-0f26-ad2f" name="Corrosive Vomit" hidden="false" targetId="469c-55e3-f888-4d60" type="rule"/>
<infoLink id="2460-7a6c-f15e-f5e3" name="Corrosive Vomit" hidden="false" targetId="471c-3332-0f3a-a012" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="5eaf-49f3-f745-fd30" name="Ruinstorm Daemon Brutes" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="add" field="category" value="613e-f21f-788e-ce0a">
<conditions>
<condition field="selections" scope="5eaf-49f3-f745-fd30" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7d02-f800-e124-ea50" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="5a79-01c8-c1c7-ef77" name="Elites" hidden="false" targetId="456c6974657323232344415441232323" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="4224-c0ee-3840-381f" name="Ruinstorm Daemon Brutes" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="6.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="253c-4177-cd13-6dda" type="max"/>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cb73-fe73-7556-9206" type="min"/>
</constraints>
<infoLinks>
<infoLink id="1347-551e-d744-a7c2" name="Ruinstorm Daemon Brute" hidden="false" targetId="65d4-51fc-820f-9a1a" type="profile">
<modifiers>
<modifier type="set" field="5361766523232344415441232323" value="3+">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="5eaf-49f3-f745-fd30" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="5759-049f-35eb-37c2" type="atLeast"/>
<condition field="selections" scope="5eaf-49f3-f745-fd30" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="da14-1454-058f-f0cd" type="atLeast"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="set" field="556e6974205479706523232344415441232323" value="Jump Infantry">
<conditions>
<condition field="selections" scope="5eaf-49f3-f745-fd30" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="7d02-f800-e124-ea50" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
</infoLink>
<infoLink id="0480-12cb-a92c-9aa1" name="Daemon of the Ruinstorm" hidden="false" targetId="0b0d-9d33-c0a8-06cd" type="rule"/>
<infoLink id="8c2a-4c8b-c986-0c5d" name="Vanguard of Hell" hidden="false" targetId="9340-ceb9-279b-ddbd" type="rule"/>
<infoLink id="9d9d-de1f-557b-587b" name="Tide of Madness" hidden="false" targetId="a2dc-7a16-0067-a4db" type="rule"/>
<infoLink id="a251-8722-9cce-f2ac" name="Parting the Veil" hidden="false" targetId="c828-3e09-a384-735b" type="rule"/>
<infoLink id="bf0e-0f7a-c78d-0a4c" name="Guardian Daemon" hidden="false" targetId="34c2-6943-3216-c5a2" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="50.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="08c5-d695-f9ec-e08b" name="Emanations of Horror [1]" hidden="false" collective="false" import="true" targetId="377a-f74e-00b1-f5f5" type="selectionEntryGroup">
<modifiers>
<modifier type="increment" field="e7c1-3a77-ef39-0f98" value="2"/>
</modifiers>
</entryLink>
<entryLink id="eee9-092c-9571-567e" name="Rift Barb Ambiguity" hidden="true" collective="false" import="true" targetId="725c-0c41-7a96-5901" type="selectionEntry">
<modifiers>
<modifier type="increment" field="points" value="3.0">
<repeats>
<repeat field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="19f9-a3b4-ae4e-845e" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="b13b-5247-2078-4daf" name="Ruinstorm Greater Daemon" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="add" field="category" value="9335-93c1-6af7-feb0">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="f398-6ade-f25f-e336" type="instanceOf"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="a0b6-1a2f-3d64-b9d4" type="instanceOf"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="41d1-3cca-834f-f8e0" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="de3d-2656-aeae-8bf0" name="HQ" hidden="false" targetId="485123232344415441232323" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="53c0-0b7b-42e5-0eda" name="Ruinstorm Greater Daemon" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="add" field="category" value="613e-f21f-788e-ce0a">
<conditions>
<condition field="selections" scope="b13b-5247-2078-4daf" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7d02-f800-e124-ea50" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fccf-db2f-d1a3-333f" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2342-0d11-6faa-3e91" type="min"/>
</constraints>
<infoLinks>
<infoLink id="5153-4fb7-fb67-ab8d" name="Ruinstorm Greater Daemon" hidden="false" targetId="1594-7706-9792-d4de" type="profile"/>
<infoLink id="f7cf-defe-6ff2-ad0f" name="Daemon of the Ruinstorm" hidden="false" targetId="0b0d-9d33-c0a8-06cd" type="rule"/>
<infoLink id="457d-b0e6-5b62-7959" name="Parting the Veil" hidden="false" targetId="c828-3e09-a384-735b" type="rule"/>
<infoLink id="182e-0e1b-2138-80a2" name="Tides of Madness" hidden="false" targetId="a2dc-7a16-0067-a4db" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="e072-d1ce-761b-dbf5" name="Monstrous Creature" hidden="false" targetId="677c-f197-e522-3b68" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="160.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="1355-24cb-c9df-e80c" name="Emanations of Horror [2]" hidden="false" collective="false" import="true" targetId="fbff-b318-fc9d-9b88" type="selectionEntryGroup">
<modifiers>
<modifier type="increment" field="6444-bd31-dc43-d332" value="3"/>
</modifiers>
</entryLink>
</entryLinks>