Furious Crown (Cardinal) [1], броня (Renewal)

Furious Crown (Cardinal) [1] (FURIOUSCIRCLET_CD) – броня.

 

Every 2 refine rate, Atk + 10, Matk + 10.
Every 3 refine rate, increases Petitio and Framen damage by 4%.
If refine rate is 7 or higher, reduces variable casting time by 15%.
If refine rate is 9 or higher, increases melee physical damage and all property magical damage by 10%.
If refine rate is 11 or higher, Atk + 5%, Matk + 5%, reduces fixed casting time by 0.3 seconds.

When equipped with Furious Saint Book, increases Petitio damage by 15%.

When equipped with Furious Saint Wand, increases Framen damage by 15%.

[Bonus by grade]
[Grade D] POW + 5, SPL + 5, CON + 5, P.Atk + 3, S.Matk + 3.
[Grade C] Increases melee physical damage and all property magical damage by 10%.
[Grade B] Atk + 5%, Matk + 5%, reduces fixed casting time by additional 0.2 seconds.
[Grade A] P.Atk + 5, S.Matk + 5, increases critical damage by 15%, increases all property magical damage by 15%.

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

  • ID: 29608
  • Код: FURIOUSCIRCLET_CD
  • Тип: броня
  • Уровень брони: 2
  • Защита: 30
  •  
  • Требуемый уровень: 235
  • Профессии: priest
  • Вес: 30

Скрипт

.@g = getenchantgrade();
.@r = getrefine();
bonus bMatk,10*(.@r/2);
bonus bBaseAtk,10*(.@r/2);
bonus2 bSkillAtk,"CD_PETITIO",4*(.@r/3);
bonus2 bSkillAtk,"CD_FRAMEN",4*(.@r/3);
if (.@r>=7) {
   bonus bVariableCastrate,-15;
   if (.@r>=9) {
      bonus bShortAtkRate,10;
      bonus2 bMagicAtkEle,Ele_All,10;
      if (.@r>=11) {
         bonus bFixedCast,-300;
         bonus bMatkRate,5;
         bonus bAtkRate,5;
      }
   }
}
if (.@g>=ENCHANTGRADE_D) {
   bonus bPAtk,3;
   bonus bSMatk,3;
   bonus bPow,5;
   bonus bSpl,5;
   bonus bCon,5;
   if (.@g>=ENCHANTGRADE_C) {
      bonus bShortAtkRate,10;
      bonus2 bMagicAtkEle,Ele_All,10;
      if (.@g>=ENCHANTGRADE_B) {
         bonus bFixedCast,-200;
         bonus bMatkRate,5;
         bonus bAtkRate,5;
         if (.@g>=ENCHANTGRADE_A) {
            bonus2 bMagicAtkEle,Ele_All,15;
            bonus bCritAtkRate,15;
            bonus bPAtk,5;
            bonus bSMatk,5;
         }
      }
   }
}