
RENEWAL / ITEMS
Ice Magic Orb (Comet Expansion)
#311158Card
Ice_F_Orb_Skill_21
TypeCard
Weight0
Buy price0 z
Sell price0 z
Description
Increases Comet and Soul Expansion damage by 15%.
If refine rate is 7 or higher, increases Comet and Soul Expansion damage by additional 15%.
If refine rate is 9 or higher, increases Comet and Soul Expansion damage by additional 15%, reduces skill cooldown of Intensification by 30 seconds.
If refine rate is 11 or higher, increases Comet and Soul Expansion damage by additional 15%, increases Soul Vulcan Strike and Mystery Illusion 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,"WL_COMET",15;
bonus2 bSkillAtk,"WL_SOULEXPANSION",15;
if (.@r>=7) {
bonus2 bSkillAtk,"WL_COMET",15;
bonus2 bSkillAtk,"WL_SOULEXPANSION",15;
if (.@r>=9) {
bonus2 bSkillAtk,"WL_COMET",15;
bonus2 bSkillAtk,"WL_SOULEXPANSION",15;
bonus2 bSkillCooldown,"WL_TELEKINESIS_INTENSE",-30000;
if (.@r>=11) {
bonus2 bSkillAtk,"WL_COMET",15;
bonus2 bSkillAtk,"WL_SOULEXPANSION",15;
bonus2 bSkillAtk,"AG_SOUL_VC_STRIKE",15;
bonus2 bSkillAtk,"AG_MYSTERY_ILLUSION",15;
}
}
}