
RENEWAL / ITEMS
Glacier Magic Orb (Flame Ice Wind)
#311257Card
Glacier_F_Orb_66
TypeCard
Weight0
Buy price0 z
Sell price0 z
Description
Increases Flaming Petals, Freezing Spear and Wind Blade damage by 20%.
Increases Flaming Petals, Freezing Spear and Wind Blade damage by additional 10% per 3 refine rate.
If refine rate is 9 or higher, increases Flaming Petals, Freezing Spear and Wind Blade damage by additional 20%.
If refine rate is 11 or higher, increases Flaming Petals, Freezing Spear and Wind Blade damage by additional 20%.
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,"NJ_KOUENKA",20+10*(.@r/3);
bonus2 bSkillAtk,"NJ_HYOUSENSOU",20+10*(.@r/3);
bonus2 bSkillAtk,"NJ_HUUJIN",20+10*(.@r/3);
if (.@r>=9) {
bonus2 bSkillAtk,"NJ_KOUENKA",20;
bonus2 bSkillAtk,"NJ_HYOUSENSOU",20;
bonus2 bSkillAtk,"NJ_HUUJIN",20;
if (.@r>=11) {
bonus2 bSkillAtk,"NJ_KOUENKA",20;
bonus2 bSkillAtk,"NJ_HYOUSENSOU",20;
bonus2 bSkillAtk,"NJ_HUUJIN",20;
}
}