
RENEWAL / ITEMS
Booster Shoes [1]
#22195Armor
Booster_shoes
TypeArmor
Equipment positionFootgear
GenderBoth
Weight80
Buy price20 z
Sell price10 z
DEF30
Slots1
Required level100
Armor level1
Description
Increases resistance to players by 5%
MaxHP+10% MaxSP+10%
When refine rate is 8 or higher,
If the user's base Str is 125 or higher, additional ATK+90
If the user's base Int is 125 or higher, additional MATK+120
If the user's base Agi is 125 or higher, additional ASPD+2
If the user's base VIT is 125 or higher, additional MaxHP+12%
If the user's base Dex is 125 or higher, additional long ranged physical damage +10%
If the user's base Luck is 125 or higher, additional critical damage increased by 20%
When refine rate is 12 or higher,
If the user's base Str is 125 or higher, additional ATK+90
If the user's base Int is 125 or higher, additional MATK+120
If the user's base Agi is 125 or higher, additional ASPD+2
If the user's base VIT is 125 or higher, additional MaxHP+12%
If the user's base Dex is 125 or higher, additional long ranged physical damage +10%
If the user's base Luck is 125 or higher, additional critical damage increased by 20%
Class: Equipment
Position: Shoes
DEF : 0
Weight: 80
Required Level : 100
Usable By: 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
.@r = getrefine();
bonus bMdef,10;
bonus bMaxHPrate,10;
bonus bMaxSPrate,10;
bonus2 bSubRace,RC_Player_Human,5;
if (.@r>=7) {
if (readparam(bStr)>=125)
bonus bBaseAtk,90;
if (readparam(bAgi)>=125)
bonus bAspd,2;
if (readparam(bVit)>=125)
bonus bMaxHPrate,12;
if (readparam(bInt)>=125)
bonus bMatk,120;
if (readparam(bDex)>=125)
bonus bLongAtkRate,10;
if (readparam(bLuk)>=125)
bonus bCritAtkRate,20;
}
if (.@r>=9) {
if (readparam(bStr)>=125)
bonus bBaseAtk,90;
if (readparam(bAgi)>=125)
bonus bAspd,2;
if (readparam(bVit)>=125)
bonus bMaxHPrate,12;
if (readparam(bInt)>=125)
bonus bMatk,120;
if (readparam(bDex)>=125)
bonus bLongAtkRate,10;
if (readparam(bLuk)>=125)
bonus bCritAtkRate,20;
}