generated from BSData/TemplateDataRepo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Anima Tactics.gst
5143 lines (5084 loc) · 372 KB
/
Anima Tactics.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="6c41-307a-0de6-0326" name="Anima Tactics" revision="1" battleScribeVersion="2.03" authorName="Alex Baur" xmlns="http://www.battlescribe.net/schema/gameSystemSchema">
<costTypes>
<costType id="c455-b1bd-6f65-79ce" name="Levels" defaultCostLimit="-1.0" hidden="false"/>
<costType id="39e8-8e21-6d9c-ebd9" name="Advantage Pts" defaultCostLimit="-1.0" hidden="false"/>
</costTypes>
<profileTypes>
<profileType id="9159-d9f9-82f5-3dbe" name="Special Abilities">
<characteristicTypes>
<characteristicType id="9009-8e14-17df-15fe" name="Description"/>
</characteristicTypes>
</profileType>
<profileType id="8047-e421-08f6-a1ef" name="Characters">
<characteristicTypes>
<characteristicType id="20f4-d8f4-db83-84ce" name="At"/>
<characteristicType id="f443-bf96-3c21-c0f2" name="Dm"/>
<characteristicType id="9ea8-c695-dfaa-45c2" name="Df"/>
<characteristicType id="0831-54a0-0dc1-f5a9" name="Ar"/>
<characteristicType id="ef31-fbfc-06f9-54bd" name="LP"/>
<characteristicType id="d989-007a-8bf8-30a6" name="Re"/>
<characteristicType id="dd49-3cc4-4fcc-9f41" name="Mo"/>
<characteristicType id="fbcd-5784-2a53-cafd" name="AP"/>
</characteristicTypes>
</profileType>
<profileType id="44d9-985a-4fa1-eaaa" name="Powers">
<characteristicTypes>
<characteristicType id="3c61-def7-3265-e41f" name="Description"/>
</characteristicTypes>
</profileType>
<profileType id="c00c-342f-59d1-01f8" name="Advantage Card">
<characteristicTypes>
<characteristicType id="2b2e-dc2d-137c-ed8f" name="Description"/>
</characteristicTypes>
</profileType>
</profileTypes>
<categoryEntries>
<categoryEntry id="1e1f-f436-2e5f-023e" name="Configuration" hidden="false"/>
<categoryEntry id="cd42-15d9-7a6d-37b1" name="Leader" hidden="false"/>
<categoryEntry id="e272-fa42-897c-930e" name="Light" hidden="false"/>
<categoryEntry id="429f-0291-b84a-3164" name="Dark" hidden="false"/>
<categoryEntry id="02a6-7be5-bb33-ac95" name="Warrior" hidden="false"/>
<categoryEntry id="a026-dd6a-6fb3-8261" name="Prowler" hidden="false"/>
<categoryEntry id="581a-079d-f3e4-4b0b" name="Mystic" hidden="false"/>
<categoryEntry id="2e97-e234-3c32-891e" name="Neutral" hidden="false"/>
<categoryEntry id="7c38-d565-b9df-ae9a" name="Empire" hidden="false"/>
<categoryEntry id="925c-ffe2-883c-fcf6" name="Church" hidden="false"/>
<categoryEntry id="22cd-78ed-3912-f507" name="Azur Alliance" hidden="false"/>
<categoryEntry id="c42b-4d76-393b-e245" name="Wissenschaft" hidden="false"/>
<categoryEntry id="60c8-2751-11fe-a218" name="Samael" hidden="false"/>
<categoryEntry id="632f-96ce-8cdc-74a1" name="Black Sun" hidden="false"/>
<categoryEntry id="17e1-0f17-ae16-2979" name="Wanderer" hidden="false"/>
<categoryEntry id="3d5e-82ed-a418-3376" name="Summon" hidden="false"/>
<categoryEntry id="4c9e-495c-d4a0-8baf" name="Agent" hidden="false"/>
<categoryEntry id="eb1a-1459-c5f2-a455" name="Summoner" hidden="false"/>
</categoryEntries>
<forceEntries>
<forceEntry id="722d-2ee7-4038-4f4c" name="300 Levels (Gamma)" hidden="false">
<modifiers>
<modifier type="increment" field="4583-eddc-ee23-7d7f" value="1.0">
<repeats>
<repeat field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="d68c-85c2-929e-fb18" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="39e8-8e21-6d9c-ebd9" scope="722d-2ee7-4038-4f4c" value="30.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="true" id="4583-eddc-ee23-7d7f" type="max"/>
<constraint field="c455-b1bd-6f65-79ce" scope="722d-2ee7-4038-4f4c" value="300.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="ca12-c60c-4b20-a47d" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="fe82-7db3-f872-b4d8" name="Configuration" hidden="false" targetId="1e1f-f436-2e5f-023e" primary="false"/>
<categoryLink id="e6e1-b00e-f403-ad5d" name="Leader" hidden="false" targetId="cd42-15d9-7a6d-37b1" primary="false">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="3af7-c883-6b38-7dbf" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="3b66-4ab1-03d5-0352" name="Azur Alliance" hidden="false" targetId="22cd-78ed-3912-f507" primary="false"/>
<categoryLink id="b55a-bba3-902f-bbcb" name="Black Sun" hidden="false" targetId="632f-96ce-8cdc-74a1" primary="false"/>
<categoryLink id="911c-8fa3-a0af-2eae" name="Church" hidden="false" targetId="925c-ffe2-883c-fcf6" primary="false"/>
<categoryLink id="2a1d-f078-b56c-deb0" name="Dark" hidden="false" targetId="429f-0291-b84a-3164" primary="false"/>
<categoryLink id="583e-c271-2184-0baf" name="Empire" hidden="false" targetId="7c38-d565-b9df-ae9a" primary="false"/>
<categoryLink id="f451-0ceb-01bf-272b" name="Neutral" hidden="false" targetId="2e97-e234-3c32-891e" primary="false"/>
<categoryLink id="0c15-e294-73af-f627" name="Samael" hidden="false" targetId="60c8-2751-11fe-a218" primary="false"/>
<categoryLink id="4f9c-e748-1c54-23c0" name="Light" hidden="false" targetId="e272-fa42-897c-930e" primary="false"/>
<categoryLink id="f8b1-85dd-4580-2973" name="Wissenschaft" hidden="false" targetId="c42b-4d76-393b-e245" primary="false"/>
<categoryLink id="e29f-dd16-6431-f504" name="Agent" hidden="false" targetId="4c9e-495c-d4a0-8baf" primary="false">
<constraints>
<constraint field="selections" scope="roster" value="2.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="b26d-e07c-8842-7258" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="fe72-b905-187f-596d" name="Wanderer" hidden="false" targetId="17e1-0f17-ae16-2979" primary="false">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="8db0-11cc-f5ca-e3d1" type="max"/>
</constraints>
</categoryLink>
</categoryLinks>
</forceEntry>
<forceEntry id="8597-70f6-1ee5-7cf3" name="100 Levels (Alpha)" hidden="false">
<modifiers>
<modifier type="increment" field="a627-518f-9209-5cea" value="1.0">
<repeats>
<repeat field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="d68c-85c2-929e-fb18" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="39e8-8e21-6d9c-ebd9" scope="8597-70f6-1ee5-7cf3" value="10.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="true" id="a627-518f-9209-5cea" type="max"/>
<constraint field="c455-b1bd-6f65-79ce" scope="8597-70f6-1ee5-7cf3" value="100.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="0c49-c06e-b9d1-d719" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="43ee-5115-9086-876e" name="Configuration" hidden="false" targetId="1e1f-f436-2e5f-023e" primary="false"/>
<categoryLink id="f419-1bb2-c3fa-4058" name="Azur Alliance" hidden="false" targetId="22cd-78ed-3912-f507" primary="false"/>
<categoryLink id="af3a-b410-71bf-685c" name="Black Sun" hidden="false" targetId="632f-96ce-8cdc-74a1" primary="false"/>
<categoryLink id="f26a-93e7-f1ba-f195" name="Church" hidden="false" targetId="925c-ffe2-883c-fcf6" primary="false"/>
<categoryLink id="1781-006e-f4bf-6efa" name="Dark" hidden="false" targetId="429f-0291-b84a-3164" primary="false"/>
<categoryLink id="033f-599a-e9e1-6253" name="Empire" hidden="false" targetId="7c38-d565-b9df-ae9a" primary="false"/>
<categoryLink id="c4ca-515c-4eb9-2208" name="Neutral" hidden="false" targetId="2e97-e234-3c32-891e" primary="false"/>
<categoryLink id="695f-6069-c399-4cd7" name="Samael" hidden="false" targetId="60c8-2751-11fe-a218" primary="false"/>
<categoryLink id="f551-c326-f591-7f18" name="Light" hidden="false" targetId="e272-fa42-897c-930e" primary="false"/>
<categoryLink id="cc3d-6702-536b-df21" name="Wissenschaft" hidden="false" targetId="c42b-4d76-393b-e245" primary="false"/>
</categoryLinks>
</forceEntry>
<forceEntry id="11b4-0cf4-6fcf-c860" name="200 Levels (Beta)" hidden="false">
<modifiers>
<modifier type="increment" field="7d8f-55df-15d4-72ef" value="1.0">
<repeats>
<repeat field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="d68c-85c2-929e-fb18" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="39e8-8e21-6d9c-ebd9" scope="11b4-0cf4-6fcf-c860" value="20.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="true" id="7d8f-55df-15d4-72ef" type="max"/>
<constraint field="c455-b1bd-6f65-79ce" scope="11b4-0cf4-6fcf-c860" value="200.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="5efe-9d1b-80da-9adb" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="5b2f-9660-8361-7888" name="Configuration" hidden="false" targetId="1e1f-f436-2e5f-023e" primary="false"/>
<categoryLink id="42db-804b-4e2b-6083" name="Azur Alliance" hidden="false" targetId="22cd-78ed-3912-f507" primary="false"/>
<categoryLink id="6c64-69a6-9c75-dd1e" name="Black Sun" hidden="false" targetId="632f-96ce-8cdc-74a1" primary="false"/>
<categoryLink id="d631-6450-d7af-7003" name="Church" hidden="false" targetId="925c-ffe2-883c-fcf6" primary="false"/>
<categoryLink id="b6e7-d94e-0c7c-61aa" name="Dark" hidden="false" targetId="429f-0291-b84a-3164" primary="false"/>
<categoryLink id="bb6e-fa86-3ce0-84d6" name="Empire" hidden="false" targetId="7c38-d565-b9df-ae9a" primary="false"/>
<categoryLink id="1631-0fd4-8363-655c" name="Neutral" hidden="false" targetId="2e97-e234-3c32-891e" primary="false"/>
<categoryLink id="34d7-c12f-41e6-98d8" name="Samael" hidden="false" targetId="60c8-2751-11fe-a218" primary="false"/>
<categoryLink id="965f-6fc1-03d5-67fd" name="Light" hidden="false" targetId="e272-fa42-897c-930e" primary="false"/>
<categoryLink id="7962-81ce-def4-f7be" name="Wissenschaft" hidden="false" targetId="c42b-4d76-393b-e245" primary="false"/>
<categoryLink id="6dfd-b396-d6e4-7dbd" name="Agent" hidden="false" targetId="4c9e-495c-d4a0-8baf" primary="false">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="585d-ddaa-87f2-0844" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="7d0e-f627-7c30-3133" name="Wanderer" hidden="false" targetId="17e1-0f17-ae16-2979" primary="false">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="a66c-599d-845e-419f" type="max"/>
</constraints>
</categoryLink>
</categoryLinks>
</forceEntry>
<forceEntry id="f7e6-1130-1b26-fac8" name="450 Levels (Sigma)" hidden="false">
<modifiers>
<modifier type="increment" field="3ff4-f8e0-bea6-5ddd" value="1.0">
<repeats>
<repeat field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="d68c-85c2-929e-fb18" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="39e8-8e21-6d9c-ebd9" scope="f7e6-1130-1b26-fac8" value="40.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="true" id="3ff4-f8e0-bea6-5ddd" type="max"/>
<constraint field="c455-b1bd-6f65-79ce" scope="f7e6-1130-1b26-fac8" value="450.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="7916-726a-b0d0-6fe5" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="d33b-74a6-54b5-8ede" name="Configuration" hidden="false" targetId="1e1f-f436-2e5f-023e" primary="false"/>
<categoryLink id="1d41-01ad-3cbb-772d" name="Leader" hidden="false" targetId="cd42-15d9-7a6d-37b1" primary="false">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="29d3-86ad-63f7-7d8e" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="6cfd-39f4-45a9-c354" name="Azur Alliance" hidden="false" targetId="22cd-78ed-3912-f507" primary="false"/>
<categoryLink id="6c90-81ea-1fa0-1b2e" name="Black Sun" hidden="false" targetId="632f-96ce-8cdc-74a1" primary="false"/>
<categoryLink id="e9c4-c57c-1263-0dc0" name="Church" hidden="false" targetId="925c-ffe2-883c-fcf6" primary="false"/>
<categoryLink id="79b7-9a03-d21c-e3b8" name="Dark" hidden="false" targetId="429f-0291-b84a-3164" primary="false"/>
<categoryLink id="a7f3-d228-ca1f-e5f3" name="Empire" hidden="false" targetId="7c38-d565-b9df-ae9a" primary="false"/>
<categoryLink id="aab6-c1d4-753a-ec80" name="Neutral" hidden="false" targetId="2e97-e234-3c32-891e" primary="false"/>
<categoryLink id="68f2-6a3d-74e3-b546" name="Samael" hidden="false" targetId="60c8-2751-11fe-a218" primary="false"/>
<categoryLink id="c3d6-90e9-524a-0256" name="Light" hidden="false" targetId="e272-fa42-897c-930e" primary="false"/>
<categoryLink id="199d-17e5-8131-9437" name="Wissenschaft" hidden="false" targetId="c42b-4d76-393b-e245" primary="false"/>
<categoryLink id="6986-4bb9-cb10-2ec5" name="Agent" hidden="false" targetId="4c9e-495c-d4a0-8baf" primary="false">
<constraints>
<constraint field="selections" scope="roster" value="3.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="8194-803f-73da-c4c1" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="1213-ef66-4ec4-0892" name="Wanderer" hidden="false" targetId="17e1-0f17-ae16-2979" primary="false">
<constraints>
<constraint field="selections" scope="roster" value="2.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="5182-bfc3-5b7e-2c77" type="max"/>
</constraints>
</categoryLink>
</categoryLinks>
</forceEntry>
<forceEntry id="30f8-bb52-08c3-dbd2" name="600 Levels (Omega)" hidden="false">
<modifiers>
<modifier type="increment" field="aeb7-1cca-ab38-0659" value="1.0">
<repeats>
<repeat field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="d68c-85c2-929e-fb18" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="39e8-8e21-6d9c-ebd9" scope="30f8-bb52-08c3-dbd2" value="60.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="true" id="aeb7-1cca-ab38-0659" type="max"/>
<constraint field="c455-b1bd-6f65-79ce" scope="30f8-bb52-08c3-dbd2" value="600.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="0d41-f210-449e-272e" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="f6d2-af05-b060-0c5e" name="Configuration" hidden="false" targetId="1e1f-f436-2e5f-023e" primary="false"/>
<categoryLink id="12a0-987a-326e-49a1" name="Leader" hidden="false" targetId="cd42-15d9-7a6d-37b1" primary="false">
<constraints>
<constraint field="selections" scope="roster" value="2.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="b0a9-727a-7990-4538" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="d4e8-016d-01e4-f002" name="Azur Alliance" hidden="false" targetId="22cd-78ed-3912-f507" primary="false"/>
<categoryLink id="a170-58fe-6da1-59dd" name="Black Sun" hidden="false" targetId="632f-96ce-8cdc-74a1" primary="false"/>
<categoryLink id="ff6b-6ecd-3069-5b0e" name="Church" hidden="false" targetId="925c-ffe2-883c-fcf6" primary="false"/>
<categoryLink id="a512-105e-e6ec-c55e" name="Dark" hidden="false" targetId="429f-0291-b84a-3164" primary="false"/>
<categoryLink id="1b2f-75c3-9bc9-95c0" name="Empire" hidden="false" targetId="7c38-d565-b9df-ae9a" primary="false"/>
<categoryLink id="9e4e-1877-efd8-6f63" name="Neutral" hidden="false" targetId="2e97-e234-3c32-891e" primary="false"/>
<categoryLink id="7e0d-fe68-f4ef-1468" name="Samael" hidden="false" targetId="60c8-2751-11fe-a218" primary="false"/>
<categoryLink id="b543-50dd-c93e-35f8" name="Light" hidden="false" targetId="e272-fa42-897c-930e" primary="false"/>
<categoryLink id="40d3-58a7-a03d-e26d" name="Wissenschaft" hidden="false" targetId="c42b-4d76-393b-e245" primary="false"/>
<categoryLink id="5c7a-c446-43bc-ad9e" name="Agent" hidden="false" targetId="4c9e-495c-d4a0-8baf" primary="false">
<constraints>
<constraint field="selections" scope="roster" value="4.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="6dea-14ae-359d-e2a1" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="7222-c921-5fc1-28c7" name="Wanderer" hidden="false" targetId="17e1-0f17-ae16-2979" primary="false">
<constraints>
<constraint field="selections" scope="roster" value="2.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="28e2-2de2-b5d4-e423" type="max"/>
</constraints>
</categoryLink>
</categoryLinks>
</forceEntry>
</forceEntries>
<sharedSelectionEntries>
<selectionEntry id="2d48-b102-a2d6-3424" name="Claire Adelheid" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="72e8-8c88-59d9-f430" type="max"/>
</constraints>
<profiles>
<profile id="0806-5d96-8016-91eb" name="Claire Adelheid" hidden="false" typeId="8047-e421-08f6-a1ef" typeName="Characters">
<characteristics>
<characteristic name="At" typeId="20f4-d8f4-db83-84ce">5</characteristic>
<characteristic name="Dm" typeId="f443-bf96-3c21-c0f2">5/2</characteristic>
<characteristic name="Df" typeId="9ea8-c695-dfaa-45c2">8</characteristic>
<characteristic name="Ar" typeId="0831-54a0-0dc1-f5a9">3</characteristic>
<characteristic name="LP" typeId="ef31-fbfc-06f9-54bd">14</characteristic>
<characteristic name="Re" typeId="d989-007a-8bf8-30a6">9</characteristic>
<characteristic name="Mo" typeId="dd49-3cc4-4fcc-9f41">8/12</characteristic>
<characteristic name="AP" typeId="fbcd-5784-2a53-cafd">3/4</characteristic>
</characteristics>
</profile>
<profile id="e325-1d4f-d517-f15e" name="Gae Bolg" hidden="false" typeId="9159-d9f9-82f5-3dbe" typeName="Special Abilities">
<characteristics>
<characteristic name="Description" typeId="9009-8e14-17df-15fe">Claire may make hand-to-hand combat attacks up to a distance of 2 inches even if she is not in base contact with the enemy. If she makes a Critical Hit on any attack, the Defender's Armor is ignored.</characteristic>
</characteristics>
</profile>
<profile id="43b6-0f2a-9dff-2b83" name="ooo — Nuala (Ki, Attack) " hidden="false" typeId="9159-d9f9-82f5-3dbe" typeName="Special Abilities">
<characteristics>
<characteristic name="Description" typeId="9009-8e14-17df-15fe">+5 Damage.</characteristic>
</characteristics>
</profile>
<profile id="c17e-ac96-3935-f081" name="oooo — Eadgil Solaris (Ki, Charge)" hidden="false" typeId="9159-d9f9-82f5-3dbe" typeName="Special Abilities">
<characteristics>
<characteristic name="Description" typeId="9009-8e14-17df-15fe">+2 Attack / +4 Damage. Eadgil Solaris causes Throw.</characteristic>
</characteristics>
</profile>
<profile id="e678-908d-ead3-0c9a" name="ooo — Tuatha De Danann (Ki, Ranged Attack)" hidden="false" typeId="9159-d9f9-82f5-3dbe" typeName="Special Abilities">
<characteristics>
<characteristic name="Description" typeId="9009-8e14-17df-15fe">Distance (16 inches), +5 Attack. Roll 2 dice and keep the highest result. After using Tautha De Danann Claire's damage attribute is reduced to its secondary value and she loses the special abilities Gae Bolg and Eadgil Solaris. Limit: Once per game.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="0938-0e58-0616-87c0" name="Light" hidden="false" targetId="e272-fa42-897c-930e" primary="false"/>
<categoryLink id="a56b-d357-f3eb-5686" name="Warrior" hidden="false" targetId="02a6-7be5-bb33-ac95" primary="false"/>
<categoryLink id="4580-959a-f8c5-63b5" name="Empire" hidden="false" targetId="7c38-d565-b9df-ae9a" primary="false"/>
</categoryLinks>
<costs>
<cost name="Levels" typeId="c455-b1bd-6f65-79ce" value="45.0"/>
<cost name="Advantage Pts" typeId="39e8-8e21-6d9c-ebd9" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="8061-8252-1200-4bfe" name="Yuri Olsen" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2b64-5073-8cfb-83e9" type="max"/>
</constraints>
<profiles>
<profile id="b0ea-cad1-c207-ae4b" name="Yuri Olsen" hidden="false" typeId="8047-e421-08f6-a1ef" typeName="Characters">
<characteristics>
<characteristic name="At" typeId="20f4-d8f4-db83-84ce">5</characteristic>
<characteristic name="Dm" typeId="f443-bf96-3c21-c0f2">5</characteristic>
<characteristic name="Df" typeId="9ea8-c695-dfaa-45c2">9</characteristic>
<characteristic name="Ar" typeId="0831-54a0-0dc1-f5a9">4</characteristic>
<characteristic name="LP" typeId="ef31-fbfc-06f9-54bd">16</characteristic>
<characteristic name="Re" typeId="d989-007a-8bf8-30a6">10</characteristic>
<characteristic name="Mo" typeId="dd49-3cc4-4fcc-9f41">8/12</characteristic>
<characteristic name="AP" typeId="fbcd-5784-2a53-cafd">3/5</characteristic>
</characteristics>
</profile>
<profile id="8767-4a81-dd0a-d304" name="Unbreakable Will" hidden="false" typeId="44d9-985a-4fa1-eaaa" typeName="Powers">
<characteristics>
<characteristic name="Description" typeId="3c61-def7-3265-e41f">If Yuri suffers Damage, he gains +1 to his Attack during the rest of the game.</characteristic>
</characteristics>
</profile>
<profile id="e028-3668-c088-1fbc" name="oo — King's Tower (Ki, Effect, Reactive)" hidden="false" typeId="9159-d9f9-82f5-3dbe" typeName="Special Abilities">
<characteristics>
<characteristic name="Description" typeId="9009-8e14-17df-15fe">Yuri or a friendly unit within his Control Zone gains +3 Defense against a specific Attack.</characteristic>
</characteristics>
</profile>
<profile id="d18c-e1bf-f289-d329" name="ooo — Queen's Round (Ki, Attack)" hidden="false" typeId="9159-d9f9-82f5-3dbe" typeName="Special Abilities">
<characteristics>
<characteristic name="Description" typeId="9009-8e14-17df-15fe">Roll two dice and keep the highest result. If the attack causes a Critical Hit, deal +5 to Damage.</characteristic>
</characteristics>
</profile>
<profile id="f7af-c272-3226-5d84" name="o — Tactical Mastery (Special, Effect, Reactive)" hidden="false" typeId="9159-d9f9-82f5-3dbe" typeName="Special Abilities">
<characteristics>
<characteristic name="Description" typeId="9009-8e14-17df-15fe">This ability may be used at the end of the Recovery Phase. All friendly units within Line of Sight of Yuri recover an additional Action Point.
Limit: Once per game.</characteristic>
</characteristics>
</profile>
<profile id="baf5-2229-2c09-9ed7" name="o — War Cry (Special, Effect)" hidden="false" typeId="9159-d9f9-82f5-3dbe" typeName="Special Abilities">
<characteristics>
<characteristic name="Description" typeId="9009-8e14-17df-15fe">When War Cry is used, friendly units within Yuri's Control Zone receive +1 Attack and +1 Damage until the end of the Turn and lose any negative state counters. The bonus is kept even if the units leave Yuri's Control Zone.
Limit: Once per game.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="af9f-6d82-5c72-46a1" name="Initiative" hidden="false" targetId="447a-5520-8605-a206" type="rule"/>
<infoLink id="fe2d-db29-370b-4180" name="Critical Mastery" hidden="false" targetId="1c78-2c2a-af54-b235" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="acc8-60f6-37f8-b2dd" name="Leader" hidden="false" targetId="cd42-15d9-7a6d-37b1" primary="false"/>
<categoryLink id="9cc5-eb9d-5079-6fd5" name="Empire" hidden="false" targetId="7c38-d565-b9df-ae9a" primary="false"/>
<categoryLink id="32a5-69b0-0083-571f" name="Light" hidden="false" targetId="e272-fa42-897c-930e" primary="false"/>
<categoryLink id="0dae-6d88-18ee-eb37" name="Warrior" hidden="false" targetId="02a6-7be5-bb33-ac95" primary="false"/>
</categoryLinks>
<costs>
<cost name="Levels" typeId="c455-b1bd-6f65-79ce" value="55.0"/>
<cost name="Advantage Pts" typeId="39e8-8e21-6d9c-ebd9" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="51d3-ccbb-d35d-7aa6" name="Spend Levels on Adv Cards" hidden="false" collective="false" import="true" type="upgrade">
<categoryLinks>
<categoryLink id="ddc7-3a6f-5a03-ff63" name="New CategoryLink" hidden="false" targetId="1e1f-f436-2e5f-023e" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="d68c-85c2-929e-fb18" name="Convert Levels" hidden="false" collective="false" import="true" type="upgrade">
<costs>
<cost name="Levels" typeId="c455-b1bd-6f65-79ce" value="1.0"/>
<cost name="Advantage Pts" typeId="39e8-8e21-6d9c-ebd9" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="Levels" typeId="c455-b1bd-6f65-79ce" value="0.0"/>
<cost name="Advantage Pts" typeId="39e8-8e21-6d9c-ebd9" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="94f4-7597-8c15-3c40" name="Griever" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="242d-3dfa-7364-633c" type="max"/>
</constraints>
<profiles>
<profile id="d218-1dad-3a57-8fd9" name="Griever" hidden="false" typeId="8047-e421-08f6-a1ef" typeName="Characters">
<characteristics>
<characteristic name="At" typeId="20f4-d8f4-db83-84ce">6</characteristic>
<characteristic name="Dm" typeId="f443-bf96-3c21-c0f2">6</characteristic>
<characteristic name="Df" typeId="9ea8-c695-dfaa-45c2">9</characteristic>
<characteristic name="Ar" typeId="0831-54a0-0dc1-f5a9">3</characteristic>
<characteristic name="LP" typeId="ef31-fbfc-06f9-54bd">20</characteristic>
<characteristic name="Re" typeId="d989-007a-8bf8-30a6">10</characteristic>
<characteristic name="Mo" typeId="dd49-3cc4-4fcc-9f41">6/10</characteristic>
<characteristic name="AP" typeId="fbcd-5784-2a53-cafd">3/5</characteristic>
</characteristics>
</profile>
<profile id="2697-5112-5b3a-12b7" name="Indomitable" hidden="false" typeId="44d9-985a-4fa1-eaaa" typeName="Powers">
<characteristics>
<characteristic name="Description" typeId="3c61-def7-3265-e41f">If Griever suffers Damage in hand-to-hand combat, he recovers an action point. This is limited to one Action Point per Turn.</characteristic>
</characteristics>
</profile>
<profile id="4a99-5560-c526-b5b7" name="ooo — Scar of the World (Ki, Attack)" hidden="false" typeId="9159-d9f9-82f5-3dbe" typeName="Special Abilities">
<characteristics>
<characteristic name="Description" typeId="9009-8e14-17df-15fe">+4 Damage. Roll two dice and keep the highest result.</characteristic>
</characteristics>
</profile>
<profile id="bb38-d376-7772-f60b" name="ooooo — End of the World (Ki, Attack)" hidden="false" typeId="9159-d9f9-82f5-3dbe" typeName="Special Abilities">
<characteristics>
<characteristic name="Description" typeId="9009-8e14-17df-15fe">Griever makes four consecutive attacks against the same target.</characteristic>
</characteristics>
</profile>
<profile id="5863-4087-0e14-5fdd" name="oo — Defensive Stance (Ki, Reactive)" hidden="false" typeId="9159-d9f9-82f5-3dbe" typeName="Special Abilities">
<characteristics>
<characteristic name="Description" typeId="9009-8e14-17df-15fe">This ability may be used in the moment in the Recovery Phase ends. During this Turn, Griever may Dodge any attack as a free action without spending Action Points.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="4e7f-f1cd-3a29-bdbd" name="Critical Mastery" hidden="false" targetId="1c78-2c2a-af54-b235" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="6b31-e494-d931-3192" name="New CategoryLink" hidden="false" targetId="cd42-15d9-7a6d-37b1" primary="false"/>
<categoryLink id="b85a-0e7c-67d2-0740" name="Neutral" hidden="false" targetId="2e97-e234-3c32-891e" primary="false"/>
<categoryLink id="e972-2c1f-3b67-c344" name="Warrior" hidden="false" targetId="02a6-7be5-bb33-ac95" primary="false"/>
<categoryLink id="e3c5-5fb0-e487-7a9c" name="Empire" hidden="false" targetId="7c38-d565-b9df-ae9a" primary="false"/>
</categoryLinks>
<costs>
<cost name="Levels" typeId="c455-b1bd-6f65-79ce" value="60.0"/>
<cost name="Advantage Pts" typeId="39e8-8e21-6d9c-ebd9" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="9e15-39bf-879a-5803" name="Lilith" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0766-1f99-1b96-5ec8" type="max"/>
</constraints>
<profiles>
<profile id="aed5-e10c-3d1a-7317" name="Lilith" hidden="false" typeId="8047-e421-08f6-a1ef" typeName="Characters">
<characteristics>
<characteristic name="At" typeId="20f4-d8f4-db83-84ce">6</characteristic>
<characteristic name="Dm" typeId="f443-bf96-3c21-c0f2">5</characteristic>
<characteristic name="Df" typeId="9ea8-c695-dfaa-45c2">9/11</characteristic>
<characteristic name="Ar" typeId="0831-54a0-0dc1-f5a9">3</characteristic>
<characteristic name="LP" typeId="ef31-fbfc-06f9-54bd">16</characteristic>
<characteristic name="Re" typeId="d989-007a-8bf8-30a6">11</characteristic>
<characteristic name="Mo" typeId="dd49-3cc4-4fcc-9f41">8/12</characteristic>
<characteristic name="AP" typeId="fbcd-5784-2a53-cafd">4/5</characteristic>
</characteristics>
</profile>
<profile id="420d-9819-019e-0a2b" name="Swirling Blades" hidden="false" typeId="44d9-985a-4fa1-eaaa" typeName="Powers">
<characteristics>
<characteristic name="Description" typeId="3c61-def7-3265-e41f">Lilith uses her secondary Defense value against Ranged Attacks.</characteristic>
</characteristics>
</profile>
<profile id="d762-8e55-7679-dcb9" name="oo — Alraune (Ki, Ranged Attack)" hidden="false" typeId="9159-d9f9-82f5-3dbe" typeName="Special Abilities">
<characteristics>
<characteristic name="Description" typeId="9009-8e14-17df-15fe">Distance (16 inches). If you score a Critical Hit with this Attack, you may move the target into contact with Lilith's base, moving them in a straight line. This move ignores intervening obstacles. Effect 18.</characteristic>
</characteristics>
</profile>
<profile id="e7ab-c26a-6382-98a0" name="ooo — Scorpion Blade (Ki, Attack)" hidden="false" typeId="9159-d9f9-82f5-3dbe" typeName="Special Abilities">
<characteristics>
<characteristic name="Description" typeId="9009-8e14-17df-15fe">When rolling for this Attack, roll two dice and keep the highest result. This Attack affects all enemy units within 2 inches of Lilith.</characteristic>
</characteristics>
</profile>
<profile id="651f-821c-0805-881b" name="oooo — Dream of Lust (Ki, Attack)" hidden="false" typeId="9159-d9f9-82f5-3dbe" typeName="Special Abilities">
<characteristics>
<characteristic name="Description" typeId="9009-8e14-17df-15fe">+3 Damage (Both Attacks). Lilith makes 2 consecutive Attacks against the same target.</characteristic>
</characteristics>
</profile>
<profile id="f062-aa41-6b27-3bd9" name="Archmage" hidden="false" typeId="9159-d9f9-82f5-3dbe" typeName="Special Abilities">
<characteristics>
<characteristic name="Description" typeId="9009-8e14-17df-15fe">Once per turn, Lilith may use one of the following abilities:
o — Healing Light (Magic, Effect)
A friendly unit within Lilith's Control Zone recovers 3 Life Points.
o — Spy Light (Magic, Seek)
+3 to the Seek roll, During the Seek action of this ability, Lilith's Control Zone is increased by 4 inches.
o — Protection (Magic, Effect, Reactive)
A friendly unit within Lilith's Control Zone gets Protection lv. 2
oo — Blessing (Magic, Effect )
Friendly units within Lilith's Control Zone gain +1 to Attack and +1 Defense. Upkeep: o</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="2d75-3867-245f-fd8b" name="Critical Mastery" hidden="false" targetId="1c78-2c2a-af54-b235" type="rule"/>
<infoLink id="0a97-2dbe-b418-25b6" name="Initiative" hidden="false" targetId="447a-5520-8605-a206" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="568e-1b80-5a6f-a3df" name="Empire" hidden="false" targetId="7c38-d565-b9df-ae9a" primary="false"/>
<categoryLink id="0bd8-77a1-4d12-ce27" name="Leader" hidden="false" targetId="cd42-15d9-7a6d-37b1" primary="false"/>
<categoryLink id="bc67-c9ed-a97e-3deb" name="Mystic" hidden="false" targetId="581a-079d-f3e4-4b0b" primary="false"/>
<categoryLink id="c808-3b68-9e58-1874" name="Light" hidden="false" targetId="e272-fa42-897c-930e" primary="false"/>
<categoryLink id="4a09-fbf2-095f-64dc" name="Warrior" hidden="false" targetId="02a6-7be5-bb33-ac95" primary="false"/>
</categoryLinks>
<costs>
<cost name="Levels" typeId="c455-b1bd-6f65-79ce" value="75.0"/>
<cost name="Advantage Pts" typeId="39e8-8e21-6d9c-ebd9" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="99c8-8d12-a810-2a7d" name="Tiamat" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e44b-8ee3-e25f-e4b5" type="max"/>
</constraints>
<profiles>
<profile id="3432-bcd2-24ad-104c" name="Tiamat" hidden="false" typeId="8047-e421-08f6-a1ef" typeName="Characters">
<characteristics>
<characteristic name="At" typeId="20f4-d8f4-db83-84ce">6</characteristic>
<characteristic name="Dm" typeId="f443-bf96-3c21-c0f2">4</characteristic>
<characteristic name="Df" typeId="9ea8-c695-dfaa-45c2">10</characteristic>
<characteristic name="Ar" typeId="0831-54a0-0dc1-f5a9">2</characteristic>
<characteristic name="LP" typeId="ef31-fbfc-06f9-54bd">15</characteristic>
<characteristic name="Re" typeId="d989-007a-8bf8-30a6">10</characteristic>
<characteristic name="Mo" typeId="dd49-3cc4-4fcc-9f41">12/16</characteristic>
<characteristic name="AP" typeId="fbcd-5784-2a53-cafd">3/5</characteristic>
</characteristics>
</profile>
<profile id="033f-f4d5-961a-0011" name="Cancer" hidden="false" typeId="44d9-985a-4fa1-eaaa" typeName="Powers">
<characteristics>
<characteristic name="Description" typeId="3c61-def7-3265-e41f">Tiamat can make melee Attacks on targets within 4 inches of himself. Charges are not affected by this ability.</characteristic>
</characteristics>
</profile>
<profile id="a45e-70bb-b367-2773" name="ooo — Awe of the Forgotten (Ki, Attack)" hidden="false" typeId="9159-d9f9-82f5-3dbe" typeName="Special Abilities">
<characteristics>
<characteristic name="Description" typeId="9009-8e14-17df-15fe">This attack rolls 2 dice and keeps the highest. If this Attack causes damage, its target suffers Seal Lv. 1. Effect 16.</characteristic>
</characteristics>
</profile>
<profile id="55e5-c25a-a08b-be7a" name="oo — World of Wires (Ki, Effect)" hidden="false" typeId="9159-d9f9-82f5-3dbe" typeName="Special Abilities">
<characteristics>
<characteristic name="Description" typeId="9009-8e14-17df-15fe">Move an enemy unit within Tiamat’s Control Zone 4 inches in the direction of your choice. This ability can be used to move Characters Engaged in Combat. Effect 15</characteristic>
</characteristics>
</profile>
<profile id="546b-b5fb-c3f0-cadd" name="o — Wires of Destiny (Ki, Effect)" hidden="false" typeId="9159-d9f9-82f5-3dbe" typeName="Special Abilities">
<characteristics>
<characteristic name="Description" typeId="9009-8e14-17df-15fe">Tiamat gains Haste Lv. 3. Limit: Once per game.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="841a-f8cf-7ee4-b22b" name="Initiative" hidden="false" targetId="447a-5520-8605-a206" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="bc65-889b-a763-3c34" name="Empire" hidden="false" targetId="7c38-d565-b9df-ae9a" primary="false"/>
<categoryLink id="9c35-e2df-11c8-7998" name="Neutral" hidden="false" targetId="2e97-e234-3c32-891e" primary="false"/>
<categoryLink id="f91d-2c50-c700-2de4" name="Warrior" hidden="false" targetId="02a6-7be5-bb33-ac95" primary="false"/>
<categoryLink id="11dd-ae93-bb5d-cead" name="Prowler" hidden="false" targetId="a026-dd6a-6fb3-8261" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="0f3f-9e89-d15b-8a8a" name="His True Power..." hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e159-f45c-f26e-7c11" type="max"/>
</constraints>
<profiles>
<profile id="96eb-40b2-7a5d-64f3" name="Optional Leader" hidden="false" typeId="44d9-985a-4fa1-eaaa" typeName="Powers">
<characteristics>
<characteristic name="Description" typeId="3c61-def7-3265-e41f">You may choose to use this skill card when you include Tiamat in your group. If you do, Tiamat gets +5 Levels, has the abilities on this card, and is a Leader.</characteristic>
</characteristics>
</profile>
<profile id="9a94-4423-f5c7-3bfd" name="Perfect Defense" hidden="false" typeId="44d9-985a-4fa1-eaaa" typeName="Powers">
<characteristics>
<characteristic name="Description" typeId="3c61-def7-3265-e41f">While Tiamat hasn’t moved during a turn, all Ranged Attacks that target him automatically miss and no roll is made for them. Once Tiamat has moved during a turn, this ability won’t have any affect until the beginning of the next turn.</characteristic>
</characteristics>
</profile>
<profile id="cf2b-3091-f747-b1b4" name="ooo — Starlight Romance (Ki, Effect)" hidden="false" typeId="9159-d9f9-82f5-3dbe" typeName="Special Abilities">
<characteristics>
<characteristic name="Description" typeId="9009-8e14-17df-15fe">All enemy units within Tiamat’s Control Zone suffer Paralyze Lv. 1. Effect: 15.
Limit: Once per game.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="59c9-f4e0-131d-b7b8" name="Leader" hidden="false" targetId="cd42-15d9-7a6d-37b1" primary="false"/>
</categoryLinks>
<costs>
<cost name="Levels" typeId="c455-b1bd-6f65-79ce" value="5.0"/>
<cost name="Advantage Pts" typeId="39e8-8e21-6d9c-ebd9" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="Levels" typeId="c455-b1bd-6f65-79ce" value="55.0"/>
<cost name="Advantage Pts" typeId="39e8-8e21-6d9c-ebd9" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="97aa-1a70-48fd-54d3" name="Daniella Meris" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5c6a-bf14-0924-5f18" type="max"/>
</constraints>
<profiles>
<profile id="2bc6-a169-f708-bd2e" name="Daniella Meris" hidden="false" typeId="8047-e421-08f6-a1ef" typeName="Characters">
<characteristics>
<characteristic name="At" typeId="20f4-d8f4-db83-84ce">5</characteristic>
<characteristic name="Dm" typeId="f443-bf96-3c21-c0f2">4</characteristic>
<characteristic name="Df" typeId="9ea8-c695-dfaa-45c2">8</characteristic>
<characteristic name="Ar" typeId="0831-54a0-0dc1-f5a9">2</characteristic>
<characteristic name="LP" typeId="ef31-fbfc-06f9-54bd">12</characteristic>
<characteristic name="Re" typeId="d989-007a-8bf8-30a6">9</characteristic>
<characteristic name="Mo" typeId="dd49-3cc4-4fcc-9f41">8/12</characteristic>
<characteristic name="AP" typeId="fbcd-5784-2a53-cafd">3/4</characteristic>
</characteristics>
</profile>
<profile id="b491-d1f0-4830-efd8" name="ooo — Ripple in Water (Ki, Ranged Attack)" hidden="false" typeId="9159-d9f9-82f5-3dbe" typeName="Special Abilities">
<characteristics>
<characteristic name="Description" typeId="9009-8e14-17df-15fe">Distance (16 inches). Roll two dice and keep the highest result.</characteristic>
</characteristics>
</profile>
<profile id="703d-0c49-871c-cc48" name="ooo — Chasing the Moon (Ki, Ranged Attack)" hidden="false" typeId="9159-d9f9-82f5-3dbe" typeName="Special Abilities">
<characteristics>
<characteristic name="Description" typeId="9009-8e14-17df-15fe">Distance (20 inches). If this attack causes damage, the target unit suffers Seal Lv2. Effect 15.</characteristic>
</characteristics>
</profile>
<profile id="a6e9-5ebd-de2e-7c9d" name="ooo — Shooting Star (Ki, Ranged Attack)" hidden="false" typeId="9159-d9f9-82f5-3dbe" typeName="Special Abilities">
<characteristics>
<characteristic name="Description" typeId="9009-8e14-17df-15fe">Distance (16 inches). +1 Attack. When this attack hits the target, all units within 2 inches of the target character also suffer the Attack.</characteristic>
</characteristics>
</profile>
<profile id="9c73-c30f-6e1b-adb9" name="oooo — Divine Flames (Ki, Ranged Attack)" hidden="false" typeId="9159-d9f9-82f5-3dbe" typeName="Special Abilities">
<characteristics>
<characteristic name="Description" typeId="9009-8e14-17df-15fe">Distance (16 inches). +3 Attack. When this attack hits the target, all units within 3 inches of the target character also suffer the attack.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="9dda-7704-e7a5-07e7" name="Advanced Deployment" hidden="false" targetId="8752-5d49-c894-2278" type="rule"/>
<infoLink id="d0db-2e7e-75fa-7ddd" name="Ranged Attack (16")" hidden="false" targetId="ce16-b162-cd52-e3ac" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="c8df-4c81-375b-10b5" name="Empire" hidden="false" targetId="7c38-d565-b9df-ae9a" primary="false"/>
<categoryLink id="0a79-b5b5-fa7a-cdb9" name="Light" hidden="false" targetId="e272-fa42-897c-930e" primary="false"/>
<categoryLink id="80ed-de15-0d52-89be" name="Warrior" hidden="false" targetId="02a6-7be5-bb33-ac95" primary="false"/>
</categoryLinks>
<costs>
<cost name="Levels" typeId="c455-b1bd-6f65-79ce" value="45.0"/>
<cost name="Advantage Pts" typeId="39e8-8e21-6d9c-ebd9" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="fab7-78f1-bff7-f0ff" name="Duncan Reid" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="cc48-5c87-488c-6b4a" type="max"/>
</constraints>
<profiles>
<profile id="f960-82d5-d8e7-b739" name="Duncan Reid" hidden="false" typeId="8047-e421-08f6-a1ef" typeName="Characters">
<characteristics>
<characteristic name="At" typeId="20f4-d8f4-db83-84ce">5</characteristic>
<characteristic name="Dm" typeId="f443-bf96-3c21-c0f2">5</characteristic>
<characteristic name="Df" typeId="9ea8-c695-dfaa-45c2">8</characteristic>
<characteristic name="Ar" typeId="0831-54a0-0dc1-f5a9">4</characteristic>
<characteristic name="LP" typeId="ef31-fbfc-06f9-54bd">16</characteristic>
<characteristic name="Re" typeId="d989-007a-8bf8-30a6">8</characteristic>
<characteristic name="Mo" typeId="dd49-3cc4-4fcc-9f41">6/10</characteristic>
<characteristic name="AP" typeId="fbcd-5784-2a53-cafd">3/4</characteristic>
</characteristics>
</profile>
<profile id="68d9-474a-ed6c-b0c0" name="ooo — Crossblade (Ki, Attack)" hidden="false" typeId="9159-d9f9-82f5-3dbe" typeName="Special Abilities">
<characteristics>
<characteristic name="Description" typeId="9009-8e14-17df-15fe">Duncan carries out a normal attack; if the attack is successful, Duncan is able to make a second free attack.</characteristic>
</characteristics>
</profile>
<profile id="7f0e-0186-ba98-e861" name="oo — Pride (Ki, Effect, Reactive)" hidden="false" typeId="9159-d9f9-82f5-3dbe" typeName="Special Abilities">
<characteristics>
<characteristic name="Description" typeId="9009-8e14-17df-15fe">Duncan gains Lv. 2 Protection.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="84ff-c8da-a8e5-ab97" name="Critical Mastery" hidden="false" targetId="1c78-2c2a-af54-b235" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="e1ba-8b92-4c51-de11" name="Light" hidden="false" targetId="e272-fa42-897c-930e" primary="false"/>
<categoryLink id="1bba-30c9-7a58-9728" name="Empire" hidden="false" targetId="7c38-d565-b9df-ae9a" primary="false"/>
<categoryLink id="45d0-c519-ac14-13da" name="Warrior" hidden="false" targetId="02a6-7be5-bb33-ac95" primary="false"/>
</categoryLinks>
<costs>
<cost name="Levels" typeId="c455-b1bd-6f65-79ce" value="40.0"/>
<cost name="Advantage Pts" typeId="39e8-8e21-6d9c-ebd9" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="ca35-d56e-3704-2ef7" name="Erika" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="af9c-a521-b351-badf" type="max"/>
</constraints>
<profiles>
<profile id="f1cf-1135-131e-1b4b" name="Mjolnir" hidden="false" typeId="44d9-985a-4fa1-eaaa" typeName="Powers">
<characteristics>
<characteristic name="Description" typeId="3c61-def7-3265-e41f">Whenever Erika causes a critical hit, the defender loses an action point and the attack causes Throw.
</characteristic>
</characteristics>
</profile>
<profile id="75e2-1c25-8d0f-33af" name="ooo — Ka-Boom! (Ki, Effect)" hidden="false" typeId="9159-d9f9-82f5-3dbe" typeName="Special Abilities">
<characteristics>
<characteristic name="Description" typeId="9009-8e14-17df-15fe">Every enemy unit within Erika's Control Zone loses 1 Action point. Effect 15.</characteristic>
</characteristics>
</profile>
<profile id="0951-a419-d9bc-9d3a" name="ooo — Spin! Spin! Spin! (Ki, Attack)" hidden="false" typeId="9159-d9f9-82f5-3dbe" typeName="Special Abilities">
<characteristics>
<characteristic name="Description" typeId="9009-8e14-17df-15fe">While making this attack Erika rolls two dice and keeps the highest. This attack effects every enemy unit within two inches of her. After the attack roll is resolved Erika suffers Slow Lv. 1</characteristic>
</characteristics>
</profile>
<profile id="1bc0-c2fe-7680-fc42" name="o — Taunt (Subterfuge, Effect)" hidden="false" typeId="9159-d9f9-82f5-3dbe" typeName="Special Abilities">
<characteristics>
<characteristic name="Description" typeId="9009-8e14-17df-15fe">The closest unengaged enemy unit within Erika's Control Zone suffers Berserk Lv 1, Effect 15. Limit: Once per game.</characteristic>
</characteristics>
</profile>
<profile id="ef83-28e9-c0b0-cf95" name="Erika" hidden="false" typeId="8047-e421-08f6-a1ef" typeName="Characters">
<characteristics>
<characteristic name="At" typeId="20f4-d8f4-db83-84ce">4</characteristic>
<characteristic name="Dm" typeId="f443-bf96-3c21-c0f2">6</characteristic>
<characteristic name="Df" typeId="9ea8-c695-dfaa-45c2">8</characteristic>
<characteristic name="Ar" typeId="0831-54a0-0dc1-f5a9">2</characteristic>
<characteristic name="LP" typeId="ef31-fbfc-06f9-54bd">12</characteristic>
<characteristic name="Re" typeId="d989-007a-8bf8-30a6">9</characteristic>
<characteristic name="Mo" typeId="dd49-3cc4-4fcc-9f41">8/12</characteristic>
<characteristic name="AP" typeId="fbcd-5784-2a53-cafd">3/4</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="cdd7-d763-3ff3-c916" name="Light" hidden="false" targetId="e272-fa42-897c-930e" primary="false"/>
<categoryLink id="a826-12b7-f6c7-2889" name="Empire" hidden="false" targetId="7c38-d565-b9df-ae9a" primary="false"/>
<categoryLink id="eeca-cb17-bb3a-f0ff" name="Warrior" hidden="false" targetId="02a6-7be5-bb33-ac95" primary="false"/>
</categoryLinks>
<costs>
<cost name="Levels" typeId="c455-b1bd-6f65-79ce" value="40.0"/>
<cost name="Advantage Pts" typeId="39e8-8e21-6d9c-ebd9" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="ae8b-8573-4e94-0957" name="Frederick Adler" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="bb59-0a11-2c1f-b07b" type="max"/>
</constraints>
<profiles>
<profile id="af87-e1f9-3071-10e9" name="Frederick Adler" hidden="false" typeId="8047-e421-08f6-a1ef" typeName="Characters">
<characteristics>
<characteristic name="At" typeId="20f4-d8f4-db83-84ce">4</characteristic>
<characteristic name="Dm" typeId="f443-bf96-3c21-c0f2">4</characteristic>
<characteristic name="Df" typeId="9ea8-c695-dfaa-45c2">9</characteristic>
<characteristic name="Ar" typeId="0831-54a0-0dc1-f5a9">2</characteristic>
<characteristic name="LP" typeId="ef31-fbfc-06f9-54bd">13</characteristic>
<characteristic name="Re" typeId="d989-007a-8bf8-30a6">10</characteristic>
<characteristic name="Mo" typeId="dd49-3cc4-4fcc-9f41">8/12</characteristic>
<characteristic name="AP" typeId="fbcd-5784-2a53-cafd">3/4</characteristic>
</characteristics>
</profile>
<profile id="2794-c9df-8854-f5a3" name="o — Order of Assassination (Subterfuge, Effect, Reactive)" hidden="false" typeId="9159-d9f9-82f5-3dbe" typeName="Special Abilities">
<characteristics>
<characteristic name="Description" typeId="9009-8e14-17df-15fe">When a friendly Dark unit within Adler's Control Zone makes an attack they roll an additional die keeping the highest result.</characteristic>
</characteristics>
</profile>
<profile id="8fd6-f4c5-266e-fcab" name="o — War Sacrifice (Subterfuge, Effect, Reactive)" hidden="false" typeId="9159-d9f9-82f5-3dbe" typeName="Special Abilities">
<characteristics>
<characteristic name="Description" typeId="9009-8e14-17df-15fe">A friendly unit within Adler's Control Zone gets +X Attack until the end of the turn. X equals the amount of LP that unit sacrifices for this ability, up to 3 LP.</characteristic>
</characteristics>
</profile>
<profile id="fbcb-a11b-cc84-6de5" name="o — Disposable Agents (Special Effect, Reactive)" hidden="false" typeId="9159-d9f9-82f5-3dbe" typeName="Special Abilities">
<characteristics>
<characteristic name="Description" typeId="9009-8e14-17df-15fe">This ability may only be used once at the end of the Maintenance Phase. A friendly unit within Adler's Control Zone gets Shield Lv. 1 and Berserker Lv. 1.</characteristic>
</characteristics>
</profile>
<profile id="efd7-eb33-b012-ea5b" name="ooo — Kortana (Ki, Attack)" hidden="false" typeId="9159-d9f9-82f5-3dbe" typeName="Special Abilities">
<characteristics>
<characteristic name="Description" typeId="9009-8e14-17df-15fe">+2 Damage / -2 Armor. Adler has Critical Mastery for this attack.</characteristic>
</characteristics>
</profile>
<profile id="0c16-5908-a917-a51f" name="Imperial Resources" hidden="false" typeId="44d9-985a-4fa1-eaaa" typeName="Powers">
<characteristics>
<characteristic name="Description" typeId="3c61-def7-3265-e41f">Imperial Agents (male and female) may spend an additional 5 levels on upgrades. This doesn't actually increase their cost.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="2229-f7da-74f6-0214" name="Dark" hidden="false" targetId="429f-0291-b84a-3164" primary="false"/>
<categoryLink id="4527-420e-a95a-28b3" name="Empire" hidden="false" targetId="7c38-d565-b9df-ae9a" primary="false"/>
<categoryLink id="5e5d-b247-497c-7d24" name="Prowler" hidden="false" targetId="a026-dd6a-6fb3-8261" primary="false"/>
</categoryLinks>
<costs>
<cost name="Levels" typeId="c455-b1bd-6f65-79ce" value="45.0"/>
<cost name="Advantage Pts" typeId="39e8-8e21-6d9c-ebd9" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="8901-b694-4c5f-a7e5" name="Iosara" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="f279-a471-0969-8df4" type="max"/>
</constraints>
<profiles>
<profile id="9035-1194-0653-8772" name="Iosara" hidden="false" typeId="8047-e421-08f6-a1ef" typeName="Characters">
<characteristics>
<characteristic name="At" typeId="20f4-d8f4-db83-84ce">5</characteristic>
<characteristic name="Dm" typeId="f443-bf96-3c21-c0f2">5</characteristic>
<characteristic name="Df" typeId="9ea8-c695-dfaa-45c2">9</characteristic>
<characteristic name="Ar" typeId="0831-54a0-0dc1-f5a9">2</characteristic>
<characteristic name="LP" typeId="ef31-fbfc-06f9-54bd">15</characteristic>
<characteristic name="Re" typeId="d989-007a-8bf8-30a6">10</characteristic>
<characteristic name="Mo" typeId="dd49-3cc4-4fcc-9f41">12/16</characteristic>
<characteristic name="AP" typeId="fbcd-5784-2a53-cafd">3/4</characteristic>
</characteristics>
</profile>
<profile id="e845-a57c-1d7a-57eb" name="ooo — Crystal Fire (Ki, Ranged Attack)" hidden="false" typeId="9159-d9f9-82f5-3dbe" typeName="Special Abilities">
<characteristics>
<characteristic name="Description" typeId="9009-8e14-17df-15fe">Distance 16 inches. If this attack causes damage, the target suffers Slow Lv. 1. Effect 15.</characteristic>
</characteristics>
</profile>
<profile id="e4ea-0731-2713-1d7f" name="ooo — Death Bringer (Ki, Attack)" hidden="false" typeId="9159-d9f9-82f5-3dbe" typeName="Special Abilities">
<characteristics>
<characteristic name="Description" typeId="9009-8e14-17df-15fe">+4 Damage.</characteristic>
</characteristics>
</profile>
<profile id="c043-57e1-2981-8054" name="oooo — The Three Fates (Ki, Attack)" hidden="false" typeId="9159-d9f9-82f5-3dbe" typeName="Special Abilities">
<characteristics>
<characteristic name="Description" typeId="9009-8e14-17df-15fe">Iosara makes three consecutive Attacks. If the first causes damage, the target suffers Seal Lv. 1, the second causes Blind Lv. 1, and the third attack causes Doom Lv. 1. Each of these states cause a separate resistance check vs. Effect 15.</characteristic>
</characteristics>
</profile>
<profile id="5665-1193-a007-f8bc" name="Unborn" hidden="false" typeId="9159-d9f9-82f5-3dbe" typeName="Special Abilities">
<characteristics>
<characteristic name="Description" typeId="9009-8e14-17df-15fe">Specter: If Iosara is reduced to 0 or less LP, it becomes a specter instead of being destroyed. While a specter, Iosara becomes Intangible, cannot recover LP through any means, and is removed from play if it takes any damage.
Wandering Shadow: Iosara is not deployed normally at the start of the game. At the beginning of each Recovery Phase roll a die, on a 9+ you put Iosara with all its Actions Points anywhere on the board that is not within 2 inches of an enemy Unit. When rolling for Wandering Shadow, apply the following modifiers:
+1 for each game turn that has passed.
+1 for each Unit that has been eliminated from Iosara's party.
Power Absorption: When Iosara destroys an enemy Unit, choose a Magic or Ki ability from the Unit. Iosara gains a copy of that ability. Iosara uses the ability as though it was on its card. All costs, benefits, and drawbacks of the copied ability remain the same. Iosara may only copy one ability at a time, so if later in the game it destroys another enemy Unit it may copy a new ability replacing the old one or retain the old one.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="f16e-7e60-843f-54d7" name="Immunity (Doom)" hidden="false" targetId="715d-db03-1710-5807" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="f8c5-df85-23c9-e6f8" name="Dark" hidden="false" targetId="429f-0291-b84a-3164" primary="false"/>
<categoryLink id="dc31-6849-c5c1-8c58" name="Empire" hidden="false" targetId="7c38-d565-b9df-ae9a" primary="false"/>
<categoryLink id="ea15-429e-4fce-d990" name="Warrior" hidden="false" targetId="02a6-7be5-bb33-ac95" primary="false"/>
</categoryLinks>
<costs>
<cost name="Levels" typeId="c455-b1bd-6f65-79ce" value="45.0"/>
<cost name="Advantage Pts" typeId="39e8-8e21-6d9c-ebd9" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="cc30-77aa-9c4b-d8ac" name="Janus Faith" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="3e5b-c937-c414-c776" type="max"/>
</constraints>
<profiles>
<profile id="377a-7fc3-943a-1c92" name="Janus Faith" hidden="false" typeId="8047-e421-08f6-a1ef" typeName="Characters">
<characteristics>
<characteristic name="At" typeId="20f4-d8f4-db83-84ce">5</characteristic>
<characteristic name="Dm" typeId="f443-bf96-3c21-c0f2">6</characteristic>
<characteristic name="Df" typeId="9ea8-c695-dfaa-45c2">8</characteristic>
<characteristic name="Ar" typeId="0831-54a0-0dc1-f5a9">3</characteristic>
<characteristic name="LP" typeId="ef31-fbfc-06f9-54bd">16</characteristic>
<characteristic name="Re" typeId="d989-007a-8bf8-30a6">9</characteristic>
<characteristic name="Mo" typeId="dd49-3cc4-4fcc-9f41">6/10</characteristic>
<characteristic name="AP" typeId="fbcd-5784-2a53-cafd">3/4</characteristic>
</characteristics>
</profile>
<profile id="9c14-1553-0d1d-4362" name="ooo — Executioner (Ki, Attack)" hidden="false" typeId="9159-d9f9-82f5-3dbe" typeName="Special Abilities">
<characteristics>
<characteristic name="Description" typeId="9009-8e14-17df-15fe">+4 Damage.</characteristic>
</characteristics>
</profile>
<profile id="8cad-8df2-e824-c8ea" name="oo — Absolute Defense (Ki, Effect)" hidden="false" typeId="9159-d9f9-82f5-3dbe" typeName="Special Abilities">
<characteristics>
<characteristic name="Description" typeId="9009-8e14-17df-15fe">Increase Janus' Armor value by 3 this turn. Upkeep: o</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="853d-b72d-b13d-e5b6" name="Light" hidden="false" targetId="e272-fa42-897c-930e" primary="false"/>
<categoryLink id="14ee-221a-c3ab-9f9e" name="Empire" hidden="false" targetId="7c38-d565-b9df-ae9a" primary="false"/>
<categoryLink id="fdfd-a399-e9d8-3e68" name="Warrior" hidden="false" targetId="02a6-7be5-bb33-ac95" primary="false"/>
</categoryLinks>
<costs>
<cost name="Levels" typeId="c455-b1bd-6f65-79ce" value="40.0"/>
<cost name="Advantage Pts" typeId="39e8-8e21-6d9c-ebd9" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="46f4-614a-21d3-6fce" name="Kronen Roxxon" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="6374-1ea0-0fdb-8fef" type="max"/>
</constraints>
<profiles>
<profile id="1555-d932-1d9d-db15" name="Kronen Roxxon" hidden="false" typeId="8047-e421-08f6-a1ef" typeName="Characters">
<characteristics>
<characteristic name="At" typeId="20f4-d8f4-db83-84ce">4</characteristic>
<characteristic name="Dm" typeId="f443-bf96-3c21-c0f2">8</characteristic>
<characteristic name="Df" typeId="9ea8-c695-dfaa-45c2">8</characteristic>
<characteristic name="Ar" typeId="0831-54a0-0dc1-f5a9">5</characteristic>
<characteristic name="LP" typeId="ef31-fbfc-06f9-54bd">20</characteristic>
<characteristic name="Re" typeId="d989-007a-8bf8-30a6">8</characteristic>
<characteristic name="Mo" typeId="dd49-3cc4-4fcc-9f41">6/10</characteristic>
<characteristic name="AP" typeId="fbcd-5784-2a53-cafd">2/4</characteristic>
</characteristics>
</profile>
<profile id="6f8a-5a2d-a4fc-510a" name="ooo — Scarlet Heartbeat (Ki, Counterattack)" hidden="false" typeId="9159-d9f9-82f5-3dbe" typeName="Special Abilities">
<characteristics>
<characteristic name="Description" typeId="9009-8e14-17df-15fe">+4 Attack / +2 Damage.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="36ce-d604-c152-f04a" name="Light" hidden="false" targetId="e272-fa42-897c-930e" primary="false"/>
<categoryLink id="66fb-84cd-8ab2-cf6d" name="Empire" hidden="false" targetId="7c38-d565-b9df-ae9a" primary="false"/>
<categoryLink id="3c64-57e8-1bfb-ad03" name="Warrior" hidden="false" targetId="02a6-7be5-bb33-ac95" primary="false"/>
</categoryLinks>
<costs>
<cost name="Levels" typeId="c455-b1bd-6f65-79ce" value="40.0"/>
<cost name="Advantage Pts" typeId="39e8-8e21-6d9c-ebd9" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="de76-64c3-dfa6-fa2c" name="Lilian Virgil" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="2204-0905-26d8-6fc3" type="max"/>
</constraints>
<profiles>
<profile id="9835-6fdf-cace-953e" name="Lilian Virgil" hidden="false" typeId="8047-e421-08f6-a1ef" typeName="Characters">
<characteristics>
<characteristic name="At" typeId="20f4-d8f4-db83-84ce">5</characteristic>
<characteristic name="Dm" typeId="f443-bf96-3c21-c0f2">4</characteristic>
<characteristic name="Df" typeId="9ea8-c695-dfaa-45c2">8</characteristic>
<characteristic name="Ar" typeId="0831-54a0-0dc1-f5a9">2</characteristic>
<characteristic name="LP" typeId="ef31-fbfc-06f9-54bd">13</characteristic>
<characteristic name="Re" typeId="d989-007a-8bf8-30a6">10</characteristic>
<characteristic name="Mo" typeId="dd49-3cc4-4fcc-9f41">8/12</characteristic>
<characteristic name="AP" typeId="fbcd-5784-2a53-cafd">3/4</characteristic>
</characteristics>
</profile>
<profile id="c334-a117-9bc9-e761" name="Aura of Protection" hidden="false" typeId="44d9-985a-4fa1-eaaa" typeName="Powers">
<characteristics>
<characteristic name="Description" typeId="3c61-def7-3265-e41f">Any friendly Unit within Lilian's Control Zone (except herself) gets +1 Resistance</characteristic>
</characteristics>
</profile>
<profile id="9a65-2756-3f62-83e3" name="o — Breath of Life (Magic, Effect)" hidden="false" typeId="9159-d9f9-82f5-3dbe" typeName="Special Abilities">
<characteristics>
<characteristic name="Description" typeId="9009-8e14-17df-15fe">All friendly Units that are in base-to-base contact with Lilian get Healing Lv 1. Limit: Once per Turn.</characteristic>
</characteristics>
</profile>
<profile id="6f64-47ec-805a-c051" name="ooo — Sacred Seal (Magic, Attack)" hidden="false" typeId="9159-d9f9-82f5-3dbe" typeName="Special Abilities">
<characteristics>
<characteristic name="Description" typeId="9009-8e14-17df-15fe">While making this attack, Lilian has Critical Mastery. If this attack causes damage, the target suffers Seal Lv 2. Effect 16.</characteristic>
</characteristics>
</profile>
<profile id="beed-ecbb-0ff8-7e5a" name="oo — Inspiration (Special, Effect)" hidden="false" typeId="9159-d9f9-82f5-3dbe" typeName="Special Abilities">
<characteristics>
<characteristic name="Description" typeId="9009-8e14-17df-15fe">This ability may only be used at the end of the Recovery Phase. Any friendly character within Lilian's Control Zone may Charge for one less Action Point than normal this Turn. Special Charges are also affected by this skill. Limit: Once per game.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="1d42-b131-5dfa-0dea" name="Light" hidden="false" targetId="e272-fa42-897c-930e" primary="false"/>
<categoryLink id="87be-e401-a571-6e1e" name="Empire" hidden="false" targetId="7c38-d565-b9df-ae9a" primary="false"/>
<categoryLink id="deb8-c4ac-c137-dd1e" name="Mystic" hidden="false" targetId="581a-079d-f3e4-4b0b" primary="false"/>
<categoryLink id="8643-eb29-49b5-8ab5" name="Warrior" hidden="false" targetId="02a6-7be5-bb33-ac95" primary="false"/>
</categoryLinks>
<costs>
<cost name="Levels" typeId="c455-b1bd-6f65-79ce" value="45.0"/>
<cost name="Advantage Pts" typeId="39e8-8e21-6d9c-ebd9" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="0c72-96ad-683b-529c" name="Macbeth" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="1062-96f0-40cf-6970" type="max"/>
</constraints>
<profiles>
<profile id="7bd7-b3d6-d561-cad4" name="Macbeth" hidden="false" typeId="8047-e421-08f6-a1ef" typeName="Characters">
<characteristics>
<characteristic name="At" typeId="20f4-d8f4-db83-84ce">5</characteristic>
<characteristic name="Dm" typeId="f443-bf96-3c21-c0f2">6/8</characteristic>
<characteristic name="Df" typeId="9ea8-c695-dfaa-45c2">8/10</characteristic>
<characteristic name="Ar" typeId="0831-54a0-0dc1-f5a9">5</characteristic>
<characteristic name="LP" typeId="ef31-fbfc-06f9-54bd">28</characteristic>
<characteristic name="Re" typeId="d989-007a-8bf8-30a6">10</characteristic>
<characteristic name="Mo" typeId="dd49-3cc4-4fcc-9f41">6/10</characteristic>
<characteristic name="AP" typeId="fbcd-5784-2a53-cafd">3/4 </characteristic>
</characteristics>
</profile>
<profile id="0bee-75b7-ca6c-4073" name="Destroyer of the Unholy" hidden="false" typeId="44d9-985a-4fa1-eaaa" typeName="Powers">
<characteristics>
<characteristic name="Description" typeId="3c61-def7-3265-e41f">Macbeth's Attacks against dark units use his secondary Damage value</characteristic>
</characteristics>
</profile>
<profile id="cb8f-95e8-3314-4185" name="Aegis" hidden="false" typeId="44d9-985a-4fa1-eaaa" typeName="Powers">
<characteristics>
<characteristic name="Description" typeId="3c61-def7-3265-e41f">Macbeth uses his secondary Defense value against Ranged Attacks.</characteristic>
</characteristics>
</profile>
<profile id="0263-7f42-9197-0276" name="Immortal Breath" hidden="false" typeId="44d9-985a-4fa1-eaaa" typeName="Powers">
<characteristics>
<characteristic name="Description" typeId="3c61-def7-3265-e41f">At the end of each Maintenance Phase, Macbeth or a friendly Unit within his control Zone gains Healing Lv1</characteristic>
</characteristics>
</profile>
<profile id="3ae5-c27b-9f0e-58c8" name="o — Consecrate (Magic, Effect, Reactive)" hidden="false" typeId="9159-d9f9-82f5-3dbe" typeName="Special Abilities">
<characteristics>
<characteristic name="Description" typeId="9009-8e14-17df-15fe">A friendly unit within Macbeth's control zone gets +1 Attack, +1 Defense and +1 Resistance until the end of the turn. Limit: Once per Turn.</characteristic>
</characteristics>
</profile>
<profile id="1b25-ed2b-1997-9811" name="ooo — The Sword of Azrael (Ki, Attack)" hidden="false" typeId="9159-d9f9-82f5-3dbe" typeName="Special Abilities">
<characteristics>
<characteristic name="Description" typeId="9009-8e14-17df-15fe">This attack affects all enemy units within 2 inches of Macbeth.</characteristic>
</characteristics>
</profile>
<profile id="817b-7146-184d-78c1" name="ooo — Soul of Light (Ki, Attack)" hidden="false" typeId="9159-d9f9-82f5-3dbe" typeName="Special Abilities">
<characteristics>
<characteristic name="Description" typeId="9009-8e14-17df-15fe">+2 Damage. If this attack destroys an enemy Unit, Macbeth cannot lose Life Points for the rest of the Turn.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="64ef-1894-0f62-c102" name="Immunity (Doom)" hidden="false" targetId="715d-db03-1710-5807" type="rule"/>
<infoLink id="ed8c-7983-3d8e-6316" name="Damage Resistance" hidden="false" targetId="b0d8-09eb-7e84-96c3" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="91ee-6d21-af0a-6241" name="Light" hidden="false" targetId="e272-fa42-897c-930e" primary="false"/>
<categoryLink id="a9f3-1c2b-fb63-1b32" name="Empire" hidden="false" targetId="7c38-d565-b9df-ae9a" primary="false"/>
<categoryLink id="80f1-ebd9-da62-cc85" name="Warrior" hidden="false" targetId="02a6-7be5-bb33-ac95" primary="false"/>
<categoryLink id="c938-0f93-b53d-9645" name="Mystic" hidden="false" targetId="581a-079d-f3e4-4b0b" primary="false"/>