
RENEWAL / ITEMS
Abyss Dress
#15204Armor
Abyss_Dress
TypeArmor
Equipment positionArmor
GenderBoth
Weight40
Buy price10 z
Sell price5 z
DEF120
Required level90
Armor level1
Description
A dress that looks to absorb all the light in the world.
Class: Armor
Defense: 120
Property: Shadow
Weight: 40
Requires Level: 90
Usable By: All Jobs
Prevents the user from being knocked back.
This item is indestructible in battle.
If upgrade level is +5 or higher,
Increases physical and magical damage on Shadow and Undead property targets by 10%.
Increases physical and magical damage on Demon and Undead race targets by 10%.
If upgrade level is +7 or higher,
Increases physical and magical damage on Shadow and Undead property targets by an additional 15%.
Increases physical and magical damage on Demon and Undead race targets by an additional 15%.
If upgrade level is +9 or higher,
Increases physical and magical damage on Shadow and Undead property targets by an additional 15%.
Increases physical and magical damage on Demon and Undead race targets by an additional 15%.
English Renewal client description · iRO. Numeric server data above takes precedence when the client text differs.
Item details
- Gender
- Both
- Equipment position
- Armor
- Jobs
- All
- Yes
- Classes
- All
- Yes
- Refineable
- Yes
- Trade
Item effect script
.@r = getrefine();
bonus bNoKnockback;
bonus bUnbreakableArmor;
bonus bDefEle,Ele_Dark;
if (.@r>=5) {
.@val = 10;
if (.@r>=7) {
.@val += 15;
if (.@r>=9) {
.@val += 15;
}
}
bonus2 bAddEle,Ele_Dark,.@val;
bonus2 bAddEle,Ele_Undead,.@val;
bonus2 bMagicAddEle,Ele_Dark,.@val;
bonus2 bMagicAddEle,Ele_Undead,.@val;
bonus2 bAddRace,RC_Undead,.@val;
bonus2 bAddRace,RC_Demon,.@val;
bonus2 bMagicAddRace,RC_Undead,.@val;
bonus2 bMagicAddRace,RC_Demon,.@val;
}