ID #313914
Card
Dimension World Crystal (Prudence)
Buy Price: N/A
Sell Price: N/A
Increases Physical Damage against monsters of Boss class by 5%.
Increases Physical Damage against enemies of every size by 15%.
Increases Physical Damage against monsters in Devoured Geffenia by 25%.
_______________________
[Bonus by Equipment's Grade]
[Grade D]: P.ATK +7, CON +7.
[Grade C]: Physical Damage +15%.
[Grade B]: CON +7, ATK +10 per 3 Refine Levels.
[Grade A]: CON +7 per 2 Refine Levels.
Increases Physical Damage against enemies of every size by 15%.
Increases Physical Damage against monsters in Devoured Geffenia by 25%.
_______________________
[Bonus by Equipment's Grade]
[Grade D]: P.ATK +7, CON +7.
[Grade C]: Physical Damage +15%.
[Grade B]: CON +7, ATK +10 per 3 Refine Levels.
[Grade A]: CON +7 per 2 Refine Levels.
Basic Information
Type
Card
Scripts
Script .@g = getenchantgrade(); .@r = getrefine(); bonus2 bAddClass,Class_Boss,5; bonus2 bAddSize,Size_All,15; if (.@g>=ENCHANTGRADE_D) { bonus bPAtk,7; bonus bCon,7; if (.@g>=ENCHANTGRADE_C) { bonus bLongAtkRate,15; bonus bShortAtkRate,15; if (.@g>=ENCHANTGRADE_B) { bonus bCon,7; bonus bBaseAtk,10*(.@r/3); if (.@g>=ENCHANTGRADE_A) { bonus bCon,6*(.@r/2); /* TODO: bonus bCon,7*(.@r/2); according to description */ } } } }
.@g = getenchantgrade();
.@r = getrefine();
bonus2 bAddClass,Class_Boss,5;
bonus2 bAddSize,Size_All,15;
if (.@g>=ENCHANTGRADE_D) {
bonus bPAtk,7;
bonus bCon,7;
if (.@g>=ENCHANTGRADE_C) {
bonus bLongAtkRate,15;
bonus bShortAtkRate,15;
if (.@g>=ENCHANTGRADE_B) {
bonus bCon,7;
bonus bBaseAtk,10*(.@r/3);
if (.@g>=ENCHANTGRADE_A) {
bonus bCon,6*(.@r/2); /* TODO: bonus bCon,7*(.@r/2); according to description */
}
}
}
}