generated from BSData/TemplateDataRepo
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathLibrary-Feats.cat
7614 lines (7604 loc) · 512 KB
/
Library-Feats.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="b586-d588-5153-3d1d" name="Library-Feats" revision="39" battleScribeVersion="2.03" library="true" gameSystemId="62e4-ab79-1c4c-9ffe" gameSystemRevision="19" xmlns="http://www.battlescribe.net/schema/catalogueSchema" type="catalogue">
<sharedInfoGroups>
<infoGroup id="57e7-9fb3-3c54-8ea8" name="Blessing of the Kami" hidden="false">
<profiles>
<profile id="d6b1-713f-bfbe-4898" name="Blessing of the Kami" hidden="false" typeId="993a-e62a-7922-0ccb" typeName="Ki Feat">
<characteristics>
<characteristic name="Cost" typeId="a126-54d9-0a27-f4b6">2</characteristic>
<characteristic name="Timing" typeId="f8a8-8a3e-ef58-4c61">Simple</characteristic>
<characteristic name="Subject" typeId="4ac8-2bb1-0c84-f088">Target 12"</characteristic>
<characteristic name="Limitation" typeId="6fc9-5d13-2687-b2a5">noBtB</characteristic>
<characteristic name="Description" typeId="f804-b969-00da-2123">Target Friendly Faction, non-Soulless, non-Insignificant model gains a Virtue Token.</characteristic>
</characteristics>
</profile>
</profiles>
</infoGroup>
<infoGroup id="d349-337a-6073-c386" name="Prayer of Purification" hidden="false">
<profiles>
<profile id="b259-9fdc-c3f1-bcf7" name="Prayer of Purification" hidden="false" typeId="993a-e62a-7922-0ccb" typeName="Ki Feat">
<characteristics>
<characteristic name="Cost" typeId="a126-54d9-0a27-f4b6">2</characteristic>
<characteristic name="Timing" typeId="f8a8-8a3e-ef58-4c61">Active</characteristic>
<characteristic name="Subject" typeId="4ac8-2bb1-0c84-f088">Personal</characteristic>
<characteristic name="Limitation" typeId="6fc9-5d13-2687-b2a5"/>
<characteristic name="Description" typeId="f804-b969-00da-2123">When this model uses its Heal trait, instead of Healing Wounds it may remove an equal number of Berserk, Blind, Controlled, Diseased, Fire, Poison, Spirit Block, or Stunned Markers from the Target.</characteristic>
</characteristics>
</profile>
</profiles>
</infoGroup>
<infoGroup id="8223-e606-1996-d686" name="Earthen Rampart Stance" hidden="false">
<profiles>
<profile id="9fbe-241a-f6a2-f82d" name="Earthen Rampart Stance" hidden="false" typeId="993a-e62a-7922-0ccb" typeName="Ki Feat">
<characteristics>
<characteristic name="Cost" typeId="a126-54d9-0a27-f4b6">2</characteristic>
<characteristic name="Timing" typeId="f8a8-8a3e-ef58-4c61">Active</characteristic>
<characteristic name="Subject" typeId="4ac8-2bb1-0c84-f088">Personal</characteristic>
<characteristic name="Limitation" typeId="6fc9-5d13-2687-b2a5"/>
<characteristic name="Description" typeId="f804-b969-00da-2123">This model gains Parry (1) and Friendly models within 2" of this model have Cover until the End Phase or this model Moves.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="d773-25fc-3a1e-3b40" name="Parry" hidden="false" targetId="c7c2-b36e-7952-c79b" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="d699-d6a2-65d3-1885" name="Flame On!" hidden="false">
<profiles>
<profile id="98bb-082f-4da4-33dc" name="Flame On!" hidden="false" typeId="993a-e62a-7922-0ccb" typeName="Ki Feat">
<characteristics>
<characteristic name="Cost" typeId="a126-54d9-0a27-f4b6">2</characteristic>
<characteristic name="Timing" typeId="f8a8-8a3e-ef58-4c61">Instant</characteristic>
<characteristic name="Subject" typeId="4ac8-2bb1-0c84-f088">Personal</characteristic>
<characteristic name="Limitation" typeId="6fc9-5d13-2687-b2a5"/>
<characteristic name="Description" typeId="f804-b969-00da-2123">Until the End Phase, this model's Melee Weapons gain Fire (1/2) and if this model suffers Wounds from a Melee Attack, the Attacking model gains a Fire (1) Marker.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="59f5-aba6-3ff0-91ac" name="Fire" hidden="false" targetId="2422-40b7-254f-f6f1" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="0f07-c345-9af8-1e36" name="Whirlwind Kick" hidden="false">
<profiles>
<profile id="079d-8dde-49c1-df49" name="Whirlwind Kick" hidden="false" typeId="993a-e62a-7922-0ccb" typeName="Ki Feat">
<characteristics>
<characteristic name="Cost" typeId="a126-54d9-0a27-f4b6">3</characteristic>
<characteristic name="Timing" typeId="f8a8-8a3e-ef58-4c61">Active</characteristic>
<characteristic name="Subject" typeId="4ac8-2bb1-0c84-f088">Personal</characteristic>
<characteristic name="Limitation" typeId="6fc9-5d13-2687-b2a5"/>
<characteristic name="Description" typeId="f804-b969-00da-2123">This model gains Indomitable (2) and Split Attack until the End Phase. Add 1 additional Attack die to each exchange when using Split Attack until the End Phase.</characteristic>
</characteristics>
</profile>
</profiles>
</infoGroup>
<infoGroup id="a079-8f6b-646f-8436" name="Body of Oak" hidden="false">
<profiles>
<profile id="b93e-7e0b-a2ec-7d40" name="Body of Oak" hidden="false" typeId="993a-e62a-7922-0ccb" typeName="Ki Feat">
<characteristics>
<characteristic name="Cost" typeId="a126-54d9-0a27-f4b6">X</characteristic>
<characteristic name="Timing" typeId="f8a8-8a3e-ef58-4c61">Active</characteristic>
<characteristic name="Subject" typeId="4ac8-2bb1-0c84-f088">Personal</characteristic>
<characteristic name="Limitation" typeId="6fc9-5d13-2687-b2a5"/>
<characteristic name="Description" typeId="f804-b969-00da-2123">This model gains Armour (X) until the current action is resolved. X cannot be greater than 3.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="b571-0928-3b4b-afb5" name="Armour" hidden="false" targetId="8615-1c63-2242-5746" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="796e-98f5-4b6e-5b7f" name="Fists of Iron" hidden="false">
<profiles>
<profile id="6db9-6740-95b4-b985" name="Fists of Iron" hidden="false" typeId="993a-e62a-7922-0ccb" typeName="Ki Feat">
<characteristics>
<characteristic name="Cost" typeId="a126-54d9-0a27-f4b6">X</characteristic>
<characteristic name="Timing" typeId="f8a8-8a3e-ef58-4c61">Active</characteristic>
<characteristic name="Subject" typeId="4ac8-2bb1-0c84-f088">Personal</characteristic>
<characteristic name="Limitation" typeId="6fc9-5d13-2687-b2a5">OpA</characteristic>
<characteristic name="Description" typeId="f804-b969-00da-2123">This model's Melee Weapons gain +X Melee Strength until the current Melee Exchange is resolved. X cannot be greater than 3.</characteristic>
</characteristics>
</profile>
</profiles>
</infoGroup>
<infoGroup id="b961-56bd-c441-246d" name="Wind Disciple" hidden="false">
<profiles>
<profile id="37cf-53b9-051b-1d8d" name="Wind Disciple" hidden="false" typeId="2f00-4eb0-a8cb-7022" typeName="Unique Effects">
<characteristics>
<characteristic name="Description" typeId="6de4-d067-c2aa-0dc2">When this model declares a Run Action it gains Cloudwalk.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="eaf5-d0d1-4b2e-06d2" name="Cloudwalk" hidden="false" targetId="538c-1266-626b-fcc9" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="ef8e-438b-95e9-69eb" name="Pack Alpha" hidden="false">
<profiles>
<profile id="1cd9-4742-d6f5-cd82" name="Pack Alpha" hidden="false" typeId="993a-e62a-7922-0ccb" typeName="Ki Feat">
<characteristics>
<characteristic name="Cost" typeId="a126-54d9-0a27-f4b6">2</characteristic>
<characteristic name="Timing" typeId="f8a8-8a3e-ef58-4c61">Active</characteristic>
<characteristic name="Subject" typeId="4ac8-2bb1-0c84-f088">Personal</characteristic>
<characteristic name="Limitation" typeId="6fc9-5d13-2687-b2a5"/>
<characteristic name="Description" typeId="f804-b969-00da-2123">This model gains Order [Monkey](3/6") until the End Phase.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="bc7d-a8b7-bded-56de" name="Order" hidden="false" targetId="ed40-ed42-2208-1ea0" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="935d-8ea5-361c-cf86" name="Four Hand Technique" hidden="false">
<profiles>
<profile id="11ae-6f8a-8957-056c" name="Four Hand Technique" hidden="false" typeId="993a-e62a-7922-0ccb" typeName="Ki Feat">
<characteristics>
<characteristic name="Cost" typeId="a126-54d9-0a27-f4b6">2</characteristic>
<characteristic name="Timing" typeId="f8a8-8a3e-ef58-4c61">Instant</characteristic>
<characteristic name="Subject" typeId="4ac8-2bb1-0c84-f088">Personal</characteristic>
<characteristic name="Limitation" typeId="6fc9-5d13-2687-b2a5"/>
<characteristic name="Description" typeId="f804-b969-00da-2123">This model gains Throw Attack (0) and Throw Defence (0) until the end of the current activation.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="9491-dffd-0604-0234" name="Throw Attack" hidden="false" targetId="e4a9-1967-fb91-ce07" type="rule"/>
<infoLink id="43dc-165f-5203-69f4" name="Throw Defence" hidden="false" targetId="81f2-67a9-c905-7a41" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="a344-9f74-cfee-6260" name="Vivacity" hidden="false">
<profiles>
<profile id="85c8-ba1a-911c-1e8d" name="Vivacity" hidden="false" typeId="993a-e62a-7922-0ccb" typeName="Ki Feat">
<characteristics>
<characteristic name="Cost" typeId="a126-54d9-0a27-f4b6">3</characteristic>
<characteristic name="Timing" typeId="f8a8-8a3e-ef58-4c61">Active</characteristic>
<characteristic name="Subject" typeId="4ac8-2bb1-0c84-f088">-</characteristic>
<characteristic name="Limitation" typeId="6fc9-5d13-2687-b2a5"/>
<characteristic name="Description" typeId="f804-b969-00da-2123">Add an activation counter to This Model's Card.</characteristic>
</characteristics>
</profile>
</profiles>
</infoGroup>
<infoGroup id="0e86-4c99-9d3a-1bd0" name="Aura of Serenity" hidden="false">
<profiles>
<profile id="df9f-c346-b186-1bc9" name="Aura of Serenity" hidden="false" typeId="993a-e62a-7922-0ccb" typeName="Ki Feat">
<characteristics>
<characteristic name="Cost" typeId="a126-54d9-0a27-f4b6">X</characteristic>
<characteristic name="Timing" typeId="f8a8-8a3e-ef58-4c61">Complex</characteristic>
<characteristic name="Subject" typeId="4ac8-2bb1-0c84-f088">Aura X"</characteristic>
<characteristic name="Limitation" typeId="6fc9-5d13-2687-b2a5">noBtB, OpG</characteristic>
<characteristic name="Description" typeId="f804-b969-00da-2123">All non-Soulless models in the Aura or in BtB with a model in the Aura lose Aggressive, may not place dice in Attack, use Special Defences during Melee Exchanges, Target Enemy models with Ki Feats or move through the Aura with a Charge or Run Action.</characteristic>
</characteristics>
</profile>
</profiles>
</infoGroup>
<infoGroup id="1504-535b-77cd-6bb8" name="Contemplate Existence" hidden="false">
<profiles>
<profile id="ac0b-2883-e8ae-f0fe" name="Contemplate Existence" hidden="false" typeId="993a-e62a-7922-0ccb" typeName="Ki Feat">
<characteristics>
<characteristic name="Cost" typeId="a126-54d9-0a27-f4b6">4</characteristic>
<characteristic name="Timing" typeId="f8a8-8a3e-ef58-4c61">Simple</characteristic>
<characteristic name="Subject" typeId="4ac8-2bb1-0c84-f088">Target 12", Opposed Ki</characteristic>
<characteristic name="Limitation" typeId="6fc9-5d13-2687-b2a5">noBtB, OpT</characteristic>
<characteristic name="Description" typeId="f804-b969-00da-2123">Remove all Activation Counters from the Target.</characteristic>
</characteristics>
</profile>
</profiles>
</infoGroup>
<infoGroup id="8c4e-16b8-21f6-a038" name="Divert Energy" hidden="false">
<profiles>
<profile id="7683-1855-c76f-ac7e" name="Divert Energy" hidden="false" typeId="993a-e62a-7922-0ccb" typeName="Ki Feat">
<characteristics>
<characteristic name="Cost" typeId="a126-54d9-0a27-f4b6">2</characteristic>
<characteristic name="Timing" typeId="f8a8-8a3e-ef58-4c61">Instant</characteristic>
<characteristic name="Subject" typeId="4ac8-2bb1-0c84-f088">Personal</characteristic>
<characteristic name="Limitation" typeId="6fc9-5d13-2687-b2a5"/>
<characteristic name="Description" typeId="f804-b969-00da-2123">Until the End Phase, when this model would roll Damage for a Melee attack, it may instead inflict 1 Wound (Ignoring Tough) and Heal 1 Wound or remove 1 Ki Token from the Enemy model and gain that Ki Token.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="872a-5bc5-7a29-d8d5" name="Heal" hidden="false" targetId="bd98-52d2-3a66-08e7" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="b7ec-2126-ed52-41cf" name="Foresight" hidden="false">
<profiles>
<profile id="ce14-c7b0-8678-7269" name="Foresight" hidden="false" typeId="993a-e62a-7922-0ccb" typeName="Ki Feat">
<characteristics>
<characteristic name="Cost" typeId="a126-54d9-0a27-f4b6">4</characteristic>
<characteristic name="Timing" typeId="f8a8-8a3e-ef58-4c61">Instant</characteristic>
<characteristic name="Subject" typeId="4ac8-2bb1-0c84-f088">Pulse 3"</characteristic>
<characteristic name="Limitation" typeId="6fc9-5d13-2687-b2a5"/>
<characteristic name="Description" typeId="f804-b969-00da-2123">After the dice for a Melee Exchange in the Pulse have been rolled and final results determined, you may reallocate Melee dice, choose a different Special Attack or Defence and both players reroll. The Opponent must keep the same dice allocation and Special Attack or Defence. Any Ki Feats used are still in effect.</characteristic>
</characteristics>
</profile>
</profiles>
</infoGroup>
<infoGroup id="3630-aa65-aa57-08c3" name="Time's Favour" hidden="false">
<profiles>
<profile id="0df5-820a-8ade-6052" name="Time's Favour" hidden="false" typeId="993a-e62a-7922-0ccb" typeName="Ki Feat">
<characteristics>
<characteristic name="Cost" typeId="a126-54d9-0a27-f4b6">3</characteristic>
<characteristic name="Timing" typeId="f8a8-8a3e-ef58-4c61">Active</characteristic>
<characteristic name="Subject" typeId="4ac8-2bb1-0c84-f088">Pulse 3"</characteristic>
<characteristic name="Limitation" typeId="6fc9-5d13-2687-b2a5"/>
<characteristic name="Description" typeId="f804-b969-00da-2123">Enemy models in the Pulse gain Slow until the current action is resolved.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="9b0c-c8e9-b912-6cda" name="Slow" hidden="false" targetId="f1c3-4a84-c616-23cd" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="8cb6-cc29-10a0-1385" name="Wasp Punch" hidden="false">
<profiles>
<profile id="dd06-2c80-9f2b-bee5" name="Wasp Punch" hidden="false" typeId="993a-e62a-7922-0ccb" typeName="Ki Feat">
<characteristics>
<characteristic name="Cost" typeId="a126-54d9-0a27-f4b6">2</characteristic>
<characteristic name="Timing" typeId="f8a8-8a3e-ef58-4c61">Instant</characteristic>
<characteristic name="Subject" typeId="4ac8-2bb1-0c84-f088">Personal</characteristic>
<characteristic name="Limitation" typeId="6fc9-5d13-2687-b2a5"/>
<characteristic name="Description" typeId="f804-b969-00da-2123">This model gains Strong until the end of the current Melee Exchange.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="fd6a-5477-2314-4354" name="Strong" hidden="false" targetId="00b5-3637-d48a-807e" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="f7ea-0af5-bdeb-e054" name="Crashing Wave Strike" hidden="false">
<profiles>
<profile id="8e0a-c08c-ce76-0fdb" name="Crashing Wave Strike" hidden="false" typeId="993a-e62a-7922-0ccb" typeName="Ki Feat">
<characteristics>
<characteristic name="Cost" typeId="a126-54d9-0a27-f4b6">4</characteristic>
<characteristic name="Timing" typeId="f8a8-8a3e-ef58-4c61">Active</characteristic>
<characteristic name="Subject" typeId="4ac8-2bb1-0c84-f088">Personal</characteristic>
<characteristic name="Limitation" typeId="6fc9-5d13-2687-b2a5"/>
<characteristic name="Description" typeId="f804-b969-00da-2123">This model’s Melee Weapons gain Unblockable (1) until the current action is resolved.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="1427-5d72-1e09-4b5a" name="Unblockable" hidden="false" targetId="964b-62c9-4f94-bed7" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="6ddc-b59c-6061-5a28" name="Faith" hidden="false">
<profiles>
<profile id="1c1f-0194-3b9a-2fe2" name="Faith" hidden="false" typeId="993a-e62a-7922-0ccb" typeName="Ki Feat">
<characteristics>
<characteristic name="Cost" typeId="a126-54d9-0a27-f4b6">2</characteristic>
<characteristic name="Timing" typeId="f8a8-8a3e-ef58-4c61">Active</characteristic>
<characteristic name="Subject" typeId="4ac8-2bb1-0c84-f088">Target 6"</characteristic>
<characteristic name="Limitation" typeId="6fc9-5d13-2687-b2a5"/>
<characteristic name="Description" typeId="f804-b969-00da-2123">Target Villager model reduces the cost of all Ki Feats by 1 until the current action is resolved.</characteristic>
</characteristics>
</profile>
</profiles>
</infoGroup>
<infoGroup id="65b5-f54d-03ee-ecdb" name="Wall of Water" hidden="false">
<profiles>
<profile id="417c-73e7-b978-b920" name="Wall of Water" hidden="false" typeId="993a-e62a-7922-0ccb" typeName="Ki Feat">
<characteristics>
<characteristic name="Cost" typeId="a126-54d9-0a27-f4b6">1</characteristic>
<characteristic name="Timing" typeId="f8a8-8a3e-ef58-4c61">Simple</characteristic>
<characteristic name="Subject" typeId="4ac8-2bb1-0c84-f088">Aura 3"</characteristic>
<characteristic name="Limitation" typeId="6fc9-5d13-2687-b2a5">noBtB</characteristic>
<characteristic name="Description" typeId="f804-b969-00da-2123">Enemy models treat the Aura as [Difficult, Obscuring, Small] terrain and must pass a Size Challenge Test (6) to enter BtB with this model; if the Test is failed that model may not enter BtB with this model this activation..</characteristic>
</characteristics>
</profile>
</profiles>
</infoGroup>
<infoGroup id="2506-a61b-ee09-b448" name="Dance of Dragons" hidden="false">
<profiles>
<profile id="62e9-bd52-f357-1b15" name="Dance of Dragons" hidden="false" typeId="6371-e768-6bfa-fd6a" typeName="Ki Feat (Ranged Weapon)">
<characteristics>
<characteristic name="Cost" typeId="54ca-6f96-9414-922d">3</characteristic>
<characteristic name="Timing" typeId="ae42-2385-926b-5832">Active</characteristic>
<characteristic name="Subject" typeId="ce1f-d396-2925-d8f2">Personal</characteristic>
<characteristic name="Limitation" typeId="ec4e-c810-ec03-911e"/>
<characteristic name="Description" typeId="23c3-f856-2f53-8b40">Until the activation is complete, this model gains the following Ranged Attack.</characteristic>
<characteristic name="Ranged Weapon Strength" typeId="d884-fd57-01ee-d00f">+2</characteristic>
<characteristic name="Range Bands" typeId="6829-9f3d-cf99-2fa0">2/4/6</characteristic>
<characteristic name="Traits" typeId="07b8-50a5-db92-011c">Fire (2/1), Lightweight</characteristic>
<characteristic name="Specials" typeId="ff17-06fe-f0b0-9031"/>
<characteristic name="Unique Effects" typeId="2266-f1e7-8a6d-fd0f"/>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="8ee7-8c67-32a2-c541" name="Fire" hidden="false" targetId="2422-40b7-254f-f6f1" type="rule"/>
<infoLink id="2f5b-1dee-7deb-c8c7" name="Lightweight" hidden="false" targetId="c75c-7124-2b1f-a4d9" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="3e7f-72a5-2db2-4109" name="Regrowth" hidden="false">
<profiles>
<profile id="4c0c-c126-82f8-2b7b" name="Regrowth" hidden="false" typeId="993a-e62a-7922-0ccb" typeName="Ki Feat">
<characteristics>
<characteristic name="Cost" typeId="a126-54d9-0a27-f4b6">1</characteristic>
<characteristic name="Timing" typeId="f8a8-8a3e-ef58-4c61">Instant</characteristic>
<characteristic name="Subject" typeId="4ac8-2bb1-0c84-f088">Personal</characteristic>
<characteristic name="Limitation" typeId="6fc9-5d13-2687-b2a5"/>
<characteristic name="Description" typeId="f804-b969-00da-2123">This model gains Regenerate (2) until the End Phase.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="518c-08cd-0158-f7ee" name="Regenerate" hidden="false" targetId="74c4-617e-8405-3e46" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="77b2-89f1-fc47-fe40" name="Resolve of Rock" hidden="false">
<profiles>
<profile id="9136-4c93-c3c9-aa57" name="Resolve of Rock" hidden="false" typeId="993a-e62a-7922-0ccb" typeName="Ki Feat">
<characteristics>
<characteristic name="Cost" typeId="a126-54d9-0a27-f4b6">3</characteristic>
<characteristic name="Timing" typeId="f8a8-8a3e-ef58-4c61">Active</characteristic>
<characteristic name="Subject" typeId="4ac8-2bb1-0c84-f088">Personal</characteristic>
<characteristic name="Limitation" typeId="6fc9-5d13-2687-b2a5"/>
<characteristic name="Description" typeId="f804-b969-00da-2123">This model gains Tireless and Construct until the End Phase.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="20a5-f79c-07dc-8143" name="Tireless" hidden="false" targetId="5829-35f3-dd19-1290" type="rule"/>
<infoLink id="7362-2df0-054e-9dc6" name="Construct" hidden="false" targetId="34aa-b169-38cd-9b2a" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="de18-bdc3-a3e1-d023" name="Stubbornness of Steel" hidden="false">
<profiles>
<profile id="45ac-889c-d7a3-c139" name="Stubbornness of Steel" hidden="false" typeId="993a-e62a-7922-0ccb" typeName="Ki Feat">
<characteristics>
<characteristic name="Cost" typeId="a126-54d9-0a27-f4b6">3</characteristic>
<characteristic name="Timing" typeId="f8a8-8a3e-ef58-4c61">Active</characteristic>
<characteristic name="Subject" typeId="4ac8-2bb1-0c84-f088">Personal</characteristic>
<characteristic name="Limitation" typeId="6fc9-5d13-2687-b2a5"/>
<characteristic name="Description" typeId="f804-b969-00da-2123">This model gains Rise (3) until the End Phase.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="9194-ac71-4ab0-b556" name="Rise" hidden="false" targetId="f774-9156-2996-f5c6" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="2207-4bca-6daa-0cf2" name="Inspiring Shōmyō" hidden="false">
<profiles>
<profile id="8eee-3a1c-3dbc-c5ff" name="Inspiring Shōmyō" hidden="false" typeId="993a-e62a-7922-0ccb" typeName="Ki Feat">
<characteristics>
<characteristic name="Cost" typeId="a126-54d9-0a27-f4b6">3</characteristic>
<characteristic name="Timing" typeId="f8a8-8a3e-ef58-4c61">Simple</characteristic>
<characteristic name="Subject" typeId="4ac8-2bb1-0c84-f088">Aura 6"</characteristic>
<characteristic name="Limitation" typeId="6fc9-5d13-2687-b2a5">noWalk, noBtB</characteristic>
<characteristic name="Description" typeId="f804-b969-00da-2123">This model gains Leadership [Friendly](2/6") and Friendly models in the Aura can reroll Ki Tests and Fear Tests.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="0f9a-88e1-f2b5-e85a" name="Leadership" hidden="false" targetId="8ec4-bfdc-8c03-f631" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="a32d-0f06-1ab7-e9b1" name="Frozen Mountain Fist" hidden="false">
<profiles>
<profile id="efef-21ba-8591-c994" name="Frozen Mountain Fist" hidden="false" typeId="993a-e62a-7922-0ccb" typeName="Ki Feat">
<characteristics>
<characteristic name="Cost" typeId="a126-54d9-0a27-f4b6">2</characteristic>
<characteristic name="Timing" typeId="f8a8-8a3e-ef58-4c61">Instant</characteristic>
<characteristic name="Subject" typeId="4ac8-2bb1-0c84-f088">Personal</characteristic>
<characteristic name="Limitation" typeId="6fc9-5d13-2687-b2a5"/>
<characteristic name="Description" typeId="f804-b969-00da-2123">This model’s Melee Weapon gains Sharp (1).
After conducting re-rolls for a Melee Exchange, you may remove this model’s highest Defence dice and then add an Attack dice of the same value before determining final results.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="b1f6-e2a3-aa71-cd56" name="Sharp " hidden="false" targetId="6092-9fb5-5196-d1eb" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="fa8b-1bed-86b7-f3f4" name="Iron Arm" hidden="false">
<profiles>
<profile id="da40-d8c4-66f8-1aab" name="Iron Arm" hidden="false" typeId="993a-e62a-7922-0ccb" typeName="Ki Feat">
<characteristics>
<characteristic name="Cost" typeId="a126-54d9-0a27-f4b6">3</characteristic>
<characteristic name="Timing" typeId="f8a8-8a3e-ef58-4c61">Instant</characteristic>
<characteristic name="Subject" typeId="4ac8-2bb1-0c84-f088">Personal</characteristic>
<characteristic name="Limitation" typeId="6fc9-5d13-2687-b2a5"/>
<characteristic name="Description" typeId="f804-b969-00da-2123">This model gains Parry (1) and Tough (1) until the end of the current activation.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="0e98-f6a8-3ede-ec28" name="Parry" hidden="false" targetId="c7c2-b36e-7952-c79b" type="rule"/>
<infoLink id="e4a7-5432-eea7-6aef" name="Tough" hidden="false" targetId="5613-a6cf-495a-229f" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="e8f5-ec23-56e2-f58b" name="Flame On" hidden="false">
<profiles>
<profile id="0ff5-8e45-5b3a-d6ee" name="Flame On" hidden="false" typeId="993a-e62a-7922-0ccb" typeName="Ki Feat">
<characteristics>
<characteristic name="Cost" typeId="a126-54d9-0a27-f4b6">2</characteristic>
<characteristic name="Timing" typeId="f8a8-8a3e-ef58-4c61">Instant</characteristic>
<characteristic name="Subject" typeId="4ac8-2bb1-0c84-f088">Personal</characteristic>
<characteristic name="Limitation" typeId="6fc9-5d13-2687-b2a5"/>
<characteristic name="Description" typeId="f804-b969-00da-2123">Until the End Phase, this model’s Melee Attack gains the Fire (1/1) trait and when this model suffers Wounds from a Melee Attack, the Attacking model gains a Fire (1) Marker.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="b5fa-9e64-d8ed-b35d" name="Fire" hidden="false" targetId="2422-40b7-254f-f6f1" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="e69b-e154-a44b-a1a1" name="Pick Pocket" hidden="false">
<profiles>
<profile id="3c46-0a3d-bda2-c0ea" name="Pick Pocket" hidden="false" typeId="993a-e62a-7922-0ccb" typeName="Ki Feat">
<characteristics>
<characteristic name="Cost" typeId="a126-54d9-0a27-f4b6">1</characteristic>
<characteristic name="Timing" typeId="f8a8-8a3e-ef58-4c61">Simple</characteristic>
<characteristic name="Subject" typeId="4ac8-2bb1-0c84-f088">Target 8"</characteristic>
<characteristic name="Limitation" typeId="6fc9-5d13-2687-b2a5">noBtB</characteristic>
<characteristic name="Description" typeId="f804-b969-00da-2123">Target Friendly Urchin that is within 2" of an Enemy model. If the Enemy model has an enhancement - equipment card, transfer it to Fai-ginn’s card.</characteristic>
</characteristics>
</profile>
</profiles>
</infoGroup>
<infoGroup id="e1ba-2b8d-4483-ae5f" name="Subtle Dominance" hidden="false">
<profiles>
<profile id="224d-19b2-adea-82cc" name="Subtle Dominance" hidden="false" typeId="993a-e62a-7922-0ccb" typeName="Ki Feat">
<characteristics>
<characteristic name="Cost" typeId="a126-54d9-0a27-f4b6">1</characteristic>
<characteristic name="Timing" typeId="f8a8-8a3e-ef58-4c61">Instant</characteristic>
<characteristic name="Subject" typeId="4ac8-2bb1-0c84-f088">Target 8"</characteristic>
<characteristic name="Limitation" typeId="6fc9-5d13-2687-b2a5">OpT</characteristic>
<characteristic name="Description" typeId="f804-b969-00da-2123">When Target model declares an action it must make a Ki Challenge Test (5), if it fails its activation ends and it loses an Activation Counter.</characteristic>
</characteristics>
</profile>
</profiles>
</infoGroup>
<infoGroup id="d2e3-e059-32ba-8374" name="Kiss of the Rose" hidden="false">
<profiles>
<profile id="eba5-3419-c813-6649" name="Kiss of the Rose" hidden="false" typeId="993a-e62a-7922-0ccb" typeName="Ki Feat">
<characteristics>
<characteristic name="Cost" typeId="a126-54d9-0a27-f4b6">1</characteristic>
<characteristic name="Timing" typeId="f8a8-8a3e-ef58-4c61">Instant</characteristic>
<characteristic name="Subject" typeId="4ac8-2bb1-0c84-f088">Target BtB</characteristic>
<characteristic name="Limitation" typeId="6fc9-5d13-2687-b2a5">OpT</characteristic>
<characteristic name="Description" typeId="f804-b969-00da-2123">After an Enemy model’s activation in which it enters BtB with this model, that Enemy model gains a Control Marker.
No Melee Exchange takes place, this model does not lose an Activation Counter.</characteristic>
</characteristics>
</profile>
</profiles>
</infoGroup>
<infoGroup id="a65f-41e1-30f7-0903" name="Fortune's Favour" hidden="false">
<profiles>
<profile id="d7dd-aa51-59ce-ede3" name="Fortune's Favour" hidden="false" typeId="993a-e62a-7922-0ccb" typeName="Ki Feat">
<characteristics>
<characteristic name="Cost" typeId="a126-54d9-0a27-f4b6">1</characteristic>
<characteristic name="Timing" typeId="f8a8-8a3e-ef58-4c61">Active</characteristic>
<characteristic name="Subject" typeId="4ac8-2bb1-0c84-f088">Aura 8"</characteristic>
<characteristic name="Limitation" typeId="6fc9-5d13-2687-b2a5"/>
<characteristic name="Description" typeId="f804-b969-00da-2123">This model may spend X Ki Tokens to reroll X dice rolled for a test by a model within the Aura, before the final result of the test is determined.
Each dice can only be rerolled once as a result of this Ki Feat.</characteristic>
</characteristics>
</profile>
</profiles>
</infoGroup>
<infoGroup id="b016-20ab-e914-0661" name="Cheat Fate" hidden="false">
<profiles>
<profile id="d92d-905b-3a40-c609" name="Cheat Fate" hidden="false" typeId="993a-e62a-7922-0ccb" typeName="Ki Feat">
<characteristics>
<characteristic name="Cost" typeId="a126-54d9-0a27-f4b6">X</characteristic>
<characteristic name="Timing" typeId="f8a8-8a3e-ef58-4c61">Instant</characteristic>
<characteristic name="Subject" typeId="4ac8-2bb1-0c84-f088">Pulse 6"</characteristic>
<characteristic name="Limitation" typeId="6fc9-5d13-2687-b2a5"/>
<characteristic name="Description" typeId="f804-b969-00da-2123">Before a Friendly model would roll a dice for any type of test, spend X. Remove one dice that would be rolled for the test and after other dice have been rolled for the test add a dice with the value of X+1 to the test before determining the final result. X cannot be greater than 5.</characteristic>
</characteristics>
</profile>
</profiles>
</infoGroup>
<infoGroup id="8735-ea47-0733-d4e1" name="Misdirection" hidden="false">
<profiles>
<profile id="5b25-7898-9fd2-79f6" name="Misdirection" hidden="false" typeId="993a-e62a-7922-0ccb" typeName="Ki Feat">
<characteristics>
<characteristic name="Cost" typeId="a126-54d9-0a27-f4b6">2</characteristic>
<characteristic name="Timing" typeId="f8a8-8a3e-ef58-4c61">Simple</characteristic>
<characteristic name="Subject" typeId="4ac8-2bb1-0c84-f088">Target 6"</characteristic>
<characteristic name="Limitation" typeId="6fc9-5d13-2687-b2a5"/>
<characteristic name="Description" typeId="f804-b969-00da-2123">Target model has no ZoC and models may choose not to be considered in BtB with it when declaring and performing their actions.</characteristic>
</characteristics>
</profile>
</profiles>
</infoGroup>
<infoGroup id="4aed-176e-57b0-19be" name="Tax" hidden="false">
<profiles>
<profile id="f005-363d-eecf-2f47" name="Tax" hidden="false" typeId="993a-e62a-7922-0ccb" typeName="Ki Feat">
<characteristics>
<characteristic name="Cost" typeId="a126-54d9-0a27-f4b6">2</characteristic>
<characteristic name="Timing" typeId="f8a8-8a3e-ef58-4c61">Active</characteristic>
<characteristic name="Subject" typeId="4ac8-2bb1-0c84-f088">Aura 10"</characteristic>
<characteristic name="Limitation" typeId="6fc9-5d13-2687-b2a5">noBtB</characteristic>
<characteristic name="Description" typeId="f804-b969-00da-2123">When an Enemy model within the Aura’s area of effect uses a Ki Feat or Ki Boost, the cost in Ki Tokens is increased by 1, and this model gains 1 Ki Token.</characteristic>
</characteristics>
</profile>
</profiles>
</infoGroup>
<infoGroup id="605a-39b4-1ee6-9471" name="Trade" hidden="false">
<profiles>
<profile id="467b-cb3c-c779-c5fc" name="Trade" hidden="false" typeId="993a-e62a-7922-0ccb" typeName="Ki Feat">
<characteristics>
<characteristic name="Cost" typeId="a126-54d9-0a27-f4b6">1</characteristic>
<characteristic name="Timing" typeId="f8a8-8a3e-ef58-4c61">Simple</characteristic>
<characteristic name="Subject" typeId="4ac8-2bb1-0c84-f088">Personal</characteristic>
<characteristic name="Limitation" typeId="6fc9-5d13-2687-b2a5">noBtB</characteristic>
<characteristic name="Description" typeId="f804-b969-00da-2123">This model gains Channel (10/8") and Leech (10/8") until the End Phase.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="2f60-a223-ecc0-b957" name="Channel" hidden="false" targetId="69af-3098-e21e-7734" type="rule"/>
<infoLink id="d886-bfe8-18f8-8a07" name="Leech" hidden="false" targetId="bab1-710b-4f90-7c2f" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="b918-07be-8771-bee3" name="Fumidashi" hidden="false">
<profiles>
<profile id="8b62-0c0f-9552-1ae1" name="Fumidashi" hidden="false" typeId="993a-e62a-7922-0ccb" typeName="Ki Feat">
<characteristics>
<characteristic name="Cost" typeId="a126-54d9-0a27-f4b6">2</characteristic>
<characteristic name="Timing" typeId="f8a8-8a3e-ef58-4c61">Simple</characteristic>
<characteristic name="Subject" typeId="4ac8-2bb1-0c84-f088">Aura 6"</characteristic>
<characteristic name="Limitation" typeId="6fc9-5d13-2687-b2a5">noBtB, OpG</characteristic>
<characteristic name="Description" typeId="f804-b969-00da-2123">Choose a model completely within a Scenario Zone. That model does not count as being in the zone when calculating Zone Control this turn.</characteristic>
</characteristics>
</profile>
</profiles>
</infoGroup>
<infoGroup id="34a0-c698-dc19-a55e" name="Kinjite" hidden="false">
<profiles>
<profile id="b656-d85f-d246-6a10" name="Kinjite" hidden="false" typeId="993a-e62a-7922-0ccb" typeName="Ki Feat">
<characteristics>
<characteristic name="Cost" typeId="a126-54d9-0a27-f4b6">2</characteristic>
<characteristic name="Timing" typeId="f8a8-8a3e-ef58-4c61">Simple</characteristic>
<characteristic name="Subject" typeId="4ac8-2bb1-0c84-f088">Aura 6"</characteristic>
<characteristic name="Limitation" typeId="6fc9-5d13-2687-b2a5">noBtB</characteristic>
<characteristic name="Description" typeId="f804-b969-00da-2123">Choose any Special Attack or Defence. Models within the Aura may not declare use of that Special Ability.</characteristic>
</characteristics>
</profile>
</profiles>
</infoGroup>
<infoGroup id="36a3-fd78-c4ff-fc32" name="Madamada" hidden="false">
<profiles>
<profile id="1838-92af-7f3a-b1c8" name="Madamada" hidden="false" typeId="993a-e62a-7922-0ccb" typeName="Ki Feat">
<characteristics>
<characteristic name="Cost" typeId="a126-54d9-0a27-f4b6">2</characteristic>
<characteristic name="Timing" typeId="f8a8-8a3e-ef58-4c61">Instant</characteristic>
<characteristic name="Subject" typeId="4ac8-2bb1-0c84-f088">Target 6"</characteristic>
<characteristic name="Limitation" typeId="6fc9-5d13-2687-b2a5">noBtB</characteristic>
<characteristic name="Description" typeId="f804-b969-00da-2123">When an Enemy model Moves, in its own activation, into BtB with Target Friendly model, after its Move is complete, Move the Enemy model directly away from the Friendly model until it leaves its ZoC.</characteristic>
</characteristics>
</profile>
</profiles>
</infoGroup>
<infoGroup id="b003-d96e-7b56-c016" name="Lay Makibishi" hidden="false">
<profiles>
<profile id="da13-2ffe-927a-95dd" name="Lay Makibishi" hidden="false" typeId="993a-e62a-7922-0ccb" typeName="Ki Feat">
<characteristics>
<characteristic name="Cost" typeId="a126-54d9-0a27-f4b6">1</characteristic>
<characteristic name="Timing" typeId="f8a8-8a3e-ef58-4c61">Simple</characteristic>
<characteristic name="Subject" typeId="4ac8-2bb1-0c84-f088">Special</characteristic>
<characteristic name="Limitation" typeId="6fc9-5d13-2687-b2a5">noBtB, OpG</characteristic>
<characteristic name="Description" typeId="f804-b969-00da-2123">Deploy a Makibishi terrain element template in BtB with this model.
Whenever a model without Cloudwalk or Intangible moves into, or starts its movement within the Makibishi terrain element, it must make a Move Challenge Test (8) if it is performing a Charge or Run Action, or Move Challenge Test (7) otherwise.
If unsuccessful the model’s movement and activation immediately ends.</characteristic>
</characteristics>
</profile>
</profiles>
</infoGroup>
<infoGroup id="abce-ee1a-64a4-8594" name="Promo" hidden="false">
<profiles>
<profile id="ae3b-73a0-8597-57d0" name="Promo" hidden="false" typeId="993a-e62a-7922-0ccb" typeName="Ki Feat">
<characteristics>
<characteristic name="Cost" typeId="a126-54d9-0a27-f4b6">2</characteristic>
<characteristic name="Timing" typeId="f8a8-8a3e-ef58-4c61">Instant</characteristic>
<characteristic name="Subject" typeId="4ac8-2bb1-0c84-f088">Target 8" Opposed Ki</characteristic>
<characteristic name="Limitation" typeId="6fc9-5d13-2687-b2a5"/>
<characteristic name="Description" typeId="f804-b969-00da-2123">Whenever Target model makes a Fear Test against a Buto model, the Buto gains Terror.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="05ea-91a5-9532-f89d" name="Terror" hidden="false" targetId="ad7a-5dea-fee4-fb49" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="7157-536c-a535-ed31" name="Mocking Blow" hidden="false">
<profiles>
<profile id="61dc-b9ed-b023-d30e" name="Mocking Blow" hidden="false" typeId="993a-e62a-7922-0ccb" typeName="Ki Feat">
<characteristics>
<characteristic name="Cost" typeId="a126-54d9-0a27-f4b6">2</characteristic>
<characteristic name="Timing" typeId="f8a8-8a3e-ef58-4c61">Active</characteristic>
<characteristic name="Subject" typeId="4ac8-2bb1-0c84-f088">Personal</characteristic>
<characteristic name="Limitation" typeId="6fc9-5d13-2687-b2a5"/>
<characteristic name="Description" typeId="f804-b969-00da-2123">When this model next deals Damage as a result of a Melee Exchange, the Opposing model gains an Impetuous Marker.</characteristic>
</characteristics>
</profile>
</profiles>
</infoGroup>
<infoGroup id="7aba-c41f-5c7c-474c" name="Here Boy!" hidden="false">
<profiles>
<profile id="f5e7-64c9-9da7-bc7e" name="Here Boy!" hidden="false" typeId="993a-e62a-7922-0ccb" typeName="Ki Feat">
<characteristics>
<characteristic name="Cost" typeId="a126-54d9-0a27-f4b6">2</characteristic>
<characteristic name="Timing" typeId="f8a8-8a3e-ef58-4c61">Active</characteristic>
<characteristic name="Subject" typeId="4ac8-2bb1-0c84-f088">Pulse 12"</characteristic>
<characteristic name="Limitation" typeId="6fc9-5d13-2687-b2a5">OpT</characteristic>
<characteristic name="Description" typeId="f804-b969-00da-2123">Place a Friendly Dog model in the Pulse's area of effect into BtB with this model, but not in BtB with an Enemy model or Enemy ZoC</characteristic>
</characteristics>
</profile>
</profiles>
</infoGroup>
<infoGroup id="bae6-9b07-d5bf-ea82" name="Prayer of Healing" hidden="false">
<profiles>
<profile id="66f8-6c87-bb27-ef5d" name="Prayer of Healing" hidden="false" typeId="993a-e62a-7922-0ccb" typeName="Ki Feat">
<characteristics>
<characteristic name="Cost" typeId="a126-54d9-0a27-f4b6">2</characteristic>
<characteristic name="Timing" typeId="f8a8-8a3e-ef58-4c61">Active</characteristic>
<characteristic name="Subject" typeId="4ac8-2bb1-0c84-f088">Aura 6"</characteristic>
<characteristic name="Limitation" typeId="6fc9-5d13-2687-b2a5">noBtB</characteristic>
<characteristic name="Description" typeId="f804-b969-00da-2123">This model may Target any model within the Aura with its Heal trait.</characteristic>
</characteristics>
</profile>
</profiles>
</infoGroup>
<infoGroup id="8f32-fe38-c07d-9b0e" name="Prayer of Purification" hidden="false">
<profiles>
<profile id="3d0c-1320-546c-d635" name="Prayer of Purification" hidden="false" typeId="993a-e62a-7922-0ccb" typeName="Ki Feat">
<characteristics>
<characteristic name="Cost" typeId="a126-54d9-0a27-f4b6">2</characteristic>
<characteristic name="Timing" typeId="f8a8-8a3e-ef58-4c61">Active</characteristic>
<characteristic name="Subject" typeId="4ac8-2bb1-0c84-f088">Personal</characteristic>
<characteristic name="Limitation" typeId="6fc9-5d13-2687-b2a5">noBtB</characteristic>
<characteristic name="Description" typeId="f804-b969-00da-2123">When this model uses its Heal trait, instead of Healing Wounds it may instead remove an equal number of Berserk, Blind, Controlled, Fire, Poison, Spirit Block, or Stunned Markers from the Target.</characteristic>
</characteristics>
</profile>
</profiles>
</infoGroup>
<infoGroup id="ee1f-cc72-f809-88e8" name="Move It!" hidden="false">
<profiles>
<profile id="723d-41f8-680a-b7d3" name="Move It!" hidden="false" typeId="993a-e62a-7922-0ccb" typeName="Ki Feat">
<characteristics>
<characteristic name="Cost" typeId="a126-54d9-0a27-f4b6">4</characteristic>
<characteristic name="Timing" typeId="f8a8-8a3e-ef58-4c61">Active</characteristic>
<characteristic name="Subject" typeId="4ac8-2bb1-0c84-f088">Pulse 8"</characteristic>
<characteristic name="Limitation" typeId="6fc9-5d13-2687-b2a5"/>
<characteristic name="Description" typeId="f804-b969-00da-2123">This model's Controller chooses up to 3 other Friendly Ashigaru models within the Pulse's area of effect. Those models immediately perform a Walk up to their Move stat in inches.</characteristic>
</characteristics>
</profile>
</profiles>
</infoGroup>
<infoGroup id="6eb7-ed93-2d23-a7fc" name="Sojutsu" hidden="false">
<profiles>
<profile id="bc8e-c185-16cc-b7b6" name="Sojutsu" hidden="false" typeId="993a-e62a-7922-0ccb" typeName="Ki Feat">
<characteristics>
<characteristic name="Cost" typeId="a126-54d9-0a27-f4b6">1</characteristic>
<characteristic name="Timing" typeId="f8a8-8a3e-ef58-4c61">Instant</characteristic>
<characteristic name="Subject" typeId="4ac8-2bb1-0c84-f088">Target 3"</characteristic>
<characteristic name="Limitation" typeId="6fc9-5d13-2687-b2a5"/>
<characteristic name="Description" typeId="f804-b969-00da-2123">Target Friendly Ashigaru gains Co-ordinated Attack [Ashigaru] until the current action is resolved.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="4abf-c4b3-07de-1950" name="Co-ordinated Attack" hidden="false" targetId="2337-7bcc-c1f2-f2bd" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="1222-9d02-e07a-da02" name="Genki" hidden="false">
<profiles>
<profile id="8324-89a9-c6cb-f46f" name="Genki" hidden="false" typeId="993a-e62a-7922-0ccb" typeName="Ki Feat">
<characteristics>
<characteristic name="Cost" typeId="a126-54d9-0a27-f4b6">1</characteristic>
<characteristic name="Timing" typeId="f8a8-8a3e-ef58-4c61">Active</characteristic>
<characteristic name="Subject" typeId="4ac8-2bb1-0c84-f088">Personal</characteristic>
<characteristic name="Limitation" typeId="6fc9-5d13-2687-b2a5"/>
<characteristic name="Description" typeId="f804-b969-00da-2123">This model gains Charging Bonus [Fearless] but loses the Ashigaru Type until the end of the current activation.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="682e-fb6d-2bad-6408" name="Charging Bonus" hidden="false" targetId="d747-f7f2-ea6f-5ceb" type="rule"/>
<infoLink id="7d9b-5863-40cb-ca9c" name="Fearless" hidden="false" targetId="5d6f-1746-9080-aca5" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="2449-3c08-f864-70fa" name="Three Shots Per Minute" hidden="false">
<profiles>
<profile id="11b6-580e-d64c-6d5d" name="Three Shots Per Minute" hidden="false" typeId="993a-e62a-7922-0ccb" typeName="Ki Feat">
<characteristics>
<characteristic name="Cost" typeId="a126-54d9-0a27-f4b6">3</characteristic>
<characteristic name="Timing" typeId="f8a8-8a3e-ef58-4c61">Simple</characteristic>
<characteristic name="Subject" typeId="4ac8-2bb1-0c84-f088">Personal</characteristic>
<characteristic name="Limitation" typeId="6fc9-5d13-2687-b2a5">noWalk, noBtB</characteristic>
<characteristic name="Description" typeId="f804-b969-00da-2123">This model removes all Reload Markers.</characteristic>
</characteristics>
</profile>
</profiles>
</infoGroup>
<infoGroup id="c3e2-b928-359c-7252" name="Force Manipulation" hidden="false">
<profiles>
<profile id="88da-8d42-8add-fd96" name="Force Manipulation" hidden="false" typeId="993a-e62a-7922-0ccb" typeName="Ki Feat">
<characteristics>
<characteristic name="Cost" typeId="a126-54d9-0a27-f4b6">2</characteristic>
<characteristic name="Timing" typeId="f8a8-8a3e-ef58-4c61">Active</characteristic>
<characteristic name="Subject" typeId="4ac8-2bb1-0c84-f088">Personal</characteristic>
<characteristic name="Limitation" typeId="6fc9-5d13-2687-b2a5">OpT</characteristic>
<characteristic name="Description" typeId="f804-b969-00da-2123">When this model declares a Ranged Attack Action choose 1 of the following until the current Ranged Attack Action is resolved:
• Ranged Weapon Range Bands become 4/8/12
• Ranged Strength +1
• This model's Ranged Weapon gains Slam Attack (0)</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="3169-1ba9-9685-c5f9" name="Slam Attack" hidden="false" targetId="5d05-b0ce-d7db-9def" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="4da2-6f5d-9648-3c7c" name="Temporal Barrier" hidden="false">
<profiles>
<profile id="2fe7-d5ec-78ca-7c38" name="Temporal Barrier" hidden="false" typeId="993a-e62a-7922-0ccb" typeName="Ki Feat">
<characteristics>
<characteristic name="Cost" typeId="a126-54d9-0a27-f4b6">2</characteristic>
<characteristic name="Timing" typeId="f8a8-8a3e-ef58-4c61">Active</characteristic>
<characteristic name="Subject" typeId="4ac8-2bb1-0c84-f088">Aura 4"</characteristic>
<characteristic name="Limitation" typeId="6fc9-5d13-2687-b2a5">noBtB</characteristic>
<characteristic name="Description" typeId="f804-b969-00da-2123">While within the Aura, models gain Ranged Defence (2).</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="2479-35f6-c3a2-d342" name="Ranged Defence " hidden="false" targetId="9b8d-9ca9-e25d-3988" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="2118-e66b-a7d6-d87d" name="Time Reversal" hidden="false">
<profiles>
<profile id="5756-b977-24d5-5a03" name="Time Reversal" hidden="false" typeId="993a-e62a-7922-0ccb" typeName="Ki Feat">
<characteristics>
<characteristic name="Cost" typeId="a126-54d9-0a27-f4b6">3</characteristic>
<characteristic name="Timing" typeId="f8a8-8a3e-ef58-4c61">Complex</characteristic>
<characteristic name="Subject" typeId="4ac8-2bb1-0c84-f088">Special</characteristic>
<characteristic name="Limitation" typeId="6fc9-5d13-2687-b2a5">noWalk, noBtB, OpG</characteristic>
<characteristic name="Description" typeId="f804-b969-00da-2123">All other models gain up to 2 Activation Counters to a maximum of 2.</characteristic>
</characteristics>
</profile>
</profiles>
</infoGroup>
<infoGroup id="29df-e8a8-3bbf-0591" name="Time Skip" hidden="false">
<profiles>
<profile id="8d8a-f20c-eb15-b7a6" name="Time Skip" hidden="false" typeId="993a-e62a-7922-0ccb" typeName="Ki Feat">
<characteristics>
<characteristic name="Cost" typeId="a126-54d9-0a27-f4b6">3</characteristic>
<characteristic name="Timing" typeId="f8a8-8a3e-ef58-4c61">Complex</characteristic>
<characteristic name="Subject" typeId="4ac8-2bb1-0c84-f088">Special</characteristic>
<characteristic name="Limitation" typeId="6fc9-5d13-2687-b2a5">noWalk, noBtB, OpG</characteristic>
<characteristic name="Description" typeId="f804-b969-00da-2123">Remove all Activation Counters from the board.</characteristic>
</characteristics>
</profile>
</profiles>
</infoGroup>
<infoGroup id="a08d-5426-e7a3-1ea4" name="Outmanoeuvre" hidden="false">
<profiles>
<profile id="6a50-b2be-1eac-80c2" name="Outmanoeuvre" hidden="false" typeId="993a-e62a-7922-0ccb" typeName="Ki Feat">
<characteristics>
<characteristic name="Cost" typeId="a126-54d9-0a27-f4b6">2</characteristic>
<characteristic name="Timing" typeId="f8a8-8a3e-ef58-4c61">Active</characteristic>
<characteristic name="Subject" typeId="4ac8-2bb1-0c84-f088">Personal</characteristic>
<characteristic name="Limitation" typeId="6fc9-5d13-2687-b2a5"/>
<characteristic name="Description" typeId="f804-b969-00da-2123">When applying Melee Assist penalties, this model inflicts -2 dice rather than -1 until the current Melee Exchange is resolved.</characteristic>
</characteristics>
</profile>
</profiles>
</infoGroup>
<infoGroup id="68e1-0df2-ee7d-84b2" name="Takashi Koryu" hidden="false">
<profiles>
<profile id="0826-43cb-a947-97f1" name="Takashi Koryu" hidden="false" typeId="993a-e62a-7922-0ccb" typeName="Ki Feat">
<characteristics>
<characteristic name="Cost" typeId="a126-54d9-0a27-f4b6">1</characteristic>
<characteristic name="Timing" typeId="f8a8-8a3e-ef58-4c61">Active</characteristic>
<characteristic name="Subject" typeId="4ac8-2bb1-0c84-f088">Personal</characteristic>
<characteristic name="Limitation" typeId="6fc9-5d13-2687-b2a5"/>
<characteristic name="Description" typeId="f804-b969-00da-2123">This model gains Critical Attack (1) until the current Melee Exchange is resolved.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="8bce-1b68-4870-764b" name="Critical Attack" hidden="false" targetId="7ec7-56ae-79e3-423e" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="61df-64f9-eae9-5154" name="Tactical Counsel" hidden="false">
<profiles>
<profile id="8606-b7a6-3dd3-3478" name="Tactical Counsel" hidden="false" typeId="993a-e62a-7922-0ccb" typeName="Ki Feat">
<characteristics>
<characteristic name="Cost" typeId="a126-54d9-0a27-f4b6">1</characteristic>
<characteristic name="Timing" typeId="f8a8-8a3e-ef58-4c61">Instant</characteristic>
<characteristic name="Subject" typeId="4ac8-2bb1-0c84-f088">Special</characteristic>
<characteristic name="Limitation" typeId="6fc9-5d13-2687-b2a5">noBtB</characteristic>
<characteristic name="Description" typeId="f804-b969-00da-2123">This model's Controller can re-roll the Tactical Roll at the start of any turn.</characteristic>
</characteristics>
</profile>
</profiles>
</infoGroup>
<infoGroup id="4b22-363f-6ec5-8c7c" name="Unify" hidden="false">
<profiles>
<profile id="3228-1d2e-6431-9c74" name="Unify" hidden="false" typeId="993a-e62a-7922-0ccb" typeName="Ki Feat">
<characteristics>
<characteristic name="Cost" typeId="a126-54d9-0a27-f4b6">3</characteristic>
<characteristic name="Timing" typeId="f8a8-8a3e-ef58-4c61">Active</characteristic>
<characteristic name="Subject" typeId="4ac8-2bb1-0c84-f088">Target 6"</characteristic>
<characteristic name="Limitation" typeId="6fc9-5d13-2687-b2a5">noBtB</characteristic>
<characteristic name="Description" typeId="f804-b969-00da-2123">Target Friendly model gains Co-ordinated Attack [Friendly] until the End Phase.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="77e8-f662-e4a4-7bef" name="Co-ordinated Attack" hidden="false" targetId="2337-7bcc-c1f2-f2bd" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="d961-5dca-d536-be18" name="Tactical Master" hidden="false">
<profiles>
<profile id="4d9c-6ea9-4d55-d4ca" name="Tactical Master" hidden="false" typeId="993a-e62a-7922-0ccb" typeName="Ki Feat">
<characteristics>
<characteristic name="Cost" typeId="a126-54d9-0a27-f4b6">X</characteristic>
<characteristic name="Timing" typeId="f8a8-8a3e-ef58-4c61">Active</characteristic>
<characteristic name="Subject" typeId="4ac8-2bb1-0c84-f088">Personal</characteristic>
<characteristic name="Limitation" typeId="6fc9-5d13-2687-b2a5">noBtB</characteristic>
<characteristic name="Description" typeId="f804-b969-00da-2123">This model gains Command [Friendly](X/8") until the End Phase.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="3bd7-1ce7-b7bc-b516" name="Command" hidden="false" targetId="1b83-5421-f050-365a" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="b28d-e5c1-6fba-b686" name="Diplomatic Immunity" hidden="false">
<profiles>
<profile id="4da3-1162-d9b4-b7af" name="Diplomatic Immunity" hidden="false" typeId="993a-e62a-7922-0ccb" typeName="Ki Feat">
<characteristics>
<characteristic name="Cost" typeId="a126-54d9-0a27-f4b6">2</characteristic>
<characteristic name="Timing" typeId="f8a8-8a3e-ef58-4c61">Simple</characteristic>
<characteristic name="Subject" typeId="4ac8-2bb1-0c84-f088">Aura BtB</characteristic>
<characteristic name="Limitation" typeId="6fc9-5d13-2687-b2a5">OpG</characteristic>
<characteristic name="Description" typeId="f804-b969-00da-2123">Non-Soulless Enemy models in the Aura and non- Soulless models in BtB with them lose Aggressive, may not place dice in Attack or use Special Defences in a Melee Exchange or Target this model with Ki Feats.</characteristic>
</characteristics>
</profile>
</profiles>
</infoGroup>
<infoGroup id="b195-343e-79f0-95df" name="Enmity" hidden="false">
<profiles>
<profile id="cf99-ccb9-97b7-1493" name="Enmity" hidden="false" typeId="993a-e62a-7922-0ccb" typeName="Ki Feat">
<characteristics>
<characteristic name="Cost" typeId="a126-54d9-0a27-f4b6">2</characteristic>
<characteristic name="Timing" typeId="f8a8-8a3e-ef58-4c61">Active</characteristic>
<characteristic name="Subject" typeId="4ac8-2bb1-0c84-f088">Target 6"</characteristic>
<characteristic name="Limitation" typeId="6fc9-5d13-2687-b2a5"/>
<characteristic name="Description" typeId="f804-b969-00da-2123">Choose a model descriptor. Target Friendly model gains Vengeance [chosen descriptor] until the end of the current activation.</characteristic>
</characteristics>
</profile>
</profiles>
</infoGroup>
<infoGroup id="2fe5-5417-d8e4-7939" name="Outwit" hidden="false">
<profiles>
<profile id="c655-1059-3796-82fa" name="Outwit" hidden="false" typeId="993a-e62a-7922-0ccb" typeName="Ki Feat">
<characteristics>
<characteristic name="Cost" typeId="a126-54d9-0a27-f4b6">2</characteristic>
<characteristic name="Timing" typeId="f8a8-8a3e-ef58-4c61">Instant</characteristic>
<characteristic name="Subject" typeId="4ac8-2bb1-0c84-f088">Target 6"</characteristic>
<characteristic name="Limitation" typeId="6fc9-5d13-2687-b2a5"/>
<characteristic name="Description" typeId="f804-b969-00da-2123">Controller of Target model that just declared a Scenario Action must choose a different actio or may choose another model to activate. That model doesn not lose an Activation Counter if it does not perform an action.</characteristic>
</characteristics>
</profile>
</profiles>
</infoGroup>
<infoGroup id="82ba-65a5-c6dc-fbc5" name="Instructional Swipe" hidden="false">
<profiles>
<profile id="8c82-d6eb-8b9f-4dc3" name="Instructional Swipe" hidden="false" typeId="993a-e62a-7922-0ccb" typeName="Ki Feat">
<characteristics>
<characteristic name="Cost" typeId="a126-54d9-0a27-f4b6">1</characteristic>
<characteristic name="Timing" typeId="f8a8-8a3e-ef58-4c61">Instant</characteristic>
<characteristic name="Subject" typeId="4ac8-2bb1-0c84-f088">Pulse 3"</characteristic>
<characteristic name="Limitation" typeId="6fc9-5d13-2687-b2a5"/>
<characteristic name="Description" typeId="f804-b969-00da-2123">When a Friendly Prefecture model in the Pulse fails a Fear Test; it instead passes that Test and loses one Wound.</characteristic>
</characteristics>
</profile>
</profiles>
</infoGroup>
<infoGroup id="aea6-d243-5d3f-abd2" name="Buki Manipulation" hidden="false">
<profiles>
<profile id="b67f-3c67-004c-9ed3" name="Buki Manipulation" hidden="false" typeId="993a-e62a-7922-0ccb" typeName="Ki Feat">
<characteristics>
<characteristic name="Cost" typeId="a126-54d9-0a27-f4b6">2</characteristic>
<characteristic name="Timing" typeId="f8a8-8a3e-ef58-4c61">Active</characteristic>
<characteristic name="Subject" typeId="4ac8-2bb1-0c84-f088">Personal</characteristic>
<characteristic name="Limitation" typeId="6fc9-5d13-2687-b2a5"/>
<characteristic name="Description" typeId="f804-b969-00da-2123">This model's Buki 23 Weapon gains one of the following until the end of the current Melee Exchange:
• Grapple Attack (1)
• Slam Attack (1)
• Reach
• Reduce the cost of any Special Attacks by 1</characteristic>
</characteristics>
</profile>
</profiles>
</infoGroup>
<infoGroup id="76cd-b349-b4fb-313c" name="Specialist Knowledge" hidden="false">
<profiles>
<profile id="536b-fc64-2101-d2d8" name="Specialist Knowledge" hidden="false" typeId="993a-e62a-7922-0ccb" typeName="Ki Feat">
<characteristics>
<characteristic name="Cost" typeId="a126-54d9-0a27-f4b6">1</characteristic>
<characteristic name="Timing" typeId="f8a8-8a3e-ef58-4c61">Complex</characteristic>
<characteristic name="Subject" typeId="4ac8-2bb1-0c84-f088">Personal</characteristic>
<characteristic name="Limitation" typeId="6fc9-5d13-2687-b2a5">noBtB, OpG</characteristic>
<characteristic name="Description" typeId="f804-b969-00da-2123">A Friendly Samurai or Ashigaru model in BtB gains the Weighted Tetsubo Enhancement card if permitted.</characteristic>
</characteristics>
</profile>
</profiles>
</infoGroup>
<infoGroup id="d032-26d6-1de8-0643" name="Cleansing Flames" hidden="false">
<profiles>
<profile id="1dc2-33a7-eefd-b686" name="Cleansing Flames" hidden="false" typeId="993a-e62a-7922-0ccb" typeName="Ki Feat">
<characteristics>
<characteristic name="Cost" typeId="a126-54d9-0a27-f4b6">3</characteristic>
<characteristic name="Timing" typeId="f8a8-8a3e-ef58-4c61">Complex</characteristic>
<characteristic name="Subject" typeId="4ac8-2bb1-0c84-f088">Pulse 6"</characteristic>
<characteristic name="Limitation" typeId="6fc9-5d13-2687-b2a5"/>
<characteristic name="Description" typeId="f804-b969-00da-2123">Remove all Berserk, Blind, Controlled, Poison, and Spirit Block Markers from models in the Pulse and each model gains a Fire (1) Marker.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="bf98-2dc0-c65f-5e19" name="Fire" hidden="false" targetId="2422-40b7-254f-f6f1" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="0ec4-3389-25a6-8ea1" name="Summon Ice Kami" hidden="false">
<profiles>
<profile id="9937-8390-0114-d8a1" name="Summon Ice Kami" hidden="false" typeId="993a-e62a-7922-0ccb" typeName="Ki Feat">
<characteristics>
<characteristic name="Cost" typeId="a126-54d9-0a27-f4b6">2</characteristic>
<characteristic name="Timing" typeId="f8a8-8a3e-ef58-4c61">Instant</characteristic>
<characteristic name="Subject" typeId="4ac8-2bb1-0c84-f088">Personal</characteristic>
<characteristic name="Limitation" typeId="6fc9-5d13-2687-b2a5"/>
<characteristic name="Description" typeId="f804-b969-00da-2123">Summon a Ronin Kami of Reflection by Replacing this model (this model is removed from play).
(You cannot have more models in play than the card has Wound Tracks).
If this model was in a Melee Exchange, the Kami can neither be damaged nor deal damage this exchange.</characteristic>
</characteristics>
</profile>
</profiles>
</infoGroup>
<infoGroup id="f2ab-ebd5-9a03-2cac" name="Icy Veins" hidden="false">
<profiles>
<profile id="e1c7-ba0e-e815-0e86" name="Icy Veins" hidden="false" typeId="993a-e62a-7922-0ccb" typeName="Ki Feat">
<characteristics>
<characteristic name="Cost" typeId="a126-54d9-0a27-f4b6">2</characteristic>
<characteristic name="Timing" typeId="f8a8-8a3e-ef58-4c61">Active</characteristic>
<characteristic name="Subject" typeId="4ac8-2bb1-0c84-f088">Target 8"</characteristic>
<characteristic name="Limitation" typeId="6fc9-5d13-2687-b2a5"/>
<characteristic name="Description" typeId="f804-b969-00da-2123">Target model gains Fearless, Durable [Ranged], and Slow until the End Phase. If Target is an Enemy, you must succeed in an Opposed Ki Test.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="2704-cb7f-babb-bc83" name="Durable" hidden="false" targetId="3612-7e19-3cb9-72d0" type="rule"/>
<infoLink id="17d8-2686-5e20-26b4" name="Fearless" hidden="false" targetId="5d6f-1746-9080-aca5" type="rule"/>
<infoLink id="26dc-aed9-2bc5-84ad" name="Slow" hidden="false" targetId="f1c3-4a84-c616-23cd" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="cfb0-9811-b7d2-c2c4" name="Conditioning" hidden="false">
<profiles>
<profile id="03b6-6048-db90-ffc0" name="Conditioning" hidden="false" typeId="993a-e62a-7922-0ccb" typeName="Ki Feat">
<characteristics>
<characteristic name="Cost" typeId="a126-54d9-0a27-f4b6">1</characteristic>
<characteristic name="Timing" typeId="f8a8-8a3e-ef58-4c61">Instant</characteristic>
<characteristic name="Subject" typeId="4ac8-2bb1-0c84-f088">Personal</characteristic>
<characteristic name="Limitation" typeId="6fc9-5d13-2687-b2a5"/>
<characteristic name="Description" typeId="f804-b969-00da-2123">This model gains Resistance (2) until the end of the current activation.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="5fb5-8fce-0d5c-6d6f" name="Resistance " hidden="false" targetId="7e3f-9dc3-cacb-469f" type="rule"/>
</infoLinks>
</infoGroup>