Skin of Typhon [1], броня (Renewal)

Skin of Typhon [1] (SKIN_OF_TYPHON) – броня.

Skin of Typhon [1], броня (Renewal)

Behold the skin of a monstrous creature, brimming with powers of the deep.
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

Базовые свойства предмета

  • ID: 26454
  • Код: SKIN_OF_TYPHON
  • Тип: броня
  • Уровень брони: 1
  • Защита: 15
  •  
  • Требуемый уровень: 100
  • Цена покупки: 20 з
  • Цена продажи: 10 з
  • Вес: 60

Скрипт

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;
}