Stamina of Varmundt Lv1, (Renewal)
Stamina of Varmundt Lv1 (BARMUND_STA1) – карта.

STA + 1.
MaxHP + 250 and RES + 1 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 1 per 20 base STA.
Базовые свойства предмета
- ID: 17847
 - Код: BARMUND_STA1
 - Тип: карта
 - Подтип:
 
- Вес: 1
 
Скрипт
.@param = (readparam(bSta)/20);
.@g = getenchantgrade();
bonus bSta,1;
bonus bMaxHP,250*.@param;
bonus bRes,.@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,.@param;
         }
      }
   }
}