Star Cluster of Power Lv3, (Renewal)
Star Cluster of Power Lv3 (STAR_CLUSTER_OF_POW3) – карта.

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