Stamina of Varmundt Lv2, (Renewal)
Stamina of Varmundt Lv2 (BARMUND_STA2) – карта.

STA + 2.
MaxHP + 400 and RES + 2 per 20 base STA of the user.
If the enchanted equipment is grade D, additional MaxHP + 1% and RES 1 per 20 base STA.
If the enchanted equipment is grade C, additional MaxHP + 1% and RES 1 per 20 base STA.
If the enchanted equipment is grade B, additional MaxHP + 1% and RES 1 per 20 base STA.
If the enchanted equipment is grade A, additional MaxHP + 1% and RES 2 per 20 base STA.
Базовые свойства предмета
- ID: 17848
 - Код: BARMUND_STA2
 - Тип: карта
 - Подтип:
 
- Вес: 1
 
Скрипт
.@param = (readparam(bSta)/20);
.@g = getenchantgrade();
bonus bSta,2;
bonus bMaxHP,400*.@param;
bonus bRes,2*.@param;
if (.@g >= ENCHANTGRADE_D) {
   bonus bMaxHPrate,.@param;
   bonus bRes,.@param;
   if (.@g >= ENCHANTGRADE_C) {
      bonus bMaxHPrate,.@param;
      bonus bRes,.@param;
      if (.@g >= ENCHANTGRADE_B) {
         bonus bMaxHPrate,.@param;
         bonus bRes,.@param;
         if (.@g >= ENCHANTGRADE_A) {
            bonus bMaxHPrate,.@param;
            bonus bRes,2*.@param;
         }
      }
   }
}