
RENEWAL / ITEMS
Wolf Orb (Melee Duple)
#310542Card
Wolf_Orb_Skill_27
TypeCard
Weight0
Buy price0 z
Sell price0 z
Description
Increase Duple Light damage by 15% and melee physical damage by 5%.
------------------------
When refine level is 7 or higher, increase Duple Light damage by additional 15% and melee physical damage by additional 10%.
------------------------
When refine level is 9 or higher, increase Duple Light damage by additional 15% and melee physical damage by additional 10%.
------------------------
When refine level is 11 or higher, increase Duple Light damage by additional 15% and melee physical 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();
bonus bShortAtkRate,5;
bonus2 bSkillAtk,"AB_DUPLELIGHT_MELEE",15;
bonus2 bSkillAtk,"AB_DUPLELIGHT_MAGIC",15;
if (.@r>=7) {
bonus bShortAtkRate,10;
bonus2 bSkillAtk,"AB_DUPLELIGHT_MELEE",15;
bonus2 bSkillAtk,"AB_DUPLELIGHT_MAGIC",15;
if (.@r>=9) {
bonus bShortAtkRate,10;
bonus2 bSkillAtk,"AB_DUPLELIGHT_MELEE",15;
bonus2 bSkillAtk,"AB_DUPLELIGHT_MAGIC",15;
if (.@r>=11) {
bonus bShortAtkRate,15;
bonus2 bSkillAtk,"AB_DUPLELIGHT_MELEE",15;
bonus2 bSkillAtk,"AB_DUPLELIGHT_MAGIC",15;
}
}
}