Glacier Flower Spell (Physical Grade) 2Lv, (Renewal)

Glacier Flower Spell (Physical Grade) 2Lv (PHYSICAL_GRADE_2) – карта.

Glacier Flower Spell (Physical Grade) 2Lv, (Renewal)

Atk + 30, increases melee and long ranged physical damage by 6%.
If refine rate is 7 or higher, increases attack speed (reduces delay after attack by 6%).
If refine rate is 9 or higher, reduces variable casting time and global cooldown by 6%.


[Bonus by grade of weapon]
[Grade D] Atk + 2%, Atk + 30.
[Grade C] If refine rate is 7 or higher, P.Atk + 3.
[Grade B] If refine rate is 9 or higher, POW + 1, CON + 1.
[Grade A] Increases physical damage against all property enemies by 12%, if refine rate is 11 or higher, increases physical damage against all size enemies by 12%.

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

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

Скрипт

.@g = getenchantgrade();
.@r = getrefine();
bonus bLongAtkRate,6;
bonus bShortAtkRate,6;
bonus bBaseAtk,30;
if (.@r>=7) {
   bonus bAspdRate,6;
   if (.@r>=9) {
      bonus bVariableCastrate,-6;
      bonus bDelayrate,-6;
   }
}
if (.@g>=ENCHANTGRADE_D) {
   bonus bAtkRate,2;
   bonus bBaseAtk,30;
   if (.@g>=ENCHANTGRADE_C) {
      if (.@r>=7) {
         bonus bPAtk,3;
      }
   }
   if (.@g>=ENCHANTGRADE_B) {
      if (.@r>=9) {
         bonus bPow,1;
         bonus bCon,1;
      }
      if (.@g>=ENCHANTGRADE_A) {
         bonus2 bAddEle,Ele_All,12;
         if (.@r>=11) {
            bonus2 bAddSize,Size_All,12;
         }
      }
   }
}