
RENEWAL / ITEMS
Ice Magic Orb (Robust)
#311116Card
Ice_F_Orb_Robust
TypeCard
Weight0
Buy price0 z
Sell price0 z
Description
MaxHP + 5%, MaxSP + 5%, MaxHP + 2000, MaxSP + 350.
If refine rate is 7 or higher, additional MaxHP + 3% and MaxSP + 3%.
If refine rate is 9 or higher, additional MaxHP + 4% and MaxSP + 4%.
If refine rate is 11 or higher, additional MaxHP + 5% and MaxSP + 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;
}
}
}