
RENEWAL / ITEMS
Wolf Orb (Sonic Impact)
#310528Card
Wolf_Orb_Skill_13
TypeCard
Weight0
Buy price0 z
Sell price0 z
Description
Increase Sonic Blow and Cross Impact damage by 15%.
------------------------
When refine level is 7 or higher, increase Sonic Blow and Cross Impact damage by additional 15%.
------------------------
When refine level is 9 or higher, increase Sonic Blow and Cross Impact damage by additional 15%.
------------------------
When refine level is 11 or higher, increase Sonic Blow and Cross Impact 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 bSkillAtk,"GC_CROSSIMPACT",15;
bonus2 bSkillAtk,"AS_SONICBLOW",15;
if (.@r>=7) {
bonus2 bSkillAtk,"GC_CROSSIMPACT",15;
bonus2 bSkillAtk,"AS_SONICBLOW",15;
if (.@r>=9) {
bonus2 bSkillAtk,"GC_CROSSIMPACT",15;
bonus2 bSkillAtk,"AS_SONICBLOW",15;
if (.@r>=11) {
bonus2 bSkillAtk,"GC_CROSSIMPACT",15;
bonus2 bSkillAtk,"AS_SONICBLOW",15;
}
}
}