Star Cluster of Power Lv1, (Renewal)

Star Cluster of Power Lv1 (STAR_CLUSTER_OF_POW1) – карта.

Star Cluster of Power Lv1, (Renewal)

Atk + 5 and increases melee physical damage by 1% per 15 base POW of the user.
If the enchanted armor is grade D, P.Atk + 1 and increases melee physical damage by additional 1% per 15 base POW.
If the enchanted armor is grade C, additional P.Atk + 1 and increases melee physical damage by additional 1% per 15 base POW.
If the enchanted armor is grade B, additional P.Atk + 1 and increases melee physical damage by additional 1% per 15 base POW.
If the enchanted armor is grade A, additional P.Atk + 1 and increases melee physical damage by additional 1% per 15 base POW.

Базовые свойства предмета

  • ID: 17689
  • Код: STAR_CLUSTER_OF_POW1
  • Тип: карта
  • Подтип:
  •  
  • Вес: 1

Скрипт

.@param = (readparam(bPow)/15);
.@g = getenchantgrade();
bonus bShortAtkRate,.@param;
bonus bBaseAtk,5*.@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,.@param;
         if (.@g >= ENCHANTGRADE_A) {
            bonus bShortAtkRate,.@param;
            bonus bPAtk,.@param;
         }
      }
   }
}