Furious Saint Wand [2], посох (Renewal)

Furious Saint Wand [2] (SAINTWAND_FURIOUS) – оружие.

 

Can't be destroyed.
Matk + 180.
Increases Framen damage by 5%.
If the user's base level is 210 or higher, Matk + 4%, Matk + 40.
If the user's base level is 220 or higher, increases Framen damage by 5%.
If the user's base level is 230 or higher, increases magical damage against all size enemies by 10%.
If refine rate is 7 or higher, increases holy property magical damage by 10%.
If refine rate is 9 or higher, increases Framen damage by additional 10%.
If refine rate is 10 or higher, reduces variable casting time by 10%.
If refine rate is 11 or higher, increases Framen damage by additional 10%.

When equipped with Furios Boots, reduces global cooldown by 10%, increases Framen damage by (the sum of refine rate)%.

[Bonus by grade]
[Grade D] Increases holy property magical damage by 10%.
[Grade C] Increases Framen damage by 5%.
[Grade B] Increases Framen damage by additional 10%.
[Grade A] Every 2 refine rate, Matk + 3%, S.Matk + 3.

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

  • ID: 31525
  • Код: SAINTWAND_FURIOUS
  • Тип: оружие
  • Подтип: посох
  • Уровень оружия: 5
  • Атака: 100
  • Магическая атака: 180
  •  
  • Требуемый уровень: 205
  • Профессии: priest
  • Вес: 140

Скрипт

.@g = getenchantgrade();
.@r = getrefine();
bonus bUnbreakableWeapon;
bonus2 bSkillAtk,"CD_FRAMEN",5;
if (BaseLevel>=210) {
   bonus bMatkRate,4;
   bonus bMatk,40;
}
if (BaseLevel>=220) {
   bonus2 bSkillAtk,"CD_FRAMEN",5;
}
if (BaseLevel>=230) {
   bonus2 bMagicAddSize,Size_All,10;
}
if (.@r>=7) {
   bonus2 bMagicAtkEle,Ele_Holy,10;
   if (.@r>=9) {
      bonus2 bSkillAtk,"CD_FRAMEN",10;
      if (.@r>=10) {
         bonus bVariableCastrate,-10;
         if (.@r>=11) {
            bonus2 bSkillAtk,"CD_FRAMEN",10;
         }
      }
   }
}
if (.@g>=ENCHANTGRADE_D) {
   bonus2 bMagicAtkEle,Ele_Holy,10;
   if (.@g>=ENCHANTGRADE_C) {
      bonus2 bSkillAtk,"CD_FRAMEN",5;
      if (.@g>=ENCHANTGRADE_B) {
         bonus2 bSkillAtk,"CD_FRAMEN",10;
         if (.@g>=ENCHANTGRADE_A) {
            bonus bSMatk,3*(.@r/2);
            bonus bMatkRate,3*(.@r/2);
         }
      }
   }
}