Creative of Varmundt Lv3, (Renewal)
Creative of Varmundt Lv3 (BARMUND_CRT3) – карта.

CRT + 3.
Atk + 5, P.Atk + 2 and increases critical damage by 5% per 20 base CRT of the user.
If the enchanted equipment is grade D, additional P.Atk + 1 per 20 base CRT.
If the enchanted equipment is grade C, additional P.Atk + 1 per 20 base CRT.
If the enchanted equipment is grade B, additional P.Atk + 1 per 20 base CRT.
If the enchanted equipment is grade A, additional P.Atk + 2 per 20 base CRT.
Базовые свойства предмета
- ID: 17843
 - Код: BARMUND_CRT3
 - Тип: карта
 - Подтип:
 
- Вес: 1
 
Скрипт
.@param = (readparam(bCrt)/20);
.@g = getenchantgrade();
bonus bCrt,3;
bonus bCritAtkRate,5*.@param;
bonus bPAtk,2*.@param;
bonus bBaseAtk,5*.@param;
if (.@g >= ENCHANTGRADE_D) {
   bonus bPAtk,.@param;
   if (.@g >= ENCHANTGRADE_C) {
      bonus bPAtk,.@param;
      if (.@g >= ENCHANTGRADE_B) {
         bonus bPAtk,.@param;
         if (.@g >= ENCHANTGRADE_A) {
            bonus bPAtk,2*.@param;
         }
      }
   }
}