Shoes of Punishment

Item ID 22120 Name Shoes of Punishment
Shoes worn by agent of god who punishes the sinner. It is said there is power of god dwelling inside.
_______________________
MaxHP +3%
MaxSP +3%
MATK +2%
MDEF +15
_______________________
Increases Magical Damage with Holy element by 2%.
_______________________
Increases damage of Judex by 30%.
_______________________
Refine Level +5:
MaxHP +7%
MaxSP +7%
MATK +3%
Increases Magical Damage with Holy element by additional 3%.
_______________________
Refine Level +7:
MaxHP +10%
MaxSP +10%
MATK +5%
Increases Magical Damage with Holy element by additional 5%.
_______________________
When equipped with Holy Stick:
For each Level of Oratio:
Decreases Variable Casting Time of Adoramus by 5%.
Decreases Variable Casting Time of Judex by 5%.

For each Level of Lauda Ramus, Lauda Agnus and Clearance:
Increases damage of Adoramus by 10%.

Refine Level of Holy Stick is +7 or higher:
Increases Magical Damage against Shadow and Undead elemental by 30%.
Increases Magical Damage against monsters of Demon and Undead race by 30%.

Refine Level of Holy Stick is +9 or higher:
Increases damage of Adoramus by an additional 20%.
Increases Magical Damage against Shadow and Undead elemental by additional 20%.
Increases Magical Damage against monsters of Demon and Undead race by additional 20%.
_______________________
Type: Shoes
Defense: 15
Weight: 50
Armor Level: 1
_______________________
Requirement:
Base Level 100
Weapon Level 0 Identifier Shoes_Of_Punishment
Attack 0 Type Armor
MATK 0 Equip Locations Footgear
Defense 15 Equippable Jobs None
Range 0 Equip Gender Both (Male and Female)
Slots 0 Equip Upper None
Weight 50 Min Equip Level 100
NPC Buy 20 Max Equip Level None
NPC Sell 10 Refineable Yes
Credit Price None Trade restriction None
Item Script
bonus bMdef,15;
bonus bMatkRate,2;
bonus bMaxHPrate,3;
bonus bMaxSPrate,3;
bonus2 bSkillAtk,"AB_JUDEX",30;
bonus2 bMagicAtkEle,Ele_Holy,2;
.@r = getrefine();
if (.@r>=5) {
   bonus bMatkRate,3;
   bonus bMaxHPrate,7;
   bonus bMaxSPrate,7;
   bonus2 bMagicAtkEle,Ele_Holy,3;
}
if (.@r>=7) {
   bonus bMatkRate,5;
   bonus bMaxHPrate,10;
   bonus bMaxSPrate,10;
   bonus2 bMagicAtkEle,Ele_Holy,5;
}

Set Script
Shoes of Punishment
Holy Stick
.@r = getequiprefinerycnt(EQI_HAND_R);
.@cast = -5*getskilllv("AB_ORATIO");
bonus2 bVariableCastrate,"AB_JUDEX",.@cast;
bonus2 bVariableCastrate,"AB_ADORAMUS",.@cast;
if (.@r >= 7) {
   .@magic = 30;
   if (.@r >= 9) {
      .@magic += 20;
      .@dmg = 20;
   }
   bonus2 bMagicAddRace,RC_Demon,.@magic;
   bonus2 bMagicAddRace,RC_Undead,.@magic;
   bonus2 bMagicAddEle,Ele_Undead,.@magic;
   bonus2 bMagicAddEle,Ele_Dark,.@magic;
}
bonus2 bSkillAtk,"AB_ADORAMUS",.@dmg + 10*(getskilllv("AB_LAUDAAGNUS")+getskilllv("AB_LAUDARAMUS")+getskilllv("AB_CLEARANCE"));
Shoes of Punishment
[Rental] Holy Stick
.@r = getequiprefinerycnt(EQI_HAND_R);
bonus2 bVariableCastrate,"AB_ADORAMUS",-5*getskilllv("AB_ORATIO");
bonus2 bVariableCastrate,"AB_JUDEX",-5*getskilllv("AB_ORATIO");
bonus2 bSkillAtk,"AB_ADORAMUS",10*(getskilllv("AB_CLEARANCE")+getskilllv("AB_LAUDAAGNUS")+getskilllv("AB_LAUDARAMUS"));
if (.@r>=7) {
   bonus2 bMagicAddRace,RC_Demon,30;
   bonus2 bMagicAddRace,RC_Undead,30;
   bonus2 bMagicAddEle,Ele_Dark,30;
   bonus2 bMagicAddEle,Ele_Undead,30;
   if (.@r>=9) {
       bonus2 bMagicAddRace,RC_Demon,20;
       bonus2 bMagicAddRace,RC_Undead,20;
       bonus2 bMagicAddEle,Ele_Dark,20;
       bonus2 bMagicAddEle,Ele_Undead,20;
   }
}