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

Varmundt Glade Rune Boots [1] (BARMUND_PLAIN_BOOTS) – броня.

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

If refine rate is 7 or higher, MaxHP + 10%.
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, additional MaxHP + 5%, reduces fixed casting time by additional 0.2 seconds.
[Bonus by grade]
[Grade D] MaxHP + 2%.
[Grade C] Reduces fixed casting time by additional 0.3 seconds.
[Grade B] MaxHP + 2%, reduces variable casting time by additional 5%.
[Grade A] Reduces fixed casting time by additional 0.2 seconds.

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

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

Скрипт

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