generated from BSData/TemplateDataRepo
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Warhammer_Age_of_Sigmar_Warcry.gst
2631 lines (2620 loc) · 175 KB
/
Warhammer_Age_of_Sigmar_Warcry.gst
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"?>
<gameSystem id="e5fe-db52-95ba-6b62" name="Warhammer Age of Sigmar: Warcry" revision="64" battleScribeVersion="2.03" authorName="Hood" authorContact="discord: hood#3264" xmlns="http://www.battlescribe.net/schema/gameSystemSchema">
<readme>Cost Limits: 1000
click on the force you add, then click Add Force to add another force as Allies.</readme>
<publications>
<publication id="df3a-f424-e7ea-5f69" name="Tome of Champions 2021" shortName="ToC21" publisher="Tome of Champions 2021" publicationDate="March 2022"/>
<publication id="2c2f-d4c8-7730-6c82" name="Warcry Heart of Ghur Core Rule Book" shortName="HoG Core Book" publisher="2022" publicationDate="~~~2022"/>
</publications>
<costTypes>
<costType id="820d-9f65-fcb1-d476" name="pts" defaultCostLimit="-1.0" hidden="false"/>
</costTypes>
<profileTypes>
<profileType id="7bf1-ad0a-0d19-6565" name="Model">
<characteristicTypes>
<characteristicType id="c652-026b-c19b-fb1a" name="Move"/>
<characteristicType id="68cf-bb2c-bce1-e83e" name="Toughness"/>
<characteristicType id="585d-de0f-f39b-3633" name="Wounds"/>
</characteristicTypes>
</profileType>
<profileType id="d83c-f0e3-af8e-b6b0" name="Weapon">
<characteristicTypes>
<characteristicType id="e85b-c9e0-0d39-7786" name="Range"/>
<characteristicType id="60cf-9920-ff5d-032d" name="Attacks"/>
<characteristicType id="4591-7140-62c7-f2f1" name="Strength"/>
<characteristicType id="446b-a910-1596-123b" name="Damage"/>
</characteristicTypes>
</profileType>
<profileType id="3f17-da96-b02a-c0ef" name="Injury">
<characteristicTypes>
<characteristicType id="9b71-a24e-4046-7a28" name="Description"/>
</characteristicTypes>
</profileType>
<profileType id="05da-eba7-8ed2-ba43" name="Tournament Quest">
<characteristicTypes>
<characteristicType id="0ec8-ef3e-72d9-8b62" name="Description"/>
</characteristicTypes>
</profileType>
<profileType id="575c-b39f-7b5a-ea68" name="Damage Points Allocated">
<characteristicTypes>
<characteristicType id="d86c-8efd-c0fc-becd" name="Move"/>
<characteristicType id="a830-e875-cf90-385f" name="Damage"/>
</characteristicTypes>
</profileType>
<profileType id="5941-9204-88a3-ba42" name="Command Trait">
<characteristicTypes>
<characteristicType id="cf97-0e3a-47ce-f603" name="Description"/>
</characteristicTypes>
</profileType>
<profileType id="52f5-a5b7-52cc-4459" name="Territory">
<characteristicTypes>
<characteristicType id="9b19-df09-3efb-e317" name="Description"/>
</characteristicTypes>
</profileType>
<profileType id="7698-989e-2e88-168e" name="Artefact">
<characteristicTypes>
<characteristicType id="70d1-b8bc-0fcc-7f55" name="Description"/>
</characteristicTypes>
</profileType>
</profileTypes>
<categoryEntries>
<categoryEntry id="f2ce-030d-9971-73f0" name="Fighters" hidden="false"/>
<categoryEntry id="0ca4-e66d-9403-64a5" name="Heroes (1 to 3)" hidden="false"/>
<categoryEntry id="45ea-7617-f6a7-7fcb" name="Allies" hidden="false"/>
<categoryEntry id="aadf-5830-72a8-d164" name="Thralls" hidden="false"/>
<categoryEntry id="e311-66c4-5d05-cd1e" name="Monsters" hidden="false"/>
<categoryEntry id="5ed1-bb68-7a31-b173" name="zzzzz" hidden="false"/>
<categoryEntry id="e4b3-72a5-ca73-8c72" name="Narrative Options" hidden="false"/>
<categoryEntry id="82fd-8251-2413-feb8" name="Bladeborn Fighters" hidden="false"/>
<categoryEntry id="15bb-04f5-5313-58a5" name="Open Play Options" hidden="false"/>
<categoryEntry id="fba5-9730-9be1-8ee9" name="Tournament Quests" hidden="false"/>
<categoryEntry id="e663-95d1-d351-f200" name="Allegiances" hidden="false"/>
<categoryEntry id="c1d9-ad54-d2e9-6849" name=" Agile" hidden="false"/>
<categoryEntry id="a333-9146-42e8-421a" name=" Beast" hidden="false"/>
<categoryEntry id="65b3-6aac-769e-b8bd" name=" Ally" hidden="false"/>
<categoryEntry id="c3f5-3905-6ef9-4bee" name=" Berserker" hidden="false"/>
<categoryEntry id="1482-0037-1879-7409" name=" Brute" hidden="false"/>
<categoryEntry id="0f0b-3883-05ea-e379" name=" Bulwark" hidden="false"/>
<categoryEntry id="3c8f-bdce-f950-c13e" name=" Champion" hidden="false"/>
<categoryEntry id="4a55-52e5-0611-9983" name=" Destroyer" hidden="false"/>
<categoryEntry id="fcb1-dbed-6277-4fda" name=" Elite" hidden="false"/>
<categoryEntry id="1aa1-183f-952b-ad08" name=" Ferocious" hidden="false"/>
<categoryEntry id="6840-bddb-4164-6ebe" name=" Fly" hidden="false"/>
<categoryEntry id="12a9-d7b7-2309-fde6" name=" Frenzied" hidden="false"/>
<categoryEntry id="ddfc-7256-ce66-075d" name=" Gargantuan" hidden="false"/>
<categoryEntry id="2bf9-3f3e-ea63-1f26" name=" Icon Bearer" hidden="false"/>
<categoryEntry id="e5fd-f9f1-938d-dc5b" name=" Hero" hidden="false"/>
<categoryEntry id="9d06-5a04-abc1-f87c" name=" Minion" hidden="false"/>
<categoryEntry id="85e4-2bbc-e2a5-c551" name=" Mount" hidden="false"/>
<categoryEntry id="7622-abbe-a6f9-0bc6" name=" Mystic" hidden="false"/>
<categoryEntry id="cfc3-b159-c796-fdce" name=" Priest" hidden="false"/>
<categoryEntry id="dce8-a536-db85-d856" name=" Scout" hidden="false"/>
<categoryEntry id="5452-a013-9d01-fd29" name=" Sentience" hidden="false"/>
<categoryEntry id="9a13-b45c-d217-fc43" name=" Terrifying" hidden="false"/>
<categoryEntry id="5c54-590a-5fc0-e435" name=" Thrall" hidden="false"/>
<categoryEntry id="ad7e-e1dc-6545-1969" name=" Trapper" hidden="false"/>
<categoryEntry id="d93c-b171-eecc-ef6d" name=" Warrior" hidden="false"/>
<categoryEntry id="b311-2a5f-39e3-f8e4" name=" Monster" hidden="false"/>
<categoryEntry id="f7b6-6ae2-7fdb-3093" name="-Functional Categories-" hidden="true"/>
<categoryEntry id="a069-63a6-a6b4-742b" name=" Chaos" hidden="false"/>
<categoryEntry id="e62d-3867-a149-1ffa" name=" Death" hidden="false"/>
<categoryEntry id="7c12-f3a7-3b3c-30f1" name=" Destruction" hidden="false"/>
<categoryEntry id="530f-47bb-d668-1ca6" name=" Order" hidden="false"/>
<categoryEntry id="52ee-0c94-262c-9a8e" name=" -Universal Runemarks-" hidden="true"/>
<categoryEntry id="8134-f759-d667-7eb1" name="Cities of Sigmar" hidden="false"/>
<categoryEntry id="0b93-1073-1ad5-7829" name="Tournament Options" hidden="false"/>
<categoryEntry id="0a5f-6d68-eb33-4002" name="QS Heroes" hidden="false"/>
</categoryEntries>
<forceEntries>
<forceEntry id="b12a-e361-2540-1376" name="Open Play" hidden="false">
<modifiers>
<modifier type="increment" field="2a28-06a6-cbd3-84f6" value="1.0">
<comment>bladeborn allies roster max alteration</comment>
<repeats>
<repeat field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="82fd-8251-2413-feb8" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<modifierGroups>
<modifierGroup>
<comment>Open Play Options Relationship</comment>
<modifiers>
<modifier type="increment" field="2a28-06a6-cbd3-84f6" value="1.0">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="cc30-51a5-1bac-cdfd" type="atLeast"/>
</conditions>
</modifier>
<modifier type="increment" field="851c-980c-8c57-7c5e" value="1.0">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="cc30-51a5-1bac-cdfd" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</modifierGroup>
<modifierGroup>
<comment>allegiances</comment>
<modifiers>
<modifier type="increment" field="2a28-06a6-cbd3-84f6" value="1.0">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="e663-95d1-d351-f200" type="equalTo"/>
</conditions>
</modifier>
<modifier type="increment" field="851c-980c-8c57-7c5e" value="1.0">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="e663-95d1-d351-f200" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</modifierGroup>
<modifierGroup>
<comment>open play roster alterations</comment>
<modifiers>
<modifier type="increment" field="c181-c1de-6c1f-e780" value="250.0">
<repeats>
<repeat field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d010-27a4-3b09-70d3" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="c181-c1de-6c1f-e780" value="100.0">
<repeats>
<repeat field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="8dba-ff8c-a264-a495" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="c181-c1de-6c1f-e780" value="500.0">
<repeats>
<repeat field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="c03f-195d-9d4b-68f0" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="2a28-06a6-cbd3-84f6" value="1.0">
<repeats>
<repeat field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9032-694a-3205-3338" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</modifierGroup>
</modifierGroups>
<constraints>
<constraint field="selections" scope="roster" value="15.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="true" id="2a28-06a6-cbd3-84f6" type="max"/>
<constraint field="selections" scope="roster" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="true" id="851c-980c-8c57-7c5e" type="min"/>
<constraint field="820d-9f65-fcb1-d476" scope="roster" value="1000.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="true" id="c181-c1de-6c1f-e780" type="max"/>
</constraints>
<forceEntries>
<forceEntry id="472c-cc4c-3c46-a7d2" name="Allies" hidden="false">
<categoryLinks>
<categoryLink id="6cff-4bfc-b8ee-be19" name="Allies" hidden="false" targetId="45ea-7617-f6a7-7fcb" primary="false">
<modifierGroups>
<modifierGroup>
<modifiers>
<modifier type="set" field="38ae-8bfd-d301-796a" value="1.0">
<conditions>
<condition field="selections" scope="roster" value="2.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="0ca4-e66d-9403-64a5" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="38ae-8bfd-d301-796a" value="0.0">
<conditions>
<condition field="selections" scope="roster" value="3.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="0ca4-e66d-9403-64a5" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</modifierGroup>
</modifierGroups>
<constraints>
<constraint field="selections" scope="6cff-4bfc-b8ee-be19" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="38ae-8bfd-d301-796a" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="ba05-c495-d0e5-7c5d" name="Allegiances" hidden="true" targetId="e663-95d1-d351-f200" primary="false">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="8134-f759-d667-7eb1" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="b996-2594-f3b5-dfeb" type="max"/>
</constraints>
</categoryLink>
</categoryLinks>
</forceEntry>
</forceEntries>
<categoryLinks>
<categoryLink id="c5fd-11e3-587d-22ca" name="Open Play Options" hidden="false" targetId="15bb-04f5-5313-58a5" primary="false">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c32a-38a0-0681-0ef8" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="5ff4-8541-ecbd-b97f" name="Heroes (1 to 3)" hidden="false" targetId="0ca4-e66d-9403-64a5" primary="false">
<modifierGroups>
<modifierGroup>
<modifiers>
<modifier type="decrement" field="8b96-7179-f4be-926a" value="1.0">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="45ea-7617-f6a7-7fcb" type="equalTo"/>
</conditions>
</modifier>
<modifier type="decrement" field="8b96-7179-f4be-926a" value="2.0">
<conditions>
<condition field="selections" scope="roster" value="2.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="45ea-7617-f6a7-7fcb" type="equalTo"/>
</conditions>
</modifier>
<modifier type="increment" field="8b96-7179-f4be-926a" value="1.0">
<repeats>
<repeat field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="0a5f-6d68-eb33-4002" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</modifierGroup>
</modifierGroups>
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="ca02-49fa-9a8e-4ebe" type="min"/>
<constraint field="selections" scope="roster" value="3.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="8b96-7179-f4be-926a" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="cc09-a311-7013-6e59" name="Fighters" hidden="false" targetId="f2ce-030d-9971-73f0" primary="false"/>
<categoryLink id="e96a-4ba9-a4f3-9277" name="Thralls" hidden="false" targetId="aadf-5830-72a8-d164" primary="false"/>
<categoryLink id="6a6a-fcf5-2a74-ef67" name="Monsters" hidden="false" targetId="e311-66c4-5d05-cd1e" primary="false"/>
<categoryLink id="8999-2018-4ce5-b7e7" name="Allegiances" hidden="true" targetId="e663-95d1-d351-f200" primary="false">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="8134-f759-d667-7eb1" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="81b0-ce4c-88f7-0c2b" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="8075-d807-594c-9d18" name="Allies" hidden="true" targetId="45ea-7617-f6a7-7fcb" primary="false"/>
</categoryLinks>
</forceEntry>
<forceEntry id="2109-44c1-8c46-ea4f" name="Narrative Play" hidden="false">
<modifiers>
<modifier type="increment" field="1eab-7954-84eb-7178" value="1.0">
<comment>bladeborn allies</comment>
<repeats>
<repeat field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="82fd-8251-2413-feb8" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="a612-cfde-504b-b8d6" value="1.0">
<comment>allegiances</comment>
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="e663-95d1-d351-f200" type="equalTo"/>
</conditions>
</modifier>
<modifier type="increment" field="1eab-7954-84eb-7178" value="1.0">
<comment>allegiances</comment>
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="e663-95d1-d351-f200" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="00fd-8510-5cfd-67a0" value="950.0">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="3e4b-ec37-4927-c2bb" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<modifierGroups>
<modifierGroup>
<comment>Narrative Options Relationship</comment>
<modifiers>
<modifier type="increment" field="a612-cfde-504b-b8d6" value="1.0">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="578d-e141-c905-4efe" type="equalTo"/>
</conditions>
</modifier>
<modifier type="increment" field="1eab-7954-84eb-7178" value="1.0">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="578d-e141-c905-4efe" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</modifierGroup>
<modifierGroup>
<comment>roster max alteration (territories & soroth kor)</comment>
<modifierGroups>
<modifierGroup>
<comment>increase roster max 50</comment>
<modifiers>
<modifier type="increment" field="00fd-8510-5cfd-67a0" value="50.0">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ed3b-f3ff-7285-d37a" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</modifierGroup>
<modifierGroup>
<comment>increase roster max 100</comment>
<modifiers>
<modifier type="increment" field="00fd-8510-5cfd-67a0" value="100.0">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="10ff-25f8-d133-5fc1" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</modifierGroup>
<modifierGroup>
<comment>ALL soroth kor territory modifiers</comment>
<modifierGroups>
<modifierGroup>
<comment>ROSTER soroth kor territories</comment>
<modifierGroups>
<modifierGroup>
<comment>desolate ruins and upgrade</comment>
<modifiers>
<modifier type="increment" field="00fd-8510-5cfd-67a0" value="25.0">
<repeats>
<repeat field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="e791-f37d-0901-c258" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="00fd-8510-5cfd-67a0" value="25.0">
<repeats>
<repeat field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2a39-4861-5908-73e9" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</modifierGroup>
<modifierGroup>
<comment>Forgotten Spire, no upgrade</comment>
<modifiers>
<modifier type="increment" field="00fd-8510-5cfd-67a0" value="50.0">
<repeats>
<repeat field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0751-a5d4-8329-7bd3" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</modifierGroup>
<modifierGroup>
<comment>Hidden Catacombs, no upgrade</comment>
<modifiers>
<modifier type="increment" field="00fd-8510-5cfd-67a0" value="50.0">
<repeats>
<repeat field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2830-089f-c858-3bd8" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</modifierGroup>
<modifierGroup>
<comment>Ruined Stronghold, no upgrade</comment>
<modifiers>
<modifier type="increment" field="00fd-8510-5cfd-67a0" value="50.0">
<repeats>
<repeat field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="6fd7-181b-f6ff-42a1" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</modifierGroup>
<modifierGroup>
<comment>Sealed Tomb, no upgrade</comment>
<modifiers>
<modifier type="increment" field="00fd-8510-5cfd-67a0" value="50.0">
<repeats>
<repeat field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="4304-5379-cd34-5cd6" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</modifierGroup>
<modifierGroup>
<comment>Abandoned Foundry, no upgrade</comment>
<modifiers>
<modifier type="increment" field="00fd-8510-5cfd-67a0" value="50.0">
<repeats>
<repeat field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="6fd7-181b-f6ff-42a1" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</modifierGroup>
<modifierGroup>
<comment>Eerie Quarter and upgrade</comment>
<modifiers>
<modifier type="increment" field="00fd-8510-5cfd-67a0" value="50.0">
<repeats>
<repeat field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="3999-bef4-d36c-c23d" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="00fd-8510-5cfd-67a0" value="25.0">
<repeats>
<repeat field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="75aa-4c5f-cc29-440d" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</modifierGroup>
<modifierGroup>
<comment>Gore Pit, no upgrade</comment>
<modifiers>
<modifier type="increment" field="00fd-8510-5cfd-67a0" value="50.0">
<repeats>
<repeat field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b42a-580f-7cde-7257" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</modifierGroup>
<modifierGroup>
<comment>Steelwrought Shrine, no upgrade</comment>
<modifiers>
<modifier type="increment" field="00fd-8510-5cfd-67a0" value="50.0">
<repeats>
<repeat field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="c425-a590-56bf-5127" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</modifierGroup>
<modifierGroup>
<comment>Surgical Complex, no upgrade</comment>
<modifiers>
<modifier type="increment" field="00fd-8510-5cfd-67a0" value="50.0">
<repeats>
<repeat field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="75e7-f48f-6295-2560" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</modifierGroup>
<modifierGroup>
<comment>Ancient Palace and upgrade</comment>
<modifiers>
<modifier type="increment" field="00fd-8510-5cfd-67a0" value="50.0">
<repeats>
<repeat field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="fa99-272d-6ec2-fd80" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="00fd-8510-5cfd-67a0" value="50.0">
<repeats>
<repeat field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="e43a-4345-69ec-a227" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</modifierGroup>
<modifierGroup>
<comment>Cultic Sanctuary, no upgrade</comment>
<modifiers>
<modifier type="increment" field="00fd-8510-5cfd-67a0" value="50.0">
<repeats>
<repeat field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b42a-580f-7cde-7257" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</modifierGroup>
<modifierGroup>
<comment>Entrance to the Deep Dark, no upgrade</comment>
<modifiers>
<modifier type="increment" field="00fd-8510-5cfd-67a0" value="50.0">
<repeats>
<repeat field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="4d91-9377-5504-e7ed" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</modifierGroup>
<modifierGroup>
<comment>Sage's Lair, no upgrade</comment>
<modifiers>
<modifier type="increment" field="00fd-8510-5cfd-67a0" value="50.0">
<repeats>
<repeat field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ba98-cabd-a00d-885c" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</modifierGroup>
<modifierGroup>
<comment>Silent Marketplace, no upgrade</comment>
<modifiers>
<modifier type="increment" field="00fd-8510-5cfd-67a0" value="50.0">
<repeats>
<repeat field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="f9c6-828a-fac4-e1f5" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</modifierGroup>
</modifierGroups>
</modifierGroup>
</modifierGroups>
</modifierGroup>
<modifierGroup>
<comment>dominated territories</comment>
<modifiers>
<modifier type="increment" field="00fd-8510-5cfd-67a0" value="50.0">
<repeats>
<repeat field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7579-db4e-0dd6-4537" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</modifierGroup>
</modifierGroups>
</modifierGroup>
<modifierGroup>
<comment>roster max alteration (gnarlwood encampments)</comment>
<modifierGroups>
<modifierGroup>
<comment>ALL soroth kor territory modifiers</comment>
<modifiers>
<modifier type="set" field="00fd-8510-5cfd-67a0" value="1050.0">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="098c-bd55-bf8d-ff94" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="00fd-8510-5cfd-67a0" value="1050.0">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="a362-c2bc-a64b-e83d" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="00fd-8510-5cfd-67a0" value="1100.0">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d66c-f25f-0f59-b507" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="00fd-8510-5cfd-67a0" value="1150.0">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="5dc5-9f7a-353c-cc4a" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="00fd-8510-5cfd-67a0" value="1250.0">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="e802-716e-272d-92df" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="00fd-8510-5cfd-67a0" value="1150.0">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0358-e822-ad3a-6aa3" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="00fd-8510-5cfd-67a0" value="1150.0">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="8c24-36a1-babe-54c8" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="00fd-8510-5cfd-67a0" value="1150.0">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="3fdf-60f2-1895-9274" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="00fd-8510-5cfd-67a0" value="1200.0">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="3c6f-9689-e731-772c" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</modifierGroup>
</modifierGroups>
</modifierGroup>
</modifierGroups>
<constraints>
<constraint field="selections" scope="roster" value="15.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="true" id="1eab-7954-84eb-7178" type="max"/>
<constraint field="selections" scope="roster" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="true" id="a612-cfde-504b-b8d6" type="min"/>
<constraint field="820d-9f65-fcb1-d476" scope="roster" value="1000.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="true" id="00fd-8510-5cfd-67a0" type="max"/>
</constraints>
<forceEntries>
<forceEntry id="39d0-d6f7-c416-26a7" name="Allies" hidden="false">
<categoryLinks>
<categoryLink id="db3d-f1d8-082e-bac2" name="Allies" hidden="false" targetId="45ea-7617-f6a7-7fcb" primary="false">
<modifierGroups>
<modifierGroup>
<modifiers>
<modifier type="decrement" field="4c1f-5a81-f0ed-5bb3" value="1.0">
<conditions>
<condition field="selections" scope="roster" value="2.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="0ca4-e66d-9403-64a5" type="equalTo"/>
</conditions>
</modifier>
<modifier type="decrement" field="4c1f-5a81-f0ed-5bb3" value="2.0">
<conditions>
<condition field="selections" scope="roster" value="3.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="0ca4-e66d-9403-64a5" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</modifierGroup>
</modifierGroups>
<constraints>
<constraint field="selections" scope="db3d-f1d8-082e-bac2" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4c1f-5a81-f0ed-5bb3" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="2c63-1889-107e-958a" name="Allegiances" hidden="true" targetId="e663-95d1-d351-f200" primary="false">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="8134-f759-d667-7eb1" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="5f76-f5eb-cf0f-72e7" type="max"/>
</constraints>
</categoryLink>
</categoryLinks>
</forceEntry>
</forceEntries>
<categoryLinks>
<categoryLink id="6167-9314-b82b-737d" name="Narrative Options" hidden="false" targetId="e4b3-72a5-ca73-8c72" primary="false">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3def-010b-811e-64ad" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="e236-6bab-45e7-dadd" name="Heroes (1 to 3)" hidden="false" targetId="0ca4-e66d-9403-64a5" primary="false">
<modifiers>
<modifier type="increment" field="8d25-9dd2-1047-5dcc" value="1.0">
<repeats>
<repeat field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="0a5f-6d68-eb33-4002" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<modifierGroups>
<modifierGroup>
<modifiers>
<modifier type="decrement" field="8d25-9dd2-1047-5dcc" value="1.0">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="45ea-7617-f6a7-7fcb" type="equalTo"/>
</conditions>
</modifier>
<modifier type="decrement" field="8d25-9dd2-1047-5dcc" value="2.0">
<conditions>
<condition field="selections" scope="roster" value="2.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="45ea-7617-f6a7-7fcb" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</modifierGroup>
</modifierGroups>
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="1c17-c507-690d-a3a5" type="min"/>
<constraint field="selections" scope="roster" value="3.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="8d25-9dd2-1047-5dcc" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="d991-9f84-0e81-9ea1" name="Fighters" hidden="false" targetId="f2ce-030d-9971-73f0" primary="false"/>
<categoryLink id="44f6-b6c0-bcb3-cd03" name="Monsters" hidden="false" targetId="e311-66c4-5d05-cd1e" primary="false">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d4b0-7266-8ff6-5532" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="2cd0-557e-0202-662d" name="Thralls" hidden="false" targetId="aadf-5830-72a8-d164" primary="false"/>
<categoryLink id="a103-f8fc-0b50-3f72" name="Allegiances" hidden="true" targetId="e663-95d1-d351-f200" primary="false">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="8134-f759-d667-7eb1" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="a012-3e48-2c2d-52a4" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="503a-5433-1955-41b0" name="Allies" hidden="true" targetId="45ea-7617-f6a7-7fcb" primary="false"/>
</categoryLinks>
</forceEntry>
<forceEntry id="54fc-61ae-71eb-ca9d" name="Matched Play" hidden="false">
<modifiers>
<modifier type="increment" field="7bef-8541-1068-f6c1" value="1.0">
<repeats>
<repeat field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="82fd-8251-2413-feb8" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<modifierGroups>
<modifierGroup>
<comment>Tournament Quests & Allegiances Relationship</comment>
<modifiers>
<modifier type="increment" field="7bef-8541-1068-f6c1" value="1.0">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="e663-95d1-d351-f200" type="equalTo"/>
</conditions>
</modifier>
<modifier type="increment" field="5988-6dd4-f405-8ce2" value="1.0">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="e663-95d1-d351-f200" type="equalTo"/>
</conditions>
</modifier>
<modifier type="increment" field="5988-6dd4-f405-8ce2" value="1.0">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="fba5-9730-9be1-8ee9" type="equalTo"/>
</conditions>
</modifier>
<modifier type="increment" field="7bef-8541-1068-f6c1" value="1.0">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="fba5-9730-9be1-8ee9" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</modifierGroup>
<modifierGroup>
<comment>Tournament Options Relationship</comment>
<modifiers>
<modifier type="increment" field="7bef-8541-1068-f6c1" value="1.0">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="f766-7a4e-7bb2-6d98" type="equalTo"/>
</conditions>
</modifier>
<modifier type="increment" field="5988-6dd4-f405-8ce2" value="1.0">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="f766-7a4e-7bb2-6d98" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</modifierGroup>
</modifierGroups>
<constraints>
<constraint field="selections" scope="roster" value="15.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="true" id="7bef-8541-1068-f6c1" type="max"/>
<constraint field="selections" scope="roster" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="true" id="5988-6dd4-f405-8ce2" type="min"/>
<constraint field="820d-9f65-fcb1-d476" scope="roster" value="1000.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="true" id="22b7-1439-9736-8056" type="max"/>
</constraints>
<forceEntries>
<forceEntry id="63d2-7c13-32e7-9c61" name="Allies" hidden="false">
<categoryLinks>
<categoryLink id="65b8-c7f4-1c50-97d1" name="Allies" hidden="false" targetId="45ea-7617-f6a7-7fcb" primary="false">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="f84f-d042-56a7-a517" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<modifierGroups>
<modifierGroup>
<modifiers>
<modifier type="decrement" field="2754-4fcb-e4e8-05bd" value="1.0">
<conditions>
<condition field="selections" scope="roster" value="2.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="0ca4-e66d-9403-64a5" type="equalTo"/>
</conditions>
</modifier>
<modifier type="decrement" field="2754-4fcb-e4e8-05bd" value="2.0">
<conditions>
<condition field="selections" scope="roster" value="3.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="0ca4-e66d-9403-64a5" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</modifierGroup>
</modifierGroups>
<constraints>
<constraint field="selections" scope="65b8-c7f4-1c50-97d1" value="2.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="2754-4fcb-e4e8-05bd" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="b874-baa6-e8b6-d153" name="Allegiances" hidden="true" targetId="e663-95d1-d351-f200" primary="false">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="8134-f759-d667-7eb1" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="786e-1c52-d9d6-beac" type="max"/>
</constraints>
</categoryLink>
</categoryLinks>
</forceEntry>
</forceEntries>
<categoryLinks>
<categoryLink id="4af0-81b1-f0dc-02e5" name="Tournament Options" hidden="false" targetId="0b93-1073-1ad5-7829" primary="false">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="true" id="af73-91a3-74be-2104" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="ca4a-4448-2312-8339" name="Tournament Quests" hidden="false" targetId="fba5-9730-9be1-8ee9" primary="false"/>
<categoryLink id="9849-411e-15d4-9c6a" name="Allegiances" hidden="true" targetId="e663-95d1-d351-f200" primary="false">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="roster" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="8134-f759-d667-7eb1" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="6b32-6d5c-ff8a-53d9" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="c5d2-95ec-5b7d-32c2" name="Heroes (1 to 3)" hidden="false" targetId="0ca4-e66d-9403-64a5" primary="false">
<modifierGroups>
<modifierGroup>
<modifiers>
<modifier type="decrement" field="9306-d299-2f5c-7e39" value="1.0">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="45ea-7617-f6a7-7fcb" type="equalTo"/>
</conditions>
</modifier>
<modifier type="decrement" field="9306-d299-2f5c-7e39" value="2.0">
<conditions>
<condition field="selections" scope="roster" value="2.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="45ea-7617-f6a7-7fcb" type="equalTo"/>
</conditions>
</modifier>
<modifier type="increment" field="9306-d299-2f5c-7e39" value="1.0">
<repeats>
<repeat field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="0a5f-6d68-eb33-4002" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</modifierGroup>
</modifierGroups>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="de54-2813-b6c5-75c2" type="min"/>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="9306-d299-2f5c-7e39" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="3166-15fd-d6bf-b9c2" name="Fighters" hidden="false" targetId="f2ce-030d-9971-73f0" primary="false"/>
<categoryLink id="b1fc-6ef9-f273-6f4a" name="Monsters" hidden="false" targetId="e311-66c4-5d05-cd1e" primary="false">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="e4bc-6685-bc60-c2b4" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="48ec-61fe-bd81-2c7c" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="37d9-ea6a-34ca-6010" name="Thralls" hidden="false" targetId="aadf-5830-72a8-d164" primary="false">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="cbf7-db38-2f3a-fcfa" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6600-0268-4131-b04c" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="91f6-2c67-552c-6714" name="Allies" hidden="true" targetId="45ea-7617-f6a7-7fcb" primary="false"/>
</categoryLinks>
</forceEntry>
</forceEntries>
<entryLinks>
<entryLink id="9a52-a063-a6ab-0338" name="Narrative Options (Required)" hidden="false" collective="false" import="true" targetId="578d-e141-c905-4efe" type="selectionEntry"/>
<entryLink id="5720-d2b7-19d9-a904" name="Open Play Options" hidden="false" collective="false" import="true" targetId="cc30-51a5-1bac-cdfd" type="selectionEntry"/>
<entryLink id="88ba-c39d-e9b8-f2c3" name="Hidden Agendas" hidden="false" collective="false" import="true" targetId="6913-b466-755d-9581" type="selectionEntry"/>
<entryLink id="ffb0-e79e-2fe4-f7cb" name="Tournament Options" hidden="false" collective="false" import="true" targetId="f766-7a4e-7bb2-6d98" type="selectionEntry"/>
</entryLinks>
<rules>
<rule id="f574-01e8-a7f3-ef39" name=" ⚁ [Double] Rush" hidden="false">
<description>Add 1 to the Move characteristic of this fighter until the end of their activation.
⠀</description>
</rule>
<rule id="e8bf-46d4-c8bc-103f" name=" ⚂ [Triple] Respite" hidden="false">
<description>A fighter cannot use this ability if they are within 1" of any enemy fighters. Remove a number of damage points allocated to this fighter equal to the value of this ability.
⠀</description>
</rule>
<rule id="3ab2-db70-3462-b5f1" name=" ⚃ [Quad] Rampage" hidden="false">
<description>This fighter can make a bonus move action. Then, they can make a bonus attack action.
⠀</description>
</rule>
<rule id="0a9f-c47f-40d6-66ee" name=" ⚂ [Triple] Inspiring Presence" hidden="false">
<description>Pick a visible friendly fighter within 6" of this fighter that has not activated yet this battle round. You can activate that fighter immediately after this fighter's activation ends.
(requires the Hero runemark to use)</description>
</rule>
<rule id="a9e3-c5bd-646d-b0e8" name=" ---- Universal Abilties ----" hidden="false">
<description>⠀
⠀</description>
</rule>
<rule id="41cd-5582-d214-b260" name="⚄ Red Harvest Universal Abilities ⚄" hidden="true">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2212-4db6-8d91-4d04" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
</rule>
<rule id="0419-2861-a906-c602" name="⚄ ⚁ [Double] Turn Delve Engine On ⚄" hidden="true">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2212-4db6-8d91-4d04" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<description>A fighter can use this ability only if they are within 1" of the operating mechanism of a delve engine that is turned off. That delve engine is now turned on. Roll a dice. You can pick a number of sluices equal to the roll to become hazardous. Each sluice picked must either be connected to the delve engine or connected to another sluice that has already been picked. Allocate 2D6 damage points to each fighter on any hazardous sluices. In addition, allocate D6 damage points to each fighter that is not on but is within 3" of any hazardous sluices, excluding the fighter using this ability.</description>
</rule>
<rule id="2720-6e07-ee02-5918" name="⚄ Catacombs Universal Abilities ⚄" hidden="true">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="8c18-3fe6-a00e-8ca4" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
</rule>
<rule id="b8a4-8813-32d1-e867" name="⚄ ⚁ [Double] Lurk in the Shadows ⚄" hidden="true">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="8c18-3fe6-a00e-8ca4" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<description>Until the end of the battle round, this fighter is not visible to enemy fighters more than 6" away if this fighter is within 1" of a dungeon wall.</description>
</rule>
<rule id="9f7a-5cd5-de6c-787f" name="⚄ ⚁ [Double] Breach Door ⚄" hidden="true">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="8c18-3fe6-a00e-8ca4" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<description>Only fighters that do not have the Nighthaunt runemark can use this ability. A fighter can use this ability only if they are within 1" of a sealed dungeon door. Pick 1 weapon from this fighter's fighter card that has a Range characteristic of 3 or less and roll a number of dice equal to the value of this ability. Add the number of dice that scored a 2+ to the Strength characteristic of the weapon you picked. If the score is 6 or more, that dungeon door is opened.</description>
</rule>
<rule id="58e2-11d8-d1a0-e03f" name="⚄ ⚂ [Triple] Push into Pit ⚄" hidden="true">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="8c18-3fe6-a00e-8ca4" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<description>Pick a visible enemy fighter within 1" of this fighter and within 1/2" of a pit. Both players roll a dice and add the roll to their fighter's Toughness characteristic. If your score is higher than your opponent's, the enemy fighter is taken down.</description>
</rule>
<rule id="8090-d607-b088-c546" name="⚄ ⚂ [Triple]Turn Delve Engine Off ⚄" hidden="true">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2212-4db6-8d91-4d04" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<description>A fighter can use this ability only if they are within 1" of the operating mechanism of a delve engine that is turned on. That delve engine is now turned off. You can pick up to 6 hazardous sluices to no longer be hazardous. Each sluice picked must either be connected to the delve engine or connected to another sluice that has already been picked.</description>
</rule>
<rule id="e777-043f-5d2e-84c7" name="⚅ Heart of Ghur Universal Abilities ⚅" hidden="true">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="77de-f41a-3164-1be1" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
</rule>
<rule id="94a0-bb37-533c-5a7d" name="⚅ Cutting the Ropes ⚅" hidden="true">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="77de-f41a-3164-1be1" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<description>A fighter that is within 1" of a rope bridge but not on it can attempt to destroy it as an action. If they do so, roll 3 dice and add 1 to the score of each roll if the fighter is a monster or has any melee weapons with a Strength characterisitc of 5 or greater. if 1 roll scores 6+, the rope bridge is damaged. If 2 or more rolls score 6+, the rope bridge is destroyed.
The first time a rope bridge is damaged, it is weakened. This has no immediate effect, but players should be wary of sending their fighters across it from that point on. The second time a rope bridge is damaged, it is destroyed.
When a rope bridge is destroyed, every fighter that has the centre of their base on that rope bridge falls one after the other, in an order chosen by the player whose turn is taking place. When a fighter falls, if there is nowhere vertically lower that they can be placed, they are taken down. Otherwise, when a fighter falls in this manner, roll 3 dice for impact damage instead of 1. Once each fighter on the rope bridge has fallen, the rope bridge is removed.</description>
</rule>
<rule id="bbaf-62e3-6c9e-c576" name="[Reaction] Counter" hidden="false">
<description>A fighter can make this reaction after they are targeted by a melee attack action but before the hit rolls are made. For each hit roll from that attack action that misses, allocate 1 damage point to the attacking fighter. For each hit roll of 1, allocate 2 damage points to the attacking fighter instead.</description>
</rule>
<rule id="7b34-8342-cff8-30db" name=" ⚁ [Double] Onslaught" hidden="false">
<description>Add 1 to the Attacks characteristic of melee attack actions made by this fighter until the end of their activation.
⠀</description>
</rule>
<rule id="716b-5e1c-63b2-aa21" name="[Reaction] Strike Them Down" hidden="false">
<description>A fighter can make this reaction when a visible enemy fighter within 1" of them makes a disengage action but before that fighter moves away. Roll a dice. On a 4+, allocate D6 damage points to that enemy fighter.</description>
</rule>
<rule id="22f5-947a-3962-51bd" name="[Reaction] Take Cover" hidden="false">
<description>A fighter that is in cover can make this reaction after they are targeted by a missile attack action but before the hit rolls are made. After the hit rolls have been made, roll a dice for each critical hit. On a 4+, that critical hit becomes a hit instead. Fighters with the Mount runemark cannot make this reaction.</description>
</rule>
<rule id="10ae-33a9-aac0-577f" name="[-Universal Reactions-]" hidden="false"/>
<rule id="8c2d-4d4b-36f9-17cf" name="⚅ ⚂ [Triple]Sound the Alarm ⚅" hidden="true">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="77de-f41a-3164-1be1" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<description>A fighter can use this ability only if they are within 1" of the watchtower's war-horn. Roll a number of dice equal to the value of this ability. For each 4+, you can pick 1 fighter from your warband thatt is in the reserve and set them up on the battlefield within 3" horizontally of their deployment point as normal. These fighters can be activated this battle round as normal.</description>
</rule>
<rule id="59a3-3573-6823-cd3c" name="⚅ The Watchtower's War-horn ⚅" hidden="true">
<modifiers>
<modifier type="set" field="hidden" value="false">