
RENEWAL / ITEMS
Sealed Champion Card
#27215Card
SLD_Champion_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 1 Occult Impaction on the attacker when receiving a physical attack.
ATK + 3%. Additional ATK + 3%, if the user's base Agi is 110 or higher.
If compounded equipment is refined to +15 or above, Adds a chance of casting Level 3 Occult Impaction on the attacker when receiving a physical attack.
ATK + 5% instead. Additional ATK + 5% instead, if the user's base Agi 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,"MO_INVESTIGATE",1,1,BF_WEAPON,1;
bonus bAtkRate,(readparam(bAgi)>=110) ? 6 : 3;
}
else {
bonus5 bAutoSpellWhenHit,"MO_INVESTIGATE",3,1,BF_WEAPON,1;
bonus bAtkRate,(readparam(bAgi)>=110) ? 10 : 5;
}