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