Officer's Hat-LT [1], броня (Renewal)

Officer's Hat-LT [1] (OFFICER_CAP_LT) – броня.

Officer's Hat-LT [1], броня (Renewal)

Every 2 refine rate, Atk + 10, Matk + 10.
If refine rate is 7 or higher, Atk + 5%, Matk + 5%.
If refine rate is 9 or higher, when dealing physical damage, has a 5% chance to restore 5% of damage as HP and a 1% chance to restore 3% of damage as SP,
when dealing magical damage, has a 4% chance to recover 300 HP and 70 SP per second for 4 times.
If refine rate is 11 or higher, increases attack speed (reduces delay after attack by 10%), reduces variable casting time by 10%.

[Bonus by grade]
[Grade D] Increases melee and long ranged physical damage by 5%, increases all property magical damage by 5%.
[Grade C] If refine rate is 12 or higher, reduces fixed casting time by 0.5 seconds.
[Grade B] P.Atk + 5, S.Matk + 5.

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

  • ID: 29510
  • Код: OFFICER_CAP_LT
  • Тип: броня
  • Уровень брони: 2
  • Защита: 35
  •  
  • Требуемый уровень: 100
  • Вес: 40

Скрипт

.@g = getenchantgrade();
.@r = getrefine();
bonus bMatk,10*(.@r/2);
bonus bBaseAtk,10*(.@r/2);
if (.@r>=7) {
   bonus bMatkRate,5;
   bonus bAtkRate,5;
   if (.@r>=9) {
      bonus2 bHPDrainRate,50,5;
      bonus2 bSPDrainRate,10,3;
      autobonus "{ bonus2 bHPRegenRate,300,1000; bonus2 bSPRegenRate,70,1000; }",40,4000,BF_MAGIC;
      if (.@r>=11) {
         bonus bAspdRate,10;
         bonus bVariableCastrate,-10;
      }
   }
}
if (.@g>=ENCHANTGRADE_D) {
   bonus2 bMagicAtkEle,Ele_All,5;
   bonus bLongAtkRate,5;
   bonus bShortAtkRate,5;
   if (.@g>=ENCHANTGRADE_C) {
      if (.@r>=12) {
         bonus bFixedCast,-500;
      }
      if (.@g>=ENCHANTGRADE_B) {
         bonus bPAtk,5;
         bonus bSMatk,5;
      }
   }
}