Rune Manteau of Flame [1], броня (Renewal)

Rune Manteau of Flame [1] (FLAME_RUNE_HOOD) – броня.

Rune Manteau of Flame [1], броня (Renewal)

If refine rate is 7 or higher, reduces variable casting time by 10%.
If refine rate is 9 or higher, increases critical damage by 10%.
If refine rate is 11 or higher, ATK + 10%.


If equipped with Rune Armor of Flame and Flame Rune Boots
POW + 1 per 30 base STR of the user
Increase melee physical damage by 10%.
Reduces variable casting time by 10%.


[Bonus by grade]
[Grade D] ATK + 5%.
[Grade C] ATK + 5%, P.ATK + 5.
[Grade B] Increase melee physical damage by 10%.
[Grade A] Reduces global cooldown by 10%, P.ATK + 2.

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

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

Скрипт

.@g = getenchantgrade();
.@r = getrefine();
if (.@r>=7) {
   bonus bVariableCastrate,-10;
   if (.@r>=9) {
      bonus bCritAtkRate,10;
      if (.@r>=11) {
         bonus bAtkRate,10;
      }
   }
}
if (.@g>=ENCHANTGRADE_D) {
   bonus bAtkRate,5;
   if (.@g>=ENCHANTGRADE_C) {
      bonus bPAtk,5;
      bonus bAtkRate,5;
      if (.@g>=ENCHANTGRADE_B) {
         bonus bShortAtkRate,10;
         if (.@g>=ENCHANTGRADE_A) {
            bonus bDelayrate,-10;
            bonus bPAtk,2;
         }
      }
   }
}