Star Cluster of Creative Lv1, (Renewal)

Star Cluster of Creative Lv1 (STAR_CLUSTER_OF_CRT1) – карта.

Star Cluster of Creative Lv1, (Renewal)

Increases critical damage by 1% and Atk + 5 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 + 1 per 15 base CRT.
If the enchanted armor is grade A, increases critical damage by additional 1% and additional P.Atk + 1 per 15 base CRT.

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

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

Скрипт

.@param = (readparam(bCrt)/15);
.@g = getenchantgrade();
bonus bCritAtkRate,.@param;
bonus bBaseAtk,5*.@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,.@param;
         if (.@g >= ENCHANTGRADE_A) {
            bonus bCritAtkRate,.@param;
            bonus bPAtk,.@param;
         }
      }
   }
}