Golden Angel Hairband, броня (Renewal)

Golden Angel Hairband (GOLDEN_ANGEL_BAND_TH) – броня.

Golden Angel Hairband, броня (Renewal)

A hairband adorned with what appears to be the wings of a golden angel.
Max HP + 2% if the users base Vit is 70 or higher.
Max SP + 2% if the users base Vit is 70 or higher.
Atk + 5 if the users base Str is 70 or higher.
Matk + 5 if the users base Int is 70 or higher.
Aspd + 2% if the users base Agi is 70 or higher.
Increases long-ranged damage on targets by 2% if the users base Dex is 70 or higher.
Increases critical damage on targets by 2% if the users base Luk is 70 or higher.
If upgrade level is +7 or higher,
Additional Max HP + 3% if the users base Vit is 70 or higher.
Additional Max SP + 3% if the users base Vit is 70 or higher.
Additional Atk + 10 if the users base Str is 70 or higher.
Additional Matk + 10 if the users base Int is 70 or higher.
Additional Aspd + 3% if the users base Agi is 70 or higher.
Increases long-ranged damage on targets by an additional 3% if the users base Dex is 70 or higher.
Increases critical damage on targets by an additional 3% if the users base Luk is 70 or higher.
Set Bonus
Golden Angel Hairband
Golden Angel Wings
All Stats + 1

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

  • ID: 24979
  • Код: GOLDEN_ANGEL_BAND_TH
  • Тип: броня
  • Уровень брони: 1
  • Защита: 10
  •  
  • Требуемый уровень: 1
  • Вес: 1

Скрипт

.@r = getrefine();
if (readparam(bStr) >= 70) {
   bonus bBaseAtk,5;
   if (.@r >= 7)
      bonus bBaseAtk,10;
}
if (readparam(bInt) >= 70) {
   bonus bMatk,5;
   if (.@r >= 7)
      bonus bMatk,10;
}
if (readparam(bVit) >= 70) {
   bonus bMaxHPrate,2;
   bonus bMaxSPrate,2;
   if (.@r >= 7) {
      bonus bMaxHPrate,2;
      bonus bMaxSPrate,2;
   }
}
if (readparam(bAgi) >= 70) {
   bonus bAspdRate,2;
   if (.@r >= 7)
      bonus bAspdRate,3;
}
if (readparam(bDex) >= 70) {
   bonus bLongAtkRate,2;
   if (.@r >= 7)
      bonus bLongAtkRate,3;
}
if (readparam(bLuk) >= 70) {
   bonus bCritAtkRate,2;
   if (.@r >= 7)
      bonus bCritAtkRate,3;
}