
RENEWAL / ITEMS
Wolf Orb (Robust) Level 3
#310599Card
Wolf_Orb_Robust_3
TypeCard
Weight0
Buy price0 z
Sell price0 z
Description
MHP + 5%, MSP + 5%, MHP + 2000, MSP + 350.
------------------------
When refine level is 7 or higher, additional MHP + 3% and MSP + 3%.
------------------------
When refine level is 9 or higher, additional MHP + 4% and MSP + 4%.
------------------------
When refine level is 11 or higher, additional MHP + 5% and MSP + 5%.
English Renewal client description · iRO. Numeric server data above takes precedence when the client text differs.
Item details
- Trade
Item effect script
.@r = getrefine();
bonus bMaxHPrate,5;
bonus bMaxSPrate,5;
bonus bMaxHP,2000;
bonus bMaxSP,350;
if (.@r>=7) {
bonus bMaxHPrate,3;
bonus bMaxSPrate,3;
if (.@r>=9) {
bonus bMaxHPrate,4;
bonus bMaxSPrate,4;
if (.@r>=11) {
bonus bMaxHPrate,5;
bonus bMaxSPrate,5;
}
}
}