ID #313930
Card
Frontier Crystal (Volition) 4Lv
Buy Price: N/A
Sell Price: N/A
Increases Physical Damage against monsters in Devoured Geffenia by 15%.
_______________________
[Bonus by Equipment's Grade]
[Grade D]: P.ATK +4, C.RATE +2, POW +4.
[Grade C]: Physical Damage +3%, Critical Damage +3%.
[Grade B]: CRT +4. ATK +3, Critical +2 per 4 Refine Levels.
[Grade A]: POW + 4, CRT +1 per 3 Refine Levels.
_______________________
[Bonus by Equipment's Grade]
[Grade D]: P.ATK +4, C.RATE +2, POW +4.
[Grade C]: Physical Damage +3%, Critical Damage +3%.
[Grade B]: CRT +4. ATK +3, Critical +2 per 4 Refine Levels.
[Grade A]: POW + 4, CRT +1 per 3 Refine Levels.
Basic Information
Type
Card
Scripts
Script .@g = getenchantgrade(); .@r = getrefine(); if (.@g>=ENCHANTGRADE_D) { bonus bCRate,2; bonus bPAtk,4; bonus bPow,4; if (.@g>=ENCHANTGRADE_C) { bonus bCritAtkRate,3; bonus bLongAtkRate,3; bonus bShortAtkRate,3; if (.@g>=ENCHANTGRADE_B) { bonus bCrt,4; bonus bCritical,2*(.@r/4); bonus bBaseAtk,3*(.@r/4); if (.@g>=ENCHANTGRADE_A) { bonus bPow,4*(.@r/3); bonus bCrt,(.@r/3); } } } }
.@g = getenchantgrade();
.@r = getrefine();
if (.@g>=ENCHANTGRADE_D) {
bonus bCRate,2;
bonus bPAtk,4;
bonus bPow,4;
if (.@g>=ENCHANTGRADE_C) {
bonus bCritAtkRate,3;
bonus bLongAtkRate,3;
bonus bShortAtkRate,3;
if (.@g>=ENCHANTGRADE_B) {
bonus bCrt,4;
bonus bCritical,2*(.@r/4);
bonus bBaseAtk,3*(.@r/4);
if (.@g>=ENCHANTGRADE_A) {
bonus bPow,4*(.@r/3);
bonus bCrt,(.@r/3);
}
}
}
}