ID #312332
Card
Fiery Earth Rune 8Lv
Buy Price: N/A
Sell Price: N/A
For each 20 base STR:
ATK +10, POW +2, CON +2.
_______________________
If enchanted Equipment's Grade is D or higher:
P.ATK +6.
Increases Melee Physical Damage by 6%.
_______________________
If enchanted Equipment's Grade is C or higher:
P.ATK +9.
Increases Melee Physical Damage by additional 10%.
_______________________
If enchanted Equipment's Grade is B or higher:
P.ATK +12.
Increases Melee Physical Damage by additional 14%.
ATK +10, POW +2, CON +2.
_______________________
If enchanted Equipment's Grade is D or higher:
P.ATK +6.
Increases Melee Physical Damage by 6%.
_______________________
If enchanted Equipment's Grade is C or higher:
P.ATK +9.
Increases Melee Physical Damage by additional 10%.
_______________________
If enchanted Equipment's Grade is B or higher:
P.ATK +12.
Increases Melee Physical Damage by additional 14%.
Basic Information
Type
Card
Scripts
Script .@str = (readparam(bStr)/20); .@g = getenchantgrade(); bonus bBaseAtk,10*.@str; bonus bPow,2*.@str; bonus bCon,2*.@str; if (.@g>=ENCHANTGRADE_D) { bonus bShortAtkRate,6; bonus bPAtk,6; if (.@g>=ENCHANTGRADE_C) { bonus bShortAtkRate,10; bonus bPAtk,9; if (.@g>=ENCHANTGRADE_B) { bonus bShortAtkRate,14; bonus bPAtk,12; } } }
.@str = (readparam(bStr)/20);
.@g = getenchantgrade();
bonus bBaseAtk,10*.@str;
bonus bPow,2*.@str;
bonus bCon,2*.@str;
if (.@g>=ENCHANTGRADE_D) {
bonus bShortAtkRate,6;
bonus bPAtk,6;
if (.@g>=ENCHANTGRADE_C) {
bonus bShortAtkRate,10;
bonus bPAtk,9;
if (.@g>=ENCHANTGRADE_B) {
bonus bShortAtkRate,14;
bonus bPAtk,12;
}
}
}