Ring of Jupiter [1], броня (Renewal)
Ring of Jupiter [1] (RINGOFJUPITER) – броня.
![Ring of Jupiter [1], броня (Renewal) Ring of Jupiter [1], броня (Renewal)](/images/db/items/picture/32258.png)
A ring with a celestial amber like stone. It is said wearing this ring will grant you powers.
Enables Level 5 Blessing.
When equipped to Right Accessory (1),
For every 10 base Luk,
Atk + 15
Matk + 15
If the user's base Luk is 125 or higher,
Increases Physical and Magical damage on boss monsters by 15%.
When equipped to Left Accessory (2),
For every 10 base Vit,
Max HP + 2%
Max SP + 2%
If the user's base Vit is 125 or higher,
Def + 300
Mdef + 50
Reduces damage taken from Human Player and Doram race enemies by 3%.
Базовые свойства предмета
- ID: 29121
 - Код: RINGOFJUPITER
 - Тип: броня
 - Уровень брони: 1
 - Защита: 2
 - Требуемый уровень: 100
 
- Цена покупки: 20 з
 - Цена продажи: 10 з
 - Вес: 50
 
Скрипт
.@p = getitempos();
skill "AL_BLESSING",5;
if (.@p == EQP_ACC_R) {
   bonus bBaseAtk,15*(readparam(bLuk)/10);
   bonus bMatk,15*(readparam(bLuk)/10);
   if (readparam(bLuk) >= 125) {
      bonus2 bAddClass,Class_Boss,15;
      bonus2 bMagicAddClass,Class_Boss,15;
   }
}
if (.@p == EQP_ACC_L) {
   bonus bMaxHPrate,2*(readparam(bVit)/10);
   bonus bMaxSPrate,2*(readparam(bVit)/10);
   if (readparam(bVit) >= 125) {
      bonus bDef,300;
      bonus bMdef,50;
      bonus2 bSubRace,RC_Player_Human,3;
      bonus2 bSubRace,RC_Player_Doram,3;
   }
}