
RENEWAL / ITEMS
Ice Magic Orb (Cloud Buster)
#311159Card
Ice_F_Orb_Skill_22
TypeCard
Weight0
Buy price0 z
Sell price0 z
Description
Increases Killing Cloud and Poison Burst damage by 15%.
If refine rate is 7 or higher, increases Killing Cloud and Poison Burst damage by additional 15%.
If refine rate is 9 or higher, increases Killing Cloud and Poison Burst damage by additional 15%, reduces skill cooldown of Poison Burst by 0.5 seconds.
If refine rate is 11 or higher, increases Killing Cloud and Poison Burst damage by additional 15%, increases Venom Swamp 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,"SO_CLOUD_KILL",15;
bonus2 bSkillAtk,"SO_POISON_BUSTER",15;
if (.@r>=7) {
bonus2 bSkillAtk,"SO_CLOUD_KILL",15;
bonus2 bSkillAtk,"SO_POISON_BUSTER",15;
if (.@r>=9) {
bonus2 bSkillAtk,"SO_CLOUD_KILL",15;
bonus2 bSkillAtk,"SO_POISON_BUSTER",15;
bonus2 bSkillCooldown,"SO_POISON_BUSTER",-500;
if (.@r>=11) {
bonus2 bSkillAtk,"SO_CLOUD_KILL",15;
bonus2 bSkillAtk,"SO_POISON_BUSTER",15;
bonus2 bSkillAtk,"EM_VENOM_SWAMP",15;
}
}
}