
RENEWAL / ITEMS
One-Eye Dollocaris Card
#300375Card
One_E_Dollocaris_Card
TypeCard
Card placementGarment
Weight1
Buy price0 z
Sell price0 z
Card illustration
Description
Reduce damage taken from Neutral property attacks by 20%.
------------------------
If refine rate is lower than +12,
Reduce Magical Damage with Shadow, Holy, Ghost and Neutral property by 25%.
------------------------
If refine rate is +12 or higher,
Increases Magical Damage with Shadow, Holy, Ghost and Neutral property by 25%.
------------------------
If level equipment of Garment is 2,
Increases Magical Damage with Shadow, Holy, Ghost and Neutral property by 8%.
------------------------
Class : Card
Compound on : Garment
Weight : 1
English Renewal client description · iRO. Numeric server data above takes precedence when the client text differs.
Item details
- Card placement
- Garment
- Trade
Item effect script
bonus2 bSubEle,Ele_Neutral,20;
.@r = getrefine();
.@rate = ((getrefine() < 12) ? -25 : 25);
if (getequiparmorlv() == 2) {
.@rate += 8;
}
bonus2 bMagicAtkEle,Ele_Dark,.@rate;
bonus2 bMagicAtkEle,Ele_Holy,.@rate;
bonus2 bMagicAtkEle,Ele_Ghost,.@rate;
bonus2 bMagicAtkEle,Ele_Neutral,.@rate;