Elemental Spell Booster Stick, посох (Renewal)
Elemental Spell Booster Stick (ES_B_STICK) – оружие.

Can't be refined by normal means.
Can't be destroyed.
Matk + 2%, Matk + 160.
Matk + 3 per refine rate.
Matk + 3 per 15 base level (up to level 195).
If refine rate is 7 or higher, increases water, wind, earth and neutral property magical damage by 1% per each level of Magnetic Earth user learned.
If refine rate is 9 or higher, reduces variable casting time by 10%, increases Psychic Wave, Diamond Dust, Earth Grave and Varetyr Spear damage by 25%.
If refine rate is 11 or higher, increases magical damage against all size enemies by 15%, increases water, wind, earth and neutral property magical damage by additional 15%.
If refine rate is 13 or higher, increases Psychic Wave, Diamond Dust, Earth Grave and Varetyr Spear damage by additional 15%.
Скрипт
.@r = getrefine();
bonus bUnbreakableWeapon;
bonus bMatkRate,2;
bonus bMatk,(3*.@r)+3*(min(BaseLevel,195)/15);
if (.@r>=7) {
.@val = getskilllv("SA_LANDPROTECTOR");
bonus2 bMagicAtkEle,Ele_Neutral,.@val;
bonus2 bMagicAtkEle,Ele_Earth,.@val;
bonus2 bMagicAtkEle,Ele_Water,.@val;
bonus2 bMagicAtkEle,Ele_Wind,.@val;
bonus2 bMagicAtkEle,Ele_Poison,.@val;
}
if (.@r>=9) {
bonus bVariableCastrate,-10;
bonus2 bSkillAtk,"SO_DIAMONDDUST",25;
bonus2 bSkillAtk,"SO_VARETYR_SPEAR",25;
bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",25;
bonus2 bSkillAtk,"SO_EARTHGRAVE",25;
bonus2 bSkillAtk,"SO_POISON_BUSTER",25;
}
if (.@r>=11) {
bonus2 bMagicAddSize,Size_All,15;
bonus2 bMagicAtkEle,Ele_Neutral,15;
bonus2 bMagicAtkEle,Ele_Earth,15;
bonus2 bMagicAtkEle,Ele_Water,15;
bonus2 bMagicAtkEle,Ele_Wind,15;
bonus2 bMagicAtkEle,Ele_Poison,15;
}
if (.@r>=13) {
bonus2 bSkillAtk,"SO_DIAMONDDUST",15;
bonus2 bSkillAtk,"SO_VARETYR_SPEAR",15;
bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",15;
bonus2 bSkillAtk,"SO_EARTHGRAVE",15;
bonus2 bSkillAtk,"SO_POISON_BUSTER",15;
}