Rune Boots of Flame [1], броня (Renewal)

Rune Boots of Flame [1] (FLAME_RUNE_BOOTS) – броня.

Rune Boots of Flame [1], броня (Renewal)

If refine rate is 7 or higher, ATK + 5%, P.ATK +2.
If refine rate is 9 or higher, reduces variable casting time by 10%, decrease fixed cast time by 0.3 seconds.
If refine rate is 11 or higher, increase melee physical damage by 10%, decrease fixed cast time by an additional 0.2 seconds.

[Bonus by grade]
[Grade D] ATK + 5%.
[Grade C] Decrease fixed cast time by an additional 0.3 seconds.
[Grade B] ATK + 5%, P.ATK + 5.
[Grade A] Decrease fixed cast time by an additional 0.2 seconds, P.ATK + 2.

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

  • ID: 30507
  • Код: FLAME_RUNE_BOOTS
  • Тип: броня
  • Уровень брони: 2
  • Защита: 45
  •  
  • Требуемый уровень: 230
  • Вес: 100

Скрипт

.@g = getenchantgrade();
.@r = getrefine();
if (.@r>=7) {
   bonus bPAtk,2;
   bonus bAtkRate,5;
   if (.@r>=9) {
      bonus bFixedCast,-300;
      bonus bVariableCastrate,-10;
      if (.@r>=11) {
         bonus bFixedCast,-200;
         bonus bShortAtkRate,10;
      }
   }
}
if (.@g>=ENCHANTGRADE_D) {
   bonus bAtkRate,5;
   if (.@g>=ENCHANTGRADE_C) {
      bonus bFixedCast,-300;
      if (.@g>=ENCHANTGRADE_B) {
         bonus bPAtk,5;
         bonus bAtkRate,5;
         if (.@g>=ENCHANTGRADE_A) {
            bonus bFixedCast,-200;
            bonus bPAtk,2;
         }
      }
   }
}