
RENEWAL / ITEMS
Star Cluster of Power Lv3
#310676Card
Star_Cluster_Of_Pow3
TypeCard
Weight0
Buy price0 z
Sell price0 z
Description
The essence of stars that strengthens the wearer.
------------------------
ATK + 15 and increases melee physical damage by 2% per 15 base POW of the user.
If armor grade is D, P.ATK + 1 and increases melee physical damage by additional 1% per 15 base POW.
If armor grade is C, additional P.ATK + 2 and increases melee physical damage by additional 1% per 15 base POW.
If armor grade is B, additional P.ATK + 2 and increases melee physical damage by additional 2% per 15 base POW.
If armor grade is A, additional P.ATK + 3 and increases melee physical damage by additional 3% per 15 base POW.
English Renewal client description · iRO. Numeric server data above takes precedence when the client text differs.
Item details
- Trade
Item effect 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;
}
}
}
}