Skin of Ladon
| Item ID | 20949 | Name | Skin of Ladon |
|
A brown dragon's shell with 100 heads guarding a golden apple.
_______________________ AGI +5, VIT +5 MDEF +10 _______________________ Decreases damage taken from Demi-Human and Brute race by 5%. _______________________ Decreases damage taken from Earth and Wind elemental attacks by 5%. _______________________ Refine Level +7: Restores 10 SP when a monster is killed by a physical attack. _______________________ Refine Level +7: For each 20 combined sum of base AGI and VIT: ATK +15, HIT +5 _______________________ If Refine Level is +9 or higher, Restores additional 10 SP when a monster is killed by a physical attack. _______________________ Type: Garment Defense: 15 Weight: 60 Requirement: Base Level 100 |
|---|---|---|---|---|---|
| Weapon Level | 0 | Identifier | Skin_Of_Ladon_J | ||
| Attack | 0 | Type | Armor | ||
| MATK | 0 | Equip Locations | Garment | ||
| Defense | 15 | Equippable Jobs | None | ||
| Range | 0 | Equip Gender | Both (Male and Female) | ||
| Slots | 1 | Equip Upper | None | ||
| Weight | 60 | Min Equip Level | 100 | ||
| NPC Buy | 20 | Max Equip Level | None | ||
| NPC Sell | 10 | Refineable | Yes | ||
| Credit Price | None | Trade restriction | None | ||
| Item 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;
}
|
||||