
RENEWAL / ITEMS
Rune Boots of Death [1]
#470176Armor
Death_Rune_Boots
TypeArmor
Equipment positionFootgear
GenderBoth
Weight100
Buy price0 z
Sell price0 z
DEF45
Slots1
Required level230
Armor level2
Description
Boots engraved with Varmund's Death Rune magic.
The engraving is amplified with the essence of death.
------------------------
When refined to +7 or higher, MATK + 5%, S.MATK + 2.
------------------------
When refined to +9 or higher, reduce Variable Casting Time by 10%, reduce Fixed Casting Time by 0.3 seconds.
------------------------
When refined to +11 or higher, increase all property magic damage by 10%, reduce Fixed Casting Time by additional 0.2 seconds.
------------------------
[Grade Bonus]
[Grade D] MATK + 5%.
[Grade C] Reduce Fixed Casting Time by 0.3 seconds.
[Grade B] MATK + 5%, S.MATK + 5.
[Grade A] Reduce Fixed Casting Time by additional 0.2 seconds, S.MATK + 2.
------------------------
Type : Shoes
Def : 45
Weight : 100
Armor Level : 2
Required Level : 230
Class : All Jobs
English Renewal client description · iRO. Numeric server data above takes precedence when the client text differs.
Item details
- Gender
- Both
- Equipment position
- Footgear
- Jobs
- All
- Yes
- Classes
- All
- Yes
- Refineable
- Yes
- Trade
Item effect script
.@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;
}
}
}
}