Paradise Robe

Item ID 450184 Name Paradise Robe
A robe given to members of the Paradise Group.
_______________________
MaxHP +100
MaxSP +50
_______________________
For each 5 Base Level:
MaxHP +20 (Up to Base Level 100)
_______________________
Base Level at least 30:
MaxHP +60, MaxSP +30.
_______________________
Base Level at least 45:
MaxHP +100, MaxSP +50.
_______________________
Base Level at least 85:
MaxHP +150, MaxSP +70.
_______________________
Type: Armor
Defense: 20
Weight: 0
Armor Level: 1
Refineable: No
_______________________
Requirement:
Base Level 10
Weapon Level 0 Identifier 1Para_Armor_B
Attack 0 Type Armor
MATK 0 Equip Locations Armor
Defense 20 Equippable Jobs None
Range 0 Equip Gender Both (Male and Female)
Slots 0 Equip Upper None
Weight 0 Min Equip Level 10
NPC Buy 0 Max Equip Level None
NPC Sell 0 Refineable No
Credit Price None Trade restriction Can't be dropped, Can't be traded with player, Can't be put in Cart, Can't be put in Storage, Can't be put in Guild Storage, Can't be attached in Mail, Can't be auctioned
Item Script
.@hp = 20*(min(BaseLevel,100)/5);
if (BaseLevel>=30) {
   .@hp += 60;
   .@sp = 30;
}
if (BaseLevel>=45) {
   .@hp += 100;
   .@sp += 50;
}
if (BaseLevel>=85) {
   .@hp += 150;
   .@sp += 70;
}
bonus bMaxHP,100+.@hp;
bonus bMaxSP,50+.@sp;