Fiery Earth Rune Armor [1], броня (Renewal)

Fiery Earth Rune Armor [1] (FLAME_E_R_ARMOR) – броня.

Fiery Earth Rune Armor [1], броня (Renewal)

Cri - 10.
Atk + 100.
Every 2 refine rate, Atk + 15, Def + 30.
If refine rate is 7 or higher, Atk + 3%, P.Atk + 2, Mdef + 25.
If refine rate is 9 or higher, additional P.Atk + 3, Mdef + 25.
If refine rate is 11 or higher, reduces global cooldown 10%, increases melee physical damage by 5%.


[Bonus by grade]
[Grade D] Atk + 10, Atk + 5%.
[Grade C] Additional Atk + 20, Atk + 8%, increases melee physical damage by 3%.
[Grade B] Additional Atk + 11%, increases melee physical damage by additional 5%, POW + 5.
[Grade A] Additional Atk + 14%, increases melee physical damage by additional 7%, CON + 5.

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

  • ID: 30334
  • Код: FLAME_E_R_ARMOR
  • Тип: броня
  • Уровень брони: 2
  •  
  • Требуемый уровень: 250
  • Вес: 100

Скрипт

.@g = getenchantgrade();
.@r = getrefine();
bonus bCritical,-10;
bonus bBaseAtk,100+15*(.@r/2);
bonus bDef,30*(.@r/2);
if (.@r>=7) {
   bonus bPAtk,2;
   bonus bAtkRate,3;
   bonus bMdef,25;
   if (.@r>=9) {
      bonus bPAtk,3;
      bonus bMdef,25;
      if (.@r>=11) {
         bonus bShortAtkRate,5;
         bonus bDelayrate,-10;
      }
   }
}
if (.@g>=ENCHANTGRADE_D) {
   bonus bAtkRate,5;
   bonus bBaseAtk,10;
   if (.@g>=ENCHANTGRADE_C) {
      bonus bShortAtkRate,3;
      bonus bAtkRate,8;
      bonus bBaseAtk,20;
      if (.@g>=ENCHANTGRADE_B) {
         bonus bShortAtkRate,5;
         bonus bAtkRate,11;
         bonus bPow,5;
         if (.@g>=ENCHANTGRADE_A) {
            bonus bShortAtkRate,7;
            bonus bAtkRate,14;
            bonus bCon,5;
         }
      }
   }
}