Star Cluster of Creative Lv3, (Renewal)

Star Cluster of Creative Lv3 (STAR_CLUSTER_OF_CRT3) – карта.

Star Cluster of Creative Lv3, (Renewal)

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

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

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

Скрипт

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