
RENEWAL / ITEMS
Ice Magic Orb (Acid Explosion)
#311149Card
Ice_F_Orb_Skill_12
TypeCard
Weight0
Buy price0 z
Sell price0 z
Description
Increases Acid Bomb and Spore Explosion damage by 15%.
------------------------
When refined to +7, increases Acid Bomb and Spore Explosion damage by additional 25%.
------------------------
When refined to +9, reduces Spore Explosion cooldown by 2 seconds.
------------------------
When refined to +11, increases Acid Bomb and Spore Explosion damage by additional 20%, and increases Acidified Zone (Fire), Acidified Zone (Earth), and Mayhemic Thorns 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_ACIDDEMONSTRATION",15;
bonus2 bSkillAtk,"GN_SPORE_EXPLOSION",15;
if (.@r>=7) {
bonus2 bSkillAtk,"CR_ACIDDEMONSTRATION",25;
bonus2 bSkillAtk,"GN_SPORE_EXPLOSION",25;
if (.@r>=9) {
bonus2 bSkillCooldown,"GN_SPORE_EXPLOSION",-2000;
if (.@r>=11) {
bonus2 bSkillAtk,"CR_ACIDDEMONSTRATION",20;
bonus2 bSkillAtk,"GN_SPORE_EXPLOSION",20;
bonus2 bSkillAtk,"BO_ACIDIFIED_ZONE_FIRE",15;
bonus2 bSkillAtk,"BO_ACIDIFIED_ZONE_GROUND",15;
bonus2 bSkillAtk,"BO_MAYHEMIC_THORNS",15;
}
}
}