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