Enforcer Shoes

Item ID 22134 Name Enforcer Shoes
These blood soaked shoes releases a terrible aura.
_______________________
MaxHP +3%
MaxSP +3%
MDEF +10
_______________________
Enables the use of Level 1 Maximize Power.
_______________________
Decreases SP Consumption of Meteor Assault by 8.
_______________________
Refine Level +5:
MaxHP +7%
MaxSP +7%
For each Base Level:
Increases damage of Meteor Assault by 1%.
_______________________
Refine Level +7:
MaxHP +10%
MaxSP +10%

For each Base Level:
Increases damage of Meteor Assault by 1%.
_______________________
For each Level of Poison React:
Increases damage of Meteor Assault by 30%.
_______________________
For each Level of Weapon Blocking:
Decreases Hallucination Walk skill cooldown by 5 seconds.
_______________________
For each Level of Weapon Crush:
ATK +4%
_______________________
For each Level of Counter Slash:
Ignores physical defense of all monsters by 20%.
_______________________
For each Level of Weapon Blocking, Weapon Crush and Counter Slash:
Decreases Variable Casting Time of Meteor Assault by 7%.
_______________________
Type: Shoes
Defense: 12
Weight: 40
Armor Level: 1
_______________________
Requirement:
Base Level 100
All Jobs except Novice
Weapon Level 0 Identifier Enforcer_Shoes
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();
.@hpsp = 3;
.@a = getskilllv("GC_WEAPONCRUSH");
.@b = getskilllv("GC_WEAPONBLOCKING");
.@c = getskilllv("GC_COUNTERSLASH");
if (.@r >= 5) {
   .@hpsp += 7;
   .@dmg = BaseLevel;
   if (.@r >= 7) {
      .@hpsp += 10;
      .@dmg += BaseLevel + 30*getskilllv("AS_POISONREACT");
   }
   bonus2 bSkillAtk,"ASC_METEORASSAULT",.@dmg;
}
bonus bMaxHPrate,.@hpsp;
bonus bMaxSPrate,.@hpsp;
bonus bMdef,10;
skill "BS_MAXIMIZE",1;
bonus2 bSkillUseSP,"ASC_METEORASSAULT",8;
bonus bAtkRate,4*.@a;
bonus2 bSkillCooldown,"GC_HALLUCINATIONWALK",-5000*.@b;
bonus2 bIgnoreDefRaceRate,RC_All,20*.@c;
bonus2 bVariableCastrate,"ASC_METEORASSAULT",-7*(.@a+.@b+.@c);