Baby Red Dragon Hat-LT [1], броня (Renewal)

Baby Red Dragon Hat-LT [1] (RED_BABY_DRAGON_LT) – броня.

Baby Red Dragon Hat-LT [1], броня (Renewal)

MaxHP + 3000, MaxSP + 200.
If base level is 200 or higher, POW + 3, P.Atk + 2.
Every 2 refine rate, increases Dragon Breath and Dragon Breath - Water damage by 10%.
Every 3 refine rate, increases long ranged physical damage by 5%.
If refine is 7 or higher, ASPD + 1.
If refine is 9 or higher, MaxHP + 15%.
If refine is 11 or higher, reduces global cooldown by 10%.
If refine is 13 or higher, when dealing magical damage, has a 2% chance to transform into Red Ferus for 10 seconds, during Red Ferus form, increases long ranged physical damage by 25%.

[Bonus by grade]
[Grade D] P.Atk + 5.
[Grade C] If refine is 11 or higher, reduces global cooldown by 8%.
[Grade B] If refine is 13 or higher, reduces fixed casting time by 0.5 seconds.
[Grade A] Increases Dragon Breath and Dragon Breath - Water damage by 30%.

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

  • ID: 29465
  • Код: RED_BABY_DRAGON_LT
  • Тип: броня
  • Уровень брони: 2
  •  
  • Требуемый уровень: 190
  • Вес: 70

Скрипт

.@g = getenchantgrade();
.@r = getrefine();
bonus bMaxHP,3000;
bonus bMaxSP,200;
bonus2 bSkillAtk,"RK_DRAGONBREATH",10*(.@r/2);
bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",10*(.@r/2);
bonus bLongAtkRate,5*(.@r/3);
if (BaseLevel>=200) {
   bonus bPow,3;
   bonus bPAtk,2;
}
if (.@r>=7) {
   bonus bAspd,1;
   if (.@r>=9) {
       bonus bMaxHPrate,15;
       if (.@r>=11) {
           bonus bDelayrate,-10;
           if (.@r>=13) {
               autobonus "{ bonus bLongAtkRate,25; }",20,10000,BF_WEAPON,"{ active_transform 1714,10000; }";
           }
       }
   }
}
if (.@g >= ENCHANTGRADE_D) {
   bonus bPAtk,5;
   if (.@g >= ENCHANTGRADE_C) {
       if (.@r>=11) {
           bonus bDelayrate,-8;
           if (.@g >= ENCHANTGRADE_B) {
               if (.@r>=13) {
                   bonus bFixedCast,-500;
                   if (.@g >= ENCHANTGRADE_A) {
                       bonus2 bSkillAtk,"RK_DRAGONBREATH",30;
                       bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",30;
                   }
               }
           }
       }
   }
}