
RENEWAL / ITEMS
Ice Magic Orb (Tornado Swing)
#311146Card
Ice_F_Orb_Skill_9
TypeCard
Weight0
Buy price0 z
Sell price0 z
Description
Increases Axe Tornado and Power Swing damage by 15%.
------------------------
When refined to +7, increases Axe Tornado and Power Swing damage by additional 15%.
------------------------
When refined to +9, increases Axe Tornado and Power Swing damage by additional 15%.
------------------------
When refined to +11, increases Axe Tornado and Power Swing damage by additional 15%, and increases Axe Stomp and Mighty Smash 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,"NC_AXETORNADO",15;
bonus2 bSkillAtk,"NC_POWERSWING",15;
if (.@r>=7) {
bonus2 bSkillAtk,"NC_AXETORNADO",15;
bonus2 bSkillAtk,"NC_POWERSWING",15;
if (.@r>=9) {
bonus2 bSkillAtk,"NC_AXETORNADO",15;
bonus2 bSkillAtk,"NC_POWERSWING",15;
if (.@r>=11) {
bonus2 bSkillAtk,"NC_AXETORNADO",15;
bonus2 bSkillAtk,"NC_POWERSWING",15;
bonus2 bSkillAtk,"MT_AXE_STOMP",15;
bonus2 bSkillAtk,"MT_MIGHTY_SMASH",15;
}
}
}