generated from BSData/TemplateDataRepo
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cabal.cat
5222 lines (5222 loc) · 381 KB
/
Cabal.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="f7f0-7dd9-23fe-e40c" name="Cabal" revision="16" battleScribeVersion="2.03" library="false" gameSystemId="22f0-18eb-8fd1-99fa" gameSystemRevision="9" xmlns="http://www.battlescribe.net/schema/catalogueSchema" type="catalogue">
<entryLinks>
<entryLink id="daba-95b7-302e-2a1e" name="Warrior" hidden="false" collective="false" import="true" targetId="1d82-4f9a-8828-9e24" type="selectionEntry"/>
<entryLink id="b0b7-3ab3-a8f5-2c9e" name="Void Demon" hidden="false" collective="false" import="true" targetId="c9c4-3f0d-a7eb-2249" type="selectionEntry"/>
<entryLink id="4da9-44c2-27e5-96ad" name="Slaughter Fiend" hidden="false" collective="false" import="true" targetId="6e2b-bc5d-fbc4-e97d" type="selectionEntry"/>
<entryLink id="8163-9aa4-a424-cec2" name="Marquess d'Winter" hidden="false" collective="false" import="true" targetId="60c9-685f-3128-1d18" type="selectionEntry"/>
<entryLink id="d29f-b037-9f8c-4fc2" name="Venom Queen" hidden="false" collective="false" import="true" targetId="4c63-a621-3061-08b9" type="selectionEntry"/>
<entryLink id="6291-171f-fc1d-b38d" name="Cabal Philosophy" hidden="false" collective="false" import="true" targetId="3d4e-0dc3-867f-d719" type="selectionEntry">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="213f-2960-ab5b-b1bb" type="min"/>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="030a-9bb7-a72b-ad9f" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="83a7-661b-e049-4809" name="New CategoryLink" hidden="false" targetId="37f0-28f2-907e-0230" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="ddc3-53a9-cdb4-4d83" name="Game Options" hidden="false" collective="false" import="true" targetId="2fa7-9a08-fba9-f877" type="selectionEntry">
<categoryLinks>
<categoryLink id="4e00-499d-d06b-e72e" name="New CategoryLink" hidden="false" targetId="97dc-ef12-50e1-0522" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="3e75-8347-d1d4-fedf" name="Zealot" hidden="false" collective="false" import="true" targetId="5b3d-2e95-48c0-bc94" type="selectionEntry"/>
<entryLink id="5300-b1bf-6e60-607d" name="Schemer" hidden="false" collective="false" import="true" targetId="c90a-296a-9c40-cb16" type="selectionEntry"/>
<entryLink id="c490-5c86-f205-6b12" name="Executioner" hidden="false" collective="false" import="true" targetId="5cc9-1ac0-b5c6-152d" type="selectionEntry"/>
<entryLink id="24a3-77ce-16fc-1333" name="Lord of the Pit" hidden="false" collective="false" import="true" targetId="05b1-f393-0a63-8e64" type="selectionEntry"/>
<entryLink id="9102-21a2-a23e-afd0" name="Madness Demon" hidden="false" collective="false" import="true" targetId="ce64-d63f-9516-933e" type="selectionEntry"/>
<entryLink id="d940-183e-2ee4-cc79" name="Succubus" hidden="false" collective="false" import="true" targetId="4a4d-fc05-c3ff-3aa9" type="selectionEntry"/>
<entryLink id="9048-0cc5-e719-f127" name="Tallyman" hidden="false" collective="false" import="true" targetId="5cb6-db64-fd4c-e792" type="selectionEntry"/>
<entryLink id="4e93-9932-9315-f030" name="Armored Demon" hidden="false" collective="false" import="true" targetId="9f11-4270-8cad-7683" type="selectionEntry"/>
<entryLink id="2cd2-ddda-1fd1-d8ad" name="Mephit" hidden="false" collective="false" import="true" targetId="14fe-4235-27f2-0fcd" type="selectionEntry"/>
<entryLink id="21b8-34a5-8532-725b" name="Corpulent Demon" hidden="false" collective="false" import="true" targetId="153f-9201-8d9d-763f" type="selectionEntry"/>
<entryLink id="216f-cb33-ba32-5e01" name="Spined Demon" hidden="false" collective="false" import="true" targetId="1108-18be-2eb4-f184" type="selectionEntry"/>
<entryLink id="c0bb-3b63-da11-9223" name="Tentacle Beast" hidden="false" collective="false" import="true" targetId="b878-b2d7-8047-ec20" type="selectionEntry"/>
<entryLink id="b7f3-10d2-7ed2-716a" name="Torture Master" hidden="false" collective="false" import="true" targetId="f245-de4d-e18b-85e6" type="selectionEntry"/>
<entryLink id="81cc-13ec-7cfa-8096" name="Serpent Knight" hidden="false" collective="false" import="true" targetId="d2a7-ca49-4982-f449" type="selectionEntry"/>
<entryLink id="8de5-3779-f5b3-bcd8" name="Lord of Flame" hidden="false" collective="false" import="true" targetId="c8ca-e479-2176-1b40" type="selectionEntry"/>
<entryLink id="700f-26d0-f322-df8f" name="Shadow King" hidden="false" collective="false" import="true" targetId="299c-5103-baa8-8725" type="selectionEntry"/>
<entryLink import="true" name="Reckoner" hidden="false" type="selectionEntry" id="8727-90b3-518a-1a5d" targetId="2af6-45b6-6cac-2e55"/>
</entryLinks>
<sharedSelectionEntries>
<selectionEntry id="3d4e-0dc3-867f-d719" name="Cabal Philosophy" hidden="false" collective="false" import="true" type="model">
<categoryLinks>
<categoryLink id="c489-8d8c-15bd-3efa" name="New CategoryLink" hidden="false" targetId="37f0-28f2-907e-0230" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="c5af-56ef-e3d5-ef20" name="Philosophy" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4848-8517-b4b2-db59" type="max"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a748-7433-3fc5-39d5" type="min"/>
</constraints>
<selectionEntries>
<selectionEntry id="9bb0-10d0-eb79-3f12" name="Brokers" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="f278-2317-89c6-63a7" name="Brokers" hidden="false" typeId="b810-d409-f2f5-d758" typeName="Cabal Philosophy">
<characteristics>
<characteristic name="Description" typeId="7326-f971-1b11-5a8f">Trading and dealing in the currency of souls</characteristic>
</characteristics>
</profile>
<profile id="7146-9836-7927-f772" name="Rich in Soul" hidden="false" typeId="9aa4-6cb5-5a5b-8535" typeName="Philosophy's leader bonus">
<characteristics>
<characteristic name="Description" typeId="d89b-48bf-de6e-7ee7">Your Leader begins with a bonus Essence (you may choose two instead of one at creation).</characteristic>
</characteristics>
</profile>
<profile id="282a-2e07-3220-1cc3" name="Tip the Scales" hidden="false" typeId="aa66-8123-2b7b-412f" typeName="Philosophy's special ability">
<characteristics>
<characteristic name="Description" typeId="f14b-889d-82ba-6eb6">Each time you gain a Soul Dice, you may roll a d6. On a 5+, you gain one additional Soul Dice.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="Souls" typeId="cc7c-c1bb-7f20-8378" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="a3d9-e68e-c119-2102" name="Demented" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="b588-90bd-0fc5-3e42" name="Demented" hidden="false" typeId="b810-d409-f2f5-d758" typeName="Cabal Philosophy">
<characteristics>
<characteristic name="Description" typeId="7326-f971-1b11-5a8f">Choosing to embrace the madness of Hell</characteristic>
</characteristics>
</profile>
<profile id="dd6a-60b8-d2ef-1385" name="Maddening Insight" hidden="false" typeId="9aa4-6cb5-5a5b-8535" typeName="Philosophy's leader bonus">
<characteristics>
<characteristic name="Description" typeId="d89b-48bf-de6e-7ee7">When rolling initiative, as long as your Leader is alive, you may reroll any number of your initiative dice.</characteristic>
</characteristics>
</profile>
<profile id="a038-00b7-a8c2-b1a1" name="Unpredictable Defense" hidden="false" typeId="aa66-8123-2b7b-412f" typeName="Philosophy's special ability">
<characteristics>
<characteristic name="Description" typeId="f14b-889d-82ba-6eb6">When rolling your Combat Defense dice, if you roll any triples (only triples, quadruples, et al do not count) you may deal an amount of damage back to the attacker equal to the face of the triple roll (i.e. if you roll three 4s, you deal 4 damage to the attacker). If you roll multiple triples (i.e. three 1s and three 5s), hoose the highest face value and you deal that amount of damage.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="Souls" typeId="cc7c-c1bb-7f20-8378" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="9a80-020e-3d3b-bb34" name="Earth-Bound" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="1af4-437c-6374-da10" name="Earth-Bound" hidden="false" typeId="b810-d409-f2f5-d758" typeName="Cabal Philosophy">
<characteristics>
<characteristic name="Description" typeId="7326-f971-1b11-5a8f">Looking to escape Hell permanently for Earth</characteristic>
</characteristics>
</profile>
<profile id="ba7e-4856-5782-e859" name="Quick Escape" hidden="false" typeId="9aa4-6cb5-5a5b-8535" typeName="Philosophy's leader bonus">
<characteristics>
<characteristic name="Description" typeId="d89b-48bf-de6e-7ee7">The first time in a turn an enemy moves within 1” of your Leader, if your Leader has not yet activated, you may remove an unspent activation dice, if you do your Leader may immediately activate before the enemy makes any attacks and take their turn. They may only move during this turn.</characteristic>
</characteristics>
</profile>
<profile id="8cfa-8a4b-bf78-d73d" name="Ready to Move" hidden="false" typeId="aa66-8123-2b7b-412f" typeName="Philosophy's special ability">
<characteristics>
<characteristic name="Description" typeId="f14b-889d-82ba-6eb6">Earth-Bound demons increase their Move ability by 1.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="Souls" typeId="cc7c-c1bb-7f20-8378" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="9336-16fd-47ae-155c" name="Judges" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="758a-c24c-b813-fb73" name="Judges" hidden="false" typeId="b810-d409-f2f5-d758" typeName="Cabal Philosophy">
<characteristics>
<characteristic name="Description" typeId="7326-f971-1b11-5a8f">Using and abusing the remaining rules for power</characteristic>
</characteristics>
</profile>
<profile id="d942-77c3-4b55-5b28" name="Breaking the Rules" hidden="false" typeId="9aa4-6cb5-5a5b-8535" typeName="Philosophy's leader bonus">
<characteristics>
<characteristic name="Description" typeId="d89b-48bf-de6e-7ee7">The first time your Leader would be reduced to 0 Life, they are not. Any additional damage they suffer is negated from that attack and they are instead at 1 Life.</characteristic>
</characteristics>
</profile>
<profile id="e990-bfb1-a62f-7a42" name="Enforcing the Rules" hidden="false" typeId="aa66-8123-2b7b-412f" typeName="Philosophy's special ability">
<characteristics>
<characteristic name="Description" typeId="f14b-889d-82ba-6eb6">Once per round, when an enemy demon makes a Combat Attack against a Judges demon, you may choose to Enforce the Rules. If you do, the attacker may not benefit from or activate any Special Abilities as part of the attack.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="Souls" typeId="cc7c-c1bb-7f20-8378" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="b1a5-013b-a2a3-9831" name="Lords of Hell" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="60b1-f01c-e14b-24d6" name="Lords of Hell" hidden="false" typeId="b810-d409-f2f5-d758" typeName="Cabal Philosophy">
<characteristics>
<characteristic name="Description" typeId="7326-f971-1b11-5a8f">Fighting to restore Hell's glory and old ways</characteristic>
</characteristics>
</profile>
<profile id="6cca-95bc-b7d3-627a" name="Imperious Nature" hidden="false" typeId="9aa4-6cb5-5a5b-8535" typeName="Philosophy's leader bonus">
<characteristics>
<characteristic name="Description" typeId="d89b-48bf-de6e-7ee7">Your Leader's natural majesty and power is hard for others to overcome. Reduce the Combat Attack dice of any enemy attacking your Leader by 1.</characteristic>
</characteristics>
</profile>
<profile id="264e-8f31-2ff1-a1b7" name="Charismatic Leader" hidden="false" typeId="aa66-8123-2b7b-412f" typeName="Philosophy's special ability">
<characteristics>
<characteristic name="Description" typeId="f14b-889d-82ba-6eb6">When building your cabal, you may recruit one additional Lesser Minion for free.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="Souls" typeId="cc7c-c1bb-7f20-8378" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="bde0-1fa8-c37e-3952" name="The Empty" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="0a45-2e3f-d191-eda5" name="The Empty" hidden="false" typeId="b810-d409-f2f5-d758" typeName="Cabal Philosophy">
<characteristics>
<characteristic name="Description" typeId="7326-f971-1b11-5a8f">Wanting to see Hell destroyed and unmade</characteristic>
</characteristics>
</profile>
<profile id="bd23-ea2c-3b23-8fbb" name="One with Nothing" hidden="false" typeId="9aa4-6cb5-5a5b-8535" typeName="Philosophy's leader bonus">
<characteristics>
<characteristic name="Description" typeId="d89b-48bf-de6e-7ee7">Once per game, when your Leader activates, before any actions or move are taken, you may remove them from the game. During your next turn, you may allocate initiative to your Leader and replace them on the board anywhere more than 3” away from an enemy. The Leader may then act as normal for that activation.</characteristic>
</characteristics>
</profile>
<profile id="dc80-be4a-8cd8-1bb4" name="Burn it All" hidden="false" typeId="aa66-8123-2b7b-412f" typeName="Philosophy's special ability">
<characteristics>
<characteristic name="Description" typeId="f14b-889d-82ba-6eb6">When any Empty demon is within 1” of an objective or a piece of terrain no larger than 4” by 4”, you may roll your Combat Attack dice instead of attacking. If you do so and roll at least two 6s, then that objective or piece of terrain is destroyed (in the case of terrain, remove the terrain and replace it with rubble of a similar size no more than 1” high).</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="Souls" typeId="cc7c-c1bb-7f20-8378" value="0"/>
</costs>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="The Faithful" hidden="false" id="e3a1-fd4a-c2c8-daa3" publicationId="f25-1276-5b70-cf50" page="21">
<profiles>
<profile name="Meditation on Violence" typeId="9aa4-6cb5-5a5b-8535" typeName="Philosophy's leader bonus" hidden="false" id="ceae-33be-995f-7eb" publicationId="f25-1276-5b70-cf50" page="22">
<characteristics>
<characteristic name="Description" typeId="d89b-48bf-de6e-7ee7">Whenever you activate your leader, you may choose to Meditate on Violence and take no actions and make no move (effectively passing the activation). The activation dice is expended as normal but the leader may not attack, move or take any actions of any kind. If the Leader uses this ability, the next time during this game that they activate, their Move ability is increased by 2 and their Combat ability is doubled for that activation. If the leader expends a Soul Dice as part of this activation to add to move, they gain double the face value of the die expended to their movement (e.g. if they expend a dice with a 2 showing on the face, the leader gains +4” of movement).</characteristic>
</characteristics>
</profile>
<profile name="Soul Connection" typeId="aa66-8123-2b7b-412f" typeName="Philosophy's special ability" hidden="false" id="bad9-eb36-929b-84d0" publicationId="f25-1276-5b70-cf50" page="23">
<characteristics>
<characteristic name="Description" typeId="f14b-889d-82ba-6eb6">Whenever you gain a Soul Dice from slaying a demon, instead of rolling that die and placing it on your play sheet, you may instead expend it immediately to gain a bonus to one ability for the demon that gained the dice. The demon gains a +1 bonus to a randomly-determined ability, as below. D6 Roll: 1-2 = Move, 3-4 = Life, 5-6 = Combat. This +1 is cumulative and lasts for the rest of that game. At the end of the game, all such temporary bonuses to abilities are lost and abilities return to normal. This usage of the Soul Dice expends the Soul Dice.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="Souls" typeId="cc7c-c1bb-7f20-8378" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="1d82-4f9a-8828-9e24" name="Warrior" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="beb6-e5ab-d125-78b7" type="max"/>
</constraints>
<profiles>
<profile id="b8a5-8119-d268-b8e1" name="Combat Master" hidden="false" typeId="8366-9fc7-d1ad-f62b" typeName="Special Ability">
<characteristics>
<characteristic name="Description" typeId="9bf0-bbf8-b277-8619">Whenever the Warrior makes a Combat roll (Attack or Defense), they may choose to change the value of any one combat dice to 6.</characteristic>
</characteristics>
</profile>
<profile id="423e-7f76-653d-f119" name="Warrior" hidden="false" typeId="b8bf-34dc-6f26-5b03" typeName="Demon">
<modifiers>
<modifier type="increment" field="137b-d13e-dda6-0530" value="1">
<repeats>
<repeat field="selections" scope="1d82-4f9a-8828-9e24" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="3d4f-0267-2d3e-902f" repeats="1" roundUp="false"/>
<repeat field="selections" scope="1d82-4f9a-8828-9e24" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="eb2d-84e6-ea07-eedc" repeats="2" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="137b-d13e-dda6-0530" value="1">
<repeats>
<repeat field="selections" scope="1d82-4f9a-8828-9e24" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b1d4-e3b5-ca18-b24f" repeats="1" roundUp="false"/>
<repeat field="selections" scope="1d82-4f9a-8828-9e24" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="aa39-3f43-07c3-7f13" repeats="2" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="ed7a-c503-b270-885d" value="1">
<repeats>
<repeat field="selections" scope="1d82-4f9a-8828-9e24" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="f23f-8f5d-4b3a-13c8" repeats="1" roundUp="false"/>
<repeat field="selections" scope="1d82-4f9a-8828-9e24" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ac5d-8240-f950-a068" repeats="2" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="b936-d350-1b5b-fb34" value="1">
<repeats>
<repeat field="selections" scope="1d82-4f9a-8828-9e24" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0248-043c-5933-9c5d" repeats="1" roundUp="false"/>
<repeat field="selections" scope="1d82-4f9a-8828-9e24" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ad2b-8ccc-627b-208b" repeats="2" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="ed7a-c503-b270-885d" value="1">
<repeats>
<repeat field="selections" scope="1d82-4f9a-8828-9e24" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="f657-5b28-7322-3235" repeats="1" roundUp="false"/>
<repeat field="selections" scope="1d82-4f9a-8828-9e24" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="dd6d-e6e5-3efa-68a6" repeats="2" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="b936-d350-1b5b-fb34" value="1">
<repeats>
<repeat field="selections" scope="1d82-4f9a-8828-9e24" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="314a-df0e-b55d-4554" repeats="1" roundUp="false"/>
<repeat field="selections" scope="1d82-4f9a-8828-9e24" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="4204-2b1a-4e10-3498" repeats="2" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="ed7a-c503-b270-885d" value="1">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9a80-020e-3d3b-bb34" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="Move" typeId="ed7a-c503-b270-885d">6</characteristic>
<characteristic name="Life" typeId="137b-d13e-dda6-0530">15</characteristic>
<characteristic name="Combat" typeId="b936-d350-1b5b-fb34">7</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="7492-cec1-3928-f362" name="New CategoryLink" hidden="false" targetId="3436-8e6e-a8f6-716e" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="8db8-e347-d01d-068c" name="Leader Essence" hidden="false" collective="false" import="true" targetId="3971-49fb-069d-98ba" type="selectionEntryGroup"/>
<entryLink id="b6c3-ba92-1e5e-c4da" name="Leader Relic" hidden="false" collective="false" import="true" targetId="bb3b-a330-315d-29b7" type="selectionEntryGroup"/>
<entryLink id="6b1b-66cd-d9a6-7be3" name="Essences" hidden="false" collective="false" import="true" targetId="8203-8eda-7dd0-0d14" type="selectionEntryGroup"/>
<entryLink id="f5f2-6f59-66dc-04ae" name="Relics" hidden="false" collective="false" import="true" targetId="8491-9948-0782-27e1" type="selectionEntryGroup"/>
<entryLink id="31ec-9075-2d4b-ce69" name="Titles" hidden="false" collective="false" import="true" targetId="e1c5-68bd-c4c7-8850" type="selectionEntryGroup"/>
<entryLink id="4481-30b3-01c9-17fb" name="05 Experience" hidden="true" collective="false" import="true" targetId="332e-af84-e6ac-277f" type="selectionEntryGroup">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="parent" value="5" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="964a-949b-914e-3c34" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="3246-fc0a-0c73-27b6" name="15 Experience" hidden="true" collective="false" import="true" targetId="57ce-7f33-b424-a1e5" type="selectionEntryGroup">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="parent" value="15" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="964a-949b-914e-3c34" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="6f5a-6481-58bb-d1b3" name="25 Experience" hidden="true" collective="false" import="true" targetId="b4e8-967f-ca48-fc1c" type="selectionEntryGroup">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="parent" value="25" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="964a-949b-914e-3c34" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="8e9c-492f-15d5-1a62" name="XP" hidden="false" collective="false" import="true" targetId="964a-949b-914e-3c34" type="selectionEntry"/>
<entryLink id="54c1-d575-1150-1741" name="Soul Loss Effects" hidden="false" collective="false" import="true" targetId="3ed3-778f-f57f-8c2c" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="Souls" typeId="cc7c-c1bb-7f20-8378" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="c90a-296a-9c40-cb16" name="Schemer" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="8c5e-6dc6-412f-8f72" type="max"/>
</constraints>
<profiles>
<profile id="d77c-1d3c-23f4-5ea3" name="Master Manipulator" hidden="false" typeId="8366-9fc7-d1ad-f62b" typeName="Special Ability">
<characteristics>
<characteristic name="Description" typeId="9bf0-bbf8-b277-8619">Whenever the Schemer activates, he may choose to remove one die from your set of activation dice when his turn is complete. If he does, another demon within 12” may instead be activated and take their turn immediately. In addition, once per round, when an enemy demon would attack the Schemer, the Schemer may choose to remove one unspent activation die, if he does, he may move. The attacker may still choose to attack any other target in range after this move is completed.</characteristic>
</characteristics>
</profile>
<profile id="c807-dc50-9618-c5b8" name="Schemer" hidden="false" typeId="b8bf-34dc-6f26-5b03" typeName="Demon">
<modifiers>
<modifier type="decrement" field="137b-d13e-dda6-0530" value="1">
<repeats>
<repeat field="selections" scope="c90a-296a-9c40-cb16" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b1d4-e3b5-ca18-b24f" repeats="1" roundUp="false"/>
<repeat field="selections" scope="c90a-296a-9c40-cb16" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="aa39-3f43-07c3-7f13" repeats="2" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="b936-d350-1b5b-fb34" value="1">
<repeats>
<repeat field="selections" scope="c90a-296a-9c40-cb16" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0248-043c-5933-9c5d" repeats="1" roundUp="false"/>
<repeat field="selections" scope="c90a-296a-9c40-cb16" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ad2b-8ccc-627b-208b" repeats="2" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="137b-d13e-dda6-0530" value="1">
<repeats>
<repeat field="selections" scope="c90a-296a-9c40-cb16" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="3d4f-0267-2d3e-902f" repeats="1" roundUp="false"/>
<repeat field="selections" scope="c90a-296a-9c40-cb16" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="eb2d-84e6-ea07-eedc" repeats="2" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="ed7a-c503-b270-885d" value="1">
<repeats>
<repeat field="selections" scope="c90a-296a-9c40-cb16" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="f23f-8f5d-4b3a-13c8" repeats="1" roundUp="false"/>
<repeat field="selections" scope="c90a-296a-9c40-cb16" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ac5d-8240-f950-a068" repeats="2" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="b936-d350-1b5b-fb34" value="1">
<repeats>
<repeat field="selections" scope="c90a-296a-9c40-cb16" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="314a-df0e-b55d-4554" repeats="1" roundUp="false"/>
<repeat field="selections" scope="c90a-296a-9c40-cb16" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="4204-2b1a-4e10-3498" repeats="2" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="ed7a-c503-b270-885d" value="1">
<repeats>
<repeat field="selections" scope="c90a-296a-9c40-cb16" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="f657-5b28-7322-3235" repeats="1" roundUp="false"/>
<repeat field="selections" scope="c90a-296a-9c40-cb16" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="dd6d-e6e5-3efa-68a6" repeats="2" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="ed7a-c503-b270-885d" value="1">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9a80-020e-3d3b-bb34" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="Move" typeId="ed7a-c503-b270-885d">8</characteristic>
<characteristic name="Life" typeId="137b-d13e-dda6-0530">11</characteristic>
<characteristic name="Combat" typeId="b936-d350-1b5b-fb34">5</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="ae19-c338-08c3-51b8" name="New CategoryLink" hidden="false" targetId="3436-8e6e-a8f6-716e" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="f67d-56f9-5e5b-abaf" name="Leader Relic" hidden="false" collective="false" import="true" targetId="bb3b-a330-315d-29b7" type="selectionEntryGroup"/>
<entryLink id="8e8e-1ee4-1808-ee56" name="Leader Essence" hidden="false" collective="false" import="true" targetId="3971-49fb-069d-98ba" type="selectionEntryGroup"/>
<entryLink id="05aa-2185-d364-ce6e" name="Essence" hidden="false" collective="false" import="true" targetId="8203-8eda-7dd0-0d14" type="selectionEntryGroup"/>
<entryLink id="7f33-37c4-92a4-038b" name="Relics" hidden="false" collective="false" import="true" targetId="8491-9948-0782-27e1" type="selectionEntryGroup"/>
<entryLink id="9c52-b2ed-9dda-5c91" name="Titles" hidden="false" collective="false" import="true" targetId="e1c5-68bd-c4c7-8850" type="selectionEntryGroup"/>
<entryLink id="c598-2dd8-6093-f459" name="05 Experience" hidden="true" collective="false" import="true" targetId="332e-af84-e6ac-277f" type="selectionEntryGroup">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="parent" value="5" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="964a-949b-914e-3c34" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="9ca0-8e50-15a2-c9e6" name="15 Experience" hidden="true" collective="false" import="true" targetId="57ce-7f33-b424-a1e5" type="selectionEntryGroup">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="parent" value="15" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="964a-949b-914e-3c34" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="70e1-3e27-324d-1a71" name="25 Experience" hidden="true" collective="false" import="true" targetId="b4e8-967f-ca48-fc1c" type="selectionEntryGroup">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="parent" value="25" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="964a-949b-914e-3c34" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="1e05-3dda-f6db-ac4e" name="XP" hidden="false" collective="false" import="true" targetId="964a-949b-914e-3c34" type="selectionEntry"/>
<entryLink id="4121-e427-ab02-74f9" name="Soul Loss Effects" hidden="false" collective="false" import="true" targetId="3ed3-778f-f57f-8c2c" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="Souls" typeId="cc7c-c1bb-7f20-8378" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="5b3d-2e95-48c0-bc94" name="Zealot" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="57a9-6686-54e1-5b5f" type="max"/>
</constraints>
<profiles>
<profile id="ee56-bffb-c25e-5440" name="Frenzy" hidden="false" typeId="8366-9fc7-d1ad-f62b" typeName="Special Ability">
<characteristics>
<characteristic name="Description" typeId="9bf0-bbf8-b277-8619">Whenever the Zealot makes a Combat Attack roll, they increase their combat score by 2. If they are attacking an enemy Leader, they instead increase their combat score by 3.</characteristic>
</characteristics>
</profile>
<profile id="3a34-04ba-08a4-beec" name="Zealot" hidden="false" typeId="b8bf-34dc-6f26-5b03" typeName="Demon">
<modifiers>
<modifier type="increment" field="ed7a-c503-b270-885d" value="1">
<repeats>
<repeat field="selections" scope="5b3d-2e95-48c0-bc94" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="f657-5b28-7322-3235" repeats="1" roundUp="false"/>
<repeat field="selections" scope="5b3d-2e95-48c0-bc94" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="dd6d-e6e5-3efa-68a6" repeats="2" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="b936-d350-1b5b-fb34" value="1">
<repeats>
<repeat field="selections" scope="5b3d-2e95-48c0-bc94" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="0248-043c-5933-9c5d" repeats="1" roundUp="false"/>
<repeat field="selections" scope="5b3d-2e95-48c0-bc94" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ad2b-8ccc-627b-208b" repeats="2" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="137b-d13e-dda6-0530" value="1">
<repeats>
<repeat field="selections" scope="5b3d-2e95-48c0-bc94" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="3d4f-0267-2d3e-902f" repeats="1" roundUp="false"/>
<repeat field="selections" scope="5b3d-2e95-48c0-bc94" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="eb2d-84e6-ea07-eedc" repeats="2" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="ed7a-c503-b270-885d" value="1">
<repeats>
<repeat field="selections" scope="5b3d-2e95-48c0-bc94" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="f23f-8f5d-4b3a-13c8" repeats="1" roundUp="false"/>
<repeat field="selections" scope="5b3d-2e95-48c0-bc94" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="dd6d-e6e5-3efa-68a6" repeats="2" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="b936-d350-1b5b-fb34" value="1">
<repeats>
<repeat field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="314a-df0e-b55d-4554" repeats="1" roundUp="false"/>
<repeat field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="4204-2b1a-4e10-3498" repeats="2" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="137b-d13e-dda6-0530" value="1">
<repeats>
<repeat field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b1d4-e3b5-ca18-b24f" repeats="1" roundUp="false"/>
<repeat field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="aa39-3f43-07c3-7f13" repeats="2" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="ed7a-c503-b270-885d" value="1">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9a80-020e-3d3b-bb34" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="Move" typeId="ed7a-c503-b270-885d">7</characteristic>
<characteristic name="Life" typeId="137b-d13e-dda6-0530">13</characteristic>
<characteristic name="Combat" typeId="b936-d350-1b5b-fb34">6</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="d84a-ecd2-cb2d-8365" name="New CategoryLink" hidden="false" targetId="3436-8e6e-a8f6-716e" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="76ba-6913-eac7-ec5b" name="Leader Relic" hidden="false" collective="false" import="true" targetId="bb3b-a330-315d-29b7" type="selectionEntryGroup"/>
<entryLink id="4105-d3ed-da32-f58a" name="Leader Essence" hidden="false" collective="false" import="true" targetId="3971-49fb-069d-98ba" type="selectionEntryGroup"/>
<entryLink id="2795-69a0-753f-25eb" name="Essences" hidden="false" collective="false" import="true" targetId="8203-8eda-7dd0-0d14" type="selectionEntryGroup"/>
<entryLink id="3182-a8bf-1ec0-b849" name="Relics" hidden="false" collective="false" import="true" targetId="8491-9948-0782-27e1" type="selectionEntryGroup"/>
<entryLink id="06f7-9dc8-471d-d26e" name="Titles" hidden="false" collective="false" import="true" targetId="e1c5-68bd-c4c7-8850" type="selectionEntryGroup"/>
<entryLink id="be1f-d5b1-e096-756d" name="25 Experience" hidden="true" collective="false" import="true" targetId="b4e8-967f-ca48-fc1c" type="selectionEntryGroup">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="parent" value="25" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="964a-949b-914e-3c34" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="3f6c-5c45-374f-2e54" name="15 Experience" hidden="true" collective="false" import="true" targetId="57ce-7f33-b424-a1e5" type="selectionEntryGroup">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="parent" value="15" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="964a-949b-914e-3c34" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="6793-67c1-63d5-17eb" name="05 Experience" hidden="true" collective="false" import="true" targetId="332e-af84-e6ac-277f" type="selectionEntryGroup">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="parent" value="5" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="964a-949b-914e-3c34" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="a34a-6854-2446-c708" name="XP" hidden="false" collective="false" import="true" targetId="964a-949b-914e-3c34" type="selectionEntry"/>
<entryLink id="db93-ee2a-74d8-4625" name="Soul Loss Effects" hidden="false" collective="false" import="true" targetId="3ed3-778f-f57f-8c2c" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="Souls" typeId="cc7c-c1bb-7f20-8378" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="c9c4-3f0d-a7eb-2249" name="Void Demon" hidden="true" collective="false" import="true" type="unit">
<modifiers>
<modifier type="set" field="d650-23ff-c86c-15a6" value="1">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="bde0-1fa8-c37e-3952" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="e47a-7536-2936-1e06" value="1">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="bde0-1fa8-c37e-3952" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="bde0-1fa8-c37e-3952" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e47a-7536-2936-1e06" type="max"/>
<constraint field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="d650-23ff-c86c-15a6" type="min"/>
</constraints>
<profiles>
<profile id="62c0-da1a-0a00-fcfc" name="Void Demon" hidden="false" typeId="b8bf-34dc-6f26-5b03" typeName="Demon">
<modifiers>
<modifier type="append" field="name">
<conditions>
<condition field="selections" scope="c9c4-3f0d-a7eb-2249" value="12" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="964a-949b-914e-3c34" type="atLeast"/>
</conditions>
</modifier>
<modifier type="append" field="name">
<conditions>
<condition field="selections" scope="c9c4-3f0d-a7eb-2249" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="3ed3-778f-f57f-8c2c" type="greaterThan"/>
</conditions>
</modifier>
<modifier type="increment" field="137b-d13e-dda6-0530" value="1">
<repeats>
<repeat field="selections" scope="c9c4-3f0d-a7eb-2249" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="3d4f-0267-2d3e-902f" repeats="1" roundUp="false"/>
<repeat field="selections" scope="c9c4-3f0d-a7eb-2249" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="eb2d-84e6-ea07-eedc" repeats="2" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="137b-d13e-dda6-0530" value="1">
<repeats>
<repeat field="selections" scope="c9c4-3f0d-a7eb-2249" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b1d4-e3b5-ca18-b24f" repeats="1" roundUp="false"/>
<repeat field="selections" scope="c9c4-3f0d-a7eb-2249" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="aa39-3f43-07c3-7f13" repeats="2" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="ed7a-c503-b270-885d" value="1">
<repeats>
<repeat field="selections" scope="c9c4-3f0d-a7eb-2249" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="f23f-8f5d-4b3a-13c8" repeats="1" roundUp="false"/>
<repeat field="selections" scope="c9c4-3f0d-a7eb-2249" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ac5d-8240-f950-a068" repeats="2" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="b936-d350-1b5b-fb34" value="1">
<repeats>
<repeat field="selections" scope="c9c4-3f0d-a7eb-2249" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="314a-df0e-b55d-4554" repeats="1" roundUp="false"/>
<repeat field="selections" scope="c9c4-3f0d-a7eb-2249" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="4204-2b1a-4e10-3498" repeats="2" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="ed7a-c503-b270-885d" value="1">
<repeats>
<repeat field="selections" scope="c9c4-3f0d-a7eb-2249" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="f657-5b28-7322-3235" repeats="1" roundUp="false"/>
<repeat field="selections" scope="c9c4-3f0d-a7eb-2249" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="dd6d-e6e5-3efa-68a6" repeats="2" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="b936-d350-1b5b-fb34" value="1">
<repeats>
<repeat field="selections" scope="c9c4-3f0d-a7eb-2249" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0248-043c-5933-9c5d" repeats="1" roundUp="false"/>
<repeat field="selections" scope="c9c4-3f0d-a7eb-2249" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ad2b-8ccc-627b-208b" repeats="2" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="ed7a-c503-b270-885d" value="1">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9a80-020e-3d3b-bb34" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="Move" typeId="ed7a-c503-b270-885d">8</characteristic>
<characteristic name="Life" typeId="137b-d13e-dda6-0530">10</characteristic>
<characteristic name="Combat" typeId="b936-d350-1b5b-fb34">7</characteristic>
</characteristics>
</profile>
<profile id="495d-5e54-a98a-9505" name="One With Nothing" hidden="false" typeId="8366-9fc7-d1ad-f62b" typeName="Special Ability">
<characteristics>
<characteristic name="Description" typeId="9bf0-bbf8-b277-8619">Once per game, when the Void Demon is slain, it is instead not slain and it may instead be placed anywhere on the board, more than 3” away from any enemies. If the Void Demon is set up in this way, it has 5 Life and may not be healed by any method.</characteristic>
</characteristics>
</profile>
<profile id="7ef6-00aa-43f0-44cd" name="Oblivion" hidden="false" typeId="8366-9fc7-d1ad-f62b" typeName="Special Ability">
<characteristics>
<characteristic name="Description" typeId="9bf0-bbf8-b277-8619">The Void Demon starts the battle with an Oblivion score of 0. Everytime a model is slain, increase the Void Demon’s Oblivion score by 1. When moving, the void demon may instead be removed from the board and set-up anywhere within a number of inches equal to their move ability plus their Oblivion score.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="c4bb-1e90-2403-d238" name="New CategoryLink" hidden="false" targetId="e534-8b74-6056-9e87" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="c5ec-91fb-b414-639b" name="06 XP: Greater Evolution" hidden="true" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="c9c4-3f0d-a7eb-2249" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="86ac-5265-2509-7cf2" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<modifierGroups>
<modifierGroup>
<conditions>
<condition field="selections" scope="parent" value="6" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="964a-949b-914e-3c34" type="atLeast"/>
</conditions>
<modifiers>
<modifier type="set" field="hidden" value="false"/>
<modifier type="set" field="1647-8d44-0ad1-c581" value="1"/>
</modifiers>
</modifierGroup>
</modifierGroups>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f2a9-99db-a5ae-d3f2" type="max"/>
<constraint field="selections" scope="parent" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1647-8d44-0ad1-c581" type="min"/>
</constraints>
<profiles>
<profile id="7bb7-8489-89fa-f5db" name="Greater Evolution" hidden="false" typeId="6ccd-fe51-809b-d201" typeName="Evolutions">
<characteristics>
<characteristic name="Description" typeId="49c9-3fde-e2cf-1269">The Void Demon does not suffer any negative effects of area terrain (i.e. it can not be damaged, nor suffer any penalties from such terrain).</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="Souls" typeId="cc7c-c1bb-7f20-8378" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="4acd-ba62-65e2-199b" name="18 XP: Superior Evolution" hidden="true" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="c9c4-3f0d-a7eb-2249" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="15fd-7bb2-ec5b-25c9" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<modifierGroups>
<modifierGroup>
<conditions>
<condition field="selections" scope="parent" value="18" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="964a-949b-914e-3c34" type="atLeast"/>
</conditions>
<modifiers>
<modifier type="set" field="hidden" value="false"/>
<modifier type="set" field="c214-860d-ffda-75ae" value="1"/>
</modifiers>
</modifierGroup>
</modifierGroups>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c07f-fe13-2dda-13c8" type="max"/>
<constraint field="selections" scope="parent" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c214-860d-ffda-75ae" type="min"/>
</constraints>
<profiles>
<profile id="247e-2ff0-b35b-4910" name="Superior Evolution" hidden="false" typeId="6ccd-fe51-809b-d201" typeName="Evolutions">
<characteristics>
<characteristic name="Description" typeId="49c9-3fde-e2cf-1269">The Void Demon begins the game with an Oblivion score of 2.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="Souls" typeId="cc7c-c1bb-7f20-8378" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="59a9-0e5d-0b71-03e9" name="Essence" hidden="false" collective="false" import="true" targetId="8203-8eda-7dd0-0d14" type="selectionEntryGroup"/>
<entryLink id="7d06-8323-8a0e-face" name="Relics" hidden="false" collective="false" import="true" targetId="8491-9948-0782-27e1" type="selectionEntryGroup"/>
<entryLink id="426a-5706-9cc3-5434" name="Titles" hidden="false" collective="false" import="true" targetId="e1c5-68bd-c4c7-8850" type="selectionEntryGroup"/>
<entryLink id="85b7-54f7-374c-749e" name="XP" hidden="false" collective="false" import="true" targetId="964a-949b-914e-3c34" type="selectionEntry"/>
<entryLink id="0db5-318a-f4b8-ba61" name="12 Experience" hidden="true" collective="false" import="true" targetId="ed77-d5aa-c0aa-00b9" type="selectionEntryGroup">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="parent" value="12" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="964a-949b-914e-3c34" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="5be6-d3d5-0376-028d" name="24 Experience: Leader Essence" hidden="true" collective="false" import="true" targetId="6023-bb92-c769-ef27" type="selectionEntryGroup">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="parent" value="24" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="964a-949b-914e-3c34" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="393f-0fb9-ddbb-f8be" name="30 Experience" hidden="true" collective="false" import="true" targetId="16c7-ec1e-4c0d-310c" type="selectionEntryGroup">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="parent" value="30" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="964a-949b-914e-3c34" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="811c-55a6-7fa0-7a9c" name="Soul Loss Effects" hidden="false" collective="false" import="true" targetId="3ed3-778f-f57f-8c2c" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="Souls" typeId="cc7c-c1bb-7f20-8378" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="5cb6-db64-fd4c-e792" name="Tallyman" hidden="true" collective="false" import="true" type="unit">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="9bb0-10d0-eb79-3f12" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="5f83-a5db-dc8a-5d86" value="1">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="9bb0-10d0-eb79-3f12" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="2503-337b-e8c9-92b3" value="1">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="9bb0-10d0-eb79-3f12" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="2503-337b-e8c9-92b3" type="min"/>
<constraint field="selections" scope="parent" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5f83-a5db-dc8a-5d86" type="max"/>
</constraints>
<profiles>
<profile id="3e49-e409-eecc-789e" name="Tallyman" hidden="false" typeId="b8bf-34dc-6f26-5b03" typeName="Demon">
<modifiers>
<modifier type="decrement" field="ed7a-c503-b270-885d" value="1">
<repeats>
<repeat field="selections" scope="5cb6-db64-fd4c-e792" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b1d4-e3b5-ca18-b24f" repeats="1" roundUp="false"/>
<repeat field="selections" scope="5cb6-db64-fd4c-e792" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="aa39-3f43-07c3-7f13" repeats="2" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="ed7a-c503-b270-885d" value="1">
<repeats>
<repeat field="selections" scope="5cb6-db64-fd4c-e792" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="f23f-8f5d-4b3a-13c8" repeats="1" roundUp="false"/>
<repeat field="selections" scope="5cb6-db64-fd4c-e792" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ac5d-8240-f950-a068" repeats="2" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="b936-d350-1b5b-fb34" value="1">
<repeats>
<repeat field="selections" scope="5cb6-db64-fd4c-e792" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0248-043c-5933-9c5d" repeats="1" roundUp="false"/>
<repeat field="selections" scope="5cb6-db64-fd4c-e792" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ad2b-8ccc-627b-208b" repeats="2" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="137b-d13e-dda6-0530" value="1">
<repeats>
<repeat field="selections" scope="5cb6-db64-fd4c-e792" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="3d4f-0267-2d3e-902f" repeats="1" roundUp="false"/>
<repeat field="selections" scope="5cb6-db64-fd4c-e792" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="eb2d-84e6-ea07-eedc" repeats="2" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="b936-d350-1b5b-fb34" value="1">
<repeats>
<repeat field="selections" scope="5cb6-db64-fd4c-e792" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="314a-df0e-b55d-4554" repeats="1" roundUp="false"/>
<repeat field="selections" scope="5cb6-db64-fd4c-e792" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="4204-2b1a-4e10-3498" repeats="2" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="ed7a-c503-b270-885d" value="1">
<repeats>
<repeat field="selections" scope="5cb6-db64-fd4c-e792" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="f657-5b28-7322-3235" repeats="1" roundUp="false"/>
<repeat field="selections" scope="5cb6-db64-fd4c-e792" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="dd6d-e6e5-3efa-68a6" repeats="2" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="ed7a-c503-b270-885d" value="1">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9a80-020e-3d3b-bb34" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="Move" typeId="ed7a-c503-b270-885d">4</characteristic>
<characteristic name="Life" typeId="137b-d13e-dda6-0530">11</characteristic>
<characteristic name="Combat" typeId="b936-d350-1b5b-fb34">5</characteristic>
</characteristics>
</profile>
<profile id="9ca5-9f5b-cc1a-31dd" name="Balance the Scales" hidden="false" typeId="8366-9fc7-d1ad-f62b" typeName="Special Ability">
<characteristics>
<characteristic name="Description" typeId="9bf0-bbf8-b277-8619">When the enemy spends a Soul Dice, you may roll a dice. On the result of a 4+, you gain one Soul Dice (immediately roll a dice and add to your playsheet as though you had slain a demon).</characteristic>
</characteristics>
</profile>
<profile id="dc58-6cc4-b6d5-b0f5" name="Tax" hidden="false" typeId="8366-9fc7-d1ad-f62b" typeName="Special Ability">
<characteristics>
<characteristic name="Description" typeId="9bf0-bbf8-b277-8619">The Tallyman starts the battle with a Tax score of 3. Everytime a friendly model is slain, increase the Tax score of the Tallyman by 1. Whenever the Tallyman slays an enemy, you may roll a d6. If the result of that dice is less than or equal to the current Tax score, you gain an additional soul.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="6d3b-f4f6-9d38-da2f" name="New CategoryLink" hidden="false" targetId="e534-8b74-6056-9e87" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="1e97-c416-aaf8-a5d5" name="06 XP: Greater Evolution" hidden="true" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="5cb6-db64-fd4c-e792" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="86ac-5265-2509-7cf2" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<modifierGroups>
<modifierGroup>
<conditions>
<condition field="selections" scope="parent" value="6" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="964a-949b-914e-3c34" type="atLeast"/>
</conditions>
<modifiers>
<modifier type="set" field="hidden" value="false"/>
<modifier type="set" field="868d-ae0f-7986-c6b4" value="1"/>
</modifiers>
</modifierGroup>
</modifierGroups>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9475-8980-dba4-1b37" type="max"/>
<constraint field="selections" scope="parent" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="868d-ae0f-7986-c6b4" type="min"/>
</constraints>
<profiles>
<profile id="48cf-34d2-4c23-5e7e" name="06 XP: Greater Evolution" hidden="false" typeId="6ccd-fe51-809b-d201" typeName="Evolutions">
<characteristics>
<characteristic name="Description" typeId="49c9-3fde-e2cf-1269">Increase the Life ability and Combat ability by 1.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="Souls" typeId="cc7c-c1bb-7f20-8378" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="339e-6137-3397-c471" name="18 XP: Superior Evolution" hidden="true" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="5cb6-db64-fd4c-e792" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="15fd-7bb2-ec5b-25c9" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<modifierGroups>
<modifierGroup>
<conditions>
<condition field="selections" scope="parent" value="18" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="964a-949b-914e-3c34" type="atLeast"/>
</conditions>
<modifiers>
<modifier type="set" field="hidden" value="false"/>
<modifier type="set" field="8198-1083-7766-1acd" value="1"/>
</modifiers>
</modifierGroup>
</modifierGroups>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="043d-8684-393f-474c" type="max"/>
<constraint field="selections" scope="parent" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8198-1083-7766-1acd" type="min"/>
</constraints>
<profiles>
<profile id="8d16-65f2-4bdf-bb2b" name="Superior Evolution" hidden="false" typeId="6ccd-fe51-809b-d201" typeName="Evolutions">
<characteristics>
<characteristic name="Description" typeId="49c9-3fde-e2cf-1269">The Tallyman begins the game with a Tax score of 4.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="Souls" typeId="cc7c-c1bb-7f20-8378" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="c385-37f0-0b5f-501e" name="Essence" hidden="false" collective="false" import="true" targetId="8203-8eda-7dd0-0d14" type="selectionEntryGroup"/>
<entryLink id="b11b-9d07-2e61-1c64" name="Relics" hidden="false" collective="false" import="true" targetId="8491-9948-0782-27e1" type="selectionEntryGroup"/>
<entryLink id="8c5c-156f-d8fa-9b6d" name="Titles" hidden="false" collective="false" import="true" targetId="e1c5-68bd-c4c7-8850" type="selectionEntryGroup"/>
<entryLink id="19aa-48d1-a9cd-a095" name="XP" hidden="false" collective="false" import="true" targetId="964a-949b-914e-3c34" type="selectionEntry"/>
<entryLink id="cacc-eaad-3c28-3960" name="12 Experience" hidden="true" collective="false" import="true" targetId="ed77-d5aa-c0aa-00b9" type="selectionEntryGroup">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="parent" value="12" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="964a-949b-914e-3c34" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="c935-e731-de1c-5a9b" name="24 Experience: Leader Essence" hidden="true" collective="false" import="true" targetId="6023-bb92-c769-ef27" type="selectionEntryGroup">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="parent" value="24" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="964a-949b-914e-3c34" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="98dc-ea3b-9786-ea0e" name="30 Experience" hidden="true" collective="false" import="true" targetId="16c7-ec1e-4c0d-310c" type="selectionEntryGroup">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="parent" value="30" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="964a-949b-914e-3c34" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="fa51-45fa-ea24-71d8" name="Soul Loss Effects" hidden="false" collective="false" import="true" targetId="3ed3-778f-f57f-8c2c" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="Souls" typeId="cc7c-c1bb-7f20-8378" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="4a4d-fc05-c3ff-3aa9" name="Succubus" hidden="true" collective="false" import="true" type="unit">
<modifiers>
<modifier type="set" field="ff76-493f-9b7a-9df0" value="1">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="9a80-020e-3d3b-bb34" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="4797-42e3-0475-57a6" value="1">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="9a80-020e-3d3b-bb34" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="9a80-020e-3d3b-bb34" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4797-42e3-0475-57a6" type="max"/>
<constraint field="selections" scope="roster" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="ff76-493f-9b7a-9df0" type="min"/>
</constraints>
<profiles>
<profile id="7f6b-cade-51ba-8205" name="Succubus" hidden="false" typeId="b8bf-34dc-6f26-5b03" typeName="Demon">
<modifiers>
<modifier type="append" field="name">
<conditions>
<condition field="selections" scope="4a4d-fc05-c3ff-3aa9" value="6" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="964a-949b-914e-3c34" type="atLeast"/>
</conditions>
</modifier>
<modifier type="append" field="name">
<conditions>
<condition field="selections" scope="4a4d-fc05-c3ff-3aa9" value="0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="3ed3-778f-f57f-8c2c" type="greaterThan"/>
</conditions>
</modifier>
<modifier type="decrement" field="ed7a-c503-b270-885d" value="1">
<repeats>
<repeat field="selections" scope="4a4d-fc05-c3ff-3aa9" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="f23f-8f5d-4b3a-13c8" repeats="1" roundUp="false"/>
<repeat field="selections" scope="4a4d-fc05-c3ff-3aa9" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ac5d-8240-f950-a068" repeats="2" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="ed7a-c503-b270-885d" value="1">
<repeats>
<repeat field="selections" scope="4a4d-fc05-c3ff-3aa9" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="314a-df0e-b55d-4554" repeats="1" roundUp="false"/>
<repeat field="selections" scope="4a4d-fc05-c3ff-3aa9" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="4204-2b1a-4e10-3498" repeats="2" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="b936-d350-1b5b-fb34" value="1">
<repeats>
<repeat field="selections" scope="4a4d-fc05-c3ff-3aa9" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0248-043c-5933-9c5d" repeats="1" roundUp="false"/>
<repeat field="selections" scope="4a4d-fc05-c3ff-3aa9" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ad2b-8ccc-627b-208b" repeats="2" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="137b-d13e-dda6-0530" value="1">
<repeats>
<repeat field="selections" scope="4a4d-fc05-c3ff-3aa9" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b1d4-e3b5-ca18-b24f" repeats="1" roundUp="false"/>
<repeat field="selections" scope="4a4d-fc05-c3ff-3aa9" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="aa39-3f43-07c3-7f13" repeats="2" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="137b-d13e-dda6-0530" value="1">
<repeats>
<repeat field="selections" scope="4a4d-fc05-c3ff-3aa9" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="3d4f-0267-2d3e-902f" repeats="1" roundUp="false"/>
<repeat field="selections" scope="4a4d-fc05-c3ff-3aa9" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="eb2d-84e6-ea07-eedc" repeats="2" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="ed7a-c503-b270-885d" value="1">
<repeats>
<repeat field="selections" scope="4a4d-fc05-c3ff-3aa9" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="f657-5b28-7322-3235" repeats="1" roundUp="false"/>
<repeat field="selections" scope="4a4d-fc05-c3ff-3aa9" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="dd6d-e6e5-3efa-68a6" repeats="2" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="ed7a-c503-b270-885d" value="1">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9a80-020e-3d3b-bb34" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="Move" typeId="ed7a-c503-b270-885d">6</characteristic>
<characteristic name="Life" typeId="137b-d13e-dda6-0530">9</characteristic>
<characteristic name="Combat" typeId="b936-d350-1b5b-fb34">4</characteristic>
</characteristics>
</profile>