
RENEWAL / ITEMS
Glacier Magic Orb (Grenade)
#311330Card
Glacier_F_Orb_138
TypeCard
Weight0
Buy price0 z
Sell price0 z
Description
Increases Basic Grenade, Hasty Fire in the Hole and Grenades Dropping damage by 10%.
Increases Basic Grenade, Hasty Fire in the Hole and Grenades Dropping damage by additional 5% per 4 refine rate.
If refine rate is 9 or higher, increases Basic Grenade, Hasty Fire in the Hole and Grenades Dropping damage by additional 10%.
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,"NW_BASIC_GRENADE",10+5*(.@r/4);
bonus2 bSkillAtk,"NW_HASTY_FIRE_IN_THE_HOLE",10+5*(.@r/4);
bonus2 bSkillAtk,"NW_GRENADES_DROPPING",10+5*(.@r/4);
if (.@r>=9) {
bonus2 bSkillAtk,"NW_BASIC_GRENADE",10;
bonus2 bSkillAtk,"NW_HASTY_FIRE_IN_THE_HOLE",10;
bonus2 bSkillAtk,"NW_GRENADES_DROPPING",10;
}