Varmundt Fire Rune Boots [1], броня (Renewal)

Varmundt Fire Rune Boots [1] (BARMUND_FLAME_BOOTS) – броня.

Varmundt Fire Rune Boots [1], броня (Renewal)

If refine rate is 7 or higher, Atk + 5%.
If refine rate is 9 or higher, reduces variable casting time by 5%, reduces fixed casting time by 0.3 seconds.
If refine rate is 11 or higher, increases melee physical damage by 5%, reduces fixed casting time by additional 0.2 seconds.


[Bonus by grade]
[Grade D] Atk + 2%.
[Grade C] Reduces fixed casting time by additional 0.3 seconds.
[Grade B] Atk + 2%, P.Atk + 2.
[Grade A] Reduces fixed casting time by additional 0.2 seconds.

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

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

Скрипт

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