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

Rune Boots of Plain [1] (PLAIN_RUNE_BOOTS) – броня.

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

If refine rate is 7 or higher, MHP + 10%, 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, increases physical damage against all size enemies by 10%, decrease fixed cast time by an additional 0.2 seconds.
[Bonus by grade]
[Grade D] MHP + 5%
[Grade C] Decrease fixed cast time by an additional 0.3 seconds.
[Grade B] MHP + 7%, reduces variable casting time by an additional 5%.
[Grade A] Decrease fixed cast time by an additional 0.2 seconds, P.ATK + 2.

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

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

Скрипт

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