Rune Armor of Plain [1], броня (Renewal)

Rune Armor of Plain [1] (PLAIN_RUNE_ARMOR) – броня.

Rune Armor of Plain [1], броня (Renewal)

STA +1 per 25 base VIT of the user.
If refine rate is 7 or higher, MHP + 5%, P.ATK +2.
If refine rate is 9 or higher, increases physical damage against all size enemies by 15%.
If refine rate is 11 or higher, increases physical damage against all property enemies by 15%.


[Bonus by grade]
[Grade D] MHP + 5%.
[Grade C] STA + 5, MHP + 5%.
[Grade B] Reduces global cooldown by 5%.
[Grade A] Reduces global cooldown by an additional 10%, STA + 5.

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

  • ID: 30313
  • Код: PLAIN_RUNE_ARMOR
  • Тип: броня
  • Уровень брони: 2
  • Защита: 45
  •  
  • Требуемый уровень: 230
  • Вес: 100

Скрипт

.@g = getenchantgrade();
.@r = getrefine();
bonus bSta,(readparam(bVit)/25);
if (.@r>=7) {
   bonus bPAtk,2;
   bonus bMaxHPrate,5;
   if (.@r>=9) {
      bonus2 bAddSize,Size_All,15;
      if (.@r>=11) {
         bonus2 bAddEle,Ele_All,15;
      }
   }
}
if (.@g>=ENCHANTGRADE_D) {
   bonus bMaxHPrate,5;
   if (.@g>=ENCHANTGRADE_C) {
      bonus bMaxHPrate,5;
      bonus bSta,5;
      if (.@g>=ENCHANTGRADE_B) {
         bonus bDelayrate,-5;
         if (.@g>=ENCHANTGRADE_A) {
            bonus bDelayrate,-10;
            bonus bSta,5;
         }
      }
   }
}