Arena Ju Card

Item ID 300189 Name Arena Ju Card
Increases damage of Fire Bolt, Cold Bolt and Lightning Bolt by 15%.
_______________________
When compounded on a Book class weapon:
Increases damage of Fire Bolt, Cold Bolt and Lightning Bolt by additional 20%.

Refine Level of equipped Book is +14 or higher:
Increases damage of Fire Bolt, Cold Bolt and Lightning Bolt by additional 30%.
_______________________
Type: Card
Compound on: Weapon
Weight: 1
Weapon Level 0 Identifier MD_Geffen_Jew_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
.@val = 15;
if (getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW) == W_BOOK) {
   .@val += 20;
}
if (getrefine()>=14) {
   .@val += 30;
}
bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",.@val;
bonus2 bSkillAtk,"MG_FIREBOLT",.@val;
bonus2 bSkillAtk,"MG_COLDBOLT",.@val;