Ring of Venus [1], броня (Renewal)

Ring of Venus [1] (RINGOFVENUS) – броня.

 

When equipped to Right Accessory

For every 10 base DEX,
Long-range physical damage +1%.
Stun Resistance + 3%.

Base DEX 125 or higher
Decreases Fixed Casting Time by 70%.
Increases resistance to Fire, Water, Wind, Earth properties by 5%.
------------------------
When equipped to Left Accessory

For every 10 base AGI,
ATK and MATK +1%.

Base AGI 125 or higher
Increase movement speed.
Reduce After Cast Delay by 25%.
------------------------
Def : 2

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

  • ID: 30877
  • Код: RINGOFVENUS
  • Тип: броня
  • Уровень брони: 1
  • Защита: 2
  •  
  • Требуемый уровень: 100
  • Вес: 50

Скрипт

.@p = getitempos();
.@a = readparam(bAgi);
.@d = readparam(bDex);
if (.@p == EQP_ACC_L) {
   bonus2 bAddRace,RC_All,.@a / 10;
   bonus2 bMagicAddRace,RC_All,.@a/10;
   if (.@a>=125) {
      bonus bSpeedRate,25;
      bonus bDelayrate,-25;
   }
}
if (.@p == EQP_ACC_R) {
   bonus bLongAtkRate,.@d / 10;
   bonus2 bResEff,Eff_Stun,3*(.@d/10);
   if (.@d>=125) {
      bonus bFixedCastrate,-70;
      bonus2 bSubEle,Ele_Earth,5;
      bonus2 bSubEle,Ele_Water,5;
      bonus2 bSubEle,Ele_Wind,5;
      bonus2 bSubEle,Ele_Fire,5;
   }
}