
RENEWAL / ITEMS
Star Cluster of Concentration Lv1
#310680Card
Star_Cluster_Of_Con1
Item stats
- Weight
- 0
- Buy price
- 0 z
- Sell price
- 0 z
Usage & restrictions
- Type
- Card
- Trading & storage
- No restrictions
Star Cluster of Concentration Lv1 description & effects
The essence of stars that strengthens the wearer.
------------------------
Increases long ranged physical damage by 1% and ATK + 5 per 15 base CON of the user.
If armor grade is D, increases long ranged physical damage by additional 1% and P.ATK + 1 per 15 base CON.
If armor grade is C, increases long ranged physical damage by additional 1% and additional P.ATK + 1 per 15 base CON.
If armor grade is B, increases long ranged physical damage by additional 1% and additional P.ATK + 1 per 15 base CON.
If armor grade is A, increases long ranged physical damage by additional 1% and additional P.ATK + 2 per 15 base CON.
Item effect script
.@param = (readparam(bCon)/15);
.@g = getenchantgrade();
bonus bLongAtkRate,.@param;
bonus bBaseAtk,5*.@param;
if (.@g >= ENCHANTGRADE_D) {
bonus bLongAtkRate,.@param;
bonus bPAtk,.@param;
if (.@g >= ENCHANTGRADE_C) {
bonus bLongAtkRate,.@param;
bonus bPAtk,.@param;
if (.@g >= ENCHANTGRADE_B) {
bonus bLongAtkRate,.@param;
bonus bPAtk,.@param;
if (.@g >= ENCHANTGRADE_A) {
bonus bLongAtkRate,.@param;
bonus bPAtk,2*.@param;
}
}
}
}
