Star Cluster of Creative Lv2, (Renewal)

Star Cluster of Creative Lv2 (STAR_CLUSTER_OF_CRT2) – карта.

Star Cluster of Creative Lv2, (Renewal)

Increases critical damage by 2% and Atk + 7 per 15 base CRT of the user.
If the enchanted armor is grade D, increases critical damage by additional 1% and P.Atk + 1 per 15 base CRT.
If the enchanted armor is grade C, increases critical damage by additional 1% and additional P.Atk + 1 per 15 base CRT.
If the enchanted armor is grade B, increases critical damage by additional 1% and additional P.Atk + 2 per 15 base CRT.
If the enchanted armor is grade A, increases critical damage by additional 2% and additional P.Atk + 2 per 15 base CRT.

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

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

Скрипт

.@param = (readparam(bCrt)/15);
.@g = getenchantgrade();
bonus bCritAtkRate,2*.@param;
bonus bBaseAtk,7*.@param;
if (.@g >= ENCHANTGRADE_D) {
   bonus bCritAtkRate,.@param;
   bonus bPAtk,.@param;
   if (.@g >= ENCHANTGRADE_C) {
      bonus bCritAtkRate,.@param;
      bonus bPAtk,.@param;
      if (.@g >= ENCHANTGRADE_B) {
         bonus bCritAtkRate,.@param;
         bonus bPAtk,2*.@param;
         if (.@g >= ENCHANTGRADE_A) {
            bonus bCritAtkRate,2*.@param;
            bonus bPAtk,2*.@param;
         }
      }
   }
}