
RENEWAL / ITEMS
Wolf Orb (Sound Metal)
#310549Card
Wolf_Orb_Skill_34
TypeCard
Weight0
Buy price0 z
Sell price0 z
Description
Increase Metallic Sound damage by 5% and neutral property magical damage by 5%.
------------------------
When refine level is 7 or higher, increase Metallic Sound and neutral property magical damage by additional 10%.
------------------------
When refine level is 9 or higher, increase Metallic Sound and neutral property magical damage by additional 10%.
------------------------
When refine level is 11 or higher, increase Metallic Sound and neutral property magical damage by additional 15%.
English Renewal client description · iRO. Numeric server data above takes precedence when the client text differs.
Item details
- Trade
Item effect script
.@r = getrefine();
bonus2 bMagicAtkEle,Ele_Neutral,5;
bonus2 bSkillAtk,"WM_METALICSOUND",5;
if (.@r>=7) {
bonus2 bMagicAtkEle,Ele_Neutral,10;
bonus2 bSkillAtk,"WM_METALICSOUND",10;
if (.@r>=9) {
bonus2 bMagicAtkEle,Ele_Neutral,10;
bonus2 bSkillAtk,"WM_METALICSOUND",10;
if (.@r>=11) {
bonus2 bMagicAtkEle,Ele_Neutral,15;
bonus2 bSkillAtk,"WM_METALICSOUND",15;
}
}
}