Boots of Good and Evil (Abyss Chaser) [1], броня (Renewal)

Boots of Good and Evil (Abyss Chaser) [1] (FATESIN_BOOTS_ABC) – броня.

 

MaxHP + 500, MaxSP + 100.
Every 2 refine rate, MaxHP + 1%, MaxSP + 1%.
If refine rate is 7 or higher, Atk + 7%, Matk + 7%.
If refine rate is 9 or higher, increases long ranged physical damage by 10%, increases all property magical damage by 10%.
If refine rate is 11 or higher, reduces fixed casting time by 0.5 seconds.

[Bonus by grade]
[Grade D] Res + 50, Mres + 50.
[Grade C] Increases physical and magical damage against all size enemies by 10%.
[Grade B] P.Atk + 7, S.Matk + 7.
[Grade A] Reduces fixed casting time by 0.5 seconds.

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

  • ID: 30544
  • Код: FATESIN_BOOTS_ABC
  • Тип: броня
  • Уровень брони: 2
  • Защита: 20
  •  
  • Требуемый уровень: 210
  • Профессии: rogue
  • Вес: 60

Скрипт

.@g = getenchantgrade();
.@r = getrefine();
bonus bMaxHP,500;
bonus bMaxSP,100;
bonus bMaxHPrate,(.@r/2);
bonus bMaxSPrate,(.@r/2);
if (.@r>=7) {
   bonus bAtkRate,7;
   if (.@r>=9) {
      bonus bLongAtkRate,10;
      bonus bShortAtkRate,10;
      if (.@r>=11) {
         bonus bFixedCast,-500;
      }
   }
}
if (.@g>=ENCHANTGRADE_D) {
   bonus bMRes,50;
   bonus bRes,50;
   if (.@g>=ENCHANTGRADE_C) {
      bonus2 bAddSize,Size_All,10;
      if (.@g>=ENCHANTGRADE_B) {
         bonus bPAtk,7;
         bonus bSMatk,7;
         if (.@g>=ENCHANTGRADE_A) {
            bonus bFixedCast,-500;
         }
      }
   }
}