Gambler's Seal [1], броня (Renewal)

Gambler's Seal [1] (GAMBLER_SEAL_) – броня.

 

Mdef + 3.
Reduces damage taken from all race monsters by 1%.
Recovers 60 HP and 6 SP every 5 seconds.
If base Vit is 90 or higher, reduces damage taken from all race monsters by 1%, recovers 90 HP and 9 SP every 5 seconds.
If base Vit is 125 or higher, reduces damage taken from all race monsters by 3%, recovers 150 HP and 15 SP every 5 seconds.
―――――――――――――
Attribute: - Slots: 0
Def : 50 Mdef : 3
Refined: No Destroyed: No

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

  • ID: 29617
  • Код: GAMBLER_SEAL_
  • Тип: броня
  • Уровень брони: 1
  •  
  • Требуемый уровень: 70
  • Цена покупки: 20 з
  • Цена продажи: 10 з
  • Вес: 50

Скрипт

.@dex = readparam(bDex);
.@luk = readparam(bLuk);
.@critical = 3 + (.@luk / 10);
.@critical_dmg = 3 - (.@dex/10) * 2;
.@sub_arrowstorm = 10;
.@sub_gateofhell = 10;
bonus bBaseAtk,(.@luk/10)*2;
bonus bMatk,(.@luk / 10) * 2;
if (.@luk > 107) {
   .@critical += 5;
   .@critical_dmg += 10;
}
if (.@luk > 119) {
   .@critical += 10;
   .@critical_dmg += 17;
   .@sub_arrowstorm += 30;
   .@sub_gateofhell += 30;
}
bonus bCritical,.@critical;
bonus bCritAtkRate,.@critical_dmg;
bonus2 bSubSkill,"RA_ARROWSTORM",.@sub_arrowstorm;
bonus2 bSubSkill,"SR_GATEOFHELL",.@sub_gateofhell;