Renewal
.:Renewal Item Database:.
Armor - Footgear

Egir Shoes [1]   [Footgear]   Item ID# 2495 (Egir_Shoes)
Type
Armor
Class
Footgear
Buy
200000z
Sell
100000z
Weight
30
Defense
13
Required Lvl
110
Armor Lvl
1
Slot
1
Applicable Jobs
Every Job
Description
Aegir's shoes, it looks suppporting your capacity.
When equipped by Magician, Archer or Acolyte classes:
Max HP + (5*base level)
When equipped by Swordman, Merchant, Thief classes:
Max SP + (2*base level)
Indestructible
Item Script
{ if (BaseClass == Job_Mage || BaseClass == Job_Archer || BaseClass == Job_Acolyte) bonus bMaxHP,BaseLevel*5; else if (BaseClass == Job_Swordman || BaseClass == Job_Merchant || BaseClass == Job_Thief) bonus bMaxSP,JobLevel*2; },{},{}
Dropped By No Result

Elegant Doram Shoes [1]   [Footgear]   Item ID# 22085 (Doram_Ele_Shoes)
Type
Armor
Class
Footgear
Buy
20z
Sell
10z
Weight
70
Defense
35
Required Lvl
175
Armor Lvl
1
Slot
1
Applicable Jobs
Summoner
Spirit Handler
Description
An elegant shoes designed for doram race.
MaxHP +10%, MaxSP +5%.
Every 2 refine level: MaxHP +100, MaxSP +20.

Refine level +9 or higher: 5 SP is consumed each time Lope skill is used.

More Information on Combo:
Item Script
{ bonus bMaxHPrate,10; bonus bMaxSPrate,5; .@r = getrefine()/2; bonus bMaxHP,100*.@r; bonus bMaxSP,20*.@r; if (.@r >= 4) bonus2 bSkillUseSP,"SU_LOPE",5; },{},{}
Dropped By

Elemental Booster Shoes [1]   [Footgear]   Item ID# 470001 (Ele_Shoes)
Type
Armor
Class
Footgear
Buy
n/a
Sell
n/a
Weight
0
Defense
15
Required Lvl
100
Armor Lvl
1
Slot
1
Applicable Jobs
Every Job
Description
Special shoes prepared for your rapid growth.
It is specialized in some elemental magic attacks.

Cannot be refined normally.

MATK +20, FLEE +20.

For each 3 refine levels: MaxHP +400.

Refine Level +7: MaxHP +1800.
Refine Level +9: Reduces fixed cast time by 0.5 seconds.
Item Script
{ bonus bMatk,20; bonus bFlee,20; .@r = getrefine(); if (.@r>=3) { bonus bMaxHP,.@r/3*400; } if (.@r>=7) { bonus bMaxHP,1800; } if (.@r>=9) { bonus bFixedCast,-500; } },{},{}
Dropped By No Result

Elemental Boots [1]   [Footgear]   Item ID# 470033 (Elemental_BootsK)
Type
Armor
Class
Footgear
Buy
n/a
Sell
n/a
Weight
10
Defense
10
Required Lvl
99
Armor Lvl
1
Slot
1
Applicable Jobs
Every Job
Description
A pair of boots enchanted with the 4 elemental powers.

Increases damage of Fire Bolt, Cold Bolt, Lightning Bolt and Earth Spike by 15%.

For each Refine Level:
Increases damage of Fire Bolt, Cold Bolt, Lightning Bolt and Earth Spike by 2%.

Refine Level +7:
MATK +20

Refine Level +9:
Random chance to increase INT by 70 and MATK by 10% for 5 seconds when dealing physical damage.

Refine Level +11:
Increases magical damage with Water, Wind, Earth and Fire element by 10%.

When equipped with Elemental Sword:
ASPD +2
MATK +70

