
RENEWAL / ITEMS
Arena Ju Card
#300189Card
MD_Geffen_Jew_Card
TypeCard
Card placementWeapon
Weight1
Buy price0 z
Sell price0 z
Card illustration
Description
Increases Fire Bolt, Cold Bolt, Lightning Bolt damage by 15%.
If compounded on Book, increases Fire Bolt, Cold Bolt, Lightning Bolt damage by additional 20%.
If refine rate is 14 or higher, increases Fire Bolt, Cold Bolt, Lightning Bolt damage by additional 30%.
------------------------
Class: Card
Location: Weapon
Weight: 1
English Renewal client description · iRO. Numeric server data above takes precedence when the client text differs.
Item details
- Card placement
- Weapon
- Trade
Item effect 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;