Winning First Move Amulet

Item ID 2930 Name Winning First Move Amulet
Amulet given by Tatsugami who has regained the divine power.
The faster you move, the more you can get amulet protection.
_______________________
MDEF +2
_______________________
The following special effects will disappear at the end of regular maintenance on December 28, 2012:
_______________________
Base AGI at least 60:
AGI +2
_______________________
Base AGI at least 80:
AGI +1
FLEE +4
_______________________
Base AGI at least 100:
FLEE +1
Increases Attack Speed (decreases After Attack Delay by 2%).
_______________________
Base AGI at least 120:
Increases Attack Speed (decreases After Attack Delay by additional 2%).
_______________________
Type: Accessory
Weight: 30
Armor Level: 1
_______________________
Requirement: None
Weapon Level 0 Identifier Charm_Agi
Attack 0 Type Armor
MATK 0 Equip Locations Accessory Left/Right
Defense 0 Equippable Jobs None
Range 0 Equip Gender Both (Male and Female)
Slots 0 Equip Upper None
Weight 30 Min Equip Level 1
NPC Buy 0 Max Equip Level None
NPC Sell 0 Refineable No
Credit Price None Trade restriction None
Item Script
.@a = readparam(bAgi);
bonus bMdef,2;
if (.@a>=60) {
   bonus bAgi,2;
   if (.@a>=80) {
       bonus bAgi,1;
       bonus bFlee,4;
       if (.@a>=100) {
           bonus bFlee,1;
           bonus bAspdRate,2;
           if (.@a>=120) {
               bonus bAspdRate,2;
           }
       }
   }
}