Refine Level of Elemental Sword is +10 or higher:
Increases magical damage with every element by 10%.
Item Script
expand to view script
{ .@r = getrefine(); bonus2 bSkillAtk,"MG_FIREBOLT",15+2*.@r; bonus2 bSkillAtk,"MG_COLDBOLT",15+2*.@r; bonus2 bSkillAtk,"WZ_EARTHSPIKE",15+2*.@r; bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",15+2*.@r; if (.@r>=7) { bonus bMatk,20; } if (.@r>=9) { autobonus "{ bonus bMatkRate,10; bonus bInt,70; }",1,5000,BF_WEAPON; } if (.@r>=11) { bonus2 bMagicAtkEle,Ele_Fire,10; bonus2 bMagicAtkEle,Ele_Earth,10; bonus2 bMagicAtkEle,Ele_Water,10; bonus2 bMagicAtkEle,Ele_Wind,10; } },{},{}
Dropped By No Result

End of the World [1]   [Footgear]   Item ID# 470130 (aegis_470130)
Type
Armor
Class
Footgear
Buy
n/a
Sell
n/a
Weight
40
Defense
12
Required Lvl
100
Armor Lvl
1
Slot
1
Applicable Jobs
Every Job
Description
Not Available

[iRO Description]
Special shoes made for the assassin. By wearing it, it creates strong awakening and rotational power.

MaxHP + 3% , MaxSP + 3%, Reduce resistance against players by 10%.

Reduce cooldown of Hallucination Walk by 5 sec per 1 skill level of Cross Impact.

Increase physical damage to all types of monsters by 10% per 1 skill level of Cross Reaper Slasher.

When Halluciation Walk lv5, increase resistance against normal and boss type monsters by 5%.
Increase resistance against shadow type attacks by 30%.

Increase damage of Rolling Cutter by 100% per 1 skill level of Rolling Cutter.

When refined to +5 or higher, additional MaxHP + 7% and MaxSP + 7%, reduce after cast delay by 10%.
When refined to +7 or higher, additional MaxHP + 10% and MaxSP + 10%, reduce after cast delay by additional 10%.

Type : Shoes Defense : 12
Required Level : 100
Class : All
Item Script
expand to view script
{ .@r = getrefine(); bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus2 bSubRace,RC_Player_Human,10; bonus2 bSkillCooldown,"GC_HALLUCINATIONWALK",-5000*getskilllv("GC_CROSSIMPACT"); bonus bAtkRate,10*getskilllv("GC_CROSSRIPPERSLASHER"); bonus2 bSkillAtk,"GC_COUNTERSLASH",6*getskilllv("GC_ROLLINGCUTTER"); bonus2 bSkillAtk,"GC_ROLLINGCUTTER",100*getskilllv("GC_ROLLINGCUTTER"); if (getskilllv("GC_HALLUCINATIONWALK") == 5) bonus2 bSubClass,Class_All,5; if (.@r>=5) { bonus bMaxHPrate,7; bonus bMaxSPrate,7; bonus bDelayrate,-10; } if (.@r>=7) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bDelayrate,-10; } },{},{}
Dropped By No Result

Enforcer Shoes [0]   [Footgear]   Item ID# 22134 (Enforcer_Shoes)
Type
Armor
Class
Footgear
Buy
20z
Sell
10z
Weight
40
Defense
12
Required Lvl
100
Armor Lvl
1
Slot
0
Applicable Jobs
Every Job
Description
These blood soaked shoes releases a terrible aura.
MaxHP +3%, MaxSP +3%, MDEF +10.
Enables use of Level 1 Maximize Power.
Reduces SP cost of Meteor Assault by 8.

Refine Level +5:
MaxHP +7%, MaxSP +7%.
Every base level: Increases Meteor Assault damage by 1%.

Refine Level +7:
MaxHP +10%, MaxSP +10%.
Every base level: Increases Meteor Assault damage by 1%.

Every learned level of Poison React:
Increases Meteor Assault damage by 30%.

Every learned level of Weapon Blocking:
Reduces skill cooldown of Hallucination Walk by 5 seconds.

Every learned level of Weapon Crush:
ATK +4%.

Every learned level of Counter Slash:
Pierces physical defense of all monsters by 20%.

Every learned level of Weapon Blocking, Weapon Crush and Counter Slash:
Reduces variable cast time of Meteor Assault by 7%.
Item Script
expand to view script
{ .@r = getrefine(); .@hpsp = 3; .@a = getskilllv("GC_WEAPONCRUSH"); .@b = getskilllv("GC_WEAPONBLOCKING"); .@c = getskilllv("GC_COUNTERSLASH"); if (.@r >= 5) { .@hpsp += 7; .@dmg = BaseLevel; if (.@r >= 7) { .@hpsp += 10; .@dmg += BaseLevel + 30*getskilllv("AS_POISONREACT"); } bonus2 bSkillAtk,"ASC_METEORASSAULT",.@dmg; } bonus bMaxHPrate,.@hpsp; bonus bMaxSPrate,.@hpsp; bonus bMdef,10; skill "BS_MAXIMIZE",1; bonus2 bSkillUseSP,"ASC_METEORASSAULT",8; bonus bAtkRate,4*.@a; bonus2 bSkillCooldown,"GC_HALLUCINATIONWALK",-5000*.@b; bonus2 bIgnoreDefRaceRate,RC_All,20*.@c; bonus2 bVariableCastrate,"ASC_METEORASSAULT",-7*(.@a+.@b+.@c); },{},{}
Dropped By No Result

