Tengu's Shoes

Item ID 22145 Name Tengu's Shoes
Shoes worn by the Tengu.
The shape makes it possible to move faster than you can imagine.
_______________________
MaxHP +3%
MaxSP +3%
MDEF +10
_______________________
Enables the use of Level 1 Cast Cancel.
_______________________
For each Level of Gentle Touch-Cure:
MaxHP +2%
_______________________
For each Level of Gentle Touch-Revitalize:
DEF +30
Decreases damage taken from Demi-Human enemies by 1%.
_______________________
For each Level of Gentle Touch-Energy Gain:
Decreases Variable Casting Time of Call Spirits, Steel Body and Dangerous Soul Collect by 10%.
_______________________
For each Level of Gentle Touch-Change:
Increases Attack Speed (decreases After Attack Delay by 2%).
_______________________
For each Level of Gentle Touch-Quiet:
ATK +4%
_______________________
Refine Level +5:
Additional MaxHP +7%
Additional MaxSP +7%
Decreases SP Consumption of Body Relocation by 5.
_______________________
Refine Level +7:
Additional MaxHP +10%
Additional MaxSP +10%
Decreases SP Consumption of Body Relocation by additional 5.
_______________________
Type: Shoes
Defense: 12
Weight: 40
Armor Level: 1
_______________________
Requirement:
Base Level 100
Weapon Level 0 Identifier TenguShoes
Attack 0 Type Armor
MATK 0 Equip Locations Footgear
Defense 12 Equippable Jobs None
Range 0 Equip Gender Both (Male and Female)
Slots 0 Equip Upper None
Weight 40 Min Equip Level 100
NPC Buy 20 Max Equip Level None
NPC Sell 10 Refineable Yes
Credit Price None Trade restriction None
Item Script
.@r = getrefine();
.@a = getskilllv("SR_GENTLETOUCH_REVITALIZE");
.@b = getskilllv("SR_GENTLETOUCH_CURE");
.@c = getskilllv("SR_GENTLETOUCH_ENERGYGAIN");
.@hpsp = 3;
if (.@r >= 5) {
   .@hpsp += 7;
   .@red = 5;
   if (.@r >= 7) {
      .@hpsp += 10;
      .@red += 5;
   }
   bonus2 bSkillUseSP,"MO_BODYRELOCATION",.@red;
}
bonus bMdef,10;
bonus bMaxHPrate,.@hpsp+(2*.@b);
bonus bMaxSPrate,.@hpsp;
skill "SA_CASTCANCEL",1;
bonus2 bSkillUseSP,"MO_BODYRELOCATION",5;
bonus bDef,30*.@a;
bonus2 bSubRace,RC_Player_Doram,.@a;
bonus2 bSubRace,RC_Player_Human,.@a;
bonus2 bVariableCastrate,"MO_CALLSPIRITS",-.@c*10;
bonus2 bVariableCastrate,"MO_STEELBODY",-.@c*10;
bonus2 bFixedCastrate,"CH_SOULCOLLECT",-.@c*10;
bonus bAspdRate,2*getskilllv("SR_GENTLETOUCH_CHANGE");
bonus bAtkRate,4*getskilllv("SR_GENTLETOUCH_QUIET");