Sealed Gypsy Card

Item ID 27219 Name Sealed Gypsy Card
Enables the use of Level 5 Fortune's Kiss. (When equipped with Musical Instrument/Whip)
FLEE +10
_______________________
Base VIT at least 110:
FLEE +10
_______________________
Refine Level +15:
Enables the use of Level 7 Fortune's Kiss instead. (When equipped with Musical Instrument/Whip)
FLEE +15 instead.

Base VIT at least 110:
FLEE +15 instead
_______________________
Warning - Silit Pong does not work on removing this card!
_______________________
Type: Card
Compound on: Armor
Weight: 1
Weapon Level 0 Identifier SLD_Gypsy_Card
Attack 0 Type Card
MATK 0 Equip Locations Armor
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 0 Max Equip Level None
NPC Sell 0 Refineable No
Credit Price None Trade restriction None
Item Script
if (getrefine()<15) {
   if (getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW) == W_MUSICAL || getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW) == W_WHIP) {
      skill "DC_FORTUNEKISS2",5;
   }
   bonus bFlee,(readparam(bVit)>=110) ? 20 : 10;
}
else {
   if (getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW) == W_MUSICAL || getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW) == W_WHIP) {
      skill "DC_FORTUNEKISS2",7;
   }
   bonus bFlee,(readparam(bVit)>=110) ? 30 : 15;
}