
RENEWAL / ITEMS
Star Cluster of Creative Lv3
#310685Card
Star_Cluster_Of_Crt3
TypeCard
Weight0
Buy price0 z
Sell price0 z
Description
The essence of stars that strengthens the wearer.
------------------------
Increases critical damage by 3% and ATK + 15 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 2% and additional P.ATK + 3 per 15 base CRT.
If armor grade is A, increases critical damage by additional 3% and additional P.ATK + 3 per 15 base CRT.
English Renewal client description · iRO. Numeric server data above takes precedence when the client text differs.
Item details
- Trade
Item effect script
.@param = (readparam(bCrt)/15);
.@g = getenchantgrade();
bonus bCritAtkRate,3*.@param;
bonus bBaseAtk,15*.@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,2*.@param;
bonus bPAtk,3*.@param;
if (.@g >= ENCHANTGRADE_A) {
bonus bCritAtkRate,3*.@param;
bonus bPAtk,3*.@param;
}
}
}
}