Furious Slayer [2], двуручный меч (Renewal)
Furious Slayer [2] (SLAYER_FURIOUS) – оружие.
Increases Servant Weapon damage by 10%.
If the user's base level is 210 or higher, Atk + 7%, Atk + 70.
If the user's base level is 220 or higher, increases Servant Weapon damage by 5%.
If the user's base level is 230 or higher, increases physical 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 attack speed (reduces delay after attack by 10%).
If refine rate is 10 or higher, Cri + 10.
If refine rate is 11 or higher, increases Servant Weapon damage by additional 10%.
When equipped with Furios Boots, increases Hack and Slasher damage by 15%, when dealing normal melee physical damage, has a 5% chance to auto-cast Hack and Slasher level 5 (the user must have learned Hack and Slasher at level 5 or higher for auto-casting).
[Bonus by grade]
[Grade D] Increases critical damage by 15%.
[Grade C] Increases Servant Weapon damage by 5%.
[Grade B] Increases Servant Weapon damage by additional 10%.
[Grade A] Every 2 refine rate, Atk + 4%, P.Atk + 4.
Базовые свойства предмета
- ID: 31723
 - Код: SLAYER_FURIOUS
 - Тип: оружие
 - Подтип: двуручный меч
 - Уровень оружия: 5
 - Атака: 260
 - Требуемый уровень: 205
 - Профессии: knight
 
- Вес: 350
 
Скрипт
.@g = getenchantgrade();
.@r = getrefine();
bonus2 bSkillAtk,"DK_SERVANTWEAPON_ATK",10;
if (BaseLevel>=210) {
   bonus bAtkRate,7;
   bonus bBaseAtk,70;
}
if (BaseLevel>=220) {
   bonus2 bSkillAtk,"DK_SERVANTWEAPON_ATK",5;
}
if (BaseLevel>=230) {
   bonus2 bAddSize,Size_All,10;
}
if (.@r>=7) {
   bonus bCritAtkRate,10;
   if (.@r>=9) {
      bonus bAspdRate,15;
      if (.@r>=10) {
         bonus bCritical,10;
         if (.@r>=11) {
            bonus2 bSkillAtk,"DK_SERVANTWEAPON_ATK",10;
         }
      }
   }
}
if (.@g>=ENCHANTGRADE_D) {
   bonus bCritAtkRate,15;
   if (.@g>=ENCHANTGRADE_C) {
      bonus2 bSkillAtk,"DK_SERVANTWEAPON_ATK",5;
      if (.@g>=ENCHANTGRADE_B) {
         bonus2 bSkillAtk,"DK_SERVANTWEAPON_ATK",10;
         if (.@g>=ENCHANTGRADE_A) {
            bonus bPAtk,4*(.@r/2);
            bonus bAtkRate,4*(.@r/2);
         }
      }
   }
}