Sealed Samurai Spector Card

Item ID 4499 Name Sealed Samurai Spector Card
Ignores physical defense of Normal class by 100%.
Disables Natural HP Recovery and drains 888 HP every 5 seconds.
Drains 999 HP on equipping.
_______________________
Refine Level +15:
Drains 777 HP every 8 seconds instead.
_______________________
Type: Card
Compound on: Weapon
Weight: 1
Weapon Level 0 Identifier Sealed_Samurai_Card
Attack 0 Type Card
MATK 0 Equip Locations Main Hand
Defense 0 Equippable Jobs None
Range 0 Equip Gender Both (Male and Female)
Slots 0 Equip Upper None
Weight 1 Min Equip Level None
NPC Buy 20 Max Equip Level None
NPC Sell 10 Refineable No
Credit Price None Trade restriction None
Item Script
bonus bIgnoreDefClass,Class_Normal;
bonus bNoRegen,1;
if (getrefine()>14)
   bonus2 bHPLossRate,777,8000;
else
   bonus2 bHPLossRate,888,5000;
Unequip Script
if (Hp <= 999 && !getmapflag(strcharinfo(3),mf_pvp) && !getmapflag(strcharinfo(3),mf_pvp_noparty) && !getmapflag(strcharinfo(3),mf_pvp_noguild)) {
   heal(1-Hp),0;
}
else {
   heal -999,0;
}