Beast's Leather Shoes [1], броня (Renewal)
Beast's Leather Shoes [1] (BEAST_LEATHER_SHOES) – броня.
![Beast's Leather Shoes [1], броня (Renewal) Beast's Leather Shoes [1], броня (Renewal)](/images/db/items/picture/470122.png)
MaxHP + 1500, MaxSP + 150.
If refine rate is 7 or higher, Matk + 3%.
If refine rate is 9 or higher, additional Matk + 5%, S.Matk + 5.
If refine rate is 11 or higher, reduces fixed casting time by 0.8 seconds, reduces variable casting time by 10%.
When equipped with Moonlight Card, reduces fixed casting time by 0.2 seconds, S.Matk + 15.
When equipped with Sealed Moonlight Card, reduces fixed casting time by 0.2 seconds.
When equipped with Furious Moonlight Card, increases all property magical damage by 4% per 3 refine rate of shoes.
[Bonus by grade]
[Grade D] Res + 30, Mres + 30.
[Grade C] Increases magical damage against all size enemies by 15%.
[Grade B] SPL + 3.
[Grade A] S.Matk + 7.
Базовые свойства предмета
- ID: 30480
 - Код: BEAST_LEATHER_SHOES
 - Тип: броня
 - Уровень брони: 2
 - Защита: 15
 - Требуемый уровень: 200
 
- Вес: 60
 
Скрипт
.@g = getenchantgrade();
.@r = getrefine();
bonus bMaxHP,1500;
bonus bMaxSP,150;
if (.@r>=7) {
   bonus bMatkRate,3;
   if (.@r>=9) {
      bonus bSMatk,5;
      bonus bMatkRate,5;
      if (.@r>=11) {
         bonus bFixedCast,-800;
         bonus bVariableCastrate,-10;
      }
   }
}
if (.@g>=ENCHANTGRADE_D) {
   bonus bMRes,30;
   bonus bRes,30;
   if (.@g>=ENCHANTGRADE_C) {
      bonus2 bMagicAddSize,Size_All,15;
      if (.@g>=ENCHANTGRADE_B) {
         bonus bSpl,3;
         if (.@g>=ENCHANTGRADE_A) {
            bonus bSMatk,7;
         }
      }
   }
}