ID #312390
Card
Corrupted Poison Rune 6Lv
Buy Price: N/A
Sell Price: N/A
For each 20 base LUK:
ATK +10, POW +2, CRT +2.
_______________________
If enchanted Equipment's Grade is D or higher:
P.ATK +6.
Increases Physical Damage by 6%.
_______________________
If enchanted Equipment's Grade is C or higher:
P.ATK +9.
Increases Physical Damage by 10%.
ATK +10, POW +2, CRT +2.
_______________________
If enchanted Equipment's Grade is D or higher:
P.ATK +6.
Increases Physical Damage by 6%.
_______________________
If enchanted Equipment's Grade is C or higher:
P.ATK +9.
Increases Physical Damage by 10%.
Basic Information
Type
Card
Scripts
Script .@luk = (readparam(bLuk)/20); .@g = getenchantgrade(); bonus bBaseAtk,10*.@luk; bonus bPow,2*.@luk; bonus bCrt,2*.@luk; if (.@g>=ENCHANTGRADE_D) { bonus bShortAtkRate,6; bonus bLongAtkRate,6; bonus bPAtk,6; if (.@g>=ENCHANTGRADE_C) { bonus bShortAtkRate,10; bonus bLongAtkRate,10; bonus bPAtk,9; } }
.@luk = (readparam(bLuk)/20);
.@g = getenchantgrade();
bonus bBaseAtk,10*.@luk;
bonus bPow,2*.@luk;
bonus bCrt,2*.@luk;
if (.@g>=ENCHANTGRADE_D) {
bonus bShortAtkRate,6;
bonus bLongAtkRate,6;
bonus bPAtk,6;
if (.@g>=ENCHANTGRADE_C) {
bonus bShortAtkRate,10;
bonus bLongAtkRate,10;
bonus bPAtk,9;
}
}