
RENEWAL / ITEMS
Glacier Magic Orb (Crystal Magic)
#311291Card
Glacier_F_Orb_99
TypeCard
Weight0
Buy price0 z
Sell price0 z
Description
Increases Rain of Crystal and Frozen Slash damage by 10%.
Increases Rain of Crystal and Frozen Slash damage by additional 5% per 4 refine rate.
If refine rate is 9 or higher, increases Rain of Crystal and Frozen Slash damage by additional 10%.
Item details
- Trade
Item effect script
.@r = getrefine();
bonus2 bSkillAtk,"AG_RAIN_OF_CRYSTAL",10+5*(.@r/4);
bonus2 bSkillAtk,"AG_FROZEN_SLASH",10+5*(.@r/4);
if (.@r>=9) {
bonus2 bSkillAtk,"AG_RAIN_OF_CRYSTAL",10;
bonus2 bSkillAtk,"AG_FROZEN_SLASH",10;
}