Freedom Stick-LT [2], посох (Renewal)
Freedom Stick-LT [2] (FREEDOM_STICK_LT) – оружие.
![Freedom Stick-LT [2], посох (Renewal) Freedom Stick-LT [2], посох (Renewal)](/images/db/items/picture/550082.png)
Can't be destroyed.
Matk + 210, Matk + 5%.
If the user's base level is 210 or higher, SPL + 2, S.Matk + 1.
Matk + 15 per 2 refine rate.
Increases Heaven's Drive damage by 30% per 3 refine rate.
If refine rate is 7 or higher, increases magical damage against all property enemies by 15%, enables to use Psychic Wave level 5.
If refine rate is 9 or higher, increases Psychic Wave damage by 20%, reduces variable casting time by 15%.
If refine rate is 11 or higher, increases earth and neutral property magical damage by 20%, reduces variable casting time by additional 5%
When equipped with Hero Boots-LT, Matk + 10%, S.Matk + 2.
[Bonus by grade]
[Grade D] Matk + 3%.
[Grade C] Increases earth and neutral property magical damage by 15%, S.Matk + 1.
[Grade B] SPL + 3, S.Matk + 2.
Скрипт
.@g = getenchantgrade();
.@r = getrefine();
bonus bUnbreakableWeapon;
bonus bMatkRate,5;
bonus bMatk,210;
if (BaseLevel>=210) {
bonus bSMatk,1;
bonus bSpl,2;
}
if (.@r>=7) {
skill "SO_PSYCHIC_WAVE",5;
bonus2 bMagicAddEle,Ele_All,15;
if (.@r>=9) {
bonus bVariableCastrate,-15;
bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",20;
if (.@r>=11) {
bonus2 bMagicAtkEle,Ele_Neutral,20;
bonus2 bMagicAtkEle,Ele_Earth,20;
bonus bVariableCastrate,-5;
}
}
}
if (.@g>=ENCHANTGRADE_D) {
bonus bMatkRate,3;
if (.@g>=ENCHANTGRADE_C) {
bonus2 bMagicAtkEle,Ele_Neutral,15;
bonus2 bMagicAtkEle,Ele_Earth,15;
bonus bSMatk,1;
if (.@g>=ENCHANTGRADE_B) {
bonus bSMatk,2;
bonus bSpl,3;
}
}
}
bonus bMatk,15*(.@r/2);
bonus2 bSkillAtk,"WZ_HEAVENDRIVE",30*(.@r/3);