
RENEWAL / ITEMS
Ice Magic Orb (Thunder Blast)
#311166Card
Ice_F_Orb_Skill_29
TypeCard
Weight0
Buy price0 z
Sell price0 z
Description
Increases Rampage Blast and Lightning Ride damage by 15%.
If refine rate is 7 or higher, Increases Rampage Blast and Lightning Ride damage by additional 15%.
If refine rate is 9 or higher, Increases Rampage Blast and Lightning Ride damage by additional 15%.
If refine rate is 11 or higher, Increases Lightning Ride damage by additional 15%, reduces skill cooldown of Rampage Blast by 0.5 seconds, increases Explosion Blaster 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,"SR_RAMPAGEBLASTER",15;
bonus2 bSkillAtk,"SR_RIDEINLIGHTNING",15;
if (.@r>=7) {
bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",15;
bonus2 bSkillAtk,"SR_RIDEINLIGHTNING",15;
if (.@r>=9) {
bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",15;
bonus2 bSkillAtk,"SR_RIDEINLIGHTNING",15;
if (.@r>=11) {
bonus2 bSkillAtk,"SR_RIDEINLIGHTNING",15;
bonus2 bSkillCooldown,"SR_RAMPAGEBLASTER",-500;
bonus2 bSkillAtk,"IQ_EXPOSION_BLASTER",15;
}
}
}