Golden Angel Wing

Item ID 20841 Name Golden Angel Wing
A pair of wings from a golden angel.
_______________________
Base VIT at least 90:
MaxHP +5%, MaxSP +5%

Base STR at least 90:
ATK +15

Base INT at least 90:
MATK +15

Base AGI at least 90:
ASPD +1

Base DEX at least 90:
Increases long-ranged damage on the targets by 5%.

Base LUK at least 90:
Increases critical damage on the targets by 5%.
_______________________
Refine Level +9:
Base VIT at least 90:
MaxHP +5%, MaxSP +5%

Base STR at least 90:
ATK +15

Base INT at least 90:
MATK +15

Base AGI at least 90:
ASPD +1

Base DEX at least 90:
Increases long-ranged damage by additional 5%.

Base LUK at least 90:
Increases Critical Damage by additional 5%.
_______________________
When equipped with Golden Angel Hairband:
All Basic Stats +1
_______________________
Type: Garment
Defense: 20
Weight: 1
Armor Level: 1
_______________________
Requirement: None
Weapon Level 0 Identifier Golden_Angel_Wing_TH
Attack 0 Type Armor
MATK 0 Equip Locations Garment
Defense 20 Equippable Jobs None
Range 0 Equip Gender Both (Male and Female)
Slots 1 Equip Upper None
Weight 1 Min Equip Level 1
NPC Buy 0 Max Equip Level None
NPC Sell 0 Refineable Yes
Credit Price None Trade restriction None
Item Script
.@r = getrefine();
if (readparam(bStr) >= 90) {
   bonus bBaseAtk,15;
   if (.@r >= 9)
      bonus bBaseAtk,15;
}
if (readparam(bInt) >= 90) {
   bonus bMatk,15;
   if (.@r >= 9)
      bonus bMatk,15;
}
if (readparam(bVit) >= 90) {
   bonus bMaxHPrate,5;
   bonus bMaxSPrate,5;
   if (.@r >= 9) {
      bonus bMaxHPrate,5;
      bonus bMaxSPrate,5;
   }
}
if (readparam(bAgi) >= 90) {
   bonus bAspd,1;
   if (.@r >= 9)
      bonus bAspd,1;
}
if (readparam(bDex) >= 90) {
   bonus bLongAtkRate,5;
   if (.@r >= 9)
      bonus bLongAtkRate,5;
}
if (readparam(bLuk) >= 90) {
   bonus bCritAtkRate,5;
   if (.@r >= 9)
      bonus bCritAtkRate,5;
}