
RENEWAL / ITEMS
Wolf Orb (Powerful) Level 2
#310583Card
Wolf_Orb_P_Full_2
TypeCard
Weight0
Buy price0 z
Sell price0 z
Description
Increase melee, long ranged physical, and all property magical damage by 2%.
------------------------
When refine level is 7 or higher, increase melee, long ranged physical, and all property magical damage by additional 2%.
------------------------
When refine level is 9 or higher, increase melee, long ranged physical, and all property magical damage by additional 3%.
------------------------
When refine level is 11 or higher, increase melee, long ranged physical, and all property magical damage by additional 3%.
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_All,2;
bonus bLongAtkRate,2;
bonus bShortAtkRate,2;
if (.@r>=7) {
bonus2 bMagicAtkEle,Ele_All,2;
bonus bLongAtkRate,2;
bonus bShortAtkRate,2;
if (.@r>=9) {
bonus2 bMagicAtkEle,Ele_All,3;
bonus bLongAtkRate,3;
bonus bShortAtkRate,3;
if (.@r>=11) {
bonus2 bMagicAtkEle,Ele_All,3;
bonus bLongAtkRate,3;
bonus bShortAtkRate,3;
}
}
}