-
Notifications
You must be signed in to change notification settings - Fork 35
/
2nd-warriorsOfTheDarkGods.cat
6070 lines (6070 loc) · 428 KB
/
2nd-warriorsOfTheDarkGods.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="9cd6-2c84-c59e-7dd1" name="Warriors of the Dark Gods 2024" revision="102" battleScribeVersion="2.03" authorName="DarkSky, rzmoz, hebus, Mikel2311, Vrenel" library="false" gameSystemId="aa64-1e8e-66fc-9abf" gameSystemRevision="55" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<profileTypes>
<profileType id="25f6-6ecf-2669-118b" name="8 Manifestation">
<characteristicTypes>
<characteristicType id="46b6-aba4-69a9-467b" name="Effect"/>
<characteristicType id="ad1c-3ba4-ace3-9a3f" name="Spells"/>
</characteristicTypes>
</profileType>
</profileTypes>
<forceEntries>
<forceEntry id="10a7-dcf0-85e0-68cf" name="Warriors of the Dark Gods" hidden="false">
<categoryLinks>
<categoryLink id="9290-13d4-68c8-15bd" name="Characters" hidden="false" targetId="953d-22cd-7ee1-36dc" primary="false">
<constraints>
<constraint field="limit::24fd-8af8-0c78-001c" scope="roster" value="45.0" percentValue="true" shared="true" includeChildSelections="true" includeChildForces="false" id="4756-3c62-1980-8447" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="3b5f-1b7a-95fb-0e12" name="Core" hidden="false" targetId="4bcd-01c8-ce5e-7108" primary="false">
<constraints>
<constraint field="limit::24fd-8af8-0c78-001c" scope="roster" value="20.0" percentValue="true" shared="true" includeChildSelections="true" includeChildForces="false" id="b70c-5732-5c2a-5edc" type="min"/>
</constraints>
</categoryLink>
<categoryLink id="7533-38d3-2f4d-94b2" name="Special" hidden="false" targetId="f8f1-3d4f-12bf-73cd" primary="false"/>
</categoryLinks>
</forceEntry>
</forceEntries>
<selectionEntries>
<selectionEntry id="007b-ee98-bbf2-a52a" name="Exalted Herald" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="7f4e-3e54-901f-6c2b" name="Exalted Herald Global" hidden="false" typeId="8292-1fb8-8251-29a9" typeName="1 Global">
<characteristics>
<characteristic name="Adv" typeId="b0d9-2dab-f10b-9b13">7"</characteristic>
<characteristic name="Mar" typeId="db10-a838-f72f-3ed6">14"</characteristic>
<characteristic name="Dis" typeId="be28-67a6-2280-9eaf">9</characteristic>
<characteristic name="Rules" typeId="8f96-9d74-2aaa-da9d"/>
</characteristics>
</profile>
<profile id="c0ea-a5c4-68cd-e0f0" name="Exalted Herald Defensive" hidden="false" typeId="e7d3-5099-e669-c365" typeName="2 Defensive">
<characteristics>
<characteristic name="HP" typeId="f381-7850-7fa8-3440">5</characteristic>
<characteristic name="Def" typeId="160d-4624-273f-2114">8</characteristic>
<characteristic name="Res" typeId="ec15-bc66-645e-db5d">5</characteristic>
<characteristic name="Arm" typeId="597b-8735-3dd1-0e70">3</characteristic>
<characteristic name="Rules" typeId="91c5-9d30-bda7-cf14">Aegis (4+)</characteristic>
</characteristics>
</profile>
<profile id="f9fe-6831-3814-ef07" name="Exalted Herald Offensive" hidden="false" typeId="154c-6605-1486-e1da" typeName="3 Offensive">
<characteristics>
<characteristic name="Att" typeId="8265-800f-bc87-d00a">6</characteristic>
<characteristic name="Off" typeId="7d3b-bb95-3d29-26f7">9</characteristic>
<characteristic name="Str" typeId="4d4a-2100-804f-99e5">5</characteristic>
<characteristic name="AP" typeId="7a8c-adb0-d1b8-a1b6">2</characteristic>
<characteristic name="Agi" typeId="2a23-367f-8828-c297">8</characteristic>
<characteristic name="Rules" typeId="44e9-6a3e-7471-8b36"/>
</characteristics>
</profile>
<profile id="2d2b-f2e8-4a4b-409a" name="Abiding Spirit" hidden="false" typeId="25f6-6ecf-2669-118b" typeName="8 Manifestation">
<characteristics>
<characteristic name="Effect" typeId="46b6-aba4-69a9-467b">Hard Target (1). At the end of each friendly Melee Phase, if the Exalted Herald has been on the winning side of a combat in this phase, it Recovers 1 Health Point.Hard Target (1). At the end of each of your Melee Phases, if the Exalted Herald has been on the winning side of a combat in this phase, it Recovers 1 Health Point.</characteristic>
<characteristic name="Spells" typeId="ad1c-3ba4-ace3-9a3f">Smite the Unbeliever (Thaumaturgy).</characteristic>
</characteristics>
</profile>
<profile id="9e95-14ab-a5a8-cd7a" name="Brand of the Dragon" hidden="false" typeId="25f6-6ecf-2669-118b" typeName="8 Manifestation">
<characteristics>
<characteristic name="Effect" typeId="46b6-aba4-69a9-467b">Fly (7′′, 14′′), Swiftstride, and Breath Attack (Str 4, AP 1, Flaming Attacks).</characteristic>
<characteristic name="Spells" typeId="ad1c-3ba4-ace3-9a3f">Breath of Corruption (Occultism).</characteristic>
</characteristics>
</profile>
<profile id="3b2f-0aa7-2c15-e830" name="Emissary of Chaos" hidden="false" typeId="25f6-6ecf-2669-118b" typeName="8 Manifestation">
<characteristics>
<characteristic name="Effect" typeId="46b6-aba4-69a9-467b">Stomp Attacks (D6), Stubborn, Tall, and Terror.</characteristic>
<characteristic name="Spells" typeId="ad1c-3ba4-ace3-9a3f">Pentagram of Pain (Occultism).</characteristic>
</characteristics>
</profile>
<profile id="8094-d6cd-cdc1-18c1" name="Sorcerer Immortal" hidden="false" typeId="25f6-6ecf-2669-118b" typeName="8 Manifestation">
<characteristics>
<characteristic name="Effect" typeId="46b6-aba4-69a9-467b">Channel (1) and Veil Walker.</characteristic>
<characteristic name="Spells" typeId="ad1c-3ba4-ace3-9a3f">Marked for Doom (Occultism) and The Grave Calls (Occultism).</characteristic>
</characteristics>
</profile>
<profile id="fa79-0493-671d-e93b" name="Unholy Avatar" hidden="false" typeId="25f6-6ecf-2669-118b" typeName="8 Manifestation">
<characteristics>
<characteristic name="Effect" typeId="46b6-aba4-69a9-467b">+1 Strength, +1 Armour Penetration, and Divine Attacks.</characteristic>
<characteristic name="Spells" typeId="ad1c-3ba4-ace3-9a3f">The Rot Within (Occultism).</characteristic>
</characteristics>
</profile>
<profile id="498b-d533-17e2-c5f2" name="Exalted Herald Size" hidden="false" typeId="7733-ad26-4b46-6a5a" typeName="0 Size">
<characteristics>
<characteristic name="Height" typeId="0d1d-aeaf-8f31-fd17">Large</characteristic>
<characteristic name="Type" typeId="1176-4910-e04b-f1c5">Infantry</characteristic>
<characteristic name="Base" typeId="7bbb-3d47-ed57-284d">50×50</characteristic>
</characteristics>
</profile>
</profiles>
<rules>
<rule id="7995-00fb-1fb9-c00c" name="Manifestation" hidden="false">
<description>During Spell Selection, each Exalted Herald must choose two different Manifestations from the list below and apply the effects during the game. The model must select 2 spells out of the spells indicated for the chosen Manifestations, Wrath of God (Thaumaturgy), and Hellfire (Hereditary Spell). This replaces the normal rules for Spell Selection connected to being a Wizard Adept. In addition, Guiding Light (Divination) becomes the Attribute Spell for all non-Bound Spells cast by the model, replacing the spells’ corresponding Attribute where applicable.</description>
</rule>
</rules>
<infoLinks>
<infoLink id="851a-8cae-32e3-24f8" name="Fear" hidden="false" targetId="ed2a-e8b3-cc1a-cce0" type="rule"/>
<infoLink id="cf9a-4cf9-9317-0b1b" name="Wizard Adept" hidden="false" targetId="c0a6-6da5-98d6-f051" type="rule"/>
<infoLink id="4461-fe41-5574-4599" name="Supernal" hidden="false" targetId="4d9a-1dea-1661-4083" type="rule"/>
<infoLink id="cafc-d03a-ee9c-07f4" name="Aegis" hidden="false" targetId="4966-e452-f252-6176" type="rule">
<modifiers>
<modifier type="append" field="name" value=" (4+)"/>
</modifiers>
</infoLink>
<infoLink id="3059-92e8-18a0-baca" name="Legendary Beasts" hidden="false" targetId="fa3d-d13f-832f-5caf" type="rule">
<modifiers>
<modifier type="append" field="name" value=" (2)"/>
</modifiers>
</infoLink>
<infoLink id="24a9-fc4f-0edc-4a0c" name="Exclusive" hidden="false" targetId="6034-690b-2c59-a7fa" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="d356-dfb7-6404-334a" name="New CategoryLink" hidden="false" targetId="953d-22cd-7ee1-36dc" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="2075-a7ac-f922-3b07" name="Army General" hidden="false" collective="false" import="true" targetId="d664-b973-594c-5971" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="810.0"/>
</costs>
</selectionEntry>
<selectionEntry id="0e4c-6a11-1423-6af4" name="Chosen Lord" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="c9f7-7de0-3e2c-98d8" name="Chosen Lord Global" hidden="false" typeId="8292-1fb8-8251-29a9" typeName="1 Global">
<modifiers>
<modifier type="set" field="b0d9-2dab-f10b-9b13" value="Ground 5", Fly 8"">
<conditions>
<condition field="selections" scope="0e4c-6a11-1423-6af4" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="1121-bef0-a730-02ea" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="db10-a838-f72f-3ed6" value="Ground 10", Fly 16"">
<conditions>
<condition field="selections" scope="0e4c-6a11-1423-6af4" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="1121-bef0-a730-02ea" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="Adv" typeId="b0d9-2dab-f10b-9b13">5"</characteristic>
<characteristic name="Mar" typeId="db10-a838-f72f-3ed6">10"</characteristic>
<characteristic name="Dis" typeId="be28-67a6-2280-9eaf">9</characteristic>
<characteristic name="Rules" typeId="8f96-9d74-2aaa-da9d"/>
</characteristics>
</profile>
<profile id="ad2c-ac0a-b33f-0481" name="Chosen Lord Defensive" hidden="false" typeId="e7d3-5099-e669-c365" typeName="2 Defensive">
<characteristics>
<characteristic name="HP" typeId="f381-7850-7fa8-3440">3</characteristic>
<characteristic name="Def" typeId="160d-4624-273f-2114">7</characteristic>
<characteristic name="Res" typeId="ec15-bc66-645e-db5d">5</characteristic>
<characteristic name="Arm" typeId="597b-8735-3dd1-0e70">0</characteristic>
<characteristic name="Rules" typeId="91c5-9d30-bda7-cf14">Hell-Forged Armour</characteristic>
</characteristics>
</profile>
<profile id="51b1-fe73-30f7-918f" name="Chosen Lord Offensive" hidden="false" typeId="154c-6605-1486-e1da" typeName="3 Offensive">
<characteristics>
<characteristic name="Att" typeId="8265-800f-bc87-d00a">5</characteristic>
<characteristic name="Off" typeId="7d3b-bb95-3d29-26f7">8</characteristic>
<characteristic name="Str" typeId="4d4a-2100-804f-99e5">5</characteristic>
<characteristic name="AP" typeId="7a8c-adb0-d1b8-a1b6">2</characteristic>
<characteristic name="Agi" typeId="2a23-367f-8828-c297">7</characteristic>
<characteristic name="Rules" typeId="44e9-6a3e-7471-8b36"/>
</characteristics>
</profile>
<profile id="f08a-14ea-c8a5-2276" name="Chosen Lord Size" hidden="false" typeId="7733-ad26-4b46-6a5a" typeName="0 Size">
<characteristics>
<characteristic name="Height" typeId="0d1d-aeaf-8f31-fd17">Standard</characteristic>
<characteristic name="Type" typeId="1176-4910-e04b-f1c5">Infantry</characteristic>
<characteristic name="Base" typeId="7bbb-3d47-ed57-284d">25×25</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="9771-01d3-4bfd-81b8" name="Path of the Favoured" hidden="false" targetId="ad22-35cb-7d05-aea3" type="rule"/>
<infoLink id="0c9e-4dbc-bfb7-17fb" name="Hell-Forged Armour" hidden="false" targetId="4b6e-450b-00c6-c6e9" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="cd97-7c44-62ac-0d63" name="New CategoryLink" hidden="false" targetId="953d-22cd-7ee1-36dc" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="f330-cb32-1dbf-49af" name="Special Equipment" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="d1b7-34c2-c09e-c618" type="max"/>
</constraints>
<selectionEntryGroups>
<selectionEntryGroup id="ca9a-a322-32dc-eea5" name="Special Equipment" hidden="false" collective="false" import="true">
<modifiers>
<modifier type="increment" field="f116-4cd8-56b6-7bc0" value="50.0">
<conditions>
<condition field="selections" scope="0e4c-6a11-1423-6af4" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d664-b973-594c-5971" type="equalTo"/>
</conditions>
</modifier>
<modifier type="increment" field="f116-4cd8-56b6-7bc0" value="50.0">
<conditions>
<condition field="selections" scope="0e4c-6a11-1423-6af4" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ef34-5da0-4123-c9de" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="24fd-8af8-0c78-001c" scope="parent" value="150.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="f116-4cd8-56b6-7bc0" type="max"/>
</constraints>
<selectionEntryGroups>
<selectionEntryGroup id="b2ed-79ed-c4be-4388" name="Armour Enchantment" hidden="false" collective="false" import="true">
<entryLinks>
<entryLink id="6939-1d40-008e-f20f" name="Armour Enchantments" hidden="false" collective="false" import="true" targetId="74ad-3e59-5174-60fa" type="selectionEntryGroup"/>
<entryLink id="08c1-08d6-1605-363a" name="WDG Armour Enchantments" hidden="false" collective="false" import="true" targetId="e473-0818-1abb-3348" type="selectionEntryGroup"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="de6d-d04b-6033-cc4c" name="Weapon Enchantment" hidden="false" collective="false" import="true">
<entryLinks>
<entryLink id="3ea7-4357-ce33-0a4e" name="Weapon Enchantments" hidden="false" collective="false" import="true" targetId="f853-d3c3-4165-d5ab" type="selectionEntryGroup"/>
<entryLink id="c4cd-6898-6271-9c5d" name="WDG Weapon Enchantments" hidden="false" collective="false" import="true" targetId="2eb2-5755-d708-4c4c" type="selectionEntryGroup"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="bcb7-41b3-0024-10f3" name="Shield Enchantment" hidden="false" collective="false" import="true">
<entryLinks>
<entryLink id="943f-7862-a747-2dac" name="Shield Enchantments" hidden="false" collective="false" import="true" targetId="3ca8-d93a-232c-d3b5" type="selectionEntryGroup"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="b319-0efd-150c-88ac" name="Artefacts" hidden="false" collective="false" import="true">
<entryLinks>
<entryLink id="2b80-b554-e3b0-01f0" name="Artefacts (non-Wizards)" hidden="false" collective="false" import="true" targetId="6e26-c5df-c19e-83d4" type="selectionEntryGroup"/>
<entryLink id="24fc-efa8-6207-15d1" name="WDG Artefacts (Chosen Lord, Chieftain)" hidden="false" collective="false" import="true" targetId="473c-1aad-25d4-deb0" type="selectionEntryGroup"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="5c6d-5ef4-de6b-c183" name="Banner Enchantment" hidden="true" collective="false" import="true">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="0e4c-6a11-1423-6af4" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="8636-7719-69f0-0244" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<entryLinks>
<entryLink id="c84e-6a73-0a8c-1d24" name="Banner Enchantments (Unit)" hidden="false" collective="false" import="true" targetId="4eb1-cabb-a838-a005" type="selectionEntryGroup"/>
<entryLink id="ba22-3173-5097-7010" name="WDG Banner Enchantments" hidden="false" collective="false" import="true" targetId="f1be-ccdc-db5b-9013" type="selectionEntryGroup"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="c819-6b52-dffb-165b" name="Gift of the Dark Gods" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2b96-f5e3-7966-49ee" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="1121-bef0-a730-02ea" name="Daemonic Wings" 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="false" includeChildForces="false" childId="639d-9691-d5a4-fa06" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1486-715a-1f87-7b2a" type="max"/>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="a04f-662d-8d8d-156f" type="max"/>
</constraints>
<rules>
<rule id="d602-c3fa-0828-e1b7" name="Daemonic Wings" hidden="false">
<description>Models on foot only. The bearer gains Fly (8′′, 16′′), Light Troops, and Swiftstride.</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="70.0"/>
</costs>
</selectionEntry>
<selectionEntry id="366d-61a2-c178-88df" name="Luck of the Dark Gods" 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="1ec6-e9c0-04f3-446a" type="max"/>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="811b-4abb-dfbd-760d" type="max"/>
</constraints>
<rules>
<rule id="25ec-913a-1712-6c55" name="Luck of the Dark Gods" hidden="false">
<description>The bearer’s model gains Aegis (+1, max 4+).</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="65.0"/>
</costs>
</selectionEntry>
<selectionEntry id="a054-35db-0588-b5ab" name="Dark Prelate" 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="ec3d-2737-10cc-bb6f" type="max"/>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="6ad4-21f6-bfb0-45ba" type="max"/>
</constraints>
<rules>
<rule id="a639-6191-5440-e070" name="Dark Prelate" hidden="false">
<description>The bearer can cast Spectral Blades (Evocation) and Hand of Glory (Occultism) as Bound Spells with Power Level (4/8) and type Caster’s Unit. Hand of Glory is automatically cast with the amplified version (without performing The Sacrifice).</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="55.0"/>
</costs>
</selectionEntry>
<selectionEntry id="a1b1-2d9b-7e06-e0ca" name="Idol of Spite" 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="4b52-5011-5614-b5ae" type="max"/>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="abca-943d-4999-3752" type="max"/>
</constraints>
<rules>
<rule id="6303-e38a-fe79-2151" name="Idol of Spite" hidden="false">
<description>One use only. Activate at the start of a Round of Combat. For the duration of this Round of Combat, the bearer gains +1 Attack Value, +1 Strength, and +1 Armour Penetration.</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="75.0"/>
</costs>
</selectionEntry>
<selectionEntry id="d170-7649-7068-693a" name="Entropic Aura" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="0e4c-6a11-1423-6af4" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="21a7-64b7-d8bc-f979" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1f0a-4d16-5fdc-8b89" type="max"/>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="5004-2d36-05e0-e98b" type="max"/>
</constraints>
<rules>
<rule id="fe14-6e22-fd71-9a7e" name="Entropic Aura" hidden="false">
<description>Weapon Enchantments and Armour Enchantments carried by the bearer, models in the bearer’s unit, and models in units that are in base contact with the bearer are ignored.</description>
</rule>
</rules>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="50.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
<selectionEntryGroup id="639d-9691-d5a4-fa06" name="Mount" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="858d-ff9f-7327-b770" type="max"/>
</constraints>
<entryLinks>
<entryLink id="a6bf-a729-c4a9-da86" name="Black Steed" hidden="false" collective="false" import="true" targetId="4851-37d7-9820-f20b" type="selectionEntry">
<modifiers>
<modifier type="set" field="90e5-90b5-4425-f19b" value="0.0">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="41fe-d2cc-82ef-381a" type="equalTo"/>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="538d-5665-58a8-281d" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="135.0"/>
</costs>
</entryLink>
<entryLink id="e097-fe2d-b8d9-2443" name="War Dais" hidden="false" collective="false" import="true" targetId="b168-546c-9ddc-a9b9" type="selectionEntry">
<modifiers>
<modifier type="set" field="f4f2-a5ab-3a1a-ec48" value="0.0">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="41fe-d2cc-82ef-381a" type="equalTo"/>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="538d-5665-58a8-281d" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="110.0"/>
</costs>
</entryLink>
<entryLink id="d8ae-b6f7-698f-477e" name="Scythed Skywheel" hidden="false" collective="false" import="true" targetId="fdff-f359-5df2-64b3" type="selectionEntry">
<modifiers>
<modifier type="set" field="0c8e-34ff-df6a-f320" value="0.0">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="41fe-d2cc-82ef-381a" type="equalTo"/>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b8a1-4182-3aba-ffd8" type="equalTo"/>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="47b1-c334-2935-e4f4" type="equalTo"/>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="538d-5665-58a8-281d" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="45.0"/>
</costs>
</entryLink>
<entryLink id="4bea-1b80-db1c-86c1" name="Dark Chariot" hidden="false" collective="false" import="true" targetId="5061-a042-de8b-fc12" type="selectionEntry">
<modifiers>
<modifier type="set" field="54f1-024d-8efa-435f" value="0.0">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="41fe-d2cc-82ef-381a" type="equalTo"/>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b8a1-4182-3aba-ffd8" type="equalTo"/>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="47b1-c334-2935-e4f4" type="equalTo"/>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="538d-5665-58a8-281d" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="140.0"/>
</costs>
</entryLink>
<entryLink id="6081-b886-3ef0-5c96" name="Karkadan" hidden="false" collective="false" import="true" targetId="f0d0-f482-6af7-b0f7" type="selectionEntry">
<modifiers>
<modifier type="set" field="a66f-7486-38fe-2c8a" value="0.0">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="41fe-d2cc-82ef-381a" type="equalTo"/>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="538d-5665-58a8-281d" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="110.0"/>
</costs>
</entryLink>
<entryLink id="e9f1-996a-70ed-17d1" name="Chimera" hidden="false" collective="false" import="true" targetId="1b4c-fd37-a969-30af" type="selectionEntry">
<modifiers>
<modifier type="set" field="c8da-b98d-175b-f67e" value="0.0">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="41fe-d2cc-82ef-381a" type="equalTo"/>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="538d-5665-58a8-281d" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="185.0"/>
</costs>
</entryLink>
<entryLink id="830c-f7a4-a6ac-7d49" name="Wasteland Dragon" hidden="false" collective="false" import="true" targetId="21a7-64b7-d8bc-f979" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="0e4c-6a11-1423-6af4" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d664-b973-594c-5971" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="23d7-099c-d64a-10b2" value="0.0">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="41fe-d2cc-82ef-381a" type="equalTo"/>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b8a1-4182-3aba-ffd8" type="equalTo"/>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="47b1-c334-2935-e4f4" type="equalTo"/>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="589f-da5c-20ba-5f1a" type="equalTo"/>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="538d-5665-58a8-281d" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="380.0"/>
</costs>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="e787-61e3-ba92-e65b" name="Favour of the Dark Gods" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e6fe-1600-61e2-b544" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0d3a-f821-6e04-42ca" type="max"/>
</constraints>
<entryLinks>
<entryLink id="05bf-b8b6-fdab-f45d" name="Favour of Akaan, God of Gluttony" hidden="false" collective="false" import="true" targetId="0614-ee37-f29f-c6f0" type="selectionEntry">
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="20.0"/>
</costs>
</entryLink>
<entryLink id="a99d-abac-9f1d-1ae1" name="Favour of Kuulima, Goddess of Envy" hidden="false" collective="false" import="true" targetId="4048-12e5-aaa9-fbea" type="selectionEntry">
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="20.0"/>
</costs>
</entryLink>
<entryLink id="e503-d14f-f6d9-e0e4" name="Favour of Savar, God of Pride" hidden="false" collective="false" import="true" targetId="fd2a-be20-2128-92bd" type="selectionEntry"/>
<entryLink id="0e41-e01c-7c1c-17e5" name="Favour of Vanadra, Goddess of Wrath" hidden="false" collective="false" import="true" targetId="7385-45d2-bf5f-b8ea" type="selectionEntry">
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="20.0"/>
</costs>
</entryLink>
<entryLink id="9f86-2043-4560-052f" name="Favour of Nukuja, Goddess of Sloth" hidden="false" collective="false" import="true" targetId="517a-afbb-9d04-5381" type="selectionEntry">
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="20.0"/>
</costs>
</entryLink>
<entryLink id="0e3f-438b-09c8-6204" name="Favour of Cibaresh, God of Lust" hidden="false" collective="false" import="true" targetId="d299-ca1e-7b60-c9fd" type="selectionEntry"/>
<entryLink id="e3b1-fbb1-afbf-bb2d" name="Favour of Sugulag, God of Greed" hidden="false" collective="false" import="true" targetId="ef34-5da0-4123-c9de" type="selectionEntry">
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="20.0"/>
</costs>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="3e2c-4728-7e43-26cd" name="Melee Weapon" hidden="false" collective="false" import="true" defaultSelectionEntryId="bcc9-ba04-989f-a045">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9ff2-063b-a3da-4d3f" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d71c-d503-ece7-8930" type="min"/>
</constraints>
<entryLinks>
<entryLink id="50dc-1b8c-9240-580b" name="Great Weapon" hidden="false" collective="false" import="true" targetId="2837-ec0d-956f-690a" type="selectionEntry">
<modifiers>
<modifier type="set" field="c73d-37e8-2340-287d" value="0.0">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="cefd-3232-dc53-2e02" type="equalTo"/>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="eedf-4585-d0c1-f613" type="equalTo"/>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0a30-afbb-4ce6-f5a2" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="20.0"/>
</costs>
</entryLink>
<entryLink id="3f18-8206-eea7-7474" name="Halberd" hidden="false" collective="false" import="true" targetId="544f-9331-9cce-694d" type="selectionEntry">
<modifiers>
<modifier type="set" field="b311-493d-9678-8b90" value="0.0">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="cefd-3232-dc53-2e02" type="equalTo"/>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="eedf-4585-d0c1-f613" type="equalTo"/>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0a30-afbb-4ce6-f5a2" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="20.0"/>
</costs>
</entryLink>
<entryLink id="23b3-8f1a-6db8-d137" name="Paired Weapons" hidden="false" collective="false" import="true" targetId="6a41-63a5-c5f6-66f6" type="selectionEntry">
<modifiers>
<modifier type="set" field="236a-7e57-0706-fc14" value="0.0">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0a30-afbb-4ce6-f5a2" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="10.0"/>
</costs>
</entryLink>
<entryLink id="90cb-b10e-5458-97f0" name="Lance" hidden="false" collective="false" import="true" targetId="b10f-350c-0581-f9c2" type="selectionEntry">
<modifiers>
<modifier type="set" field="2ff1-d7f1-dfdc-8762" value="0.0">
<conditions>
<condition field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="639d-9691-d5a4-fa06" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="2ff1-d7f1-dfdc-8762" value="0.0">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="cefd-3232-dc53-2e02" type="equalTo"/>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="eedf-4585-d0c1-f613" type="equalTo"/>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0a30-afbb-4ce6-f5a2" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="10.0"/>
</costs>
</entryLink>
<entryLink id="bcc9-ba04-989f-a045" name="Hand Weapon" hidden="false" collective="false" import="true" targetId="d5a4-4049-60de-5914" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="7428-7c5b-024b-2b32" name="Shield Option" hidden="false" collective="false" import="true" defaultSelectionEntryId="e4b7-d4bd-aa8c-f7dd">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a1cd-e012-c868-4700" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5e6b-fc32-1304-7650" type="min"/>
</constraints>
<entryLinks>
<entryLink id="c78d-04ac-7568-ad0b" name="Spiked Shield" hidden="false" collective="false" import="true" targetId="3d77-e96b-9997-ddf6" type="selectionEntry">
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="10.0"/>
</costs>
</entryLink>
<entryLink id="e4b7-d4bd-aa8c-f7dd" name="Shield" hidden="false" collective="false" import="true" targetId="ff97-a295-86c8-76d5" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="aea8-502d-a496-e66a" name="Trophy Rack" hidden="false" collective="false" import="true" targetId="8636-7719-69f0-0244" type="selectionEntry"/>
<entryLink id="5e10-3b1f-e686-1392" name="Hell-Forged Armour" hidden="false" collective="false" import="true" targetId="7004-78f0-0fa9-768e" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b2f8-f9e3-1426-69a3" type="min"/>
</constraints>
</entryLink>
<entryLink id="b5a4-3913-a1b6-c995" name="Army General" hidden="false" collective="false" import="true" targetId="d664-b973-594c-5971" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="275.0"/>
</costs>
</selectionEntry>
<selectionEntry id="1cbe-5e0c-13a0-d85a" name="Doomlord" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="1c4e-486e-ff43-0ef8" name="Doomlord Global" hidden="false" typeId="8292-1fb8-8251-29a9" typeName="1 Global">
<characteristics>
<characteristic name="Adv" typeId="b0d9-2dab-f10b-9b13">6"</characteristic>
<characteristic name="Mar" typeId="db10-a838-f72f-3ed6">12"</characteristic>
<characteristic name="Dis" typeId="be28-67a6-2280-9eaf">9</characteristic>
<characteristic name="Rules" typeId="8f96-9d74-2aaa-da9d"/>
</characteristics>
</profile>
<profile id="77b2-f23b-7176-88a2" name="Doomlord Defensive" hidden="false" typeId="e7d3-5099-e669-c365" typeName="2 Defensive">
<characteristics>
<characteristic name="HP" typeId="f381-7850-7fa8-3440">4</characteristic>
<characteristic name="Def" typeId="160d-4624-273f-2114">6</characteristic>
<characteristic name="Res" typeId="ec15-bc66-645e-db5d">5</characteristic>
<characteristic name="Arm" typeId="597b-8735-3dd1-0e70">1</characteristic>
<characteristic name="Rules" typeId="91c5-9d30-bda7-cf14">Hell-Forged Armour</characteristic>
</characteristics>
</profile>
<profile id="af38-ecff-3b01-59e8" name="Doomlord Offensive" hidden="false" typeId="154c-6605-1486-e1da" typeName="3 Offensive">
<characteristics>
<characteristic name="Att" typeId="8265-800f-bc87-d00a">5</characteristic>
<characteristic name="Off" typeId="7d3b-bb95-3d29-26f7">7</characteristic>
<characteristic name="Str" typeId="4d4a-2100-804f-99e5">5</characteristic>
<characteristic name="AP" typeId="7a8c-adb0-d1b8-a1b6">2</characteristic>
<characteristic name="Agi" typeId="2a23-367f-8828-c297">4</characteristic>
<characteristic name="Rules" typeId="44e9-6a3e-7471-8b36"/>
</characteristics>
</profile>
<profile id="947d-2481-f137-5bb2" name="Doomlord Size" hidden="false" typeId="7733-ad26-4b46-6a5a" typeName="0 Size">
<characteristics>
<characteristic name="Height" typeId="0d1d-aeaf-8f31-fd17">Large</characteristic>
<characteristic name="Type" typeId="1176-4910-e04b-f1c5">Infantry</characteristic>
<characteristic name="Base" typeId="7bbb-3d47-ed57-284d">40×40</characteristic>
</characteristics>
</profile>
</profiles>
<rules>
<rule id="a232-0e15-adab-0288" name="Master of Destruction" hidden="false">
<description>The bearer can use a Shield (or a Spiked Shield) simultaneously with a Great Weapon or a Halberd.</description>
</rule>
</rules>
<infoLinks>
<infoLink id="cf7f-f655-66ef-1503" name="Path of the Exiled" hidden="false" targetId="45c4-f6e9-92e8-a409" type="rule"/>
<infoLink id="6e88-e5fd-5d73-cb34" name="Hell-Forged Armour" hidden="false" targetId="4b6e-450b-00c6-c6e9" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="5384-951f-1a44-3951" name="New CategoryLink" hidden="false" targetId="953d-22cd-7ee1-36dc" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="3e63-a709-2a0c-9ab5" name="Special Equipment" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="4588-9d0c-7e26-4c52" type="max"/>
</constraints>
<selectionEntryGroups>
<selectionEntryGroup id="56d0-aaca-d79e-e581" name="Special Equipment" hidden="false" collective="false" import="true">
<modifiers>
<modifier type="set" field="ddde-0b6b-74e0-c677" value="200.0">
<conditions>
<condition field="selections" scope="1cbe-5e0c-13a0-d85a" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d664-b973-594c-5971" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="24fd-8af8-0c78-001c" scope="parent" value="150.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="ddde-0b6b-74e0-c677" type="max"/>
</constraints>
<selectionEntryGroups>
<selectionEntryGroup id="81c9-54a7-8e54-66db" name="Armour Enchantment" hidden="false" collective="false" import="true">
<entryLinks>
<entryLink id="3f52-a514-649c-8350" name="Armour Enchantments" hidden="false" collective="false" import="true" targetId="74ad-3e59-5174-60fa" type="selectionEntryGroup"/>
<entryLink id="6a02-b7c3-3e8f-da78" name="WDG Armour Enchantments" hidden="false" collective="false" import="true" targetId="e473-0818-1abb-3348" type="selectionEntryGroup"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="ce2b-5761-70e9-19b1" name="Weapon Enchantment" hidden="false" collective="false" import="true">
<entryLinks>
<entryLink id="4e3d-3cd4-2868-b9cc" name="Weapon Enchantments" hidden="false" collective="false" import="true" targetId="f853-d3c3-4165-d5ab" type="selectionEntryGroup"/>
<entryLink id="f556-3821-66e5-e36f" name="WDG Weapon Enchantments" hidden="false" collective="false" import="true" targetId="2eb2-5755-d708-4c4c" type="selectionEntryGroup"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="5056-4918-1674-9f6f" name="Shield Enchantment" hidden="false" collective="false" import="true">
<entryLinks>
<entryLink id="f2cb-0b5f-1c66-caee" name="Shield Enchantments" hidden="false" collective="false" import="true" targetId="3ca8-d93a-232c-d3b5" type="selectionEntryGroup"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="e624-1252-5368-d5ff" name="Artefacts" hidden="false" collective="false" import="true">
<entryLinks>
<entryLink id="2bee-fbef-8e6c-a7fa" name="Artefacts (non-Wizards)" hidden="false" collective="false" import="true" targetId="6e26-c5df-c19e-83d4" type="selectionEntryGroup"/>
<entryLink id="c7d4-c9f5-a764-db03" name="WDG Artefacts (Doomlord, Sorceror)" hidden="false" collective="false" import="true" targetId="e03c-3642-f6e6-6d33" type="selectionEntryGroup"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="07a4-94ea-f3d7-2aa2" name="Banner Enchantment" hidden="true" collective="false" import="true">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="1cbe-5e0c-13a0-d85a" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="8636-7719-69f0-0244" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<entryLinks>
<entryLink id="0f4e-c0b8-b7bb-9409" name="Banner Enchantments (Unit)" hidden="false" collective="false" import="true" targetId="4eb1-cabb-a838-a005" type="selectionEntryGroup"/>
<entryLink id="68d7-45d2-ab73-7bdd" name="WDG Banner Enchantments" hidden="false" collective="false" import="true" targetId="f1be-ccdc-db5b-9013" type="selectionEntryGroup"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="843e-482c-422a-029b" name="Shield Option" hidden="false" collective="false" import="true" defaultSelectionEntryId="006b-ca1b-d6b8-f603">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3bec-4acd-d5c0-6f31" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e6a1-0bf9-ad5e-2354" type="min"/>
</constraints>
<entryLinks>
<entryLink id="4ebd-b226-77ac-3ac6" name="Spiked Shield" hidden="false" collective="false" import="true" targetId="3d77-e96b-9997-ddf6" type="selectionEntry">
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="50.0"/>
</costs>
</entryLink>
<entryLink id="006b-ca1b-d6b8-f603" name="Shield" hidden="false" collective="false" import="true" targetId="ff97-a295-86c8-76d5" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="c886-d14e-e424-200c" name="Melee Weapon" hidden="false" collective="false" import="true" defaultSelectionEntryId="2d77-7e99-ad94-050c">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b418-58b8-b5cb-8a3b" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="63e9-b46f-48a5-d3e3" type="min"/>
</constraints>
<entryLinks>
<entryLink id="032f-47e6-39f9-58a6" name="Great Weapon" hidden="false" collective="false" import="true" targetId="2837-ec0d-956f-690a" type="selectionEntry">
<modifiers>
<modifier type="set" field="c73d-37e8-2340-287d" value="0.0">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="cefd-3232-dc53-2e02" type="equalTo"/>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="eedf-4585-d0c1-f613" type="equalTo"/>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0a30-afbb-4ce6-f5a2" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="45.0"/>
</costs>
</entryLink>
<entryLink id="f6b2-9bad-5dd7-b229" name="Halberd" hidden="false" collective="false" import="true" targetId="544f-9331-9cce-694d" type="selectionEntry">
<modifiers>
<modifier type="set" field="b311-493d-9678-8b90" value="0.0">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="cefd-3232-dc53-2e02" type="equalTo"/>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="eedf-4585-d0c1-f613" type="equalTo"/>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0a30-afbb-4ce6-f5a2" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="25.0"/>
</costs>
</entryLink>
<entryLink id="21dc-188a-c71e-fcc1" name="Paired Weapons" hidden="false" collective="false" import="true" targetId="6a41-63a5-c5f6-66f6" type="selectionEntry">
<modifiers>
<modifier type="set" field="236a-7e57-0706-fc14" value="0.0">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0a30-afbb-4ce6-f5a2" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="5.0"/>
</costs>
</entryLink>
<entryLink id="2d77-7e99-ad94-050c" name="Hand Weapon" hidden="false" collective="false" import="true" targetId="d5a4-4049-60de-5914" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="f14b-64ff-cee9-b1b9" name="Wasteland Behemoth" hidden="false" collective="false" import="true" targetId="46d6-395a-e95c-848b" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="dc5f-42b2-4036-0c89" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="180.0"/>
</costs>
</entryLink>
<entryLink id="301d-a84e-15f6-e3a5" name="Trophy Rack" hidden="false" collective="false" import="true" targetId="8636-7719-69f0-0244" type="selectionEntry"/>
<entryLink id="8f16-017c-216d-2fff" name="Hell-Forged Armour" hidden="false" collective="false" import="true" targetId="7004-78f0-0fa9-768e" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c49c-357a-a40f-d841" type="min"/>
</constraints>
</entryLink>
<entryLink id="ea98-7298-db29-c78a" name="Army General" hidden="false" collective="false" import="true" targetId="d664-b973-594c-5971" type="selectionEntry">
<entryLinks>
<entryLink id="4bfc-e45d-b9ee-0123" name="Doomlord General" hidden="false" collective="false" import="true" targetId="c5b7-2076-943e-de9e" type="selectionEntry"/>
</entryLinks>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="340.0"/>
</costs>
</selectionEntry>
<selectionEntry id="6de7-3d7b-8973-aa1c" name="Sorcerer" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="8d23-2026-a495-efaa" name="Sorcerer Global" hidden="false" typeId="8292-1fb8-8251-29a9" typeName="1 Global">
<characteristics>
<characteristic name="Adv" typeId="b0d9-2dab-f10b-9b13">4"</characteristic>
<characteristic name="Mar" typeId="db10-a838-f72f-3ed6">8"</characteristic>
<characteristic name="Dis" typeId="be28-67a6-2280-9eaf">8</characteristic>
<characteristic name="Rules" typeId="8f96-9d74-2aaa-da9d"/>
</characteristics>
</profile>
<profile id="580a-c784-47fc-fc19" name="Sorcerer Defensive" hidden="false" typeId="e7d3-5099-e669-c365" typeName="2 Defensive">
<characteristics>
<characteristic name="HP" typeId="f381-7850-7fa8-3440">3</characteristic>
<characteristic name="Def" typeId="160d-4624-273f-2114">4</characteristic>
<characteristic name="Res" typeId="ec15-bc66-645e-db5d">4</characteristic>
<characteristic name="Arm" typeId="597b-8735-3dd1-0e70">0</characteristic>
<characteristic name="Rules" typeId="91c5-9d30-bda7-cf14">Light Armour</characteristic>
</characteristics>
</profile>
<profile id="e94e-b2f9-b1e6-1e96" name="Sorcerer Offensive" hidden="false" typeId="154c-6605-1486-e1da" typeName="3 Offensive">
<characteristics>
<characteristic name="Att" typeId="8265-800f-bc87-d00a">2</characteristic>
<characteristic name="Off" typeId="7d3b-bb95-3d29-26f7">4</characteristic>
<characteristic name="Str" typeId="4d4a-2100-804f-99e5">3</characteristic>
<characteristic name="AP" typeId="7a8c-adb0-d1b8-a1b6">0</characteristic>
<characteristic name="Agi" typeId="2a23-367f-8828-c297">3</characteristic>
<characteristic name="Rules" typeId="44e9-6a3e-7471-8b36"/>
</characteristics>
</profile>
<profile id="da7c-31e4-866b-c3fa" name="Sorcerer Size" hidden="false" typeId="7733-ad26-4b46-6a5a" typeName="0 Size">
<characteristics>
<characteristic name="Height" typeId="0d1d-aeaf-8f31-fd17">Standard</characteristic>
<characteristic name="Type" typeId="1176-4910-e04b-f1c5">Infantry</characteristic>
<characteristic name="Base" typeId="7bbb-3d47-ed57-284d">25×25</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="cb18-98b6-1be0-a0b3" name="Battle Fever" hidden="false" targetId="0e05-c2ea-20d5-5859" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="0b75-ee8f-892b-8cf7" name="New CategoryLink" hidden="false" targetId="953d-22cd-7ee1-36dc" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="c77f-1b4c-c32e-1a3d" name="Special Equipment" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="aa8a-fff7-8f2b-80c4" type="max"/>
</constraints>
<selectionEntryGroups>
<selectionEntryGroup id="1914-26bf-b79e-d952" name="Special Equipment" hidden="false" collective="false" import="true">
<modifiers>
<modifier type="set" field="b0df-d5a8-35b7-c634" value="200.0">
<conditions>
<condition field="selections" scope="6de7-3d7b-8973-aa1c" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d664-b973-594c-5971" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="24fd-8af8-0c78-001c" scope="parent" value="150.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="b0df-d5a8-35b7-c634" type="max"/>
</constraints>
<selectionEntryGroups>
<selectionEntryGroup id="16da-6646-6ad1-ca5f" name="Armour Enchantment" hidden="false" collective="false" import="true">
<entryLinks>
<entryLink id="6ac0-4368-2346-91b8" name="Armour Enchantments" hidden="false" collective="false" import="true" targetId="74ad-3e59-5174-60fa" type="selectionEntryGroup"/>
<entryLink id="5a0f-f5f2-a453-90e1" name="WDG Armour Enchantments" hidden="false" collective="false" import="true" targetId="e473-0818-1abb-3348" type="selectionEntryGroup"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="0e65-cd9c-4b32-6528" name="Weapon Enchantment" hidden="false" collective="false" import="true">
<entryLinks>
<entryLink id="9192-fe31-26c5-db57" name="Weapon Enchantments" hidden="false" collective="false" import="true" targetId="f853-d3c3-4165-d5ab" type="selectionEntryGroup"/>
<entryLink id="7d72-3691-8d4a-eb28" name="WDG Weapon Enchantments" hidden="false" collective="false" import="true" targetId="2eb2-5755-d708-4c4c" type="selectionEntryGroup"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="60be-ecd9-8ad7-6280" name="Artefacts" hidden="false" collective="false" import="true">
<entryLinks>
<entryLink id="9f5b-7088-aa6a-5c1d" name="Artefacts (Wizards)" hidden="false" collective="false" import="true" targetId="ab25-3916-e8af-98cb" type="selectionEntryGroup"/>
<entryLink id="a64f-4adf-8b23-9512" name="WDG Artefacts (Doomlord, Sorceror)" hidden="false" collective="false" import="true" targetId="e03c-3642-f6e6-6d33" type="selectionEntryGroup"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="2cfa-63df-b7c1-0389" name="Banner Enchantment" hidden="true" collective="false" import="true">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="6de7-3d7b-8973-aa1c" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="cdbb-77d9-9f78-5e88" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<entryLinks>
<entryLink id="b79d-38bb-1e16-91ee" name="WDG Banner Enchantments" hidden="false" collective="false" import="true" targetId="f1be-ccdc-db5b-9013" type="selectionEntryGroup"/>
<entryLink id="fb0b-dd31-0a5e-e7cb" name="Banner Enchantments (Unit)" hidden="false" collective="false" import="true" targetId="4eb1-cabb-a838-a005" type="selectionEntryGroup"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="6485-38ad-08bc-1252" name="Veil Walker" 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="5414-d0e4-dca1-156c" type="max"/>
</constraints>
<infoLinks>
<infoLink id="9b97-288d-68a9-92aa" name="Veil Walker" hidden="false" targetId="b7cb-b6cc-e85c-df27" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="90.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="d03f-7ee5-f4bb-8864" name="Wizard Level" hidden="false" collective="false" import="true" defaultSelectionEntryId="0d09-e1db-8110-52f1">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="97dc-0a2a-0921-5a99" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="af50-b581-d9c7-c609" type="min"/>
</constraints>
<selectionEntries>
<selectionEntry id="382e-3632-b0d4-9d81" name="Wizard Adept" 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="02d5-0998-f37e-d0e2" type="max"/>
</constraints>
<infoLinks>
<infoLink id="896a-5a8a-f6b6-25ee" name="Wizard Adept" hidden="false" targetId="c0a6-6da5-98d6-f051" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="95.0"/>
</costs>
</selectionEntry>
<selectionEntry id="1075-c047-962c-4a3e" name="Wizard Master" 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="8b64-208e-f188-94a8" type="max"/>
</constraints>
<infoLinks>
<infoLink id="09ab-29f1-0672-c4a1" name="Wizard Master" hidden="false" targetId="fa5b-1bdc-8550-50c7" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="265.0"/>
</costs>
</selectionEntry>
<selectionEntry id="0d09-e1db-8110-52f1" name="Wizard Apprentice" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="09ea-209c-db6d-5298" name="Wizard Apprentice" hidden="false" targetId="0d8a-3fd8-a61d-5b74" type="rule"/>
</infoLinks>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
<selectionEntryGroup id="dae8-e584-148c-03e6" name="Magic Path" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0306-d94a-1af8-3e57" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="71de-c992-e6a4-5d3c" type="min"/>
</constraints>
<selectionEntries>
<selectionEntry id="35c5-36a5-194e-97d3" name="Alchemy" 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="28f1-358d-b304-c23a" type="max"/>
</constraints>
<costs>