Abyss Dress
| Item ID | 15204 | Name | Abyss Dress |
|
A dress that looks to absorb all the light in the world.
_______________________ Prevents knock-back effect. _______________________ Refine Level +5: Increases Damage against Shadow and Undead elemental by 10%. Increases Damage against monsters of Demon and Undead race by 10%. _______________________ Refine Level +7: Increases Damage against Shadow and Undead elemental by 15%. Increases Damage against monsters of Demon and Undead race by 15%. _______________________ Refine Level +9: Increases Damage against Shadow and Undead elemental by 15%. Increases Damage against monsters of Demon and Undead race by 15%. _______________________ Indestructible in battle _______________________ Type: Armor Defense: 120 Weight: 40 Element: Shadow Armor Level: 1 _______________________ Requirement: Base Level 90 |
|---|---|---|---|---|---|
| Weapon Level | 0 | Identifier | Abyss_Dress | ||
| Attack | 0 | Type | Armor | ||
| MATK | 0 | Equip Locations | Armor | ||
| Defense | 120 | Equippable Jobs | None | ||
| Range | 0 | Equip Gender | Both (Male and Female) | ||
| Slots | 0 | Equip Upper | None | ||
| Weight | 40 | Min Equip Level | 90 | ||
| NPC Buy | 10 | Max Equip Level | None | ||
| NPC Sell | 5 | Refineable | Yes | ||
| Credit Price | None | Trade restriction | None | ||
| Item 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;
}
|
||||