
RENEWAL / ITEMS
Ice Magic Orb (Milliduple)
#311164Card
Ice_F_Orb_Skill_27
TypeCard
Weight0
Buy price0 z
Sell price0 z
Description
Increases Duple Light damage by 15%, increases melee and long ranged physical damage by 5%.
If refine rate is 7 or higher, increases Duple Light damage by additional 15%, increases melee and long ranged physical damage by additional 10%.
If refine rate is 9 or higher, increases Duple Light damage by additional 15%, increases melee and long ranged physical damage by additional 10%.
If refine rate is 11 or higher, increases Duple Light damage by additional 15%, increases melee and long ranged physical damage by additional 15%, increases Petitio 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,"AB_DUPLELIGHT_MELEE",15;
bonus2 bSkillAtk,"AB_DUPLELIGHT_MAGIC",15;
bonus bLongAtkRate,5;
bonus bShortAtkRate,5;
if (.@r>=7) {
bonus2 bSkillAtk,"AB_DUPLELIGHT_MELEE",15;
bonus2 bSkillAtk,"AB_DUPLELIGHT_MAGIC",15;
bonus bLongAtkRate,10;
bonus bShortAtkRate,10;
if (.@r>=9) {
bonus2 bSkillAtk,"AB_DUPLELIGHT_MELEE",15;
bonus2 bSkillAtk,"AB_DUPLELIGHT_MAGIC",15;
bonus bLongAtkRate,10;
bonus bShortAtkRate,10;
if (.@r>=11) {
bonus2 bSkillAtk,"AB_DUPLELIGHT_MELEE",15;
bonus2 bSkillAtk,"AB_DUPLELIGHT_MAGIC",15;
bonus bLongAtkRate,15;
bonus bShortAtkRate,15;
bonus2 bSkillAtk,"CD_PETITIO",15;
}
}
}