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

Rune Manteau of Ice [1] (ICE_RUNE_HOOD) – броня.

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

If refine rate is 7 or higher, ATK + 5%.
If refine rate is 9 or higher, increases critical damage by 10%.
If refine rate is 11 or higher, increases long ranged physical damage by 10%.


If equipped with Ice Rune Armor and Ice Rune Boots
CON + 1 per 30 base DEX of the user
Increases long ranged physical damage by 10%.
Reduces variable casting time by 15%.


[Bonus by grade]
[Grade D] ATK + 5%.
[Grade C] ATK + 5%, P.ATK + 5.
[Grade B] Increases long ranged physical damage by 10%.
[Grade A] Reduces global cooldown by an additional 10%, P.ATK + 2.

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

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

Скрипт

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