Star Cluster of Concentration Lv1, (Renewal)
Star Cluster of Concentration Lv1 (STAR_CLUSTER_OF_CON1) – карта.

Increases long ranged physical damage by 1% and Atk + 5 per 15 base CON of the user.
If the enchanted armor is grade D, increases long ranged physical damage by additional 1% and P.Atk + 1 per 15 base CON.
If the enchanted armor is grade C, increases long ranged physical damage by additional 1% and additional P.Atk + 1 per 15 base CON.
If the enchanted armor is grade B, increases long ranged physical damage by additional 1% and additional P.Atk + 1 per 15 base CON.
If the enchanted armor is grade A, increases long ranged physical damage by additional 1% and additional P.Atk + 2 per 15 base CON.
Базовые свойства предмета
- ID: 17695
- Код: STAR_CLUSTER_OF_CON1
- Тип: карта
- Подтип:
- Вес: 1
Скрипт
.@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;
}
}
}
}