Furious Saint Book [2], книга (Renewal)

Furious Saint Book [2] (SAINTBOOK_FURIOUS) – оружие.

 

Matk + 145.
Increases Petitio damage by 5%.
If the user's base level is 210 or higher, Atk + 4%, Atk + 40.
If the user's base level is 220 or higher, increases Petitio damage by 5%.
If the user's base level is 230 or higher, increases physical / magical damage against all size enemies by 10%.
If refine rate is 7 or higher, increases critical damage by 10%.
If refine rate is 9 or higher, increases Petitio damage by additional 10%.
If refine rate is 10 or higher, when dealing normal melee physical damage, has a 7% chance to auto-cast Framen level 3 (if the user has higher level, that level will be cast instead).
If refine rate is 11 or higher, increases Petitio damage by additional 10%.

When equipped with Furios Boots, when dealing physical damage, has a 7% chance to increase Duple Light damage by (the sum of refine rate x 15)% for 10 seconds.

[Bonus by grade]
[Grade D] Increases critical damage by 10%.
[Grade C] Increases Petitio damage by 5%.
[Grade B] Increases Petitio damage by additional 10%.
[Grade A] Every 2 refine rate, Atk + 3%, P.Atk + 3.

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

  • ID: 31412
  • Код: SAINTBOOK_FURIOUS
  • Тип: оружие
  • Подтип: книга
  • Уровень оружия: 5
  • Атака: 175
  • Магическая атака: 145
  •  
  • Требуемый уровень: 205
  • Профессии: priest
  • Вес: 120

Скрипт

.@g = getenchantgrade();
.@r = getrefine();
bonus2 bSkillAtk,"CD_PETITIO",5;
if (BaseLevel>=210) {
   bonus bAtkRate,4;
   bonus bBaseAtk,40;
}
if (BaseLevel>=220) {
   bonus2 bSkillAtk,"CD_PETITIO",5;
}
if (BaseLevel>=230) {
   bonus2 bAddSize,Size_All,10;
   bonus2 bMagicAddSize,Size_All,10;
}
if (.@r>=7) {
   bonus bCritAtkRate,10;
   if (.@r>=9) {
      bonus2 bSkillAtk,"CD_PETITIO",10;
      if (.@r>=10) {
         if (.@r>=11) {
            bonus2 bSkillAtk,"CD_PETITIO",10;
         }
      }
   }
}
if (.@g>=ENCHANTGRADE_D) {
   bonus bCritAtkRate,10;
   if (.@g>=ENCHANTGRADE_C) {
      bonus2 bSkillAtk,"CD_PETITIO",5;
      if (.@g>=ENCHANTGRADE_B) {
         bonus2 bSkillAtk,"CD_PETITIO",10;
         if (.@g>=ENCHANTGRADE_A) {
            bonus bPAtk,3*(.@r/2);
            bonus bAtkRate,3*(.@r/2);
         }
      }
   }
}