Anemos Shield

Item ID 28921 Name Anemos Shield
A shield that contains the power of the wind.
There are various effects depending on the user.
_______________________
MDEF +15
_______________________
Increases Damage against Wind elemental by 5%.
Decreases damage taken from Wind elemental attacks by 10%.
_______________________
Indestructible in battle
_______________________
Refine Level +6:
Increases Damage against Wind elemental by 10%.
Decreases damage taken from Wind elemental attacks by 15%.
_______________________
Refine Level +8:
Base STR at least 90:
ATK +50

Base AGI at least 90:
Increases Attack Speed (decreases After Attack Delay by 5%).

Base VIT at least 90:
Increases recovery amount gained from Restorative items by 10%.

Base INT at least 90:
MATK +30

Base DEX at least 90:
Decreases Variable Casting Time by 5%.

Base LUK at least 90:
Increases Critical Damage by 5%.
_______________________
Type: Shield
Defense: 150
Weight: 350
Armor Level: 1
_______________________
Requirement:
Base Level 90
Weapon Level 0 Identifier Anemos_Shield
Attack 0 Type Armor
MATK 0 Equip Locations Off Hand
Defense 150 Equippable Jobs None
Range 0 Equip Gender Both (Male and Female)
Slots 1 Equip Upper None
Weight 350 Min Equip Level 90
NPC Buy 20 Max Equip Level None
NPC Sell 10 Refineable Yes
Credit Price None Trade restriction None
Item Script
bonus bMdef,15;
bonus2 bAddEle,Ele_Wind,5;
bonus2 bMagicAddEle,Ele_Wind,5;
bonus2 bSubEle,Ele_Wind,10;
bonus bUnbreakableShield;
.@r = getrefine();
if (.@r>=6) {
   bonus2 bAddEle,Ele_Wind,10;
   bonus2 bMagicAddEle,Ele_Wind,10;
   bonus2 bSubEle,Ele_Wind,15;
}
if (.@r>=8) {
   if (readparam(bStr)>=90)
      bonus bBaseAtk,50;
   if (readparam(bAgi)>=90)
      bonus bAspdRate,5;
   if (readparam(bVit)>=90)
      bonus bAddItemHealRate,10;
   if (readparam(bInt)>=90)
      bonus bMatk,30;
   if (readparam(bDex)>=90)
      bonus bVariableCastrate,-5;
   if (readparam(bLuk)>=90)
      bonus bCritAtkRate,5;
}