Star Cluster of Wisdom Lv1, (Renewal)

Star Cluster of Wisdom Lv1 (STAR_CLUSTER_OF_WIS1) – карта.

Star Cluster of Wisdom Lv1, (Renewal)

MaxSP + 1% and increases heal effectiveness by 1% per 15 base WIS of the user.
If the enchanted armor is grade D, additional MaxSP + 1% and increases heal effectiveness by additional 1% 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%, increases heal effectiveness by additional 2% and increases SP recovery rate by additional 2% per 15 base WIS.
If the enchanted armor is grade A, additional MaxSP + 1% and H.Plus + 1 per 15 base WIS.

Базовые свойства предмета

  • ID: 17704
  • Код: STAR_CLUSTER_OF_WIS1
  • Тип: карта
  • Подтип:
  •  
  • Вес: 1

Скрипт

.@param = (readparam(bWis)/15);
.@g = getenchantgrade();
bonus bMaxSPrate,.@param;
bonus bHealPower,.@param;
if (.@g >= ENCHANTGRADE_D) {
   bonus bMaxSPrate,.@param;
   bonus bHealPower,.@param;
   if (.@g >= ENCHANTGRADE_C) {
      bonus bSPrecovRate,.@param;
      bonus bMaxSPrate,.@param;
      bonus bHealPower,2*.@param;
      if (.@g >= ENCHANTGRADE_B) {
         bonus bSPrecovRate,2*.@param;
         bonus bMaxSPrate,.@param;
         bonus bHealPower,2*.@param;
         if (.@g >= ENCHANTGRADE_A) {
            bonus bHPlus,.@param;
            bonus bMaxSPrate,.@param;
         }
      }
   }
}