
RENEWAL / ITEMS
Skin of Ladon [1]
#20949Armor
Skin_Of_Ladon_J
TypeArmor
Equipment positionGarment
GenderBoth
Weight60
Buy price20 z
Sell price10 z
DEF15
Slots1
Required level100
Armor level1
Description
A brown dragon's shell with 100 heads guarding a golden apple.
Class: Garment
Defense: 15
Weight: 60
Requires Level: 100
Usable By: All Jobs
Agi + 5
Vit + 5
Mdef + 10
Reduces damage taken from Demi-Human and Brute race enemies by 5%.
Reduces damage taken from Earth and Wind property attacks by 5%.
If upgrade level is +7 or higher,
Restores 10 SP to the user when a monster is killed by a physical or a long-ranged attack.
If upgrade level is +8 or higher,
For every combined sum of 20 base Agi and Vit,
ATK + 15
Hit + 5
If upgrade level is +9 or higher,
Restores an additional 10 SP to the user when a monster is killed by a physical or a long-ranged attack.
English Renewal client description · iRO. Numeric server data above takes precedence when the client text differs.
Item details
- Gender
- Both
- Equipment position
- Garment
- Jobs
- All
- Yes
- Classes
- All
- Yes
- Refineable
- Yes
- Trade
Item effect script
bonus2 bSubRace,RC_Player_Human,5;
bonus2 bSubRace,RC_DemiHuman,5;
bonus2 bSubRace,RC_Brute,5;
bonus2 bSubRace,RC_Player_Doram,5;
bonus2 bSubEle,Ele_Wind,5;
bonus2 bSubEle,Ele_Earth,5;
bonus bAgi,5;
bonus bVit,5;
bonus bMdef,10;
.@r = getrefine();
if (.@r>=7) {
.@val = 10;
bonus bSPGainValue,10;
bonus bLongSPGainValue,10;
if (.@r>=8) {
.@s = (readparam(bAgi)+readparam(bVit))/20;
bonus bBaseAtk,15*.@s;
bonus bHit,5*.@s;
if (.@r>=9) {
.@val += 10;
}
}
bonus bSPGainValue,.@val;
bonus bLongSPGainValue,.@val;
}