generated from BSData/TemplateDataRepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAkkylannie Griffins [C5].cat
7120 lines (7108 loc) · 573 KB
/
Akkylannie Griffins [C5].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="ce3a5ad7-6925-1888-ffe8-94a72096defb" name="Akkylannie Griffins [C5]" revision="74" battleScribeVersion="2.03" authorName="squera" authorContact="squer4@gmail.com" library="false" gameSystemId="5fd679b4-a5a1-6c30-3721-e2bf973a23b8" gameSystemRevision="19" xmlns="http://www.battlescribe.net/schema/catalogueSchema" type="catalogue">
<selectionEntries>
<selectionEntry id="fcbb-dfde-2bd1-84a8" name="_ ATTENTION, CURRENT BUGS" hidden="true" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="minInRoster" value="1">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b92f73ff-71be-27a0-f36d-82027634abbb" type="atLeast"/>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="203d-8b75-b2eb-4b5c" type="atLeast"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="set" field="hidden" value="false">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b92f73ff-71be-27a0-f36d-82027634abbb" type="atLeast"/>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="203d-8b75-b2eb-4b5c" type="atLeast"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="minSelections" type="min"/>
<constraint field="selections" scope="roster" value="0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="minInRoster" type="min"/>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="maxInRoster" type="max"/>
</constraints>
<rules>
<rule id="a0cb-e7cf-1679-216e" name="_ ATTENTION, CURRENT BUGS" hidden="false">
<description>These are the things that battlescribe does not calculate: check them by hand.
- Solo/Blackguard : must be checked.
- Lodge of Hod: 40% of fighters affiliated on the card (see between brackets)
- Lodge of Hod: Solo/Vanguard: Max 40% of army. Max 1 card of fusiliers every 500 ap.
- "shadows of the inquisition": select once for the whole card</description>
</rule>
</rules>
<categoryLinks>
<categoryLink id="fcbb-dfde-2bd1-84a8-c5280396-d7d1-aff6-0b60-b4fdb95e0780" hidden="false" targetId="c5280396-d7d1-aff6-0b60-b4fdb95e0780" primary="true" name="Characters"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="0"/>
<cost name="POW" typeId="80fd-fce4-0fcf-8d53" value="0"/>
<cost name="FEDE" typeId="7347-c939-8362-2a34" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="66d5feb2-4149-f7cc-35fb-27d21987fb04" name="Abel the ill-tempered" page="0" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="maxInRoster" value="0">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="246e-612c-6819-d655" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="maxInRoster" type="max"/>
</constraints>
<profiles>
<profile id="f35cba53-25a0-d0ff-003c-e0073ead7a44" name="Abel the ill-tempered" page="0" hidden="false" typeId="49dce5e2-52bf-0fc1-0d57-8c7fc051a5e7" typeName="Profile Card">
<characteristics>
<characteristic name="Mov" typeId="43ca05d2-93b1-2e69-9247-5222e6a3e660">10</characteristic>
<characteristic name="Ini" typeId="62faceac-a790-f73b-e92b-95f8153c1881">4</characteristic>
<characteristic name="Atk-Str" typeId="f9648226-7792-8e8d-fb39-d602d9ccc4a4">4-7</characteristic>
<characteristic name="Def-Res" typeId="809ddebf-f707-4856-6d6a-24e422824c55">5-7</characteristic>
<characteristic name="Aim" typeId="a0cc3c53-2fe7-a648-c1af-a479c3417055">-</characteristic>
<characteristic name="Cou/Fea" typeId="26657305-fba2-144e-cf23-b4c61e818bcc">4 C</characteristic>
<characteristic name="Dis" typeId="120f8979-c55d-0da5-e6ee-00bc122d3684">6</characteristic>
<characteristic name="Pow" typeId="82511ef5-ecc0-fef5-e494-97d49e272e08"/>
<characteristic name="Fervour" typeId="56449f83-d9a2-b41a-375e-82cfae681abd"/>
<characteristic name="Abilities" typeId="9e96c332-0d20-5769-9724-bffde07d5b4c">Fanaticism; Leadership/10</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="66d5feb2-4149-f7cc-35fb-27d21987fb04-c5280396-d7d1-aff6-0b60-b4fdb95e0780" hidden="false" targetId="c5280396-d7d1-aff6-0b60-b4fdb95e0780" primary="true" name="Characters"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="d1bbdc7a-1d07-a573-d85d-cc10704a08e5" name="Artifacts" hidden="false" collective="false" import="true">
<modifiers>
<modifier type="increment" field="maxSelections" value="1">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="d1bbdc7a-1d07-a573-d85d-cc10704a08e5" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="2129-bca9-1e5d-1382" type="atLeast"/>
</conditions>
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="98d0ef17-ca3e-b375-87b3-154658dc5d54" type="atLeast"/>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="e52123a5-3286-519c-0e00-ff914541286b" type="atLeast"/>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b3bc2ce7-6775-8aa0-76af-37a4d142ddfd" type="atLeast"/>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="8e9e8070-330e-9aa1-f84b-5f22fb1e3822" type="atLeast"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<entryLinks>
<entryLink id="3ca981a1-f55a-89b6-2f06-cd8760dfac30" hidden="false" collective="false" import="true" targetId="01fe4cc1-6ea3-51b0-26a5-30d86784159e" type="selectionEntryGroup" name="Artifacts (common)"/>
<entryLink id="2235-f795-2eb1-1d0d" hidden="false" collective="false" import="true" targetId="f49b-3f96-5e61-04dc" type="selectionEntry" name="Chastisement"/>
<entryLink id="dcb6-10c7-4ecc-492c" hidden="false" collective="false" import="true" targetId="75039626-20cb-f827-b5f2-23607a66c656" type="selectionEntryGroup" name="Artifacts (faithfuls)">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="d1bbdc7a-1d07-a573-d85d-cc10704a08e5" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="f49b-3f96-5e61-04dc" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="df8c1704-cad4-e4b3-26c0-10f84374a5f0" hidden="false" collective="false" import="true" targetId="1f1b4667-d512-4ed9-7575-5e969edb98d0" type="selectionEntryGroup" name="Crusades"/>
<entryLink id="cd93-96e1-ab5c-56aa" hidden="false" collective="false" import="true" targetId="b3cd-8c7e-8270-7549" type="selectionEntry" name="Dark flame"/>
<entryLink id="0909-da27-a37c-4d9f" hidden="false" collective="false" import="true" targetId="89f6-0615-c66a-8ea2" type="selectionEntry" name="Veteran War Staff"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="41"/>
<cost name="POW" typeId="80fd-fce4-0fcf-8d53" value="0"/>
<cost name="FEDE" typeId="7347-c939-8362-2a34" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="246e-612c-6819-d655" name="Abel the ill-tempered (2nd)" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="maxInRoster" value="0">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="66d5feb2-4149-f7cc-35fb-27d21987fb04" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="maxInRoster" type="max"/>
</constraints>
<profiles>
<profile id="6e47-420e-4f1f-b3f9" name="Abel the ill-tempered (2nd)" hidden="false" typeId="49dce5e2-52bf-0fc1-0d57-8c7fc051a5e7" typeName="Profile Card">
<characteristics>
<characteristic name="Mov" typeId="43ca05d2-93b1-2e69-9247-5222e6a3e660">10</characteristic>
<characteristic name="Ini" typeId="62faceac-a790-f73b-e92b-95f8153c1881">4</characteristic>
<characteristic name="Atk-Str" typeId="f9648226-7792-8e8d-fb39-d602d9ccc4a4">5-7</characteristic>
<characteristic name="Def-Res" typeId="809ddebf-f707-4856-6d6a-24e422824c55">6-9</characteristic>
<characteristic name="Aim" typeId="a0cc3c53-2fe7-a648-c1af-a479c3417055">-</characteristic>
<characteristic name="Cou/Fea" typeId="26657305-fba2-144e-cf23-b4c61e818bcc">5 C</characteristic>
<characteristic name="Dis" typeId="120f8979-c55d-0da5-e6ee-00bc122d3684">7</characteristic>
<characteristic name="Pow" typeId="82511ef5-ecc0-fef5-e494-97d49e272e08"/>
<characteristic name="Fervour" typeId="56449f83-d9a2-b41a-375e-82cfae681abd"/>
<characteristic name="Abilities" typeId="9e96c332-0d20-5769-9724-bffde07d5b4c">Leadership/12.5, Loyal/1, Fanaticism</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="246e-612c-6819-d655-c5280396-d7d1-aff6-0b60-b4fdb95e0780" hidden="false" targetId="c5280396-d7d1-aff6-0b60-b4fdb95e0780" primary="true" name="Characters"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="07c8-3d21-7f1e-bfa8" name="Artifacts" hidden="false" collective="false" import="true">
<modifiers>
<modifier type="increment" field="maxSelections" value="1">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="07c8-3d21-7f1e-bfa8" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="2129-bca9-1e5d-1382" type="atLeast"/>
</conditions>
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="98d0ef17-ca3e-b375-87b3-154658dc5d54" type="atLeast"/>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="e52123a5-3286-519c-0e00-ff914541286b" type="atLeast"/>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b3bc2ce7-6775-8aa0-76af-37a4d142ddfd" type="atLeast"/>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="8e9e8070-330e-9aa1-f84b-5f22fb1e3822" type="atLeast"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<entryLinks>
<entryLink id="e34b-5c97-9c5b-dbf8" hidden="false" collective="false" import="true" targetId="01fe4cc1-6ea3-51b0-26a5-30d86784159e" type="selectionEntryGroup" name="Artifacts (common)"/>
<entryLink id="ad62-bccf-b0b6-0f21" hidden="false" collective="false" import="true" targetId="f49b-3f96-5e61-04dc" type="selectionEntry" name="Chastisement"/>
<entryLink id="d673-c045-943c-3a5b" hidden="false" collective="false" import="true" targetId="75039626-20cb-f827-b5f2-23607a66c656" type="selectionEntryGroup" name="Artifacts (faithfuls)">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="07c8-3d21-7f1e-bfa8" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="f49b-3f96-5e61-04dc" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="d0fc-ffcf-a4e0-f136" hidden="false" collective="false" import="true" targetId="1f1b4667-d512-4ed9-7575-5e969edb98d0" type="selectionEntryGroup" name="Crusades"/>
<entryLink id="f2db-04ab-5f7a-14c8" hidden="false" collective="false" import="true" targetId="b3cd-8c7e-8270-7549" type="selectionEntry" name="Dark flame"/>
<entryLink id="e3d7-a0f5-3c60-94cc" hidden="false" collective="false" import="true" targetId="89f6-0615-c66a-8ea2" type="selectionEntry" name="Veteran War Staff"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="54"/>
<cost name="POW" typeId="80fd-fce4-0fcf-8d53" value="0"/>
<cost name="FEDE" typeId="7347-c939-8362-2a34" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="bcc667c4-ea4b-d077-dc6d-517d2bc94d87" name="Arkhos, templar commander" page="0" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="maxInRoster" type="max"/>
</constraints>
<profiles>
<profile id="1f8c6d83-7f43-d127-cfec-a34a2c7f7d15" name="Arkhos, templar commander" page="0" hidden="false" typeId="49dce5e2-52bf-0fc1-0d57-8c7fc051a5e7" typeName="Profile Card">
<characteristics>
<characteristic name="Mov" typeId="43ca05d2-93b1-2e69-9247-5222e6a3e660">10</characteristic>
<characteristic name="Ini" typeId="62faceac-a790-f73b-e92b-95f8153c1881">6</characteristic>
<characteristic name="Atk-Str" typeId="f9648226-7792-8e8d-fb39-d602d9ccc4a4">6-9</characteristic>
<characteristic name="Def-Res" typeId="809ddebf-f707-4856-6d6a-24e422824c55">7-10</characteristic>
<characteristic name="Aim" typeId="a0cc3c53-2fe7-a648-c1af-a479c3417055">-</characteristic>
<characteristic name="Cou/Fea" typeId="26657305-fba2-144e-cf23-b4c61e818bcc">7 C</characteristic>
<characteristic name="Dis" typeId="120f8979-c55d-0da5-e6ee-00bc122d3684">9</characteristic>
<characteristic name="Pow" typeId="82511ef5-ecc0-fef5-e494-97d49e272e08"/>
<characteristic name="Fervour" typeId="56449f83-d9a2-b41a-375e-82cfae681abd"/>
<characteristic name="Abilities" typeId="9e96c332-0d20-5769-9724-bffde07d5b4c">Fanaticism; Bravery; War fury; Fencer; Leadership/10</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="f5db-573f-999a-19c0" hidden="false" targetId="24b7-7ccf-3e1a-c693" type="rule" name="Masters of the temple"/>
</infoLinks>
<categoryLinks>
<categoryLink id="bcc667c4-ea4b-d077-dc6d-517d2bc94d87-c5280396-d7d1-aff6-0b60-b4fdb95e0780" hidden="false" targetId="c5280396-d7d1-aff6-0b60-b4fdb95e0780" primary="true" name="Characters"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="53dba6fc-eda4-2b24-f0ed-7c6deb02460f" name="Artifacts" hidden="false" collective="false" import="true">
<modifiers>
<modifier type="increment" field="maxSelections" value="1">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="53dba6fc-eda4-2b24-f0ed-7c6deb02460f" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="2129-bca9-1e5d-1382" type="atLeast"/>
</conditions>
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="98d0ef17-ca3e-b375-87b3-154658dc5d54" type="atLeast"/>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="e52123a5-3286-519c-0e00-ff914541286b" type="atLeast"/>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b3bc2ce7-6775-8aa0-76af-37a4d142ddfd" type="atLeast"/>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="8e9e8070-330e-9aa1-f84b-5f22fb1e3822" type="atLeast"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="2" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="6b5c-b1bc-d6de-ef2d" name="Blade of the East" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<profiles>
<profile id="4e59-7697-4de6-5c16" name="Blade of the East" hidden="false" typeId="46562806-f0b8-6f1e-f4bb-749506248d47" typeName="Explanation">
<characteristics>
<characteristic name="Description:" typeId="ff0c0115-9501-59cb-d4d0-b282d182f9e8">Arkhos can decide to use “War Fury” even after the INI roll. Also, once for each fray, when Arkhos succeeds in a “Counterattack”, he may decide to obtain a Defense die instead of an Attack one.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="6"/>
<cost name="POW" typeId="80fd-fce4-0fcf-8d53" value="0"/>
<cost name="FEDE" typeId="7347-c939-8362-2a34" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="b94dbe61-01f8-f4fc-e6e7-f9c4bb69e6e0" hidden="false" collective="false" import="true" targetId="01fe4cc1-6ea3-51b0-26a5-30d86784159e" type="selectionEntryGroup" name="Artifacts (common)"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="45d67246-ce11-d63f-cd29-d6f7cb9b61d0" hidden="false" collective="false" import="true" targetId="1f1b4667-d512-4ed9-7575-5e969edb98d0" type="selectionEntryGroup" name="Crusades"/>
<entryLink id="e62e174d-f4cc-5580-582e-e4331f1c9aaa" hidden="false" collective="false" import="true" targetId="65554dfa-61b5-cae4-97e2-bd844b68fcf9" type="selectionEntry" name="Temple"/>
<entryLink id="74b7-9b5c-01e7-df55" hidden="false" collective="false" import="true" targetId="93bb-09ee-8c31-86c6" type="selectionEntry" name="Seal of the Temple"/>
<entryLink id="1e88-4c32-8ec1-9a5b" hidden="false" collective="false" import="true" targetId="b3cd-8c7e-8270-7549" type="selectionEntry" name="Dark flame"/>
<entryLink id="c2c5-a8da-b85d-5be4" hidden="false" collective="false" import="true" targetId="89f6-0615-c66a-8ea2" type="selectionEntry" name="Veteran War Staff"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="100"/>
<cost name="POW" typeId="80fd-fce4-0fcf-8d53" value="0"/>
<cost name="FEDE" typeId="7347-c939-8362-2a34" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="1cfac028-e0a2-f33c-8954-d40805026c72" name="Cairn the apostole" page="0" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="maxInRoster" value="0">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="aa62-c059-51b6-6027" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="maxInRoster" type="max"/>
</constraints>
<profiles>
<profile id="4db14ef4-766d-40bb-d874-33574a7c5d0e" name="Cairn the apostole" page="0" hidden="false" typeId="49dce5e2-52bf-0fc1-0d57-8c7fc051a5e7" typeName="Profile Card">
<characteristics>
<characteristic name="Mov" typeId="43ca05d2-93b1-2e69-9247-5222e6a3e660">10</characteristic>
<characteristic name="Ini" typeId="62faceac-a790-f73b-e92b-95f8153c1881">4</characteristic>
<characteristic name="Atk-Str" typeId="f9648226-7792-8e8d-fb39-d602d9ccc4a4">3-5</characteristic>
<characteristic name="Def-Res" typeId="809ddebf-f707-4856-6d6a-24e422824c55">4-7</characteristic>
<characteristic name="Aim" typeId="a0cc3c53-2fe7-a648-c1af-a479c3417055"/>
<characteristic name="Cou/Fea" typeId="26657305-fba2-144e-cf23-b4c61e818bcc">3 C</characteristic>
<characteristic name="Dis" typeId="120f8979-c55d-0da5-e6ee-00bc122d3684">6</characteristic>
<characteristic name="Pow" typeId="82511ef5-ecc0-fef5-e494-97d49e272e08">3</characteristic>
<characteristic name="Fervour" typeId="56449f83-d9a2-b41a-375e-82cfae681abd"/>
<characteristic name="Abilities" typeId="9e96c332-0d20-5769-9724-bffde07d5b4c">Fanaticism; Fire initiate/Theurgy</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="1cfac028-e0a2-f33c-8954-d40805026c72-c5280396-d7d1-aff6-0b60-b4fdb95e0780" hidden="false" targetId="c5280396-d7d1-aff6-0b60-b4fdb95e0780" primary="true" name="Characters"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="2fcf25aa-4318-ac4c-e4f1-8aa528e602c8" name="Artifacts" hidden="false" collective="false" import="true">
<modifiers>
<modifier type="increment" field="maxSelections" value="1">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="2fcf25aa-4318-ac4c-e4f1-8aa528e602c8" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="2129-bca9-1e5d-1382" type="atLeast"/>
</conditions>
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="98d0ef17-ca3e-b375-87b3-154658dc5d54" type="atLeast"/>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="e52123a5-3286-519c-0e00-ff914541286b" type="atLeast"/>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b3bc2ce7-6775-8aa0-76af-37a4d142ddfd" type="atLeast"/>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="8e9e8070-330e-9aa1-f84b-5f22fb1e3822" type="atLeast"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<entryLinks>
<entryLink id="363bacdc-308b-35f1-687f-902e916b5071" hidden="false" collective="false" import="true" targetId="01fe4cc1-6ea3-51b0-26a5-30d86784159e" type="selectionEntryGroup" name="Artifacts (common)"/>
<entryLink id="0786bcec-4e28-5da9-8ad9-976af52a9f58" hidden="false" collective="false" import="true" targetId="ba2dc67f-3101-367b-7ab7-77d2c156f6d0" type="selectionEntryGroup" name="Artifacts (magicians)"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="421e5f39-72de-7783-d9c8-6369139c2dd0" name="Crusades" hidden="false" collective="false" import="true" targetId="1f1b4667-d512-4ed9-7575-5e969edb98d0" type="selectionEntryGroup"/>
<entryLink id="bfc9-228b-3f38-eeb1" name="[Rule] Magician: Initiate (Character)" hidden="false" collective="false" import="true" targetId="5be6-19ac-5c96-54bb" type="selectionEntryGroup"/>
<entryLink id="b9df-a45d-d614-8fd6" name="[Griffin] Cairn 1" hidden="false" collective="false" import="true" targetId="3107-6fef-9534-4104" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="34"/>
<cost name="POW" typeId="80fd-fce4-0fcf-8d53" value="-6"/>
<cost name="FEDE" typeId="7347-c939-8362-2a34" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="aa62-c059-51b6-6027" name="Cairn the apostole (2nd)" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="maxInRoster" value="0">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="1cfac028-e0a2-f33c-8954-d40805026c72" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="maxInRoster" type="max"/>
</constraints>
<profiles>
<profile id="61ef-346c-ad53-3874" name="Cairn the apostole (2nd)" hidden="false" typeId="49dce5e2-52bf-0fc1-0d57-8c7fc051a5e7" typeName="Profile Card">
<characteristics>
<characteristic name="Mov" typeId="43ca05d2-93b1-2e69-9247-5222e6a3e660">10</characteristic>
<characteristic name="Ini" typeId="62faceac-a790-f73b-e92b-95f8153c1881">4</characteristic>
<characteristic name="Atk-Str" typeId="f9648226-7792-8e8d-fb39-d602d9ccc4a4">3-5</characteristic>
<characteristic name="Def-Res" typeId="809ddebf-f707-4856-6d6a-24e422824c55">4-7</characteristic>
<characteristic name="Aim" typeId="a0cc3c53-2fe7-a648-c1af-a479c3417055">-</characteristic>
<characteristic name="Cou/Fea" typeId="26657305-fba2-144e-cf23-b4c61e818bcc">3</characteristic>
<characteristic name="Dis" typeId="120f8979-c55d-0da5-e6ee-00bc122d3684">6</characteristic>
<characteristic name="Pow" typeId="82511ef5-ecc0-fef5-e494-97d49e272e08">4</characteristic>
<characteristic name="Fervour" typeId="56449f83-d9a2-b41a-375e-82cfae681abd"/>
<characteristic name="Abilities" typeId="9e96c332-0d20-5769-9724-bffde07d5b4c">Fire and Air Adept/Teurgy; Redemption, Fanaticism</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="aa62-c059-51b6-6027-c5280396-d7d1-aff6-0b60-b4fdb95e0780" hidden="false" targetId="c5280396-d7d1-aff6-0b60-b4fdb95e0780" primary="true" name="Characters"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="5e96-f3f4-6ad7-79e6" name="Artifacts" hidden="false" collective="false" import="true">
<modifiers>
<modifier type="increment" field="maxSelections" value="1">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="5e96-f3f4-6ad7-79e6" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="2129-bca9-1e5d-1382" type="atLeast"/>
</conditions>
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="98d0ef17-ca3e-b375-87b3-154658dc5d54" type="atLeast"/>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="e52123a5-3286-519c-0e00-ff914541286b" type="atLeast"/>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b3bc2ce7-6775-8aa0-76af-37a4d142ddfd" type="atLeast"/>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="8e9e8070-330e-9aa1-f84b-5f22fb1e3822" type="atLeast"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="2" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<entryLinks>
<entryLink id="2dcd-d569-998a-40bb" hidden="false" collective="false" import="true" targetId="01fe4cc1-6ea3-51b0-26a5-30d86784159e" type="selectionEntryGroup" name="Artifacts (common)"/>
<entryLink id="a80c-5277-6c0d-8597" hidden="false" collective="false" import="true" targetId="ba2dc67f-3101-367b-7ab7-77d2c156f6d0" type="selectionEntryGroup" name="Artifacts (magicians)"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="cf39-eaf2-5385-ee2c" name="Crusades" hidden="false" collective="false" import="true" targetId="1f1b4667-d512-4ed9-7575-5e969edb98d0" type="selectionEntryGroup"/>
<entryLink id="9e2e-60e8-c0ac-92b7" name="[Rule] Magician: Adept (Character)" hidden="false" collective="false" import="true" targetId="4bc7-3f8a-423d-a0da" type="selectionEntryGroup"/>
<entryLink id="2c8a-452b-baaf-6bfb" name="Judgement blade" hidden="false" collective="false" import="true" targetId="3868-855e-ede8-3100" type="selectionEntry"/>
<entryLink id="1009-60e9-4541-31bb" name="[Griffin] Cairn 2" hidden="false" collective="false" import="true" targetId="d63e-33a0-443e-bfe8" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="45"/>
<cost name="POW" typeId="80fd-fce4-0fcf-8d53" value="-8"/>
<cost name="FEDE" typeId="7347-c939-8362-2a34" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="88c8-1f0f-e176-b1a4" name="Celeas Mundi" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="maxInRoster" type="max"/>
</constraints>
<profiles>
<profile id="b5a4-38f3-3b6e-ec69" name="Celeas Mundi" hidden="false" typeId="49dce5e2-52bf-0fc1-0d57-8c7fc051a5e7" typeName="Profile Card">
<characteristics>
<characteristic name="Mov" typeId="43ca05d2-93b1-2e69-9247-5222e6a3e660">10</characteristic>
<characteristic name="Ini" typeId="62faceac-a790-f73b-e92b-95f8153c1881">5</characteristic>
<characteristic name="Atk-Str" typeId="f9648226-7792-8e8d-fb39-d602d9ccc4a4">4-5</characteristic>
<characteristic name="Def-Res" typeId="809ddebf-f707-4856-6d6a-24e422824c55">5-6</characteristic>
<characteristic name="Aim" typeId="a0cc3c53-2fe7-a648-c1af-a479c3417055">5</characteristic>
<characteristic name="Cou/Fea" typeId="26657305-fba2-144e-cf23-b4c61e818bcc">7</characteristic>
<characteristic name="Dis" typeId="120f8979-c55d-0da5-e6ee-00bc122d3684">6</characteristic>
<characteristic name="Pow" typeId="82511ef5-ecc0-fef5-e494-97d49e272e08">6</characteristic>
<characteristic name="Fervour" typeId="56449f83-d9a2-b41a-375e-82cfae681abd"/>
<characteristic name="Abilities" typeId="9e96c332-0d20-5769-9724-bffde07d5b4c">Fire and Light Adept/Exorcism; Ermetism, Harassment, Sharp shooter, Warrior-mage, Personal enemy/Logren, Fanaticism</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="88c8-1f0f-e176-b1a4-c5280396-d7d1-aff6-0b60-b4fdb95e0780" hidden="false" targetId="c5280396-d7d1-aff6-0b60-b4fdb95e0780" primary="true" name="Characters"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="9261-f40a-4b6e-3ec8" name="Artifacts" hidden="false" collective="false" import="true">
<modifiers>
<modifier type="increment" field="maxSelections" value="1">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="9261-f40a-4b6e-3ec8" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="2129-bca9-1e5d-1382" type="atLeast"/>
</conditions>
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="98d0ef17-ca3e-b375-87b3-154658dc5d54" type="atLeast"/>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="e52123a5-3286-519c-0e00-ff914541286b" type="atLeast"/>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b3bc2ce7-6775-8aa0-76af-37a4d142ddfd" type="atLeast"/>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="8e9e8070-330e-9aa1-f84b-5f22fb1e3822" type="atLeast"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="2" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="ea87-3f81-65dc-f7bd" name="Silver bullets" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<profiles>
<profile id="4552-97e7-c1d0-87d1" name="Silver bullets" hidden="false" typeId="46562806-f0b8-6f1e-f4bb-749506248d47" typeName="Explanation">
<characteristics>
<characteristic name="Description:" typeId="ff0c0115-9501-59cb-d4d0-b282d182f9e8">These bullets increase all shooting ranges of Celeas of 5 cm. The fighters wounded by Celeas’s shot immediately loses the following abilities (if they have any) until the end of the round: “Regeneration/X”, “Fierce” and “Possessed”.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="7"/>
<cost name="POW" typeId="80fd-fce4-0fcf-8d53" value="0"/>
<cost name="FEDE" typeId="7347-c939-8362-2a34" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="2e47-ca4d-b9da-1a08" hidden="false" collective="false" import="true" targetId="01fe4cc1-6ea3-51b0-26a5-30d86784159e" type="selectionEntryGroup" name="Artifacts (common)"/>
<entryLink id="6a0a-4b69-9402-1b8b" hidden="false" collective="false" import="true" targetId="ba2dc67f-3101-367b-7ab7-77d2c156f6d0" type="selectionEntryGroup" name="Artifacts (magicians)"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="fe12-6f8f-689d-de39" name="Crusades" hidden="false" collective="false" import="true" targetId="1f1b4667-d512-4ed9-7575-5e969edb98d0" type="selectionEntryGroup"/>
<entryLink id="91a7-55a7-8611-3060" name="[Rule] Magician: Adept (Character)" hidden="false" collective="false" import="true" targetId="4bc7-3f8a-423d-a0da" type="selectionEntryGroup"/>
<entryLink id="efe4-fe0a-4c82-5982" hidden="false" collective="false" import="true" targetId="cf4b3092-5817-f0f0-12fc-cd756f8b1c66" type="selectionEntry" name="Pistol: STR 6, range 10/15/20"/>
<entryLink id="c2f5-f038-7fdd-f3b8" name="Dark flame" hidden="false" collective="false" import="true" targetId="b3cd-8c7e-8270-7549" type="selectionEntry"/>
<entryLink id="ed30-5ee0-25f1-2766" name="[Griffin] Celeas Mundi" hidden="false" collective="false" import="true" targetId="dfbe-4b57-438e-e6df" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="92"/>
<cost name="POW" typeId="80fd-fce4-0fcf-8d53" value="-6"/>
<cost name="FEDE" typeId="7347-c939-8362-2a34" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="b794c3b3-9146-4932-0ae3-655dc6464bb7" name="Chaplain of the temple" page="0" hidden="true" collective="false" import="true" type="model">
<modifiers>
<modifier type="increment" field="maxInRoster" value="3">
<repeats>
<repeat value="200" repeats="1" field="limit::points" scope="roster" childId="any" shared="true" roundUp="true"/>
</repeats>
</modifier>
<modifier type="set" field="hidden" value="false">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0f47-759f-b3de-3b9a" type="atLeast"/>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b3bc2ce7-6775-8aa0-76af-37a4d142ddfd" type="atLeast"/>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="98d0ef17-ca3e-b375-87b3-154658dc5d54" type="atLeast"/>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="e52123a5-3286-519c-0e00-ff914541286b" type="atLeast"/>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="8e9e8070-330e-9aa1-f84b-5f22fb1e3822" type="atLeast"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="minSelections" type="min"/>
<constraint field="selections" scope="roster" value="0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="maxInRoster" type="max"/>
</constraints>
<profiles>
<profile id="d49ecf00-a2cb-334d-b6b6-154fd51568da" name="Chaplain of the temple" page="0" hidden="false" typeId="49dce5e2-52bf-0fc1-0d57-8c7fc051a5e7" typeName="Profile Card">
<characteristics>
<characteristic name="Mov" typeId="43ca05d2-93b1-2e69-9247-5222e6a3e660">10</characteristic>
<characteristic name="Ini" typeId="62faceac-a790-f73b-e92b-95f8153c1881">3</characteristic>
<characteristic name="Atk-Str" typeId="f9648226-7792-8e8d-fb39-d602d9ccc4a4">4-6</characteristic>
<characteristic name="Def-Res" typeId="809ddebf-f707-4856-6d6a-24e422824c55">4-9</characteristic>
<characteristic name="Aim" typeId="a0cc3c53-2fe7-a648-c1af-a479c3417055">-</characteristic>
<characteristic name="Cou/Fea" typeId="26657305-fba2-144e-cf23-b4c61e818bcc">4 C</characteristic>
<characteristic name="Dis" typeId="120f8979-c55d-0da5-e6ee-00bc122d3684">5</characteristic>
<characteristic name="Pow" typeId="82511ef5-ecc0-fef5-e494-97d49e272e08"/>
<characteristic name="Fervour" typeId="56449f83-d9a2-b41a-375e-82cfae681abd">0-1-1 (devout)</characteristic>
<characteristic name="Abilities" typeId="9e96c332-0d20-5769-9724-bffde07d5b4c">Fanaticism; Bravery; War fury; Warrior monk; Faithful of Merin/10</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="b43a-86b9-e096-ef6e" hidden="false" targetId="2bbe-3f1c-7215-4261" type="rule" name="Chaplains of the Temple"/>
</infoLinks>
<categoryLinks>
<categoryLink id="b794c3b3-9146-4932-0ae3-655dc6464bb7-9aa5f78a-3adb-85d6-0d69-3b4622200965" hidden="false" targetId="9aa5f78a-3adb-85d6-0d69-3b4622200965" primary="true" name="Troops"/>
</categoryLinks>
<entryLinks>
<entryLink id="e970a7c3-97d1-94b4-de9b-f817134f9bf0" name="Crusades" hidden="false" collective="false" import="true" targetId="1f1b4667-d512-4ed9-7575-5e969edb98d0" type="selectionEntryGroup"/>
<entryLink id="8da54e5f-2c1a-1ea7-12be-ac617385b2b6" name="Temple" hidden="false" collective="false" import="true" targetId="65554dfa-61b5-cae4-97e2-bd844b68fcf9" type="selectionEntry"/>
<entryLink id="7f4e-8b98-aeac-f889" name="[Rule] Mystic: Rank 1" hidden="false" collective="false" import="true" targetId="e79c-21e9-9d8a-17fa" type="selectionEntryGroup"/>
<entryLink id="de5a-fbaa-19bf-8c0a" name="Choose How Many Per Card (FEDE 2)" hidden="false" collective="false" import="true" targetId="f06d-8dda-5f31-0712" type="selectionEntryGroup"/>
<entryLink id="4eba-f339-e445-fd75" name="[Griffin] Cappellano" hidden="false" collective="false" import="true" targetId="e0ca-72af-4441-318c" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="26"/>
<cost name="POW" typeId="80fd-fce4-0fcf-8d53" value="0"/>
<cost name="FEDE" typeId="7347-c939-8362-2a34" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="6393fcf2-696a-419c-1bb4-0285fb228801" name="Darkness hunter (1)" page="0" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="increment" field="maxInRoster" value="3">
<repeats>
<repeat value="200" repeats="1" field="limit::points" scope="roster" childId="any" shared="true" roundUp="true"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="maxInRoster" type="max"/>
</constraints>
<profiles>
<profile id="b3a9c4dd-b103-740b-b6c1-fd301fa1ff0e" name="Darkness hunter (1)" page="0" hidden="false" typeId="49dce5e2-52bf-0fc1-0d57-8c7fc051a5e7" typeName="Profile Card">
<characteristics>
<characteristic name="Mov" typeId="43ca05d2-93b1-2e69-9247-5222e6a3e660">10</characteristic>
<characteristic name="Ini" typeId="62faceac-a790-f73b-e92b-95f8153c1881">4</characteristic>
<characteristic name="Atk-Str" typeId="f9648226-7792-8e8d-fb39-d602d9ccc4a4">4-3</characteristic>
<characteristic name="Def-Res" typeId="809ddebf-f707-4856-6d6a-24e422824c55">4-3</characteristic>
<characteristic name="Aim" typeId="a0cc3c53-2fe7-a648-c1af-a479c3417055">4</characteristic>
<characteristic name="Cou/Fea" typeId="26657305-fba2-144e-cf23-b4c61e818bcc">5 C</characteristic>
<characteristic name="Dis" typeId="120f8979-c55d-0da5-e6ee-00bc122d3684">5</characteristic>
<characteristic name="Pow" typeId="82511ef5-ecc0-fef5-e494-97d49e272e08">2</characteristic>
<characteristic name="Fervour" typeId="56449f83-d9a2-b41a-375e-82cfae681abd"/>
<characteristic name="Abilities" typeId="9e96c332-0d20-5769-9724-bffde07d5b4c">Fanaticism; Warrior mage; Fire initiate/Exorcism</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="0fc5-bdbc-e993-164b" name="The witch hunters" hidden="false" targetId="b085-dcb4-aba3-d999" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="6393fcf2-696a-419c-1bb4-0285fb228801-9aa5f78a-3adb-85d6-0d69-3b4622200965" hidden="false" targetId="9aa5f78a-3adb-85d6-0d69-3b4622200965" primary="true" name="Troops"/>
</categoryLinks>
<entryLinks>
<entryLink id="b38c7415-b0ca-2494-f1d6-186f61212a10" name="Pistol: STR 6, range 10/15/20" hidden="false" collective="false" import="true" targetId="cf4b3092-5817-f0f0-12fc-cd756f8b1c66" type="selectionEntry"/>
<entryLink id="19cbd2d6-6f0d-3160-7b9d-5e9b3eba68fa" name="Crusades" hidden="false" collective="false" import="true" targetId="1f1b4667-d512-4ed9-7575-5e969edb98d0" type="selectionEntryGroup"/>
<entryLink id="b93f-8273-3278-29d4" name="[Rule] Mystic: Rank 1" hidden="false" collective="false" import="true" targetId="e79c-21e9-9d8a-17fa" type="selectionEntryGroup"/>
<entryLink id="b6c7-3d29-6fa6-aad3" name="Choose How Many Per Card (POW 2)" hidden="false" collective="false" import="true" targetId="4f39-abff-25d2-813f" type="selectionEntryGroup"/>
<entryLink id="ef4b-98eb-02d1-097f" name="[Griffin] Darkness hunter 1" hidden="false" collective="false" import="true" targetId="92a3-a417-4de6-2990" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="22"/>
<cost name="POW" typeId="80fd-fce4-0fcf-8d53" value="0"/>
<cost name="FEDE" typeId="7347-c939-8362-2a34" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="ca0d9dc0-3c2c-58b1-7628-08d7183201cc" name="Darkness hunter (2)" page="0" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="increment" field="maxInRoster" value="3">
<repeats>
<repeat value="200" repeats="1" field="limit::points" scope="roster" childId="any" shared="true" roundUp="true"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="maxInRoster" type="max"/>
</constraints>
<profiles>
<profile id="cf615078-533e-e515-14b1-41e12248a741" name="Darkness hunter (2)" page="0" hidden="false" typeId="49dce5e2-52bf-0fc1-0d57-8c7fc051a5e7" typeName="Profile Card">
<characteristics>
<characteristic name="Mov" typeId="43ca05d2-93b1-2e69-9247-5222e6a3e660">10</characteristic>
<characteristic name="Ini" typeId="62faceac-a790-f73b-e92b-95f8153c1881">4</characteristic>
<characteristic name="Atk-Str" typeId="f9648226-7792-8e8d-fb39-d602d9ccc4a4">4-3</characteristic>
<characteristic name="Def-Res" typeId="809ddebf-f707-4856-6d6a-24e422824c55">4-3</characteristic>
<characteristic name="Aim" typeId="a0cc3c53-2fe7-a648-c1af-a479c3417055">3</characteristic>
<characteristic name="Cou/Fea" typeId="26657305-fba2-144e-cf23-b4c61e818bcc">6 C</characteristic>
<characteristic name="Dis" typeId="120f8979-c55d-0da5-e6ee-00bc122d3684">5</characteristic>
<characteristic name="Pow" typeId="82511ef5-ecc0-fef5-e494-97d49e272e08">2</characteristic>
<characteristic name="Fervour" typeId="56449f83-d9a2-b41a-375e-82cfae681abd"/>
<characteristic name="Abilities" typeId="9e96c332-0d20-5769-9724-bffde07d5b4c">Fanaticism; Warrior mage; Fire initiate/Exhorcism</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="022f-e7fe-e18b-7f32" hidden="false" targetId="b085-dcb4-aba3-d999" type="rule" name="The witch hunters"/>
</infoLinks>
<categoryLinks>
<categoryLink id="ca0d9dc0-3c2c-58b1-7628-08d7183201cc-9aa5f78a-3adb-85d6-0d69-3b4622200965" hidden="false" targetId="9aa5f78a-3adb-85d6-0d69-3b4622200965" primary="true" name="Troops"/>
</categoryLinks>
<entryLinks>
<entryLink id="dfff82b2-6ee0-2390-18e5-d52a3379424d" name="Pistol: STR 6, range 10/15/20" hidden="false" collective="false" import="true" targetId="cf4b3092-5817-f0f0-12fc-cd756f8b1c66" type="selectionEntry"/>
<entryLink id="67f7a3ba-c066-d88a-efc4-c0bbfe72141d" name="Crusades" hidden="false" collective="false" import="true" targetId="1f1b4667-d512-4ed9-7575-5e969edb98d0" type="selectionEntryGroup"/>
<entryLink id="ecc7-4f9f-8175-9553" name="[Rule] Mystic: Rank 1" hidden="false" collective="false" import="true" targetId="e79c-21e9-9d8a-17fa" type="selectionEntryGroup"/>
<entryLink id="9267-2cdf-0a7b-5e1d" name="Choose How Many Per Card (POW 2)" hidden="false" collective="false" import="true" targetId="4f39-abff-25d2-813f" type="selectionEntryGroup"/>
<entryLink id="4918-7d9b-016d-a0a8" name="[Griffin] Darkness hunter 2" hidden="false" collective="false" import="true" targetId="b035-d3fe-4309-6ad3" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="21"/>
<cost name="POW" typeId="80fd-fce4-0fcf-8d53" value="0"/>
<cost name="FEDE" typeId="7347-c939-8362-2a34" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="44f9636c-30ff-ba3b-ea22-8367bfcee1c9" name="Deacon Tiberius" page="0" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="maxInRoster" type="max"/>
</constraints>
<profiles>
<profile id="ed65daa1-b0dc-f206-45bc-4de30e664900" name="Deacon Tiberius" page="0" hidden="false" typeId="49dce5e2-52bf-0fc1-0d57-8c7fc051a5e7" typeName="Profile Card">
<characteristics>
<characteristic name="Mov" typeId="43ca05d2-93b1-2e69-9247-5222e6a3e660">10</characteristic>
<characteristic name="Ini" typeId="62faceac-a790-f73b-e92b-95f8153c1881">5</characteristic>
<characteristic name="Atk-Str" typeId="f9648226-7792-8e8d-fb39-d602d9ccc4a4">8-9</characteristic>
<characteristic name="Def-Res" typeId="809ddebf-f707-4856-6d6a-24e422824c55">7-12</characteristic>
<characteristic name="Aim" typeId="a0cc3c53-2fe7-a648-c1af-a479c3417055">-</characteristic>
<characteristic name="Cou/Fea" typeId="26657305-fba2-144e-cf23-b4c61e818bcc">8 C</characteristic>
<characteristic name="Dis" typeId="120f8979-c55d-0da5-e6ee-00bc122d3684">10</characteristic>
<characteristic name="Pow" typeId="82511ef5-ecc0-fef5-e494-97d49e272e08"/>
<characteristic name="Fervour" typeId="56449f83-d9a2-b41a-375e-82cfae681abd"/>
<characteristic name="Abilities" typeId="9e96c332-0d20-5769-9724-bffde07d5b4c">Fanaticism; Hyperian; Brutal; Master strike/4; Loyal/2; Personal enemy/Velkanos</characteristic>
</characteristics>
</profile>
</profiles>
<rules>
<rule id="77c3-6d1d-00b6-1022" name="The aegis of Pope Innocent" hidden="false">
<description>Every befriended Griffin warrior present within 20 cm or less of Deacon Tiberius automatically passes his tests bound to the “Fanaticism” Ability.
When Tiberius makes a “Master Strike”, his weapon is considered as Sacred.
When Tiberius attacks and after seeing if the opponent defends successfully or not, he may choose to give up of his combat die (attack or defence); if he does that attack is considered as a “Master Strike”.</description>
</rule>
</rules>
<categoryLinks>
<categoryLink id="44f9636c-30ff-ba3b-ea22-8367bfcee1c9-c5280396-d7d1-aff6-0b60-b4fdb95e0780" hidden="false" targetId="c5280396-d7d1-aff6-0b60-b4fdb95e0780" primary="true" name="Characters"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="29be7d04-8920-b316-416c-2af34502280f" name="Artifacts" hidden="false" collective="false" import="true">
<modifiers>
<modifier type="increment" field="maxSelections" value="1">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="29be7d04-8920-b316-416c-2af34502280f" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="2129-bca9-1e5d-1382" type="atLeast"/>
</conditions>
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="98d0ef17-ca3e-b375-87b3-154658dc5d54" type="atLeast"/>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="e52123a5-3286-519c-0e00-ff914541286b" type="atLeast"/>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b3bc2ce7-6775-8aa0-76af-37a4d142ddfd" type="atLeast"/>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="8e9e8070-330e-9aa1-f84b-5f22fb1e3822" type="atLeast"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="2" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="7c41-be6b-0879-6f17" name="Supreme armour of the Griffin" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<profiles>
<profile id="e515-bff6-854d-0101" name="Supreme armour of the Griffin" hidden="false" typeId="46562806-f0b8-6f1e-f4bb-749506248d47" typeName="Explanation">
<characteristics>
<characteristic name="Description:" typeId="ff0c0115-9501-59cb-d4d0-b282d182f9e8">During each Damage Roll against the armour bearer, roll an additional 1D6; the armour bearer will hold the two dice that he prefers. If the attacker has the ability to roll more dice and/or choose the ones he prefer, this Damage Roll will be resolved in the normal way.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="17"/>
<cost name="POW" typeId="80fd-fce4-0fcf-8d53" value="0"/>
<cost name="FEDE" typeId="7347-c939-8362-2a34" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="1916-dc59-2eac-1c10" name="The sword of alliance" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<profiles>
<profile id="5c60-3665-970d-0891" name="The sword of alliance" hidden="false" typeId="46562806-f0b8-6f1e-f4bb-749506248d47" typeName="Explanation">
<characteristics>
<characteristic name="Description:" typeId="ff0c0115-9501-59cb-d4d0-b282d182f9e8">When equipped with the sword, Tiberius gains “Fine Blade”. When activated, Tiberius can perform one of these two exchanges, which effects last until the end of the round: - He can reduce his “Master Strike” value by X points and raise its “Loyal” value by X/2 points; - He can reduce its “Loyal” value by X points and raise the “Master Strike” value of X points. The values of the abilities can not go below 0.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="8"/>
<cost name="POW" typeId="80fd-fce4-0fcf-8d53" value="0"/>
<cost name="FEDE" typeId="7347-c939-8362-2a34" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="b9cdbec2-6b15-6462-5af9-8e0dbde42283" hidden="false" collective="false" import="true" targetId="01fe4cc1-6ea3-51b0-26a5-30d86784159e" type="selectionEntryGroup" name="Artifacts (common)"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="072a4414-31a2-6d3c-5069-8e181117e2f8" hidden="false" collective="false" import="true" targetId="1f1b4667-d512-4ed9-7575-5e969edb98d0" type="selectionEntryGroup" name="Crusades"/>
<entryLink id="4904-d644-c05c-cedc" hidden="false" collective="false" import="true" targetId="b3cd-8c7e-8270-7549" type="selectionEntry" name="Dark flame"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="126"/>
<cost name="POW" typeId="80fd-fce4-0fcf-8d53" value="0"/>
<cost name="FEDE" typeId="7347-c939-8362-2a34" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="3699d2dd-f08e-86ca-ad49-0daa53f29c1b" name="Eschelius the ardent" page="0" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="maxInRoster" type="max"/>
</constraints>
<profiles>
<profile id="b486f999-face-9617-901d-f18872f51beb" name="Eschelius the ardent" page="0" hidden="false" typeId="49dce5e2-52bf-0fc1-0d57-8c7fc051a5e7" typeName="Profile Card">
<characteristics>
<characteristic name="Mov" typeId="43ca05d2-93b1-2e69-9247-5222e6a3e660">10</characteristic>
<characteristic name="Ini" typeId="62faceac-a790-f73b-e92b-95f8153c1881">5</characteristic>
<characteristic name="Atk-Str" typeId="f9648226-7792-8e8d-fb39-d602d9ccc4a4">7-8</characteristic>
<characteristic name="Def-Res" typeId="809ddebf-f707-4856-6d6a-24e422824c55">7-10</characteristic>
<characteristic name="Aim" typeId="a0cc3c53-2fe7-a648-c1af-a479c3417055">-</characteristic>
<characteristic name="Cou/Fea" typeId="26657305-fba2-144e-cf23-b4c61e818bcc">7 C</characteristic>
<characteristic name="Dis" typeId="120f8979-c55d-0da5-e6ee-00bc122d3684">9</characteristic>
<characteristic name="Pow" typeId="82511ef5-ecc0-fef5-e494-97d49e272e08">5</characteristic>
<characteristic name="Fervour" typeId="56449f83-d9a2-b41a-375e-82cfae681abd"/>
<characteristic name="Abilities" typeId="9e96c332-0d20-5769-9724-bffde07d5b4c">Fanaticism; Authority; Leadership/15; Warrior mage; Adept/special</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="54aa-fe4f-3410-a087" name="Inquisitor" hidden="false" targetId="9616-fffc-9076-b6d2" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="3699d2dd-f08e-86ca-ad49-0daa53f29c1b-c5280396-d7d1-aff6-0b60-b4fdb95e0780" hidden="false" targetId="c5280396-d7d1-aff6-0b60-b4fdb95e0780" primary="true" name="Characters"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="7f43faa8-7c7a-e20d-03a1-c024a0a97c3f" name="Artifacts" hidden="false" collective="false" import="true">
<modifiers>
<modifier type="increment" field="maxSelections" value="1">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="7f43faa8-7c7a-e20d-03a1-c024a0a97c3f" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="2129-bca9-1e5d-1382" type="atLeast"/>
</conditions>
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="98d0ef17-ca3e-b375-87b3-154658dc5d54" type="atLeast"/>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="e52123a5-3286-519c-0e00-ff914541286b" type="atLeast"/>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b3bc2ce7-6775-8aa0-76af-37a4d142ddfd" type="atLeast"/>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="8e9e8070-330e-9aa1-f84b-5f22fb1e3822" type="atLeast"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="2" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="7c16-d886-2fec-7223" name="The blade of the last judgement" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<profiles>
<profile id="5bb1-bf9e-1e39-92aa" name="The blade of the last judgement" hidden="false" typeId="46562806-f0b8-6f1e-f4bb-749506248d47" typeName="Explanation">
<characteristics>
<characteristic name="Description:" typeId="ff0c0115-9501-59cb-d4d0-b282d182f9e8">The Blade of the Last Judgment is a Blade of Judgment. It increases Eschelius’ Magic Potential by 2 points. Also, the player launches 1d6 whenever Eschelius succeeds in a Incantation roll for a spell composed even partly of Fire and associated to the paths of: Exorcism, Redemption, Theurgy or reserved to the Inquisitors. Spells which frequency is Unlimited or Special are not considered. The natural result of the die, divided by two and rounded up, is the number of Gems of Fire that Eschelius takes back. This value can not be greater than the number of Gems of Fire used for the Incantation. These gems are added to the Eschelius’ mana pool, within the limit of the latter.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="11"/>
<cost name="POW" typeId="80fd-fce4-0fcf-8d53" value="0"/>
<cost name="FEDE" typeId="7347-c939-8362-2a34" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="8828-f8c9-349a-94b2" name="The helmet of ardour" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="maxSelections" type="max"/>
</constraints>
<profiles>
<profile id="87b9-b3ea-c4a8-cc46" name="The helmet of ardour" hidden="false" typeId="46562806-f0b8-6f1e-f4bb-749506248d47" typeName="Explanation">
<characteristics>
<characteristic name="Description:" typeId="ff0c0115-9501-59cb-d4d0-b282d182f9e8">The Helmet of Ardour gives Eschelius the “Righteous” and “Rallying Cry” abilities. Moreover, Eschelius gets +1 COU and this change is considered as written on his reference card. When Eschelius uses “Rallying Cry”, all allied Inquisitors recover one Gem of Fire, within the limits of their reserves.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="6"/>
<cost name="POW" typeId="80fd-fce4-0fcf-8d53" value="0"/>
<cost name="FEDE" typeId="7347-c939-8362-2a34" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="69273566-4a4a-48e7-6272-d5ee65c5b961" hidden="false" collective="false" import="true" targetId="01fe4cc1-6ea3-51b0-26a5-30d86784159e" type="selectionEntryGroup" name="Artifacts (common)"/>
<entryLink id="6fc2ed2a-11d8-1f8f-b660-d1bcb3e98c54" hidden="false" collective="false" import="true" targetId="ba2dc67f-3101-367b-7ab7-77d2c156f6d0" type="selectionEntryGroup" name="Artifacts (magicians)"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="84d57276-d560-5654-a993-2cdc63bc602b" name="Crusades" hidden="false" collective="false" import="true" targetId="1f1b4667-d512-4ed9-7575-5e969edb98d0" type="selectionEntryGroup"/>
<entryLink id="d402-f5bb-e353-2fc6" name="[Rule] Magician: Adept (Character)" hidden="false" collective="false" import="true" targetId="4bc7-3f8a-423d-a0da" type="selectionEntryGroup"/>
<entryLink id="85db-820f-7972-b287" name="Judgement blade" hidden="false" collective="false" import="true" targetId="3868-855e-ede8-3100" type="selectionEntry"/>
<entryLink id="e6ca-5f65-f892-6b97" hidden="false" collective="false" import="true" targetId="b3cd-8c7e-8270-7549" type="selectionEntry" name="Dark flame"/>
<entryLink id="3395-169a-a769-e62f" hidden="false" collective="false" import="true" targetId="89f6-0615-c66a-8ea2" type="selectionEntry" name="Veteran War Staff"/>
<entryLink id="067e-c751-6593-21b7" name="[Griffin] Eschelius" hidden="false" collective="false" import="true" targetId="10d0-8041-1813-6e5e" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="123"/>
<cost name="POW" typeId="80fd-fce4-0fcf-8d53" value="-5"/>
<cost name="FEDE" typeId="7347-c939-8362-2a34" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="7e97-faaf-7918-3bee" name="Executioner of the Inquisition" hidden="true" collective="false" import="true" type="model">
<modifiers>
<modifier type="increment" field="maxInRoster" value="3">
<repeats>
<repeat value="200" repeats="1" field="limit::points" scope="roster" childId="any" shared="true" roundUp="true"/>
</repeats>
</modifier>
<modifier type="set" field="hidden" value="false">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="0f47-759f-b3de-3b9a" type="atLeast"/>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="32edc965-3cd3-9e2f-c6f6-7aca82e5fa17" type="atLeast"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="minSelections" type="min"/>
<constraint field="selections" scope="roster" value="0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="maxInRoster" type="max"/>
</constraints>
<profiles>
<profile id="11af-fb7f-ac3a-2ec7" name="Executioner of the Inquisition" hidden="false" typeId="49dce5e2-52bf-0fc1-0d57-8c7fc051a5e7" typeName="Profile Card">
<characteristics>
<characteristic name="Mov" typeId="43ca05d2-93b1-2e69-9247-5222e6a3e660">12,5</characteristic>
<characteristic name="Ini" typeId="62faceac-a790-f73b-e92b-95f8153c1881">4</characteristic>
<characteristic name="Atk-Str" typeId="f9648226-7792-8e8d-fb39-d602d9ccc4a4">5-7</characteristic>
<characteristic name="Def-Res" typeId="809ddebf-f707-4856-6d6a-24e422824c55">3-4</characteristic>
<characteristic name="Aim" typeId="a0cc3c53-2fe7-a648-c1af-a479c3417055">-</characteristic>
<characteristic name="Cou/Fea" typeId="26657305-fba2-144e-cf23-b4c61e818bcc">4</characteristic>
<characteristic name="Dis" typeId="120f8979-c55d-0da5-e6ee-00bc122d3684">6</characteristic>
<characteristic name="Pow" typeId="82511ef5-ecc0-fef5-e494-97d49e272e08"/>
<characteristic name="Fervour" typeId="56449f83-d9a2-b41a-375e-82cfae681abd"/>
<characteristic name="Abilities" typeId="9e96c332-0d20-5769-9724-bffde07d5b4c">Assassin, Fierce, Fanaticism</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="7e97-faaf-7918-3bee-9aa5f78a-3adb-85d6-0d69-3b4622200965" hidden="false" targetId="9aa5f78a-3adb-85d6-0d69-3b4622200965" primary="true" name="Troops"/>
</categoryLinks>
<entryLinks>
<entryLink id="48b3-926d-1b56-8fc7" name="Crusades" hidden="false" collective="false" import="true" targetId="1f1b4667-d512-4ed9-7575-5e969edb98d0" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="20"/>
<cost name="POW" typeId="80fd-fce4-0fcf-8d53" value="0"/>
<cost name="FEDE" typeId="7347-c939-8362-2a34" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="7bade38c-cda9-7dcc-1c31-d872a2a836fc" name="Fusilier veteran" page="0" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="increment" field="maxInRoster" value="3">
<repeats>
<repeat value="200" repeats="1" field="limit::points" scope="roster" childId="any" shared="true" roundUp="true"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="maxInRoster" type="max"/>
</constraints>
<profiles>
<profile id="3150c7a0-da8a-b4ef-93f6-7731fed3ca7a" name="Fusilier veteran" page="0" hidden="false" typeId="49dce5e2-52bf-0fc1-0d57-8c7fc051a5e7" typeName="Profile Card">
<characteristics>
<characteristic name="Mov" typeId="43ca05d2-93b1-2e69-9247-5222e6a3e660">10</characteristic>
<characteristic name="Ini" typeId="62faceac-a790-f73b-e92b-95f8153c1881">2</characteristic>
<characteristic name="Atk-Str" typeId="f9648226-7792-8e8d-fb39-d602d9ccc4a4">1-6</characteristic>
<characteristic name="Def-Res" typeId="809ddebf-f707-4856-6d6a-24e422824c55">3-2</characteristic>
<characteristic name="Aim" typeId="a0cc3c53-2fe7-a648-c1af-a479c3417055">3</characteristic>
<characteristic name="Cou/Fea" typeId="26657305-fba2-144e-cf23-b4c61e818bcc">3 C</characteristic>
<characteristic name="Dis" typeId="120f8979-c55d-0da5-e6ee-00bc122d3684">4</characteristic>
<characteristic name="Pow" typeId="82511ef5-ecc0-fef5-e494-97d49e272e08"/>
<characteristic name="Fervour" typeId="56449f83-d9a2-b41a-375e-82cfae681abd"/>
<characteristic name="Abilities" typeId="9e96c332-0d20-5769-9724-bffde07d5b4c">Fanaticism; Sharp shooter</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="7bade38c-cda9-7dcc-1c31-d872a2a836fc-9aa5f78a-3adb-85d6-0d69-3b4622200965" hidden="false" targetId="9aa5f78a-3adb-85d6-0d69-3b4622200965" primary="true" name="Troops"/>
</categoryLinks>
<entryLinks>
<entryLink id="ad280135-8b39-1295-f1c3-f327b1291321" hidden="false" collective="false" import="true" targetId="1f1b4667-d512-4ed9-7575-5e969edb98d0" type="selectionEntryGroup" name="Crusades"/>
<entryLink id="1e28-c491-fc31-ceef" hidden="false" collective="false" import="true" targetId="6be68248-86a2-0bab-b935-672be95844ae" type="selectionEntry" name="Rifle: STR = 6. Range = 25/50/75"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="19"/>
<cost name="POW" typeId="80fd-fce4-0fcf-8d53" value="0"/>
<cost name="FEDE" typeId="7347-c939-8362-2a34" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="1f8452d8-6af0-5162-86b6-682837822d9d" name="Garell the redeemer (Hod)" page="0" hidden="true" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="hidden" value="false">