Battle Surcoat

Item ID 20860 Name Battle Surcoat
[cRO Item]
_______________________
A replica of the haori worn by the lord of Amatsu Castle.
You can move very quickly when you wear it.
_______________________
ASPD +3%,
FLEE +10
_______________________
Enables the use of Level 3 Double Attack.
Enables the use of Level 3 Triple Attack.
_______________________
Refine Level +7:
ASPD +3%
FLEE +10
Enables the use of Level 5 Double Attack.
Enables the use of Level 5 Triple Attack.
_______________________
Refine Level +9:
ASPD +3%
FLEE +10
Enables the use of Level 10 Double Attack.
Enables the use of Level 10 Triple Attack.
_______________________
Type: Garment
Defense: 10
Weight: 30
Armor Level: 1
_______________________
Requirement:
Base Level 70
Weapon Level 0 Identifier BattleSurcoat
Attack 0 Type Armor
MATK 0 Equip Locations Garment
Defense 10 Equippable Jobs None
Range 0 Equip Gender Both (Male and Female)
Slots 1 Equip Upper None
Weight 30 Min Equip Level 70
NPC Buy 20 Max Equip Level None
NPC Sell 10 Refineable Yes
Credit Price None Trade restriction None
Item Script
.@r = getrefine();
if (.@r>=9) {
   bonus bAspdRate,9;
   bonus bFlee,30;
   skill "TF_DOUBLE",10;
   skill "MO_TRIPLEATTACK",10;
}
else if (.@r>=7) {
   bonus bAspdRate,6;
   bonus bFlee,20;
   skill "TF_DOUBLE",5;
   skill "MO_TRIPLEATTACK",5;
}
else {
   bonus bAspdRate,3;
   bonus bFlee,10;
   skill "TF_DOUBLE",3;
   skill "MO_TRIPLEATTACK",3;
}