Rune Manteau of Death [1], броня (Renewal)
Rune Manteau of Death [1] (DEATH_RUNE_HOOD) – броня.
![Rune Manteau of Death [1], броня (Renewal) Rune Manteau of Death [1], броня (Renewal)](/images/db/items/picture/480233.png)
If refine rate is 7 or higher, reduces variable casting time by 10%.
If refine rate is 9 or higher, increases all property magical damage by 10%.
If refine rate is 11 or higher, MATK + 10%.
If equipped with Death Rune Robe and Death Rune Boots
SPL + 1 per 30 base INT of the user.
Increases all property magical damage by 10%.
Reduces variable casting time by an additional 10%.
[Bonus by grade]
[Grade D] MATK + 5%.
[Grade C] MATK + 5%, S.MATK + 5.
[Grade B] Increases all property magical damage by 10%.
[Grade A] Reduces global cooldown by 10%, S.MATK + 2.
Базовые свойства предмета
- ID: 30721
 - Код: DEATH_RUNE_HOOD
 - Тип: броня
 - Уровень брони: 2
 - Защита: 45
 - Требуемый уровень: 230
 
- Вес: 100
 
Скрипт
.@g = getenchantgrade();
.@r = getrefine();
if (.@r>=7) {
   bonus bVariableCastrate,-10;
   if (.@r>=9) {
      bonus2 bMagicAtkEle,Ele_All,10;
      if (.@r>=11) {
         bonus bMatkRate,10;
      }
   }
}
if (.@g>=ENCHANTGRADE_D) {
   bonus bMatkRate,5;
   if (.@g>=ENCHANTGRADE_C) {
      bonus bSMatk,5;
      bonus bMatkRate,5;
      if (.@g>=ENCHANTGRADE_B) {
         bonus2 bMagicAtkEle,Ele_All,10;
         if (.@g>=ENCHANTGRADE_A) {
            bonus bDelayrate,-10;
            bonus bSMatk,2;
         }
      }
   }
}