Star Cluster of Wisdom Lv2, (Renewal)
Star Cluster of Wisdom Lv2 (STAR_CLUSTER_OF_WIS2) – карта.

MaxSP + 1% and increases heal effectiveness by 3% per 15 base WIS of the user.
If the enchanted armor is grade D, additional MaxSP + 1% and increases heal effectiveness by additional 2% per 15 base WIS.
If the enchanted armor is grade C, additional MaxSP + 1%, increases heal effectiveness by additional 2% and increases SP recovery rate by 1% per 15 base WIS.
If the enchanted armor is grade B, additional MaxSP + 1%, H.Plus + 1 and increases SP recovery rate by additional 2% per 15 base WIS.
If the enchanted armor is grade A, additional MaxSP + 2% and additional H.Plus + 2 per 15 base WIS.
Базовые свойства предмета
- ID: 17705
- Код: STAR_CLUSTER_OF_WIS2
- Тип: карта
- Подтип:
- Вес: 1
Скрипт
.@param = (readparam(bWis)/15);
.@g = getenchantgrade();
bonus bMaxSPrate,.@param;
bonus bHealPower,3*.@param;
if (.@g >= ENCHANTGRADE_D) {
bonus bMaxSPrate,.@param;
bonus bHealPower,2*.@param;
if (.@g >= ENCHANTGRADE_C) {
bonus bSPrecovRate,.@param;
bonus bMaxSPrate,.@param;
bonus bHealPower,2*.@param;
if (.@g >= ENCHANTGRADE_B) {
bonus bSPrecovRate,2*.@param;
bonus bHPlus,.@param;
bonus bMaxSPrate,.@param;
if (.@g >= ENCHANTGRADE_A) {
bonus bHPlus,2*.@param;
bonus bMaxSPrate,2*.@param;
}
}
}
}