Vivatus Fides Wand [2], посох (Renewal)

Vivatus Fides Wand [2] (VIVATUS_F_WAND) – оружие.

Vivatus Fides Wand [2], посох (Renewal)

Matk + 210.
Can't be destroyed.
Increases Adoramus damage by 10%.
Matk + 12 per 3 refine rate.
If refine rate is 7 or higher, increases Adoramus damage by additional 20%.
If refine rate is 9 or higher, increases magical damage againt all size enemies by 15%.
If refine rate is 11 or higher, increases Adoramus damage by additional 25%.
If refine rate is 12 or higher, increases holy property magical damage by 15%.


[Bonus by grade]
[Grade D] If refine rate is 11 or higher, increases magical damage againt all property enemies by 15%.
[Grade C] Increases Adoramus damage by additional 15%.
[Grade B] Matk + 7%.
[Grade A] SPL + 1 and S.Matk + 1 per 3 refine rate.

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

  • ID: 31441
  • Код: VIVATUS_F_WAND
  • Тип: оружие
  • Подтип: посох
  • Уровень оружия: 5
  • Атака: 160
  • Магическая атака: 210
  •  
  • Требуемый уровень: 210
  • Профессии: priest
  • Вес: 150

Скрипт

.@g = getenchantgrade();
.@r = getrefine();
bonus bUnbreakableWeapon;
bonus2 bSkillAtk,"AB_ADORAMUS",10;
bonus bMatk,12*(.@r/3);
if (.@r>=7) {
   bonus2 bSkillAtk,"AB_ADORAMUS",20;
   if (.@r>=9) {
      bonus2 bMagicAddSize,Size_All,15;
      if (.@r>=11) {
         bonus2 bSkillAtk,"AB_ADORAMUS",25;
         if (.@r>=12) {
            bonus2 bMagicAtkEle,Ele_Holy,15;
         }
      }
   }
}
if (.@g >= ENCHANTGRADE_D) {
   if (.@r>=11) {
      bonus2 bMagicAddEle,Ele_All,15;
   }
}
if (.@g >= ENCHANTGRADE_C) {
   bonus2 bSkillAtk,"AB_ADORAMUS",15;
   if (.@g >= ENCHANTGRADE_B) {
      bonus bMatkRate,7;
      if (.@g >= ENCHANTGRADE_A) {
         bonus bSMatk,(.@r/3);
         bonus bSpl,(.@r/3);
      }
   }
}