Mythical Moonlight Paw

Item ID 470266 Name Mythical Moonlight Paw
Shoes modeled after the Moonlight's paw.
A mysterious, fiery aura of the Flame God engulfs it.
_______________________
MATK +10%
_______________________
For each 2 Refine Levels:
INT +2, MATK +10.
_______________________
For each 3 Refine Levels:
SPL, CON, S.MATK +1.
_______________________
Refine Level +8:
MATK +10%.
_______________________
Refine Level +9:
Decreases Fixed Casting Time by 0.3 seconds.
_______________________
Refine Level +10:
Increases Magical Damage with Holy and Fire element by 30%.
_______________________
Refine Level +11:
Increases Magical Damage against enemies of every size by 15%.
_______________________
When equipped with Cat O' Nine Tails Card:
Increases Magical Damage against monsters of Boss class by 15%.

Refine Level of Shoes is +13 or higher:
Physical and magical attacks have a 5% chance to increase LUK, INT, DEX by 150 for 10 seconds.
_______________________
When equipped with Moonlight Flower Card:
Increases magic damage against boss monsters by 40%.

Refine Level of Shoes is +13 or higher:
Physical and magical attacks have a 5% chance to increase LUK, INT, DEX by 250 for 10 seconds.
_______________________
[Grade Bonus]
[Grade D]: RES +30, MRES +30.
[Grade C]: Magical Damage against enemies of every size +15%.
[Grade B]: S.MATK +15.
[Grade A]: Refine Level +13: Fixed Casting Time -0.7 seconds.
_______________________
Type: Shoes
Defense: 0
Weight: 10
Armor Level: 2
_______________________
Requirement:
Base Level 130
Weapon Level 0 Identifier Mythical_Moonlight_US
Attack 0 Type Armor
MATK 0 Equip Locations Footgear
Defense 70 Equippable Jobs None
Range 0 Equip Gender Both (Male and Female)
Slots 1 Equip Upper None
Weight 10 Min Equip Level 130
NPC Buy 0 Max Equip Level None
NPC Sell 0 Refineable Yes
Credit Price None Trade restriction None
Item Script
.@r = getrefine();
.@g = getenchantgrade();
bonus bMatkRate,10;
bonus bInt,2*(.@r/2);
bonus bMatk,10*(.@r/2);
bonus bSpl,.@r/3;
bonus bCon,.@r/3;
bonus bSMatk,.@r/3;
if (.@r>=8) {
   bonus bMatkRate,10;
   if (.@r>=9) {
       bonus bFixedCast,-300;
       if (.@r>=10) {
            bonus2 bMagicAtkEle,Ele_Fire,30;
            bonus2 bMagicAtkEle,Ele_Holy,30;
            if (.@r>=11) {
                bonus2 bMagicAddSize,Size_All,15;
            }
       }
   }
}
if (.@g>=ENCHANTGRADE_D) {
   bonus bRes,30;
   bonus bMRes,30;
   if (.@g>=ENCHANTGRADE_C) {
       bonus2 bMagicAddSize,Size_All,15;
       if (.@g>=ENCHANTGRADE_B) {
            bonus bSMatk,15;
            if (.@g>=ENCHANTGRADE_A) {
                if (.@r>=13) {
                    bonus bFixedCast,-700;
                }
            }
       }
   }
}

Set Script
Cat O' Nine Tails Card
Mythical Moonlight Paw
bonus2 bMagicAddClass,Class_Boss,15;
if (getequiprefinerycnt(EQI_SHOES)>=13)
   autobonus "{ bonus bInt,150; bonus bDex,150; bonus bLuk,150; }",50,10000,BF_WEAPON|BF_MAGIC;
Moonlight Flower Card
Mythical Moonlight Paw
bonus2 bMagicAddClass,Class_Boss,40;
if (getequiprefinerycnt(EQI_SHOES)>=13)
   autobonus "{ bonus bInt,250; bonus bDex,250; bonus bLuk,250; }",50,10000,BF_WEAPON|BF_MAGIC;