
RENEWAL / ITEMS
Varmundt Fire Rune Boots [1]
#470109Armor
Barmund_Flame_Boots
TypeArmor
Equipment positionFootgear
GenderBoth
Weight100
Buy price0 z
Sell price0 z
DEF45
Slots1
Required level210
Armor level2
Description
Boots imprinted with Varmund's Fire rune magic.
It is imprinted with power.
------------------------
When refined to +7 or higher,
ATK +5%.
When refined to +9 or higher,
reduces variable casting time by 5%,
reduces fixed casting time by 0.3 seconds.
When armor refined to +11 or higher,
increases melee physical damage by 5%,
reduces fixed casting time by additional 0.2 seconds.
------------------------
[Grade Bonus]
[Grade D] ATK +2%.
[Grade C] Reduces fixed casting time by additional 0.3 seconds.
[Grade B] ATK +2%, P.ATK +2.
[Grade A] Reduces fixed casting time by additional 0.2 seconds.
------------------------
Class: Shoes
Def: 45
Weight: 100
Armor Lv: 2
Req Level: 210
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
- No Drop
- Yes
- No Trade
- Yes
- No Cart
- Yes
- No Guild Storage
- Yes
- No Mail
- Yes
- No Auction
- Yes
Item effect script
.@g = getenchantgrade();
.@r = getrefine();
if (.@r>=7) {
bonus bAtkRate,5;
if (.@r>=9) {
bonus bFixedCast,-300;
bonus bVariableCastrate,-5;
if (.@r>=11) {
bonus bFixedCast,-200;
bonus bShortAtkRate,5;
}
}
}
if (.@g >= ENCHANTGRADE_D) {
bonus bAtkRate,2;
if (.@g >= ENCHANTGRADE_C) {
bonus bFixedCast,-300;
if (.@g >= ENCHANTGRADE_B) {
bonus bPAtk,2;
bonus bAtkRate,2;
if (.@g >= ENCHANTGRADE_A) {
bonus bFixedCast,-200;
}
}
}
}