Ancient Resonance

Item ID 19433 Name Ancient Resonance
There are dragons circling on the drums, said to be the equipment of the ancient Thor.
_______________________
ATK +20
MATK +20
ASPD +1
_______________________
Refine Level +7:
ASPD +1
_______________________
Refine Level +9:
ATK +3%
MATK +3%
_______________________
Refine Level +10:
ATK +10%
MATK +10%

For each Refine Level above +10:
ATK +1%
MATK +1
_______________________
Refine Level +12:
ASPD +1
_______________________
Type: Headgear
Defense: 0
Position: Upper
Weight: 50
Armor Level: 1
_______________________
Requirement:
Base Level 99
Weapon Level 0 Identifier ResonateTaego_TW
Attack 0 Type Armor
MATK 0 Equip Locations Upper Headgear
Defense 0 Equippable Jobs None
Range 0 Equip Gender Both (Male and Female)
Slots 1 Equip Upper None
Weight 50 Min Equip Level 99
NPC Buy 0 Max Equip Level None
NPC Sell 0 Refineable Yes
Credit Price None Trade restriction None
Item Script
.@r = getrefine();
bonus bAspd,1;
bonus bBaseAtk,20;
bonus bMatk,20;
if (.@r>=7) {
   bonus bAspd,1;
   if (.@r>=9) {
       bonus bAtkRate,3;
       bonus bMatkRate,3;
       if (.@r>=10) {
           bonus bAtkRate,10+(.@r-10);
           bonus bMatkRate,10+(.@r-10);
           if (.@r>=12) {
               bonus bAspd,1;
           }
       }
   }
}
hateffect HAT_EF_RESONATETAEGO,true;
Unequip Script
hateffect HAT_EF_RESONATETAEGO,false;