
RENEWAL / ITEMS
Varmundt Glade Rune Boots [1]
#470108Armor
Barmund_Plain_Boots
TypeArmor
Equipment positionFootgear
GenderBoth
Weight100
Buy price0 z
Sell price0 z
DEF45
Slots1
Required level210
Armor level2
Description
Boots imprinted with Varmund's Grass rune magic.
It is imprinted with power.
------------------------
When refined to +7 or higher,
MHP +10%.
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,
additional MaxHP +5%,
reduces fixed casting time by additional 0.2 seconds.
------------------------
[Grade Bonus]
[Grade D] MHP +2%.
[Grade C] Reduces fixed casting time by additional 0.3 seconds.
[Grade B] MHP +2%, reduces variable casting time by additional 5%.
[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 bMaxHPrate,10;
if (.@r>=9) {
bonus bFixedCast,-300;
bonus bVariableCastrate,-5;
if (.@r>=11) {
bonus bFixedCast,-200;
bonus bMaxHPrate,5;
}
}
}
if (.@g >= ENCHANTGRADE_D) {
bonus bMaxHPrate,2;
if (.@g >= ENCHANTGRADE_C) {
bonus bFixedCast,-300;
if (.@g >= ENCHANTGRADE_B) {
bonus bVariableCastrate,-5;
bonus bMaxHPrate,2;
if (.@g >= ENCHANTGRADE_A) {
bonus bFixedCast,-200;
}
}
}
}