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

Rune Boots of Ice [1] (ICE_RUNE_BOOTS) – броня.

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

If refine rate is 7 or higher, ATK + 5%, P.ATK +2.
If refine rate is 9 or higher, increases critical damage by 10%, decrease fixed cast time by 0.3 seconds.
If refine rate is 11 or higher, increases long ranged physical damage by 5%, decrease fixed cast time by an additional 0.4 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] C.RATE + 1, P.ATK + 2.

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

  • ID: 30509
  • Код: ICE_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 bCritAtkRate,10;
      if (.@r>=11) {
         bonus bFixedCast,-400;
         bonus bLongAtkRate,5;
      }
   }
}
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 bCRate,1;
            bonus bPAtk,2;
         }
      }
   }
}