Star Cluster of Concentration Lv3, (Renewal)

Star Cluster of Concentration Lv3 (STAR_CLUSTER_OF_CON3) – карта.

Star Cluster of Concentration Lv3, (Renewal)

Increases long ranged physical damage by 2% and Atk + 15 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 2% and additional P.Atk + 2 per 15 base CON.
If the enchanted armor is grade B, increases long ranged physical damage by additional 2% and additional P.Atk + 2 per 15 base CON.
If the enchanted armor is grade A, increases long ranged physical damage by additional 3% and additional P.Atk + 3 per 15 base CON.

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

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

Скрипт

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