Enhanced Time Keeper Boots [0]   [Footgear]   Item ID# 22102 (Toughen_Time_Keepr_Bts)
Enhanced Time Guardian Boots
Type
Armor
Class
Footgear
Buy
n/a
Sell
n/a
Weight
0
Defense
23
Required Lvl
100
Armor Lvl
1
Slot
0
Applicable Jobs
Every Job
Description
A time guardian boots enhanced with mixed Elunium and Emperium.
MaxHP +500, MaxSP +100, MDEF +4.
Reduces variable cast time by 5%.
Increases natural HP and SP regeneration by 15%.
Item Script
{ bonus bVariableCastrate,-5; bonus bMdef,4; bonus bMaxHP,500; bonus bMaxSP,100; },{},{}
Dropped By No Result

Enhanced Variant Shoes [1]   [Footgear]   Item ID# 22014 (Enhanced_Variant_Shoes)
Type
Armor
Class
Footgear
Buy
20z
Sell
10z
Weight
50
Defense
13
Required Lvl
85
Armor Lvl
1
Slot
1
Applicable Jobs
Knight
Priest
Wizard
Blacksmith
Hunter
Assassin
Crusader
Monk
Sage
Rogue
Alchemist
Bard / Dancer
Star Gladiator
Soul Linker
Kagerou / Oboro
Rebellion
Description
A shoes that emanates unnatural feeling. It is evident that the creator tried to challenge the limits but failed in overcoming it.
MaxHP +12% and MaxSP +12%.
Every refine level, DEF +1 and MDEF +1.
Item Script
{ bonus bMaxHPrate,12; bonus bMaxSPrate,12; .@r = getrefine(); bonus bDef,.@r; bonus bMdef,.@r; },{},{}
Dropped By No Result

Excelion Leg [0]   [Footgear]   Item ID# 22103 (Excelion_Leg)
Type
Armor
Class
Footgear
Buy
n/a
Sell
n/a
Weight
50
Defense
13
Required Lvl
100
Armor Lvl
1
Slot
0
Applicable Jobs
Every Job
Description
A power boots that's made with the lost technology found in Juperos ruins.

MaxHP +5%, MaxSP +5%.
Base level 130 or higher: MaxHP +4%, MaxSP +4%.
Every 3 refine level: MaxHP +3%, MaxSP +3%.
Item Script
{ .@r = getrefine(); bonus bMaxHP,5+((BaseLevel > 129) ? 4 : 0)+(.@r/3)*3; bonus bMaxSP,5+((BaseLevel > 129) ? 4 : 0)+(.@r/3)*3; },{},{}
Dropped By No Result

Exorcist's Shoes [0]   [Footgear]   Item ID# 22032 (Shoes_Of_Exorcism)
Type
Armor
Class
Footgear
Buy
20z
Sell
10z
Weight
30
Defense
10
Required Lvl
30
Armor Lvl
1
Slot
0
Applicable Jobs
Every Job
Description
A pair of shoes worn by a man who devoted himself to devotion. All years of experience were accumulated on these shoes.

Give 5% more experience point when defeating Demon monsters.
Every refine, gives an extra 1% more experience point when defeating Demon monsters.
Item Script
{ bonus2 bExpAddRace,RC_Demon,5+getrefine(); },{},{}
Dropped By No Result

Exorcist's Shoes [1]   [Footgear]   Item ID# 22093 (Shoes_Of_Exorcism_)
Type
Armor
Class
Footgear
Buy
20z
Sell
10z
Weight
30
Defense
10
Required Lvl
30
Armor Lvl
1
Slot
1
Applicable Jobs
Every Job
Description
A pair of shoes worn by a man who devoted himself to devotion. All years of experience were accumulated on these shoes.
Give 5% more experience when defeating Demon monsters.
Every refine further gives 1% more experience when defeating Demon monsters.
Item Script
{ bonus2 bExpAddRace,RC_Demon,5+getrefine(); },{},{}
Dropped By No Result

Fallen Angel Shoes [1]   [Footgear]   Item ID# 22096 (Fallen_Angel_Shoes_)
Type
Armor
Class
Footgear
Buy
20z
Sell
10z
Weight
30
Defense
10
Required Lvl
30
Armor Lvl
1
Slot
1
Applicable Jobs
Every Job
Description
A pair of shoes worn by angel. All years of experience were accumulated on these shoes.
Increases exeperience gained from defeating Angel monsters by 5%.
For every refine level: Increases exeperience gained from defeating Angel monsters by 1%.
Item Script
{ bonus2 bExpAddRace,RC_Angel,5+getrefine(); },{},{}
Dropped By No Result

« First < 23456789101112 > Last »
back to top