
RENEWAL / ITEMS
Ice Magic Orb (Dragonic Breach)
#311138Card
Ice_F_Orb_Skill_1
TypeCard
Weight0
Buy price0 z
Sell price0 z
Description
Increases Dragon's Breath and Dragon's Water Breath damage by 15%.
------------------------
When refined to +7, increases Dragon's Breath and Dragon's Water Breath damage by additional 15%.
------------------------
When refined to +9, increases Dragon's Breath and Dragon's Water Breath damage by additional 15%.
------------------------
When refined to +11, increases Dragon's Breath and Dragon's Water Breath damage by additional 15%, and increases Hack and Slash and Dragonic Breath 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,"RK_DRAGONBREATH_WATER",15;
bonus2 bSkillAtk,"RK_DRAGONBREATH",15;
if (.@r>=7) {
bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",15;
bonus2 bSkillAtk,"RK_DRAGONBREATH",15;
if (.@r>=9) {
bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",15;
bonus2 bSkillAtk,"RK_DRAGONBREATH",15;
if (.@r>=11) {
bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",15;
bonus2 bSkillAtk,"RK_DRAGONBREATH",15;
bonus2 bSkillAtk,"DK_HACKANDSLASHER",15;
bonus2 bSkillAtk,"DK_DRAGONIC_BREATH",15;
}
}
}