
RENEWAL / ITEMS
Superior Rgan Healer Card
#300463Card
S_Rgan_Healer_Card
TypeCard
Card placementWeapon
Weight1
Buy price0 z
Sell price0 z
Card illustration
Description
MATK + 40.
------------------------
Increases Holy, Poison, and Water property magical damage by 5%.
------------------------
When refine level is +10 or higher, increases Holy, Poison, and Water property magical damage by 5%.
------------------------
When Weapon level is 5, increases Holy, Poison, and Water property magical damage by 10%.
------------------------
Set Bonus:
Superior Rgan Healer Card
Jormungandr Cult Bishop Card
Increases Holy, Poison, and Water property magical damage by 15%.
------------------------
Class : Card
Compound on : 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
bonus2 bMagicAtkEle,Ele_Poison,5;
bonus2 bMagicAtkEle,Ele_Holy,5;
bonus2 bMagicAtkEle,Ele_Water,5;
bonus bMatk,40;
if (getrefine()>=10) {
bonus2 bMagicAtkEle,Ele_Poison,5;
bonus2 bMagicAtkEle,Ele_Holy,5;
bonus2 bMagicAtkEle,Ele_Water,5;
if (getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_WEAPONLEVEL)==5) {
bonus2 bMagicAtkEle,Ele_Poison,10;
bonus2 bMagicAtkEle,Ele_Holy,10;
bonus2 bMagicAtkEle,Ele_Water,10;
}
}