Battle Hardened Amulet

Item ID 2929 Name Battle Hardened Amulet
Amulet given by Tatsugami who has regained the divine power.
The stronger you are, the more you can obtain the protection of an amulet.
_______________________
MDEF +2
_______________________
The following special effects will disappear at the end of regular maintenance on December 28, 2012:
_______________________
Base STR at least 60:
STR +2
_______________________
Base STR at least 80:
STR +1
ATK +5
_______________________
Base STR at least 100:
ATK +5
HIT +2
_______________________
Base STR at least 120:
ATK +5
HIT +3
_______________________
Type: Accessory
Weight: 30
Armor Level: 1
_______________________
Requirement: None
Weapon Level 0 Identifier Charm_Str
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(bStr);
bonus bMdef,2;
if (.@a>=60) {
   bonus bStr,2;
   if (.@a>=80) {
       bonus bStr,1;
       bonus bBaseAtk,5;
       if (.@a>=100) {
           bonus bBaseAtk,5;
           bonus bHit,2;
           if (.@a>=120) {
               bonus bBaseAtk,5;
               bonus bHit,3;
           }
       }
   }
}