
RENEWAL / ITEMS
Skin of Typhon [1]
#20962Armor
Skin_Of_Typhon
TypeArmor
Equipment positionGarment
GenderBoth
Weight60
Buy price20 z
Sell price10 z
DEF15
Slots1
Required level100
Armor level1
Description
Behold the skin of a monstrous creature, brimming with powers of the deep.
Class: Garment
Defense: 15
Weight: 60
Requires Level: 100
Usable By: All Jobs
Agi + 5
Vit + 5
Reduces damage taken from Fish race enemies by 5%.
Reduces damage taken from Player race enemies by 5%.
Reduces damage taken from Demi Human race enemies by 5%.
Reduces damage taken from Neutral property attacks by 5%.
Reduces damage taken from Poison property attacks by 5%.
If upgrade level is +7 or higher,
Restores 10 SP to the user when a monster is killed by a magical attack
If upgrade level is +8 or higher,
MATK + 15 for every combined sum of 20 base Agi and Vit.
Def + 20 for every combined sum of 20 base Agi and Vit.
If upgrade level is +9 or higher,
Restores an additional 10 SP to the user when a monster is killed by a magical 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_Fish,5;
bonus2 bSubEle,Ele_Neutral,5;
bonus2 bSubEle,Ele_Poison,5;
bonus bAgi,5;
bonus bVit,5;
bonus bMdef,10;
.@r = getrefine();
if (.@r>=7) {
.@sp = 10;
if (.@r>=8) {
.@s = (readparam(bAgi)+readparam(bVit))/20;
bonus bMatk,15*.@s;
bonus bDef,20*.@s;
if (.@r>=9) {
.@sp += 10;
}
}
bonus bMagicSPGainValue,.@sp;
}