
RENEWAL / ITEMS
Wolf Orb (Robust) Level 2
#310598Card
Wolf_Orb_Robust_2
TypeCard
Weight0
Buy price0 z
Sell price0 z
Description
MHP + 5%, MSP + 5%, MHP + 1500, MSP + 300.
------------------------
When refine level is 7 or higher, additional MHP + 2% and MSP + 2%.
------------------------
When refine level is 9 or higher, additional MHP + 3% and MSP + 3%.
------------------------
When refine level is 11 or higher, additional MHP + 4% and MSP + 4%.
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,1500;
bonus bMaxSP,300;
if (.@r>=7) {
bonus bMaxHPrate,2;
bonus bMaxSPrate,2;
if (.@r>=9) {
bonus bMaxHPrate,3;
bonus bMaxSPrate,3;
if (.@r>=11) {
bonus bMaxHPrate,4;
bonus bMaxSPrate,4;
}
}
}