
RENEWAL / ITEMS
Sealed Paladin Card
#27218Card
SLD_Paladin_Card
TypeCard
Card placementArmor
Weight1
Buy price0 z
Sell price0 z
Card illustration
Description
Class: Card
Compounds On: Armor
Weight: 1
Adds a chance of casting Level 5 Grand Cross on the user when receiving a physical attack.
MHP + 5%. Additional Max HP + 5%, if the user's base Int is 110 or higher.
If compounded equipment is refined to +15 or above,
Adds a chance of casting Level 7 Grand Cross on the user when receiving a physical attack.
Max HP + 7% instead. Additional Max HP + 7% instead, if the user's base Int is 110 or higher.
English Renewal client description · iRO. Numeric server data above takes precedence when the client text differs.
Item details
- Card placement
- Armor
- Trade
Item effect script
if (getrefine()<15) {
bonus5 bAutoSpellWhenHit,"CR_GRANDCROSS",5,1,BF_WEAPON,0;
bonus bMaxHPrate,(readparam(bInt)>=110) ? 10 : 5;
}
else {
bonus5 bAutoSpellWhenHit,"CR_GRANDCROSS",7,1,BF_WEAPON,0;
bonus bMaxHPrate,(readparam(bInt)>=110) ? 14 : 7;
}