Magic Sword-LT [2], кинжал (Renewal)
Magic Sword-LT [2] (MAGIC_SWORD_LT) – оружие.
![Magic Sword-LT [2], кинжал (Renewal) Magic Sword-LT [2], кинжал (Renewal)](/images/db/items/picture/510040.png)
Matk + 195, Matk + 5%.
If the user's base level is 210 or higher, SPL + 2, S.Matk + 1.
Matk + 15 per 2 refine rate.
Increases attack speed (reduces delay after attack by 2%) per 3 refine rate.
If refine rate is 7 or higher, when dealing melee physical damage, has a chance to auto-cast Meteor Storm level 7.
If refine rate is 9 or higher, increases all property magical damage by 15%, increases magical damage against all property enemies by 15%.
If refine rate is 11 or higher, when dealing melee physical damage, has a chance to auto-cast Psychic Wave level 5.
When equipped with Hero Boots-LT, Matk + 10%, S.Matk + 2.
[Bonus by grade]
[Grade D] Matk + 3%.
[Grade C] Increases all property magical damage by 15%, S.Matk + 1.
[Grade B] SPL + 3, S.Matk + 2.
Скрипт
.@g = getenchantgrade();
.@r = getrefine();
bonus bMatkRate,5;
bonus bMatk,195;
if (BaseLevel>=210) {
bonus bSMatk,1;
bonus bSpl,2;
}
if (.@r>=7) {
bonus5 bAutoSpell,"WZ_METEOR",7,100,BF_SHORT|BF_WEAPON,1;
if (.@r>=9) {
bonus2 bMagicAddEle,Ele_All,15;
bonus2 bMagicAtkEle,Ele_All,15;
if (.@r>=11) {
bonus5 bAutoSpell,"SO_PSYCHIC_WAVE",5,100,BF_SHORT|BF_WEAPON,1;
}
}
}
if (.@g >= ENCHANTGRADE_D) {
bonus bMatkRate,3;
if (.@g >= ENCHANTGRADE_C) {
bonus2 bMagicAtkEle,Ele_All,15;
bonus bSMatk,1;
if (.@g >= ENCHANTGRADE_B) {
bonus bSMatk,2;
bonus bSpl,3;
}
}
}
bonus bMatk,15*(.@r/2);
bonus bAspdRate,2*(.@r/3);