Star Cluster of Concentration Lv2, (Renewal)

Star Cluster of Concentration Lv2 (STAR_CLUSTER_OF_CON2) – карта.

Star Cluster of Concentration Lv2, (Renewal)

Increases long ranged physical damage by 2% and Atk + 7 per 15 base CON of the user.
If the enchanted armor is grade D, increases long ranged physical damage by additional 1% and P.Atk + 1 per 15 base CON.
If the enchanted armor is grade C, increases long ranged physical damage by additional 1% and additional P.Atk + 1 per 15 base CON.
If the enchanted armor is grade B, increases long ranged physical damage by additional 1% and additional P.Atk + 2 per 15 base CON.
If the enchanted armor is grade A, increases long ranged physical damage by additional 2% and additional P.Atk + 2 per 15 base CON.

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

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

Скрипт

.@param = (readparam(bCon)/15);
.@g = getenchantgrade();
bonus bLongAtkRate,2*.@param;
bonus bBaseAtk,7*.@param;
if (.@g >= ENCHANTGRADE_D) {
   bonus bLongAtkRate,.@param;
   bonus bPAtk,.@param;
   if (.@g >= ENCHANTGRADE_C) {
      bonus bLongAtkRate,.@param;
      bonus bPAtk,.@param;
      if (.@g >= ENCHANTGRADE_B) {
         bonus bLongAtkRate,.@param;
         bonus bPAtk,2*.@param;
         if (.@g >= ENCHANTGRADE_A) {
            bonus bLongAtkRate,2*.@param;
            bonus bPAtk,2*.@param;
         }
      }
   }
}