Engineer Cap [1], броня (Renewal)

Engineer Cap [1] (ENGINEER_CAP_K) – броня.

Engineer Cap [1], броня (Renewal)

Atk + 10 and Matk + 10 per 2 refine rate. If refine rate is 7 or higher, reduces damage taken from Formless races by 5%. If refine rate is 9 or higher, increases physical and magical damage against Formless race by 5%. If refine rate is 11 or higher, Atk + 5%, Matk + 5%. Each refine rate above 10, increases physical and magical damage against Formless race by 1% per refine rate (up to 15).

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

  • ID: 25051
  • Код: ENGINEER_CAP_K
  • Тип: броня
  • Уровень брони: 1
  • Защита: 10
  •  
  • Вес: 20

Скрипт

.@r = getrefine();
bonus bMatk,10*(.@r/2);
bonus bBaseAtk,10*(.@r/2);
if (.@r>=7) {
   bonus2 bSubRace,RC_Formless,5;
}
if (.@r>=9) {
   bonus2 bAddRace,RC_Formless,10;
   bonus2 bMagicAddRace,RC_Formless,10;
}
if (.@r>=11) {
   bonus bMatkRate,5;
   bonus bAtkRate,5;
   bonus2 bAddRace,RC_Formless,min(.@r-10,15);
   bonus2 bMagicAddRace,RC_Formless,min(.@r-10,15);
}