Furious Trident [2], двуручное копьё (Renewal)

Furious Trident [2] (TRIDENT_FURIOUS) – оружие.

 

Increases Madness Crusher 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 Madness Crusher 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 long ranged physical damage by 10%.
If refine rate is 9 or higher, increases Madness Crusher damage by additional 10%.
If refine rate is 10 or higher, reduces global cooldown by 10%.
If refine rate is 11 or higher, increases Madness Crusher damage by additional 10%.

When equipped with Furios Boots, increases Madness Crusher damage by (the sum of refine rate)%.

[Bonus by grade]
[Grade D] Increases long ranged physical damage by 15%.
[Grade C] Increases Madness Crusher damage by 5%.
[Grade B] Increases Madness Crusher damage by additional 10%.
[Grade A] Every 2 refine rate, Atk + 4%, P.Atk + 4.

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

  • ID: 31812
  • Код: TRIDENT_FURIOUS
  • Тип: оружие
  • Подтип: двуручное копьё
  • Уровень оружия: 5
  • Атака: 260
  •  
  • Требуемый уровень: 205
  • Профессии: knight
  • Вес: 850

Скрипт

.@g = getenchantgrade();
.@r = getrefine();
bonus2 bSkillAtk,"DK_MADNESS_CRUSHER",5;
if (BaseLevel>=210) {
   bonus bAtkRate,7;
   bonus bBaseAtk,70;
}
if (BaseLevel>=220) {
   bonus2 bSkillAtk,"DK_MADNESS_CRUSHER",5;
}
if (BaseLevel>=230) {
   bonus2 bAddSize,Size_All,10;
}
if (.@r>=7) {
   bonus bLongAtkRate,10;
   if (.@r>=9) {
      bonus2 bSkillAtk,"DK_MADNESS_CRUSHER",10;
      if (.@r>=10) {
         bonus bDelayrate,-10;
         if (.@r>=11) {
            bonus2 bSkillAtk,"DK_MADNESS_CRUSHER",10;
         }
      }
   }
}
if (.@g>=ENCHANTGRADE_D) {
   bonus bLongAtkRate,15;
   if (.@g>=ENCHANTGRADE_C) {
      bonus2 bSkillAtk,"DK_MADNESS_CRUSHER",5;
      if (.@g>=ENCHANTGRADE_B) {
         bonus2 bSkillAtk,"DK_MADNESS_CRUSHER",10;
         if (.@g>=ENCHANTGRADE_A) {
            bonus bPAtk,4*(.@r/2);
            bonus bAtkRate,4*(.@r/2);
         }
      }
   }
}