
RENEWAL / ITEMS
Experience Shadow Weapon
#24770Shadow Gear
S_EXP_Weapon
TypeShadow Gear
Equipment positionShadow weapon
GenderBoth
Weight0
Buy price0 z
Sell price0 z
Description
When Base Level is below 175, increase EXP gain from monsters by 20%.
------------------------
When Base Level is 175 or higher, increase EXP gain from monsters by 10%.
------------------------
For every 2 refine level, increase EXP gain from monsters by 1%.
------------------------
When refined to +10 or higher, increase EXP gain from monsters by 5%.
------------------------
Type : Shadow Equipment
Location : Weapon
Weight : 0
Required Level : 1
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
- Shadow weapon
- Jobs
- All
- Yes
- Classes
- All
- Yes
- Refineable
- Yes
- Trade
Item effect script
.@r = getrefine();
bonus bBaseAtk,.@r;
bonus bMatk,.@r;
if (BaseLevel<175) {
bonus2 bExpAddRace,RC_All,20;
}
if (BaseLevel>=175) {
bonus2 bExpAddRace,RC_All,10;
}
if (.@r>=10) {
bonus2 bExpAddRace,RC_All,5;
}
bonus2 bExpAddRace,RC_All,(.@r/2);