
RENEWAL / ITEMS
Star Cluster of Power Lv2
#310675Card
Star_Cluster_Of_Pow2
Item stats
- Weight
- 0
- Buy price
- 0 z
- Sell price
- 0 z
Usage & restrictions
- Type
- Card
- Trading & storage
- No restrictions
Star Cluster of Power Lv2 description & effects
The essence of stars that strengthens the wearer.
------------------------
ATK + 7 and increases melee physical damage by 1% 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 + 1 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 1% per 15 base POW.
If armor grade is A, additional P.ATK + 2 and increases melee physical damage by additional 2% per 15 base POW.
Item effect 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;
}
}
}
}
Card sets
Set 1
Set effect
.@g = getenchantgrade(EQI_SHOES);
autobonus "{ bonus bStr,100; }",30,10000,BF_WEAPON;
if (.@g>=ENCHANTGRADE_C) {
bonus bPow,7;
if (.@g>=ENCHANTGRADE_A) {
bonus bPow,12;
bonus bPerfectHitAddRate,8;
}
}


