
RENEWAL / ITEMS
Wolf Orb (Brand Drive)
#310519Card
Wolf_Orb_Skill_4
TypeCard
Weight0
Buy price0 z
Sell price0 z
Description
Increase Overbrand and Earth Drive damage by 15%.
------------------------
When refine level is 7 or higher, increase Overbrand and Earth Drive damage by additional 15%.
------------------------
When refine level is 9 or higher, increase Overbrand and Earth Drive damage by additional 15%.
------------------------
When refine level is 11 or higher, increase Overbrand damage by additional 15%, reduce Earth Drive cooldown by 1 second.
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 bSkillAtk,"LG_EARTHDRIVE",15;
bonus2 bSkillAtk,"LG_OVERBRAND",15;
if (.@r>=7) {
bonus2 bSkillAtk,"LG_EARTHDRIVE",15;
bonus2 bSkillAtk,"LG_OVERBRAND",15;
if (.@r>=9) {
bonus2 bSkillAtk,"LG_EARTHDRIVE",15;
bonus2 bSkillAtk,"LG_OVERBRAND",15;
if (.@r>=11) {
bonus2 bSkillCooldown,"LG_EARTHDRIVE",-1000;
bonus2 bSkillAtk,"LG_OVERBRAND",15;
}
}
}