Star Cluster of Power Lv2

Item ID 310675 Name Star Cluster of Power Lv2
A stellar essence that strengthens the wearer.
_______________________
For each 15 base POW:
ATK +7
Increases Melee Physical Damage by 1%.
_______________________
If enchanted Armor's Grade is D:
For each 15 base POW:
P.ATK +1
Increases Melee Physical Damage by additional 1%.
_______________________
If enchanted Armor's Grade is C:
For each 15 base POW:
P.ATK +1
Increases Melee Physical Damage by additional 1%.
_______________________
If enchanted Armor's Grade is B:
For each 15 base POW:
P.ATK +2
Increases Melee Physical Damage by additional 1%.
_______________________
If enchanted Armor's Grade is A:
For each 15 base POW:
P.ATK +2
Increases Melee Physical Damage by additional 2%.
Weapon Level 0 Identifier Star_Cluster_Of_Pow2
Attack 0 Type Card - Enchant
MATK 0 Equip Locations None
Defense 0 Equippable Jobs None
Range 0 Equip Gender Both (Male and Female)
Slots 0 Equip Upper None
Weight 0 Min Equip Level None
NPC Buy 0 Max Equip Level None
NPC Sell 0 Refineable No
Credit Price None Trade restriction None
Item Script
.@param = (readparam(bPow)/15);
.@g = getenchantgrade();
bonus bShortAtkRate,.@param;
bonus bBaseAtk,7*.@param;
if (.@g >= ENCHANTGRADE_D) {
   bonus bShortAtkRate,.@param;
   bonus bPAtk,.@param;
   if (.@g >= ENCHANTGRADE_C) {
      bonus bShortAtkRate,.@param;
      bonus bPAtk,.@param;
      if (.@g >= ENCHANTGRADE_B) {
         bonus bShortAtkRate,.@param;
         bonus bPAtk,2*.@param;
         if (.@g >= ENCHANTGRADE_A) {
            bonus bShortAtkRate,2*.@param;
            bonus bPAtk,2*.@param;
         }
      }
   }
}

Set Script
Star Cluster of Power Lv2
Astrologer's Dawn Boots
.@g = getenchantgrade(EQI_SHOES);
autobonus "{ bonus bStr,100; }",30,10000,BF_WEAPON;
if (.@g>=ENCHANTGRADE_C) {
   bonus bPow,7;
   if (.@g>=ENCHANTGRADE_A) {
       bonus bPow,12;
       bonus bPerfectHitAddRate,8;
   }
}