Poenitentia Hasta [2], одноручное копьё (Renewal)

Poenitentia Hasta [2] (POENITENTIA_HASTA) – оружие.

Poenitentia Hasta [2], одноручное копьё (Renewal)

A spear filled with the pain of grief.
------------------------
ATK + 10%.
Increase Overslash damage by 10%.
------------------------
For every 2 refine level, increase Overbrand damage by 3%.
------------------------
When refined to +7 or higher, reduce variable casting time by 10%.
------------------------
When refined to +9 or higher, increase Overbrand damage by additional 25%.
------------------------
When refined to +11 or higher, increase melee physical damage by 10%.
------------------------
[Grade Bonus]
[Grade D] Increase Overslash damage by additional 5%.
[Grade C] Increase Overslash damage by additional 8%. P.ATK + 1.
[Grade B] Increase Overslash damage by additional 12%. POW + 1.
------------------------

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

  • Вес: 190

Скрипт

.@g = getenchantgrade();
.@r = getrefine();
bonus bAtkRate,10;
bonus2 bSkillAtk,"IG_OVERSLASH",10;
bonus2 bSkillAtk,"LG_OVERBRAND",3*(.@r/2);
if (.@r>=7) {
   bonus bVariableCastrate,-10;
   if (.@r>=9) {
      bonus2 bSkillAtk,"LG_OVERBRAND",25;
      if (.@r>=11) {
         bonus bShortAtkRate,10;
      }
   }
}
if (.@g >= ENCHANTGRADE_D) {
   bonus2 bSkillAtk,"IG_OVERSLASH",5;
   if (.@g >= ENCHANTGRADE_C) {
      bonus bPAtk,1;
      bonus2 bSkillAtk,"IG_OVERSLASH",8;
      if (.@g >= ENCHANTGRADE_B) {
         bonus bPow,1;
         bonus2 bSkillAtk,"IG_OVERSLASH",12;
      }
   }
}