Iron Nail-LT [2], кастет (Renewal)
Iron Nail-LT [2] (IRON_NAIL_K_LT) – оружие.
![Iron Nail-LT [2], кастет (Renewal) Iron Nail-LT [2], кастет (Renewal)](/images/db/items/picture/560026.png)
Atk + 5%.
If the user's base level is 210 or higher, POW + 2, P.Atk + 1.
Atk + 15 per 2 refine rate.
Increases long ranged physical damage by 4% per 3 refine rate.
If refine rate is 7 or higher, increases Rampage Blast and Lightning Ride damage by 20%.
If refine rate is 9 or higher, reduces skill cooldown of Rampage Blast and Earth Shaker by 1 second, reduces SP consumption of Rampage Blast by 15%.
If refine rate is 11 or higher, increases physical damage against all property enemies by 15%, increases Rampage Blast and Lightning Ride damage by additional 25%.
When equipped with Hero Boots-LT, Atk + 10%, P.Atk + 2.
[Bonus by grade]
[Grade D] Atk + 3%.
[Grade C] Increases long ranged physical damage by 15%, P.Atk + 1.
[Grade B] POW + 3, P.Atk + 2.
Скрипт
.@g = getenchantgrade();
.@r = getrefine();
bonus bAtkRate,5;
if (BaseLevel>=210) {
bonus bPAtk,1;
bonus bPow,2;
}
if (.@r>=7) {
bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",20;
bonus2 bSkillAtk,"SR_RIDEINLIGHTNING",20;
if (.@r>=9) {
bonus2 bSkillUseSPrate,"SR_RAMPAGEBLASTER",15;
bonus2 bSkillCooldown,"SR_RAMPAGEBLASTER",-1000;
bonus2 bSkillCooldown,"SR_EARTHSHAKER",-1000;
if (.@r>=11) {
bonus2 bAddEle,Ele_All,15;
bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",25;
bonus2 bSkillAtk,"SR_RIDEINLIGHTNING",25;
}
}
}
if (.@g >= ENCHANTGRADE_D) {
bonus bAtkRate,3;
if (.@g >= ENCHANTGRADE_C) {
bonus bLongAtkRate,15;
bonus bPAtk,1;
if (.@g >= ENCHANTGRADE_B) {
bonus bPAtk,2;
bonus bPow,3;
}
}
}
bonus bBaseAtk,15*(.@r/2);
bonus bLongAtkRate,4*(.@r/3);