Rune Boots of Death [1], броня (Renewal)
Rune Boots of Death [1] (DEATH_RUNE_BOOTS) – броня.
![Rune Boots of Death [1], броня (Renewal) Rune Boots of Death [1], броня (Renewal)](/images/db/items/picture/470176.png)
If refine rate is 7 or higher, MATK + 5%, S.MATK + 2.
If refine rate is 9 or higher, reduces variable casting time by 10%, decrease fixed cast time by 0.3 seconds.
If refine rate is 11 or higher, increases all property magical damage by 10%, decrease fixed cast time by an additional 0.2 seconds.
[Bonus by grade]
[Grade D] MATK + 5%.
[Grade C] Decrease fixed cast time by an additional 0.3 seconds.
[Grade B] MATK + 5%, S.MATK + 5.
[Grade A] Decrease fixed cast time by an additional 0.2 seconds, S.MATK + 2.
Базовые свойства предмета
- ID: 30510
- Код: DEATH_RUNE_BOOTS
- Тип: броня
- Уровень брони: 2
- Защита: 45
- Требуемый уровень: 230
- Вес: 100
Скрипт
.@g = getenchantgrade();
.@r = getrefine();
if (.@r>=7) {
bonus bSMatk,2;
bonus bMatkRate,5;
if (.@r>=9) {
bonus bFixedCast,-300;
bonus bVariableCastrate,-10;
if (.@r>=11) {
bonus bFixedCast,-200;
bonus2 bMagicAtkEle,Ele_All,10;
}
}
}
if (.@g>=ENCHANTGRADE_D) {
bonus bMatkRate,5;
if (.@g>=ENCHANTGRADE_C) {
bonus bFixedCast,-300;
if (.@g>=ENCHANTGRADE_B) {
bonus bSMatk,5;
bonus bMatkRate,5;
if (.@g>=ENCHANTGRADE_A) {
bonus bFixedCast,-200;
bonus bSMatk,2;
}
}
}
}