Gray Wing Boots

Item ID 22172 Name Gray Wing Boots
A special artifact which empowers both black magic and white magic.
_______________________
MaxHP +3%
MaxSP +3%
MDEF +15
_______________________
Enables the use of Level 1 Hiding.
_______________________
Increases Ranged Physical Damage by 2%.
_______________________
Increases Critical Damage by 2%.
_______________________
Refine Level +5:
MaxHP +7%
MaxSP +7%
Increases Ranged Physical Damage by 3%.
Increases Critical Damage by 3%.
_______________________
Refine Level +7:
MaxHP +10%
MaxSP +10%
Increases Ranged Physical Damage by 5%.
Increases Critical Damage by 5%.
_______________________
When equipped with Black Wing Suit:
Increases movement speed.
Decreases SP Consumption of Electric Shock by 30.
Restores 500 HP when a monster is defeated.

For each 20 base INT:
Increases damage of Cluster Bomb by 30%.

Refine Level of Black Wing Suit +7 or higher:
Perfect Dodge +6
Decreases damage taken from Demi-Human race by 8%.
Increases damage of Aimed Bolt by 20%.
Increases damage of Cluster Bomb by 400%.

Refine Level of Black Wing Suit +9:
Perfect Dodge +3
Decreases damage taken from Demi-Human race by 4%.
Increases damage of Aimed Bolt by 10%.
Increases damage of Cluster Bomb by 200%.
_______________________
When equipped with White Wing Suit:
Increases movement speed.

For each 20 base LUK:
Increases Critical Damage by 4%.

Refine Level of White Wing Suit +7 or higher:
Increases Attack Speed (decreases After Attack Delay by 8%).
Decreases damage taken from Demi-Human race by 8%.
Increases damage of Sharp Shooting by 50%.
Increases damage of Blitz Beat by 40%.

Refine Level of White Wing Suit +9:
Increases Attack Speed (decreases After Attack Delay by 4%).
Decreases damage taken from Demi-Human race by 4%.
Increases damage of Sharp Shooting by 25%.
Increases damage of Blitz Beat by 20%.
_______________________
Type: Shoes
Defense: 15
Weight: 50
Armor Level: 1
_______________________
Requirement:
Base Level 100
Weapon Level 0 Identifier Gray_Wing_Boots
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
.@r = getrefine();
bonus bMaxHPrate,3;
bonus bMaxSPrate,3;
bonus bMdef,15;
bonus bLongAtkRate,2;
bonus bCritAtkRate,2;
skill "TF_HIDING",1;
if (.@r>=5) {
   bonus bMaxHPrate,7;
   bonus bMaxSPrate,7;
   bonus bLongAtkRate,3;
   bonus bCritAtkRate,3;
}
if (.@r>=7) {
   bonus bMaxHPrate,10;
   bonus bMaxSPrate,10;
   bonus bLongAtkRate,5;
   bonus bCritAtkRate,5;
}

Set Script
Gray Wing Boots
White Wing Suits
.@r = getequiprefinerycnt(EQI_ARMOR);
bonus bSpeedRate,25;
bonus bCritAtkRate,4*(readparam(bLuk)/20);
if (.@r >= 7) {
   bonus bAspdRate,8;
   bonus2 bSubRace,RC_DemiHuman,8;
   bonus2 bSubRace,RC_Player_Human,8;
   bonus2 bSkillAtk,"HT_BLITZBEAT",40;
   bonus2 bSkillAtk,"SN_SHARPSHOOTING",50;
}
if (.@r >= 9) {
   bonus bAspdRate,4;
   bonus2 bSubRace,RC_DemiHuman,4;
   bonus2 bSubRace,RC_Player_Human,4;
   bonus2 bSkillAtk,"HT_BLITZBEAT",20;
   bonus2 bSkillAtk,"SN_SHARPSHOOTING",25;
}
Gray Wing Boots
Black Wing Suits
.@r = getequiprefinerycnt(EQI_ARMOR);
bonus bHPGainValue,500;
bonus bSpeedRate,25;
bonus2 bSkillAtk,"RA_CLUSTERBOMB",30*(readparam(bInt)/20);
bonus2 bSkillUseSP,"RA_ELECTRICSHOCKER",30;
if (.@r >= 7) {
   bonus bFlee2,6;
   bonus2 bSubRace,RC_DemiHuman,8;
   bonus2 bSubRace,RC_Player_Human,8;
   bonus2 bSkillAtk,"RA_CLUSTERBOMB",400;
   bonus2 bSkillAtk,"RA_AIMEDBOLT",20;
}
if (.@r >= 9) {
   bonus bFlee2,3;
   bonus2 bSubRace,RC_DemiHuman,4;
   bonus2 bSubRace,RC_Player_Human,4;
   bonus2 bSkillAtk,"RA_CLUSTERBOMB",200;
   bonus2 bSkillAtk,"RA_AIMEDBOLT",10;
}