
RENEWAL / ITEMS
Star Cluster of Creative Lv1
#310683Card
Star_Cluster_Of_Crt1
TypeCard
Weight0
Buy price0 z
Sell price0 z
Star Cluster of Creative Lv1 description & effects
The essence of stars that strengthens the wearer.
------------------------
Increases critical damage by 1% and ATK + 5 per 15 base CRT of the user.
If armor grade is D, increases critical damage by additional 1% and P.ATK + 1 per 15 base CRT.
If armor grade is C, increases critical damage by additional 1% and additional P.ATK + 1 per 15 base CRT.
If armor grade is B, increases critical damage by additional 1% and additional P.ATK + 1 per 15 base CRT.
If armor grade is A, increases critical damage by additional 1% and additional P.ATK + 1 per 15 base CRT.
Item details
- Trade
Item effect script
.@param = (readparam(bCrt)/15);
.@g = getenchantgrade();
bonus bCritAtkRate,.@param;
bonus bBaseAtk,5*.@param;
if (.@g >= ENCHANTGRADE_D) {
bonus bCritAtkRate,.@param;
bonus bPAtk,.@param;
if (.@g >= ENCHANTGRADE_C) {
bonus bCritAtkRate,.@param;
bonus bPAtk,.@param;
if (.@g >= ENCHANTGRADE_B) {
bonus bCritAtkRate,.@param;
bonus bPAtk,.@param;
if (.@g >= ENCHANTGRADE_A) {
bonus bCritAtkRate,.@param;
bonus bPAtk,.@param;
}
}
}
}
