ID #310676
Card
Star Cluster of Power Lv3
Buy Price: N/A
Sell Price: N/A
A stellar essence that strengthens the wearer.
_______________________
For each 15 base POW:
ATK +15
Increases Melee Physical Damage by 2%.
_______________________
If enchanted Armor's Grade is D:
For each 15 base POW:
P.ATK +1
Increases Melee Physical Damage by additional 1%.
_______________________
If enchanted Armor's Grade is C:
For each 15 base POW:
P.ATK +2
Increases Melee Physical Damage by additional 1%.
_______________________
If enchanted Armor's Grade is B:
For each 15 base POW:
P.ATK +2
Increases Melee Physical Damage by additional 2%.
_______________________
If enchanted Armor's Grade is A:
For each 15 base POW:
P.ATK +3
Increases Melee Physical Damage by additional 3%.
_______________________
For each 15 base POW:
ATK +15
Increases Melee Physical Damage by 2%.
_______________________
If enchanted Armor's Grade is D:
For each 15 base POW:
P.ATK +1
Increases Melee Physical Damage by additional 1%.
_______________________
If enchanted Armor's Grade is C:
For each 15 base POW:
P.ATK +2
Increases Melee Physical Damage by additional 1%.
_______________________
If enchanted Armor's Grade is B:
For each 15 base POW:
P.ATK +2
Increases Melee Physical Damage by additional 2%.
_______________________
If enchanted Armor's Grade is A:
For each 15 base POW:
P.ATK +3
Increases Melee Physical Damage by additional 3%.
Basic Information
Type
Card
Scripts
Script .@param = (readparam(bPow)/15); .@g = getenchantgrade(); bonus bShortAtkRate,2*.@param; bonus bBaseAtk,15*.@param; if (.@g >= ENCHANTGRADE_D) { bonus bShortAtkRate,.@param; bonus bPAtk,.@param; if (.@g >= ENCHANTGRADE_C) { bonus bShortAtkRate,.@param; bonus bPAtk,2*.@param; if (.@g >= ENCHANTGRADE_B) { bonus bShortAtkRate,2*.@param; bonus bPAtk,2*.@param; if (.@g >= ENCHANTGRADE_A) { bonus bShortAtkRate,3*.@param; bonus bPAtk,3*.@param; } } } }
.@param = (readparam(bPow)/15);
.@g = getenchantgrade();
bonus bShortAtkRate,2*.@param;
bonus bBaseAtk,15*.@param;
if (.@g >= ENCHANTGRADE_D) {
bonus bShortAtkRate,.@param;
bonus bPAtk,.@param;
if (.@g >= ENCHANTGRADE_C) {
bonus bShortAtkRate,.@param;
bonus bPAtk,2*.@param;
if (.@g >= ENCHANTGRADE_B) {
bonus bShortAtkRate,2*.@param;
bonus bPAtk,2*.@param;
if (.@g >= ENCHANTGRADE_A) {
bonus bShortAtkRate,3*.@param;
bonus bPAtk,3*.@param;
}
}
}
}