generated from BSData/TemplateDataRepo
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Ito_Clan.cat
5370 lines (5366 loc) · 356 KB
/
Ito_Clan.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="302b-66f1-a875-3b63" name="Ito Clan" revision="31" battleScribeVersion="2.03" library="false" gameSystemId="62e4-ab79-1c4c-9ffe" gameSystemRevision="18" xmlns="http://www.battlescribe.net/schema/catalogueSchema" type="catalogue">
<categoryEntries>
<categoryEntry id="46b2-47c2-4c55-2e3a" name="Kinu" hidden="false"/>
<categoryEntry id="273a-b61b-c7f8-76fd" name="Itsunagi" hidden="false"/>
</categoryEntries>
<selectionEntries>
<selectionEntry id="6a04-d72e-1970-f1bd" name="Haemotoxic Oil" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="bc78-7c2c-d2cf-839b" type="max"/>
</constraints>
<profiles>
<profile id="eada-6e95-8bda-a521" name="Haemotoxic Oil" hidden="false" typeId="d2bb-86b4-edf3-c4e5" typeName="Special Card">
<characteristics>
<characteristic name="Description" typeId="b4b7-5338-e8e2-41fd">When a Friendly model causes Damage in a Melee Exchange, until the End Phase the Damaged Enemy model gains Bleed (1) Marker whenever is takes further Damage.
This effect ends if all Poison Markers are removed from the Enemy model.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="2000-88b8-c6f1-1aee" name="Faction Event Cards" hidden="false" targetId="d360-71aa-ca22-ba3c" primary="true"/>
</categoryLinks>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="2"/>
</costs>
</selectionEntry>
<selectionEntry id="c5c8-68d0-e847-4336" name="Orochi's Gaze" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0456-80f0-e618-b29f" type="max"/>
</constraints>
<profiles>
<profile id="93fb-d3c1-9957-3631" name="Orochi's Gaze" hidden="false" typeId="d2bb-86b4-edf3-c4e5" typeName="Special Card">
<characteristics>
<characteristic name="Description" typeId="b4b7-5338-e8e2-41fd">Play this card in the Starting Phase, add X+2 Blood of Orochi Tokens to the pool.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="e25d-5fb1-1d8c-4798" name="Blood of Orochi" hidden="false" targetId="7a5a-2e8e-4a81-c48f" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="384c-172a-962a-925b" name="Faction Event Cards" hidden="false" targetId="d360-71aa-ca22-ba3c" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="3c31-72d2-4d2f-b707" name="Value" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="276c-efd4-216f-6cbe" type="min"/>
</constraints>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="1"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="26e2-90ed-ed59-f4e2" name="Orochi's Shadow" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6402-aea0-940c-d5f1" type="max"/>
</constraints>
<profiles>
<profile id="7041-115b-b263-6336" name="Orochi's Shadow" hidden="false" typeId="d2bb-86b4-edf3-c4e5" typeName="Special Card">
<characteristics>
<characteristic name="Description" typeId="b4b7-5338-e8e2-41fd">Play before the Tactical Test to choose X Enemy models to gain Willpower (-1) and lose Tactician until the End Phase.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="0b28-7aaf-0ca3-a0d9" name="Willpower" hidden="false" targetId="f980-8d03-ad19-afe3" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="18a4-cd69-f733-8148" name="Faction Event Cards" hidden="false" targetId="d360-71aa-ca22-ba3c" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="9c18-9aff-d415-981c" name="Enemy Models" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4ecd-d235-1c84-c22b" type="min"/>
</constraints>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="1"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="1"/>
</costs>
</selectionEntry>
<selectionEntry id="9625-a68e-feb1-5bb3" name="Orochi's Gift" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="200b-d79f-41eb-5f69" name="Orochi's Gift" hidden="false" typeId="d2bb-86b4-edf3-c4e5" typeName="Special Card">
<characteristics>
<characteristic name="Description" typeId="b4b7-5338-e8e2-41fd">When an Enemy model is Killed due to Poison in the End Phase, you may add 3 additional Blood of Orochi points to the pool in the next Starting Phase.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="4307-77c3-1574-5a96" name="Blood of Orochi" hidden="false" targetId="7a5a-2e8e-4a81-c48f" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="2834-cb25-f9cb-53b8" name="Faction Event Cards" hidden="false" targetId="d360-71aa-ca22-ba3c" primary="true"/>
</categoryLinks>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="1"/>
</costs>
</selectionEntry>
<selectionEntry id="266b-9a45-213e-ff2d" name="Orochi's Vengeance" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3206-093f-9ebc-7aae" type="max"/>
</constraints>
<profiles>
<profile id="c63b-c249-2c0a-d4e7" name="Orochi's Vengeance" hidden="false" typeId="d2bb-86b4-edf3-c4e5" typeName="Special Card">
<characteristics>
<characteristic name="Description" typeId="b4b7-5338-e8e2-41fd">Choose an Enemy model with the Immune [Poison] trait that is within 3" of a Friendly Shisai. That model loses 1 Activation Counter.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="6f3b-fefa-8065-73d6" name="Faction Event Cards" hidden="false" targetId="d360-71aa-ca22-ba3c" primary="true"/>
</categoryLinks>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="1"/>
</costs>
</selectionEntry>
<selectionEntry id="88f0-9b34-3c84-dbc2" name="The Blessed" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="88f0-9b34-3c84-dbc2" type="lessThan"/>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="477a-e693-0888-08f7" type="atLeast"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<profiles>
<profile id="a259-d456-6bb3-a6e9" name="The Blessed" hidden="false" typeId="d2bb-86b4-edf3-c4e5" typeName="Special Card">
<characteristics>
<characteristic name="Description" typeId="b4b7-5338-e8e2-41fd">• Friendly Shisai gain double Ki Tokens on the Ki Generation step of the first turn.
• Each turn choose 1 Friendly Hebimmiman model. That model may be given up to 3 Blood of Orochi Tokens in the Starting Phase instead of 2.
• During Deployment you may assign a Virtue Token to up to 2 Friendly Faction models.
Permitted [Acolyte, Jade Mamba, models with Blood of Orochi, Snake]</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="b0a4-6509-ec05-c98a" name="Faction Theme Cards" hidden="false" targetId="477a-e693-0888-08f7" primary="true"/>
</categoryLinks>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="1954-bee7-0fea-4dde" name="Shimogamo Vipers" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5517-4c03-f765-f2c8" type="max"/>
</constraints>
<infoGroups>
<infoGroup id="fe8a-f4d1-fe41-a5ec" name="Traits" hidden="false">
<profiles>
<profile id="ffd8-3225-68cc-385f" name="Shimogamo Viper" hidden="false" typeId="b175-cf39-0ab9-4d58" typeName="Character Traits">
<characteristics>
<characteristic name="Traits" typeId="6fb8-4540-ed80-9332">Cloudwalk, Evasive, Flank, Insignificant, Jump Up</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="afe6-16ec-cea8-4774" name="Flank" hidden="false" targetId="a847-f02d-7e99-8a66" type="rule"/>
<infoLink id="5da1-77a3-9f1f-30f4" name="Jump Up" hidden="false" targetId="1575-e12f-4ca3-c557" type="rule"/>
<infoLink id="ab0b-99c5-33a9-d817" name="Cloudwalk" hidden="false" targetId="538c-1266-626b-fcc9" type="rule"/>
<infoLink id="cdea-887f-d832-6f59" name="Evasive" hidden="false" targetId="b0f8-d197-536b-c8fc" type="rule"/>
<infoLink id="6fb5-c67a-10fd-10d6" name="Insignificant" hidden="false" targetId="1614-d86c-ef8a-c095" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="7bad-950f-a0a2-6355" name="Melee Weapon" hidden="false">
<profiles>
<profile id="3110-19e4-3917-995f" name=" Bite" hidden="false" typeId="2b50-015d-0ea9-d9aa" typeName="Melee Weapon">
<characteristics>
<characteristic name="Melee Weapon Strength" typeId="98e7-55ef-7ced-d4ba">-1</characteristic>
<characteristic name="Traits" typeId="39e3-f945-7956-ad4e">Poison (1/1)</characteristic>
<characteristic name="Specials" typeId="85a9-0a2b-f966-0c8d"/>
<characteristic name="Unique Effects" typeId="2561-7ce8-3a17-1289"/>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="814d-ed74-ef0f-08d2" name="Poison " hidden="false" targetId="7290-85f4-42cf-0b75" type="rule"/>
</infoLinks>
</infoGroup>
</infoGroups>
<categoryLinks>
<categoryLink id="6b12-bec9-d01e-0f85" name="Faction Profile Cards" hidden="false" targetId="0ca8-2040-37f2-a1e0" primary="true"/>
<categoryLink id="5644-618d-3f05-27b2" name="Animal" hidden="false" targetId="c382-9ab3-9924-e30a" primary="false"/>
<categoryLink id="6ec5-8ae6-9783-01b5" name="Snake" hidden="false" targetId="5c9f-48df-87d2-af68" primary="false"/>
<categoryLink id="6326-9f61-f600-919f" name="Non-Unique" hidden="false" targetId="d181-219d-3add-d47b" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="81b2-3a6c-7a1e-3701" name="Shimogamo Viper" hidden="false" collective="false" import="true" targetId="4570-3f63-a2b7-0532" type="selectionEntry">
<modifiers>
<modifier type="append" field="name" value="A"/>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4f39-2cac-1180-cf55" type="min"/>
</constraints>
<profiles>
<profile id="2f40-6ecc-c102-330c" name="Shimogamo Viper A" hidden="false" typeId="08e8-3cf2-6d1d-b8f0" typeName="Character Profile">
<characteristics>
<characteristic name="Melee Pool" typeId="eea0-d5a3-2540-a974">2</characteristic>
<characteristic name="Melee Boost" typeId="4d43-9498-6fa0-8277"/>
<characteristic name="Ranged Pool" typeId="54f1-7472-e609-b4eb">0</characteristic>
<characteristic name="Ranged Boost" typeId="5454-b765-a65d-8a33"/>
<characteristic name="Move" typeId="91b7-833e-fd8e-a620">6</characteristic>
<characteristic name="Move Boost" typeId="f168-6d2b-e60e-28ac"/>
<characteristic name="Ki" typeId="3969-9568-a914-6854">1</characteristic>
<characteristic name="Ki Boost" typeId="5b71-1ed7-9aa7-039c"/>
<characteristic name="Ki Cap" typeId="9a7e-38d3-92c5-a672">0</characteristic>
<characteristic name="Wounds" typeId="2ee5-ab93-4a78-ea29">OOO</characteristic>
<characteristic name="Size & Base" typeId="6cf9-c5fd-3e3c-b35b">Small 30mm</characteristic>
</characteristics>
</profile>
</profiles>
</entryLink>
<entryLink id="f659-35c5-f06b-692c" name="Shimogamo Viper" hidden="false" collective="false" import="true" targetId="4570-3f63-a2b7-0532" type="selectionEntry">
<modifiers>
<modifier type="append" field="name" value="B"/>
</modifiers>
<profiles>
<profile id="e3cf-5d9d-3d09-9e58" name="Shimogamo Viper B" hidden="false" typeId="08e8-3cf2-6d1d-b8f0" typeName="Character Profile">
<characteristics>
<characteristic name="Melee Pool" typeId="eea0-d5a3-2540-a974">2</characteristic>
<characteristic name="Melee Boost" typeId="4d43-9498-6fa0-8277"/>
<characteristic name="Ranged Pool" typeId="54f1-7472-e609-b4eb">0</characteristic>
<characteristic name="Ranged Boost" typeId="5454-b765-a65d-8a33"/>
<characteristic name="Move" typeId="91b7-833e-fd8e-a620">6</characteristic>
<characteristic name="Move Boost" typeId="f168-6d2b-e60e-28ac"/>
<characteristic name="Ki" typeId="3969-9568-a914-6854">1</characteristic>
<characteristic name="Ki Boost" typeId="5b71-1ed7-9aa7-039c"/>
<characteristic name="Ki Cap" typeId="9a7e-38d3-92c5-a672">0</characteristic>
<characteristic name="Wounds" typeId="2ee5-ab93-4a78-ea29">OOO</characteristic>
<characteristic name="Size & Base" typeId="6cf9-c5fd-3e3c-b35b">Small 30mm</characteristic>
</characteristics>
</profile>
</profiles>
</entryLink>
</entryLinks>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="efbc-3882-2bff-a2e3" name="Akimoto" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="9ca6-7a62-7b68-47a2" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d5fb-75e3-ad08-8a9a" type="max"/>
</constraints>
<profiles>
<profile id="0c3f-633c-33d9-bd8c" name="Akimoto" hidden="false" typeId="08e8-3cf2-6d1d-b8f0" typeName="Character Profile">
<characteristics>
<characteristic name="Melee Pool" typeId="eea0-d5a3-2540-a974">2</characteristic>
<characteristic name="Melee Boost" typeId="4d43-9498-6fa0-8277">3</characteristic>
<characteristic name="Ranged Pool" typeId="54f1-7472-e609-b4eb">2</characteristic>
<characteristic name="Ranged Boost" typeId="5454-b765-a65d-8a33">3</characteristic>
<characteristic name="Move" typeId="91b7-833e-fd8e-a620">5</characteristic>
<characteristic name="Move Boost" typeId="f168-6d2b-e60e-28ac"/>
<characteristic name="Ki" typeId="3969-9568-a914-6854">1</characteristic>
<characteristic name="Ki Boost" typeId="5b71-1ed7-9aa7-039c"/>
<characteristic name="Ki Cap" typeId="9a7e-38d3-92c5-a672">6</characteristic>
<characteristic name="Wounds" typeId="2ee5-ab93-4a78-ea29">5 OOOOO</characteristic>
<characteristic name="Size & Base" typeId="6cf9-c5fd-3e3c-b35b">Small 30mm</characteristic>
</characteristics>
</profile>
</profiles>
<infoGroups>
<infoGroup id="ad40-5f97-7a6b-b595" name="Ranged Weapon" hidden="false">
<profiles>
<profile id="c94b-6375-04b4-1603" name="Poison Spit" hidden="false" typeId="7e20-258e-bf92-18f9" typeName="Ranged Weapon">
<characteristics>
<characteristic name="Ranged Weapon Strength" typeId="15aa-b6bd-6923-271f">Sp</characteristic>
<characteristic name="Range Bands" typeId="be6a-50c6-d691-e2e9">3/6/9</characteristic>
<characteristic name="Traits" typeId="3410-4428-ef91-eb61">Lightweight</characteristic>
<characteristic name="Specials" typeId="cdaf-b6ac-89d4-39ef"/>
<characteristic name="Unique Effects" typeId="3bf8-6525-f003-4990"/>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="11b8-3b1e-4dd7-a073" name="Lightweight" hidden="false" targetId="c75c-7124-2b1f-a4d9" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="2720-e243-c26c-663e" name="Melee Weapon" hidden="false">
<profiles>
<profile id="2d7f-5e8e-1803-3e63" name="Bite" hidden="false" typeId="2b50-015d-0ea9-d9aa" typeName="Melee Weapon">
<characteristics>
<characteristic name="Melee Weapon Strength" typeId="98e7-55ef-7ced-d4ba">-1</characteristic>
<characteristic name="Traits" typeId="39e3-f945-7956-ad4e">Poison (1/1)</characteristic>
<characteristic name="Specials" typeId="85a9-0a2b-f966-0c8d"/>
<characteristic name="Unique Effects" typeId="2561-7ce8-3a17-1289"/>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="0e3f-4768-3b02-f861" name="Poison " hidden="false" targetId="7290-85f4-42cf-0b75" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="5db2-365d-e655-0973" name="Traits" hidden="false">
<profiles>
<profile id="2220-387d-f659-3f3e" name="Akimoto" hidden="false" typeId="b175-cf39-0ab9-4d58" typeName="Character Traits">
<characteristics>
<characteristic name="Traits" typeId="6fb8-4540-ed80-9332">Blood of Orochi (2), Immune [Poison], Impetuous (1)</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="63c5-6da5-07be-814d" name="Sixth Sense" hidden="false" targetId="ec49-3908-f1d1-8de2" type="rule"/>
<infoLink id="3e78-4fb0-ae22-3ed9" name="Immune" hidden="false" targetId="ea08-b25e-0ea8-af73" type="rule"/>
<infoLink id="7d0b-df45-b527-cd4a" name="Blood of Orochi" hidden="false" targetId="7a5a-2e8e-4a81-c48f" type="rule"/>
<infoLink id="8a51-d37d-e317-4e63" name="Impetuous" hidden="false" targetId="4b80-3180-0b04-fb11" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="ab7e-7a0d-716c-7dad" name="Unique Effects" hidden="false">
<profiles>
<profile id="524a-2d55-bb6e-ae99" name="Akimoto" hidden="false" typeId="2f00-4eb0-a8cb-7022" typeName="Unique Effects">
<characteristics>
<characteristic name="Description" typeId="6de4-d067-c2aa-0dc2">When this model makes a successful Ranged Attack, instead of making a Damage Roll, the Target gains a number of Poison (1) Markers equal to the Success Level of the Ranged Attack.</characteristic>
</characteristics>
</profile>
</profiles>
</infoGroup>
<infoGroup id="3b55-1fcc-6f99-fa81" name="Ki Feats" hidden="false">
<infoLinks>
<infoLink id="aca5-b432-0a60-5000" name="Orochi's Visage" hidden="false" targetId="7ad0-c368-fe91-72f3" type="infoGroup"/>
</infoLinks>
</infoGroup>
</infoGroups>
<categoryLinks>
<categoryLink id="d7f6-be0d-f1a4-856f" name="Faction Profile Cards" hidden="false" targetId="0ca8-2040-37f2-a1e0" primary="true"/>
<categoryLink id="c2a9-1907-9407-60f8" name="Blood of Orochi" hidden="false" targetId="a678-8869-7918-cb24" primary="false"/>
<categoryLink id="d246-318a-9a77-fbf5" name="Hebimiman" hidden="false" targetId="683a-eb26-1ee8-43d1" primary="false"/>
<categoryLink id="fe04-fd60-aedf-0653" name="Unique" hidden="false" targetId="afd4-8041-e359-223c" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="7a1f-b4a0-3423-24a6" name="Enhancements" hidden="false" collective="false" import="true" targetId="c1b7-60f5-a313-5345" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="6"/>
</costs>
</selectionEntry>
<selectionEntry id="8114-a97d-b204-5df1" name="Ito Itsunagi" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="88f0-9b34-3c84-dbc2" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1562-2a50-6177-8e8d" type="max"/>
</constraints>
<profiles>
<profile id="4b23-5adc-0d0b-81f5" name="Ito Itsunagi" hidden="false" typeId="08e8-3cf2-6d1d-b8f0" typeName="Character Profile">
<characteristics>
<characteristic name="Melee Pool" typeId="eea0-d5a3-2540-a974">4</characteristic>
<characteristic name="Melee Boost" typeId="4d43-9498-6fa0-8277">2</characteristic>
<characteristic name="Ranged Pool" typeId="54f1-7472-e609-b4eb">4</characteristic>
<characteristic name="Ranged Boost" typeId="5454-b765-a65d-8a33"/>
<characteristic name="Move" typeId="91b7-833e-fd8e-a620">5</characteristic>
<characteristic name="Move Boost" typeId="f168-6d2b-e60e-28ac"/>
<characteristic name="Ki" typeId="3969-9568-a914-6854">2</characteristic>
<characteristic name="Ki Boost" typeId="5b71-1ed7-9aa7-039c">3</characteristic>
<characteristic name="Ki Cap" typeId="9a7e-38d3-92c5-a672">8</characteristic>
<characteristic name="Wounds" typeId="2ee5-ab93-4a78-ea29">5 OOOOO</characteristic>
<characteristic name="Size & Base" typeId="6cf9-c5fd-3e3c-b35b">Small 30mm</characteristic>
</characteristics>
</profile>
</profiles>
<infoGroups>
<infoGroup id="a6bc-0819-fd20-40a4" name="Melee Weapon" hidden="false">
<profiles>
<profile id="a628-6859-70f3-a07e" name="Twin Katanas" hidden="false" typeId="2b50-015d-0ea9-d9aa" typeName="Melee Weapon">
<characteristics>
<characteristic name="Melee Weapon Strength" typeId="98e7-55ef-7ced-d4ba">+1</characteristic>
<characteristic name="Traits" typeId="39e3-f945-7956-ad4e">Pierce (1)</characteristic>
<characteristic name="Specials" typeId="85a9-0a2b-f966-0c8d">Combo Attack (0), Sidestep Attack (0), Counterstrike Defence (0), Sidestep Defence (0)</characteristic>
<characteristic name="Unique Effects" typeId="2561-7ce8-3a17-1289"/>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="396c-a673-8493-f495" name="Sidestep Defence " hidden="false" targetId="753c-6c3b-64d7-203c" type="rule"/>
<infoLink id="4ea2-c7d2-3780-756b" name="Sidestep Attack " hidden="false" targetId="070d-a69d-0b46-27dc" type="rule"/>
<infoLink id="9312-4efc-794c-db7f" name="Counterstrike Defence " hidden="false" targetId="136e-4c77-dc59-4c6e" type="rule"/>
<infoLink id="08b0-e5b4-756f-f45a" name="Combo Attack " hidden="false" targetId="78ab-6a94-be24-8f74" type="rule"/>
<infoLink id="368e-1db5-894b-eda7" name="Pierce " hidden="false" targetId="39e4-14d7-5533-6e67" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="2855-2fb0-ed52-0196" name="Ki Feats" hidden="false">
<infoLinks>
<infoLink id="fd09-35ea-68ce-657c" name="Cobra Strike" hidden="false" targetId="172c-d546-50a5-c020" type="infoGroup"/>
<infoLink id="4dfb-4ceb-be8f-763c" name="Escape" hidden="true" targetId="b7ac-c02d-fe10-2c6c" type="infoGroup"/>
<infoLink id="dce0-c164-3658-6d17" name="Kote Men" hidden="true" targetId="2d1a-3485-f620-dcd8" type="infoGroup"/>
</infoLinks>
</infoGroup>
<infoGroup id="4070-a257-d18d-e27b" name="Unique Effects" hidden="false">
<profiles>
<profile id="424f-2ea2-5578-4547" name="Deployment" hidden="false" typeId="2f00-4eb0-a8cb-7022" typeName="Unique Effects">
<characteristics>
<characteristic name="Description" typeId="6de4-d067-c2aa-0dc2">This model begins the game with 2 Ki Tokens.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="8e0e-7239-4183-3af1" name="Kurouma Koryu" hidden="false" targetId="3ba5-1837-b036-ca3d" type="infoGroup"/>
</infoLinks>
</infoGroup>
<infoGroup id="a1e2-f7c1-6d92-83ac" name="Traits" hidden="false">
<profiles>
<profile id="6525-690c-0303-6efb" name="Ito Itsunagi" hidden="false" typeId="b175-cf39-0ab9-4d58" typeName="Character Traits">
<characteristics>
<characteristic name="Traits" typeId="6fb8-4540-ed80-9332">Dodge (1), Evasive, Fearless, Feint (1), Indomitable (1), Parry (1), Prowess [Melee](1), Ranged Defence (2), Resistance (1), Split Attack</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="20bf-9a13-b1af-523d" name="Dodge " hidden="false" targetId="14d5-d459-5d8a-c73e" type="rule"/>
<infoLink id="9ee8-fb95-7e6e-2cee" name="Fearless" hidden="false" targetId="5d6f-1746-9080-aca5" type="rule"/>
<infoLink id="744e-0283-70dd-9d77" name="Indomitable " hidden="false" targetId="3beb-6f28-e7c4-a236" type="rule"/>
<infoLink id="6f72-364e-0060-aa69" name="Ranged Defence " hidden="false" targetId="9b8d-9ca9-e25d-3988" type="rule"/>
<infoLink id="76ab-cc42-d498-4b1f" name="Prowess " hidden="false" targetId="75ef-327a-cd08-a248" type="rule"/>
<infoLink id="77eb-2b03-1eb2-63ba" name="Resistance " hidden="false" targetId="7e3f-9dc3-cacb-469f" type="rule"/>
<infoLink id="49a6-79ac-808b-dc64" name="Split Attack" hidden="false" targetId="92d0-d4fe-e58e-7535" type="rule"/>
<infoLink id="92e0-31b4-d9f6-4456" name="Evasive" hidden="false" targetId="b0f8-d197-536b-c8fc" type="rule"/>
<infoLink id="1cdc-11c4-818c-0810" name="Parry" hidden="false" targetId="c7c2-b36e-7952-c79b" type="rule"/>
<infoLink id="f42b-848f-9fb4-f431" name="Feint" hidden="false" targetId="38b0-4d97-3c4c-8d96" type="rule"/>
</infoLinks>
</infoGroup>
</infoGroups>
<categoryLinks>
<categoryLink id="455b-dac2-a697-9b4c" name="Faction Profile Cards" hidden="false" targetId="0ca8-2040-37f2-a1e0" primary="true"/>
<categoryLink id="e08c-5d01-cb35-53c6" name="Samurai" hidden="false" targetId="e12a-f782-3281-7444" primary="false"/>
<categoryLink id="0d32-9267-a9cb-c932" name="Unique" hidden="false" targetId="afd4-8041-e359-223c" primary="false"/>
<categoryLink id="7993-eb25-6b3a-962f" name="Itsunagi" hidden="false" targetId="273a-b61b-c7f8-76fd" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="8266-d14c-428c-1e18" name="Enhancements" hidden="false" collective="false" import="true" targetId="c1b7-60f5-a313-5345" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="25"/>
</costs>
</selectionEntry>
<selectionEntry id="9ca6-7a62-7b68-47a2" name="Lords of Izu" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="9ca6-7a62-7b68-47a2" type="lessThan"/>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="477a-e693-0888-08f7" type="atLeast"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<profiles>
<profile id="d326-d075-c0c5-c4d3" name="Lords of Izu" hidden="false" typeId="d2bb-86b4-edf3-c4e5" typeName="Special Card">
<characteristics>
<characteristic name="Description" typeId="b4b7-5338-e8e2-41fd">• In the End Phase Poison Damage ignores the Tough trait.
• During Deployment 1 Ito Samurai gains Leadership [Friendly](+1/6") until the end of the game.
• In the Starting Phase add 2 Blood of Orochi Tokens to the pool.
Permitted [Ashigaru, Ronin Kami, Samurai, Snake]
Exclusion [Hebimiman]</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="c2bc-12c3-025f-4e77" name="Blood of Orochi" hidden="false" targetId="7a5a-2e8e-4a81-c48f" type="rule"/>
<infoLink id="9548-de09-b01d-5ef8" name="Leadership" hidden="false" targetId="8ec4-bfdc-8c03-f631" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="918e-9e27-3e18-eb5e" name="Faction Theme Cards" hidden="false" targetId="477a-e693-0888-08f7" primary="true"/>
</categoryLinks>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="a9df-cdd7-cdd3-016c" name="Ito Kaihime" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="9ca6-7a62-7b68-47a2" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="53b6-e8e4-59c9-c951" type="max"/>
</constraints>
<profiles>
<profile id="69ec-b1d0-3a2b-b051" name="Ito Kaihime" hidden="false" typeId="08e8-3cf2-6d1d-b8f0" typeName="Character Profile">
<characteristics>
<characteristic name="Melee Pool" typeId="eea0-d5a3-2540-a974">3</characteristic>
<characteristic name="Melee Boost" typeId="4d43-9498-6fa0-8277">3</characteristic>
<characteristic name="Ranged Pool" typeId="54f1-7472-e609-b4eb">3</characteristic>
<characteristic name="Ranged Boost" typeId="5454-b765-a65d-8a33">3</characteristic>
<characteristic name="Move" typeId="91b7-833e-fd8e-a620">5</characteristic>
<characteristic name="Move Boost" typeId="f168-6d2b-e60e-28ac">2</characteristic>
<characteristic name="Ki" typeId="3969-9568-a914-6854">2</characteristic>
<characteristic name="Ki Boost" typeId="5b71-1ed7-9aa7-039c"/>
<characteristic name="Ki Cap" typeId="9a7e-38d3-92c5-a672">6</characteristic>
<characteristic name="Wounds" typeId="2ee5-ab93-4a78-ea29">5 OOOOO</characteristic>
<characteristic name="Size & Base" typeId="6cf9-c5fd-3e3c-b35b">Small 30mm</characteristic>
</characteristics>
</profile>
</profiles>
<infoGroups>
<infoGroup id="cc50-c4a6-f1f7-2299" name="Traits" hidden="false">
<profiles>
<profile id="941e-a6e4-eb69-01d7" name="Ito Kaihime" hidden="false" typeId="b175-cf39-0ab9-4d58" typeName="Character Traits">
<characteristics>
<characteristic name="Traits" typeId="6fb8-4540-ed80-9332">Armour (1), Blood of Orochi (1), Jump Up, Prowess [Melee](1)</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="2700-74ec-c2a7-1e7b" name="Armour" hidden="false" targetId="8615-1c63-2242-5746" type="rule"/>
<infoLink id="38d8-eacd-c998-be78" name="Blood of Orochi" hidden="false" targetId="7a5a-2e8e-4a81-c48f" type="rule"/>
<infoLink id="286a-1be6-dac5-fc79" name="Jump Up" hidden="false" targetId="1575-e12f-4ca3-c557" type="rule"/>
<infoLink id="eb7d-71af-f6cb-e9ab" name="Prowess " hidden="false" targetId="75ef-327a-cd08-a248" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="abbf-74ba-2603-cd5a" name="Melee Weapon" hidden="false">
<profiles>
<profile id="2a2e-64a0-a559-9302" name="Katana" hidden="false" typeId="2b50-015d-0ea9-d9aa" typeName="Melee Weapon">
<characteristics>
<characteristic name="Melee Weapon Strength" typeId="98e7-55ef-7ced-d4ba">+0</characteristic>
<characteristic name="Traits" typeId="39e3-f945-7956-ad4e"/>
<characteristic name="Specials" typeId="85a9-0a2b-f966-0c8d">Sidestep Defence (0)</characteristic>
<characteristic name="Unique Effects" typeId="2561-7ce8-3a17-1289"/>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="06eb-d193-2ae3-7d6e" name="Sidestep Defence " hidden="false" targetId="753c-6c3b-64d7-203c" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="786f-0431-fbcf-aa5c" name="Ranged Weapon" hidden="false">
<profiles>
<profile id="7732-7881-6039-9302" name="Dai-Kyu" hidden="false" typeId="7e20-258e-bf92-18f9" typeName="Ranged Weapon">
<characteristics>
<characteristic name="Ranged Weapon Strength" typeId="15aa-b6bd-6923-271f">+1</characteristic>
<characteristic name="Range Bands" typeId="be6a-50c6-d691-e2e9">5/10/15</characteristic>
<characteristic name="Traits" typeId="3410-4428-ef91-eb61">Reload (1)</characteristic>
<characteristic name="Specials" typeId="cdaf-b6ac-89d4-39ef"/>
<characteristic name="Unique Effects" typeId="3bf8-6525-f003-4990"/>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="de0a-d298-ccad-ee77" name="Reload" hidden="false" targetId="9736-df56-0b62-b1a8" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="d842-8dbe-c7ef-c0db" name="Ki Feats" hidden="false">
<infoLinks>
<infoLink id="1927-fef9-9cc4-3ed4" name="Quick Reload" hidden="false" targetId="8ffa-126c-60ed-f63f" type="infoGroup"/>
<infoLink id="8ceb-3942-f427-a29c" name="Precision Strike" hidden="false" targetId="d324-83dc-936d-cb9b" type="infoGroup"/>
</infoLinks>
</infoGroup>
</infoGroups>
<categoryLinks>
<categoryLink id="8b2a-eb03-edf7-1141" name="Faction Profile Cards" hidden="false" targetId="0ca8-2040-37f2-a1e0" primary="true"/>
<categoryLink id="1760-3db8-d6e3-f69e" name="Blood of Orochi" hidden="false" targetId="a678-8869-7918-cb24" primary="false"/>
<categoryLink id="a6ca-a559-40fa-27ed" name="Hebimiman" hidden="false" targetId="683a-eb26-1ee8-43d1" primary="false"/>
<categoryLink id="f70f-bc50-a2e2-a24e" name="Samurai" hidden="false" targetId="e12a-f782-3281-7444" primary="false"/>
<categoryLink id="2028-0483-d75f-cb07" name="Armour" hidden="false" targetId="f322-702a-ff62-b37e" primary="false"/>
<categoryLink id="6c7f-04f9-01be-f277" name="Unique" hidden="false" targetId="afd4-8041-e359-223c" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="bb47-b89d-c41e-e24d" name="Enhancements" hidden="false" collective="false" import="true" targetId="c1b7-60f5-a313-5345" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="15"/>
</costs>
</selectionEntry>
<selectionEntry id="7c44-2dda-8fa6-62ff" name="Ito Ayako" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="9ca6-7a62-7b68-47a2" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7fee-60e2-19ed-3e11" type="max"/>
</constraints>
<profiles>
<profile id="42ea-c8bd-ef18-c203" name="Ito Ayako" hidden="false" typeId="08e8-3cf2-6d1d-b8f0" typeName="Character Profile">
<characteristics>
<characteristic name="Melee Pool" typeId="eea0-d5a3-2540-a974">2</characteristic>
<characteristic name="Melee Boost" typeId="4d43-9498-6fa0-8277">3</characteristic>
<characteristic name="Ranged Pool" typeId="54f1-7472-e609-b4eb">2</characteristic>
<characteristic name="Ranged Boost" typeId="5454-b765-a65d-8a33"/>
<characteristic name="Move" typeId="91b7-833e-fd8e-a620">5</characteristic>
<characteristic name="Move Boost" typeId="f168-6d2b-e60e-28ac">2</characteristic>
<characteristic name="Ki" typeId="3969-9568-a914-6854">2</characteristic>
<characteristic name="Ki Boost" typeId="5b71-1ed7-9aa7-039c">3</characteristic>
<characteristic name="Ki Cap" typeId="9a7e-38d3-92c5-a672">8</characteristic>
<characteristic name="Wounds" typeId="2ee5-ab93-4a78-ea29">5 OOOOO</characteristic>
<characteristic name="Size & Base" typeId="6cf9-c5fd-3e3c-b35b">Small 30mm</characteristic>
</characteristics>
</profile>
</profiles>
<infoGroups>
<infoGroup id="e1a9-e3d8-2768-1ca3" name="Traits" hidden="false">
<profiles>
<profile id="8f87-6921-1e8b-2a56" name="Ito Ayako" hidden="false" typeId="b175-cf39-0ab9-4d58" typeName="Character Traits">
<characteristics>
<characteristic name="Traits" typeId="6fb8-4540-ed80-9332">Blood of Orochi (1), Channel (6/6"), Immune [Poison], Jump Up, Virtue (6")</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="9a71-031c-a089-a35b" name="Blood of Orochi" hidden="false" targetId="7a5a-2e8e-4a81-c48f" type="rule"/>
<infoLink id="90b3-9cbd-e82e-ad96" name="Channel" hidden="false" targetId="69af-3098-e21e-7734" type="rule"/>
<infoLink id="f358-78e4-10d2-39c2" name="Immune" hidden="false" targetId="ea08-b25e-0ea8-af73" type="rule"/>
<infoLink id="2e96-35d1-5880-cdba" name="Jump Up" hidden="false" targetId="1575-e12f-4ca3-c557" type="rule"/>
<infoLink id="6f95-66b5-f2f4-8527" name="Virtue" hidden="false" targetId="57d7-cc96-ce93-9258" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="5c8d-1859-ec40-3360" name="Unique Effects" hidden="false">
<profiles>
<profile id="8e42-a07b-b895-2113" name="Virtue" hidden="false" typeId="2f00-4eb0-a8cb-7022" typeName="Unique Effects">
<characteristics>
<characteristic name="Description" typeId="6de4-d067-c2aa-0dc2">While this model is in play, when a Friendly model spends a Virtue Token you may choose the following effects until the End Phase:
• This model gains Lightning Reflexes
• This model gains Assassin
• This model gains Sixth Sense
• This model gains Jump Up</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="0292-c2c5-6518-c3d7" name="Assassin" hidden="false" targetId="ef59-928b-2550-f0a3" type="rule"/>
<infoLink id="ae12-e466-b7de-85f0" name="Lightning Reflexes" hidden="false" targetId="efd4-dc31-6523-9c79" type="rule"/>
<infoLink id="d3ef-889c-7b87-4b1f" name="Sixth Sense" hidden="false" targetId="ec49-3908-f1d1-8de2" type="rule"/>
<infoLink id="ca89-a640-0e52-f9c0" name="Jump Up" hidden="false" targetId="1575-e12f-4ca3-c557" type="rule"/>
<infoLink id="da58-39c1-1032-57e6" name="Shisai" hidden="false" targetId="546e-cfe9-013a-91a6" type="infoGroup"/>
</infoLinks>
</infoGroup>
<infoGroup id="b43e-93f3-b26a-562b" name="Melee Weapon" hidden="false">
<profiles>
<profile id="75ae-90de-bc95-d706" name="Tanto" hidden="false" typeId="2b50-015d-0ea9-d9aa" typeName="Melee Weapon">
<characteristics>
<characteristic name="Melee Weapon Strength" typeId="98e7-55ef-7ced-d4ba">-1</characteristic>
<characteristic name="Traits" typeId="39e3-f945-7956-ad4e"/>
<characteristic name="Specials" typeId="85a9-0a2b-f966-0c8d">Sidestep Defence (0)</characteristic>
<characteristic name="Unique Effects" typeId="2561-7ce8-3a17-1289"/>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="3521-d631-d780-3e56" name="Sidestep Defence " hidden="false" targetId="753c-6c3b-64d7-203c" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="301a-d9d3-c77a-49fb" name="Ki Feats" hidden="false">
<infoLinks>
<infoLink id="ff3e-6b86-e582-9da6" name="Psychic Drain" hidden="false" targetId="5bbb-ceeb-3466-685a" type="infoGroup"/>
<infoLink id="0395-fb56-93b1-37ad" name="Hypnotic Gaze" hidden="false" targetId="366c-5d6c-e430-d8a6" type="infoGroup"/>
<infoLink id="3a40-4ecd-bb33-7f74" name="Death Sentence" hidden="false" targetId="3bd6-b4a8-04a6-cba8" type="infoGroup"/>
</infoLinks>
</infoGroup>
</infoGroups>
<categoryLinks>
<categoryLink id="6b09-c2b3-ceca-c653" name="Faction Profile Cards" hidden="false" targetId="0ca8-2040-37f2-a1e0" primary="true"/>
<categoryLink id="b9a2-c49d-f8e8-da96" name="Blood of Orochi" hidden="false" targetId="a678-8869-7918-cb24" primary="false"/>
<categoryLink id="2c12-85d2-e14b-9ef8" name="Shisai" hidden="false" targetId="a485-b6b0-b58e-a3a1" primary="false"/>
<categoryLink id="8ed6-0eb4-080a-72aa" name="Hebimiman" hidden="false" targetId="683a-eb26-1ee8-43d1" primary="false"/>
<categoryLink id="88c5-0616-b791-ab42" name="Unique" hidden="false" targetId="afd4-8041-e359-223c" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="9fbc-642f-d5f3-023f" name="Enhancements" hidden="false" collective="false" import="true" targetId="c1b7-60f5-a313-5345" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="20"/>
</costs>
</selectionEntry>
<selectionEntry id="f230-ef23-46ac-b7ca" name="Chiyo" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="72d3-f070-2fd4-debb" type="max"/>
</constraints>
<profiles>
<profile id="0c1a-856b-b5a3-c375" name="Chiyo" hidden="false" typeId="08e8-3cf2-6d1d-b8f0" typeName="Character Profile">
<characteristics>
<characteristic name="Melee Pool" typeId="eea0-d5a3-2540-a974">3</characteristic>
<characteristic name="Melee Boost" typeId="4d43-9498-6fa0-8277">3</characteristic>
<characteristic name="Ranged Pool" typeId="54f1-7472-e609-b4eb">2</characteristic>
<characteristic name="Ranged Boost" typeId="5454-b765-a65d-8a33"/>
<characteristic name="Move" typeId="91b7-833e-fd8e-a620">5</characteristic>
<characteristic name="Move Boost" typeId="f168-6d2b-e60e-28ac"/>
<characteristic name="Ki" typeId="3969-9568-a914-6854">1</characteristic>
<characteristic name="Ki Boost" typeId="5b71-1ed7-9aa7-039c"/>
<characteristic name="Ki Cap" typeId="9a7e-38d3-92c5-a672">6</characteristic>
<characteristic name="Wounds" typeId="2ee5-ab93-4a78-ea29">5 OOOOO</characteristic>
<characteristic name="Size & Base" typeId="6cf9-c5fd-3e3c-b35b">Small 30mm</characteristic>
</characteristics>
</profile>
</profiles>
<infoGroups>
<infoGroup id="563f-f212-9a82-8b14" name="Melee Weapon" hidden="false">
<profiles>
<profile id="4a65-b6ed-ef70-e667" name="Katana" hidden="false" typeId="2b50-015d-0ea9-d9aa" typeName="Melee Weapon">
<characteristics>
<characteristic name="Melee Weapon Strength" typeId="98e7-55ef-7ced-d4ba">+0</characteristic>
<characteristic name="Traits" typeId="39e3-f945-7956-ad4e">Poison (1/1)</characteristic>
<characteristic name="Specials" typeId="85a9-0a2b-f966-0c8d">Sidestep Defence (0)</characteristic>
<characteristic name="Unique Effects" typeId="2561-7ce8-3a17-1289"/>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="a778-e3d9-77d8-4b99" name="Poison " hidden="false" targetId="7290-85f4-42cf-0b75" type="rule"/>
<infoLink id="e386-ef10-e810-c10d" name="Sidestep Defence " hidden="false" targetId="753c-6c3b-64d7-203c" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="2bc3-2031-ed1e-068a" name="Traits" hidden="false">
<profiles>
<profile id="2ac8-1c97-558b-be71" name="Chiyo" hidden="false" typeId="b175-cf39-0ab9-4d58" typeName="Character Traits">
<characteristics>
<characteristic name="Traits" typeId="6fb8-4540-ed80-9332">Bravery, Cloudwalk, Jump Up, Vengeance [Poisoned]</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="dd98-1f59-ad2c-dfa6" name="Vengeance" hidden="false" targetId="6779-0aac-2f51-f67e" type="rule"/>
<infoLink id="923f-2fce-c83d-cf5a" name="Jump Up" hidden="false" targetId="1575-e12f-4ca3-c557" type="rule"/>
<infoLink id="0d17-6a17-8a11-9f3d" name="Cloudwalk" hidden="false" targetId="538c-1266-626b-fcc9" type="rule"/>
<infoLink id="e3d1-eaf8-e52f-4529" name="Bravery" hidden="false" targetId="f9b2-38d2-7cda-de6e" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="58aa-965c-fb61-55dd" name="Ki Feats" hidden="false">
<infoLinks>
<infoLink id="c2ea-46ae-2a0c-9dee" name="Asp Strike" hidden="false" targetId="4d47-155e-0ec4-a7fe" type="infoGroup"/>
</infoLinks>
</infoGroup>
</infoGroups>
<categoryLinks>
<categoryLink id="e572-2c1d-512d-72d2" name="Faction Profile Cards" hidden="false" targetId="0ca8-2040-37f2-a1e0" primary="true"/>
<categoryLink id="3289-40e4-500f-7564" name="Acolyte" hidden="false" targetId="3134-f1cd-dcfc-649f" primary="false"/>
<categoryLink id="f973-5d35-151f-c939" name="Ashigaru" hidden="false" targetId="f434-17e6-174c-b4f6" primary="false"/>
<categoryLink id="5964-1df9-b56d-72a3" name="Unique" hidden="false" targetId="afd4-8041-e359-223c" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="3035-5c66-3f5c-e855" name="Enhancements" hidden="false" collective="false" import="true" targetId="c1b7-60f5-a313-5345" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="12"/>
</costs>
</selectionEntry>
<selectionEntry id="7b6a-8b44-a313-5bd8" name="Haruki" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="88f0-9b34-3c84-dbc2" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="68df-1574-4081-63d9" type="max"/>
</constraints>
<profiles>
<profile id="fbaa-643f-2495-f573" name="Haruki" hidden="false" typeId="08e8-3cf2-6d1d-b8f0" typeName="Character Profile">
<characteristics>
<characteristic name="Melee Pool" typeId="eea0-d5a3-2540-a974">3</characteristic>
<characteristic name="Melee Boost" typeId="4d43-9498-6fa0-8277">3</characteristic>
<characteristic name="Ranged Pool" typeId="54f1-7472-e609-b4eb">3</characteristic>
<characteristic name="Ranged Boost" typeId="5454-b765-a65d-8a33"/>
<characteristic name="Move" typeId="91b7-833e-fd8e-a620">5</characteristic>
<characteristic name="Move Boost" typeId="f168-6d2b-e60e-28ac"/>
<characteristic name="Ki" typeId="3969-9568-a914-6854">2</characteristic>
<characteristic name="Ki Boost" typeId="5b71-1ed7-9aa7-039c"/>
<characteristic name="Ki Cap" typeId="9a7e-38d3-92c5-a672">6</characteristic>
<characteristic name="Wounds" typeId="2ee5-ab93-4a78-ea29">5 OOOOO</characteristic>
<characteristic name="Size & Base" typeId="6cf9-c5fd-3e3c-b35b">Small 30mm</characteristic>
</characteristics>
</profile>
</profiles>
<infoGroups>
<infoGroup id="c51d-835c-ece1-4cc2" name="Melee Weapon" hidden="false">
<profiles>
<profile id="1f09-4bf8-c201-6de8" name="Barbed Spear" hidden="false" typeId="2b50-015d-0ea9-d9aa" typeName="Melee Weapon">
<characteristics>
<characteristic name="Melee Weapon Strength" typeId="98e7-55ef-7ced-d4ba">+0</characteristic>
<characteristic name="Traits" typeId="39e3-f945-7956-ad4e">Bleed (1/1), Reach</characteristic>
<characteristic name="Specials" typeId="85a9-0a2b-f966-0c8d">Push Attack (1), Sidestep Defence (0)</characteristic>
<characteristic name="Unique Effects" typeId="2561-7ce8-3a17-1289"/>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="104b-eb26-36b1-649e" name="Bleed" hidden="false" targetId="ac4a-e540-4fe3-126a" type="rule"/>
<infoLink id="81ce-df89-3398-951c" name="Push Attack" hidden="false" targetId="6c26-94ba-6b96-9e1b" type="rule"/>
<infoLink id="d21f-1e37-09c7-769c" name="Reach" hidden="false" targetId="e28e-d5dd-a262-1101" type="rule"/>
<infoLink id="fbd1-7183-36da-80c9" name="Sidestep Defence " hidden="false" targetId="753c-6c3b-64d7-203c" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="07ca-440e-c5df-e6ba" name="Ki Feats" hidden="false">
<infoLinks>
<infoLink id="7620-c3f1-0a68-60d4" name="Precision Strike" hidden="false" targetId="d324-83dc-936d-cb9b" type="infoGroup"/>
<infoLink id="6348-a950-3940-035b" name="Military Training" hidden="false" targetId="308c-6600-0817-c51e" type="infoGroup"/>
</infoLinks>
</infoGroup>
<infoGroup id="0d15-bdd0-eb0d-3a13" name="Traits" hidden="false">
<profiles>
<profile id="2df1-e928-2327-c8b8" name="Haruki" hidden="false" typeId="b175-cf39-0ab9-4d58" typeName="Character Traits">
<characteristics>
<characteristic name="Traits" typeId="6fb8-4540-ed80-9332">Armour (1), Charging Bonus (Lightfooted), Parry (1)</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="a3bc-9708-e1dc-7621" name="Parry" hidden="false" targetId="c7c2-b36e-7952-c79b" type="rule"/>
<infoLink id="47ee-e7b4-e09d-2d13" name="Charging Bonus" hidden="false" targetId="d747-f7f2-ea6f-5ceb" type="rule"/>
<infoLink id="44b6-8f35-a952-a3d4" name="Armour" hidden="false" targetId="8615-1c63-2242-5746" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="1648-b601-c54b-6d2f" name="Unique Effects" hidden="false">
<profiles>
<profile id="c349-ecc9-085b-3976" name="Unique Effects" hidden="false" typeId="2f00-4eb0-a8cb-7022" typeName="Unique Effects">
<characteristics>
<characteristic name="Description" typeId="6de4-d067-c2aa-0dc2">This model and Friendly Ito Ashigaru in BtB with this model may not be Targeted by the Charge Action.</characteristic>
</characteristics>
</profile>
</profiles>
</infoGroup>
</infoGroups>
<categoryLinks>
<categoryLink id="920f-11a9-3915-1974" name="Faction Profile Cards" hidden="false" targetId="0ca8-2040-37f2-a1e0" primary="true"/>
<categoryLink id="3ff6-9f75-6b5c-7416" name="Ashigaru" hidden="false" targetId="f434-17e6-174c-b4f6" primary="false"/>
<categoryLink id="894e-bce1-2879-2bb6" name="Gunso" hidden="false" targetId="90e9-830c-e4e0-dcde" primary="false"/>
<categoryLink id="89c0-9660-8580-0e3c" name="Unique" hidden="false" targetId="afd4-8041-e359-223c" primary="false"/>
<categoryLink id="7dbb-c8ee-2356-5746" name="Armour" hidden="false" targetId="f322-702a-ff62-b37e" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="7206-b8f9-942c-9bee" name="Enhancements" hidden="false" collective="false" import="true" targetId="c1b7-60f5-a313-5345" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="14"/>
</costs>
</selectionEntry>
<selectionEntry id="9cd0-e3d5-ad0c-bde5" name="Hitoshi" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="88f0-9b34-3c84-dbc2" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2f76-324f-8a47-9bed" type="max"/>
</constraints>
<profiles>
<profile id="4dbe-25f3-6b28-2ea7" name="Hitoshi" hidden="false" typeId="08e8-3cf2-6d1d-b8f0" typeName="Character Profile">
<characteristics>
<characteristic name="Melee Pool" typeId="eea0-d5a3-2540-a974">3</characteristic>
<characteristic name="Melee Boost" typeId="4d43-9498-6fa0-8277">3</characteristic>
<characteristic name="Ranged Pool" typeId="54f1-7472-e609-b4eb">2</characteristic>
<characteristic name="Ranged Boost" typeId="5454-b765-a65d-8a33"/>
<characteristic name="Move" typeId="91b7-833e-fd8e-a620">5</characteristic>
<characteristic name="Move Boost" typeId="f168-6d2b-e60e-28ac"/>
<characteristic name="Ki" typeId="3969-9568-a914-6854">1</characteristic>
<characteristic name="Ki Boost" typeId="5b71-1ed7-9aa7-039c"/>
<characteristic name="Ki Cap" typeId="9a7e-38d3-92c5-a672">6</characteristic>
<characteristic name="Wounds" typeId="2ee5-ab93-4a78-ea29">5 OOOOO</characteristic>
<characteristic name="Size & Base" typeId="6cf9-c5fd-3e3c-b35b">Small 30mm</characteristic>
</characteristics>
</profile>
</profiles>
<infoGroups>
<infoGroup id="1f3c-a2ab-493b-023a" name="Melee Weapon" hidden="false">
<profiles>
<profile id="299b-c802-fa24-43bc" name="Sasumata" hidden="false" typeId="2b50-015d-0ea9-d9aa" typeName="Melee Weapon">
<characteristics>
<characteristic name="Melee Weapon Strength" typeId="98e7-55ef-7ced-d4ba">+0</characteristic>
<characteristic name="Traits" typeId="39e3-f945-7956-ad4e">Reach</characteristic>
<characteristic name="Specials" typeId="85a9-0a2b-f966-0c8d">Grapple Attack (1), Sidestep Defence (0)</characteristic>
<characteristic name="Unique Effects" typeId="2561-7ce8-3a17-1289"/>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="b937-634c-dbc5-2109" name="Grapple Attack" hidden="false" targetId="1b9a-c71d-0a30-8d0d" type="rule"/>
<infoLink id="96c1-d4a1-c0ea-ea55" name="Reach" hidden="false" targetId="e28e-d5dd-a262-1101" type="rule"/>
<infoLink id="1700-e563-1f1b-a593" name="Sidestep Defence " hidden="false" targetId="753c-6c3b-64d7-203c" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="be81-6d92-d00e-1af8" name="Ki Feats" hidden="false">
<infoLinks>
<infoLink id="6fe9-ba82-8d6c-712f" name="Sweep" hidden="false" targetId="acb4-d601-61d6-539f" type="infoGroup"/>
</infoLinks>
</infoGroup>
<infoGroup id="d21a-f612-665e-1791" name="Traits" hidden="false">
<profiles>
<profile id="5b35-b26b-f7e2-b7db" name="Hitoshi" hidden="false" typeId="b175-cf39-0ab9-4d58" typeName="Character Traits">
<characteristics>
<characteristic name="Traits" typeId="6fb8-4540-ed80-9332">Armour (1)</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="ee77-092b-ceea-c12f" name="Armour" hidden="false" targetId="8615-1c63-2242-5746" type="rule"/>
</infoLinks>
</infoGroup>
</infoGroups>
<categoryLinks>
<categoryLink id="ef87-5d8d-0a1f-bf6a" name="Faction Profile Cards" hidden="false" targetId="0ca8-2040-37f2-a1e0" primary="true"/>
<categoryLink id="c5fe-7145-f321-9b82" name="Ashigaru" hidden="false" targetId="f434-17e6-174c-b4f6" primary="false"/>
<categoryLink id="b2bb-01d5-f9c0-c620" name="Unique" hidden="false" targetId="afd4-8041-e359-223c" primary="false"/>
<categoryLink id="1005-2e5f-7807-9f56" name="Armour" hidden="false" targetId="f322-702a-ff62-b37e" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="f35f-4960-b97c-1b77" name="Enhancements" hidden="false" collective="false" import="true" targetId="c1b7-60f5-a313-5345" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="8"/>
</costs>
</selectionEntry>
<selectionEntry id="fe67-b11d-5cb3-4c6a" name="Ito Kenzo" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="9ca6-7a62-7b68-47a2" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="195e-f520-2096-04ce" type="max"/>
</constraints>
<profiles>
<profile id="7744-275d-003c-485f" name="Ito Kenzo" hidden="false" typeId="08e8-3cf2-6d1d-b8f0" typeName="Character Profile">
<characteristics>
<characteristic name="Melee Pool" typeId="eea0-d5a3-2540-a974">4</characteristic>
<characteristic name="Melee Boost" typeId="4d43-9498-6fa0-8277">3</characteristic>
<characteristic name="Ranged Pool" typeId="54f1-7472-e609-b4eb">2</characteristic>
<characteristic name="Ranged Boost" typeId="5454-b765-a65d-8a33"/>
<characteristic name="Move" typeId="91b7-833e-fd8e-a620">5</characteristic>
<characteristic name="Move Boost" typeId="f168-6d2b-e60e-28ac">2</characteristic>
<characteristic name="Ki" typeId="3969-9568-a914-6854">2</characteristic>
<characteristic name="Ki Boost" typeId="5b71-1ed7-9aa7-039c">3</characteristic>
<characteristic name="Ki Cap" typeId="9a7e-38d3-92c5-a672">6</characteristic>
<characteristic name="Wounds" typeId="2ee5-ab93-4a78-ea29">6 OOOOOO</characteristic>
<characteristic name="Size & Base" typeId="6cf9-c5fd-3e3c-b35b">Medium 40mm</characteristic>
</characteristics>
</profile>
</profiles>
<infoGroups>
<infoGroup id="52ec-615a-23c7-bd8c" name="Traits" hidden="false">
<profiles>
<profile id="c6e3-d748-3c85-36da" name="Ito Kenzo" hidden="false" typeId="b175-cf39-0ab9-4d58" typeName="Character Traits">
<characteristics>
<characteristic name="Traits" typeId="6fb8-4540-ed80-9332">Armour (2), Blood of Orochi (1), Jump Up, Prowess [Melee](1)</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="58bd-c3bd-5056-fc0a" name="Armour" hidden="false" targetId="8615-1c63-2242-5746" type="rule"/>
<infoLink id="1e6f-ebbb-dfdd-313d" name="Jump Up" hidden="false" targetId="1575-e12f-4ca3-c557" type="rule"/>
<infoLink id="5adf-e01c-be20-f7ef" name="Indomitable " hidden="false" targetId="3beb-6f28-e7c4-a236" type="rule"/>
<infoLink id="65b7-434f-a0c1-00b2" name="Prowess " hidden="false" targetId="75ef-327a-cd08-a248" type="rule"/>
<infoLink id="d791-c927-7d8b-2a21" name="Blood of Orochi" hidden="false" targetId="7a5a-2e8e-4a81-c48f" type="rule"/>