Furious Boots [1], броня (Renewal)

Furious Boots [1] (FURIOUSBOOTS) – броня.

 

If the user's base level is 230 or higher, increases physical / magical damage against normal and boss type enemies by 5%.
If refine rate is 7 or higher, Atk + 5%, Matk + 5%.
If refine rate is 9 or higher, reduces variable casting time by 10%.
If refine rate is 10 or higher, reduces fixed casting time by 0.7 seconds.
If refine rate is 11 or higher, increases melee and long ranged physical damage by 10%, increases all property magical damage by 10%.

[Bonus by grade]
[Grade D] Atk + 5%, Matk + 5%.
[Grade C] reduces fixed casting time by additional 0.3 seconds.
[Grade B] P.Atk + 5, S.Matk + 5.
[Grade A] P.Atk + 2, S.Matk + 2.

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

  • ID: 30563
  • Код: FURIOUSBOOTS
  • Тип: броня
  • Уровень брони: 2
  • Защита: 30
  •  
  • Требуемый уровень: 220
  • Вес: 150

Скрипт

.@g = getenchantgrade();
.@r = getrefine();
if (BaseLevel>=230) {
   bonus2 bAddClass,Class_Normal,5;
   bonus2 bMagicAddClass,Class_Normal,5;
   bonus2 bAddClass,Class_Boss,5;
   bonus2 bMagicAddClass,Class_Boss,5;
}
if (.@r>=7) {
   bonus bMatkRate,5;
   bonus bAtkRate,5;
   if (.@r>=9) {
      bonus bVariableCastrate,-10;
      if (.@r>=10) {
         bonus bFixedCast,-700;
         if (.@r>=11) {
            bonus2 bMagicAtkEle,Ele_All,10;
            bonus bShortAtkRate,10;
            bonus bLongAtkRate,10;
         }
      }
   }
}
if (.@g>=ENCHANTGRADE_D) {
   bonus bMatkRate,5;
   bonus bAtkRate,5;
   if (.@g>=ENCHANTGRADE_C) {
      bonus bFixedCast,-300;
      if (.@g>=ENCHANTGRADE_B) {
         bonus bPAtk,5;
         bonus bSMatk,5;
         if (.@g>=ENCHANTGRADE_A) {
            bonus bPAtk,2;
            bonus bSMatk,2;
         }
      }
   }
}