Corrupted Poison Rune 8Lv, (Renewal)

Corrupted Poison Rune 8Lv (CORRUPT_POISON_R_8) – карта.

Corrupted Poison Rune 8Lv, (Renewal)

Every 20 base LUK, Atk + 10, POW + 2, CRT + 2.
If the enchanted equipment is grade D, P.Atk + 6, increases melee and long ranged physical damage by 6%.
If the enchanted equipment is grade C, additional P.Atk + 9, increases melee and long ranged physical damage by additional 10%.
If the enchanted equipment is grade B, additional P.Atk + 12, increases critical damage by 14%.

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

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

Скрипт

.@luk = (readparam(bLuk)/20);
.@g = getenchantgrade();
bonus bBaseAtk,10*.@luk;
bonus bPow,2*.@luk;
bonus bCrt,2*.@luk;
if (.@g>=ENCHANTGRADE_D) {
   bonus bShortAtkRate,6;
   bonus bLongAtkRate,6;
   bonus bPAtk,6;
   if (.@g>=ENCHANTGRADE_C) {
      bonus bShortAtkRate,10;
      bonus bLongAtkRate,10;
      bonus bPAtk,9;
      if (.@g>=ENCHANTGRADE_B) {
         bonus bCritAtkRate,14;
         bonus bPAtk,12;
      }
   }
}