Sealed General Daehyon Card

Item ID 27220 Name Sealed General Daehyon Card
When compounded on a One-Handed Sword and Two-Handed Sword class weapon:
ATK +50

Refine Level +15:
ATK +75 instead.
_______________________
Warning - Silit Pong does not work on removing this card!
_______________________
Type: Card
Compound on: Weapon
Weight: 1
Weapon Level 0 Identifier SLD_Daehyon_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 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_1HSWORD || getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW) == W_2HSWORD) {
      bonus bBaseAtk,50;
   }
}
else {
   if (getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW) == W_1HSWORD || getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW) == W_2HSWORD) {
      bonus bBaseAtk,75;
   }
}