Iron Staff-LT [2], двуручный посох (Renewal)

Iron Staff-LT [2] (IRON_STAFF_LT) – оружие.

Iron Staff-LT [2], двуручный посох (Renewal)

Can't be destroyed.
Matk + 235, Matk + 5%.
If the user's base level is 210 or higher, SPL + 2, S.Matk + 1.
Matk + 15 per 2 refine rate.
Increases Earth Strain and Gravitational Field damage by 12% per 3 refine rate.
If refine rate is 7 or higher, reduces variable casting time by 15%, increases neutral, earth and fire property magical damage by 20%.
If refine rate is 9 or higher, reduces skill cooldown of Earth Strain by 1 second, increases Comet damage by 30%.
If refine rate is 11 or higher, increases magical damage against all size enemies by 20%, increases Crimson Rock damage by 30%.

When equipped with Hero Boots-LT, Matk + 10%, S.Matk + 2.

[Bonus by grade]
[Grade D] Matk + 3%.
[Grade C] Increases neutral, earth and fire property magical damage by 15%, S.Matk + 1.
[Grade B] SPL + 3, S.Matk + 2.

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

  • Вес: 100

Скрипт

.@g = getenchantgrade();
.@r = getrefine();
bonus bUnbreakableWeapon;
bonus bMatkRate,5;
bonus bMatk,235;
if (BaseLevel>=210) {
   bonus bSMatk,1;
   bonus bSpl,2;
}
if (.@r>=7) {
   bonus2 bMagicAtkEle,Ele_Fire,20;
   bonus2 bMagicAtkEle,Ele_Earth,20;
   bonus2 bMagicAtkEle,Ele_Neutral,20;
   bonus bVariableCastrate,-15;
   if (.@r>=9) {
      bonus2 bSkillCooldown,"WL_EARTHSTRAIN",-1000;
      bonus2 bSkillAtk,"WL_COMET",30;
      if (.@r>=11) {
         bonus2 bMagicAddSize,Size_All,20;
         bonus2 bSkillAtk,"WL_CRIMSONROCK",30;
      }
   }
}
if (.@g >= ENCHANTGRADE_D) {
   bonus bMatkRate,3;
   if (.@g >= ENCHANTGRADE_C) {
      bonus2 bMagicAtkEle,Ele_Fire,15;
      bonus2 bMagicAtkEle,Ele_Earth,15;
      bonus2 bMagicAtkEle,Ele_Neutral,15;
      bonus bSMatk,1;
      if (.@g >= ENCHANTGRADE_B) {
         bonus bSMatk,2;
         bonus bSpl,3;
      }
   }
}
bonus bMatk,15*(.@r/2);
bonus2 bSkillAtk,"HW_GRAVITATION",12*(.@r/3);
bonus2 bSkillAtk,"WL_EARTHSTRAIN",12*(.@r/3);