
RENEWAL / ITEMS
Two-Eye Dollocaris Card
#300376Card
Eyes_Dollocaris_Card
TypeCard
Card placementArmor
Weight1
Buy price0 z
Sell price0 z
Card illustration
Description
DEF +100, RES +50
------------------------
If refine level is lower than +12,
MaxHP -30%, ATK -10%, MATK -10%
------------------------
If refine level is +12 or higher,
MaxHP +30%, ATK +10%, MATK +10%
------------------------
If level equipment of Armor is 2,
RES +50
------------------------
Class : Card
Compound on : Armor
Weight : 1
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
bonus bDef,100;
bonus bRes,50;
.@r = getrefine();
if (getrefine() < 12) {
bonus bMaxHPrate,-30;
bonus bAtkRate,-10;
bonus bMatkRate,-10;
}
else {
bonus bMaxHPrate,30;
bonus bAtkRate,10;
bonus bMatkRate,10;
}
if (getequiparmorlv() == 2) {
bonus bRes,50;
}