Vesper Headgear [1], броня (Renewal)

Vesper Headgear [1] (VESPERHEADGEAR_) – броня.

Vesper Headgear [1], броня (Renewal)

SPL + 5, CON + 5, MaxSP - 10%.
Reduces variable casting time by 10%.
Every 2 refine rate, Matk + 25, Def + 10.
If refine rate is 7 or higher, increases all property magical damage by 25%.
If refine rate is 9 or higher, Matk + 40, Matk + 10%
If refine rate is 11 or higher, S.Matk + 12, increases magical damage against all property enemies by 12%.

When equipped with Vesper Card, reduces variable casting time by 7%, increases magical damage against boss monsters by 10%.
When equipped with Sealed Vesper Card, reduces variable casting time by 3%, increases magical damage against boss monsters by 5%.


[Bonus by grade]
[Grade D] Matk + 5%, SPL + 5.
[Grade C] Increases magical damage against all size enemies by 12%.
[Grade B] S.Matk + 2, reduces fixed casting time by 0.5 seconds.
[Grade A] Every 3 refine rate, S.Matk + 2, increases magical damage against all race monsters (except players) by 3%.

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

  • ID: 29233
  • Код: VESPERHEADGEAR_
  • Тип: броня
  • Уровень брони: 2
  • Защита: 15
  •  
  • Требуемый уровень: 240
  • Вес: 40

Скрипт

.@g = getenchantgrade();
.@r = getrefine();
bonus bMaxSPrate,-10;
bonus bSpl,5;
bonus bCon,5;
bonus bVariableCastrate,-10;
bonus bMatk,25*(.@r/2);
bonus bDef,10*(.@r/2);
if (.@r>=7) {
   bonus2 bMagicAtkEle,Ele_All,25;
   if (.@r>=9) {
      bonus bMatkRate,10;
      bonus bMatk,40;
      if (.@r>=11) {
         bonus2 bMagicAddEle,Ele_All,12;
         bonus bSMatk,12;
      }
   }
}
if (.@g>=ENCHANTGRADE_D) {
   bonus bMatkRate,5;
   bonus bSpl,5;
   if (.@g>=ENCHANTGRADE_C) {
      bonus2 bMagicAddSize,Size_All,12;
      if (.@g>=ENCHANTGRADE_B) {
         bonus bFixedCast,-500;
         bonus bSMatk,2;
         if (.@g>=ENCHANTGRADE_A) {
            bonus2 bMagicAddRace,RC_All,3*(.@r/3);
            bonus2 bMagicAddRace,RC_Player_Human,-3*(.@r/3);
            bonus2 bMagicAddRace,RC_Player_Doram,-3*(.@r/3);
            bonus bSMatk,2*(.@r/3);
         }
      }
   }
}