Star Cluster of Spell Lv1, (Renewal)

Star Cluster of Spell Lv1 (STAR_CLUSTER_OF_SPL1) – карта.

Star Cluster of Spell Lv1, (Renewal)

Increases all property magical damage by 1% and Matk + 5 per 15 base SPL of the user.
If the enchanted armor is grade D, increases all property magical damage by additional 1% and S.Matk + 1 per 15 base SPL.
If the enchanted armor is grade C, increases all property magical damage by additional 1% and additional S.Matk + 1 per 15 base SPL.
If the enchanted armor is grade B, increases all property magical damage by additional 1% and additional S.Matk + 1 per 15 base SPL.
If the enchanted armor is grade A, increases all property magical damage by additional 1% and additional S.Matk + 1 per 15 base SPL.

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

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

Скрипт

.@param = (readparam(bSpl)/15);
.@g = getenchantgrade();
bonus2 bMagicAtkEle,Ele_All,.@param;
bonus bMatk,5*.@param;
if (.@g >= ENCHANTGRADE_D) {
   bonus2 bMagicAtkEle,Ele_All,.@param;
   bonus bSMatk,.@param;
   if (.@g >= ENCHANTGRADE_C) {
      bonus2 bMagicAtkEle,Ele_All,.@param;
      bonus bSMatk,.@param;
      if (.@g >= ENCHANTGRADE_B) {
         bonus2 bMagicAtkEle,Ele_All,.@param;
         bonus bSMatk,.@param;
         if (.@g >= ENCHANTGRADE_A) {
            bonus2 bMagicAtkEle,Ele_All,.@param;
            bonus bSMatk,.@param;
         }
      }
   }
}