
RENEWAL / ITEMS
Ice Magic Orb (Hyper Melee)
#311189Card
Ice_F_Orb_Skill_52
TypeCard
Weight0
Buy price0 z
Sell price0 z
Description
Increases Holy Cross and Back Stab damage by 15%.
If refine rate is 7 or higher, increases Holy Cross and Back Stab damage by additional 15%.
If refine rate is 9 or higher, increases Holy Cross and Back Stab damage by additional 15%.
If refine rate is 11 or higher, increases Holy Cross and Back Stab damage by additional 15%, increases Double Bowling Bash and Mega Sonic Blow damage by 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,"CR_HOLYCROSS",15;
bonus2 bSkillAtk,"RG_BACKSTAP",15;
if (.@r>=7) {
bonus2 bSkillAtk,"CR_HOLYCROSS",15;
bonus2 bSkillAtk,"RG_BACKSTAP",15;
if (.@r>=9) {
bonus2 bSkillAtk,"CR_HOLYCROSS",15;
bonus2 bSkillAtk,"RG_BACKSTAP",15;
if (.@r>=11) {
bonus2 bSkillAtk,"CR_HOLYCROSS",15;
bonus2 bSkillAtk,"RG_BACKSTAP",15;
bonus2 bSkillAtk,"HN_DOUBLEBOWLINGBASH",15;
bonus2 bSkillAtk,"HN_MEGA_SONIC_BLOW",15;
}
}
}