Dimensional Wanderer's Key [1], броня (Renewal)

Dimensional Wanderer's Key [1] (DIMMENSION_W_KEY) – броня.

Dimensional Wanderer's Key [1], броня (Renewal)

[Can be refined]
All trait stat + 3, reduces variable casting time by 10%.
If refine rate is 7 or higher, S.Matk + 3.
If refine rate is 9 or higher, WIS + 4 and S.Matk + 2 per 20 base SPL.
If refine rate is 12 or higher, reduces fixed casting time by 0.3 seconds.

[Bonus by grade]
[Grade D] SPL + 2, Matk + 3%.
[Grade C] S.Matk + 2.
[Grade B] S.Matk + 3, Res + 20.
[Grade A] SPL + 2 per 15 base Int.

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

  • ID: 31040
  • Код: DIMMENSION_W_KEY
  • Тип: броня
  • Уровень брони: 2
  •  
  • Требуемый уровень: 240
  • Вес: 20

Скрипт

.@param = (readparam(bSpl)/20);
.@g = getenchantgrade();
.@r = getrefine();
bonus bAllTraitStats,3;
bonus bVariableCastrate,-10;
if (.@r>=7) {
   bonus bSMatk,3;
   if (.@r>=9) {
      bonus bSMatk,2*.@param;
      bonus bWis,4*.@param;
      if (.@r>=12) {
         bonus bFixedCast,-300;
      }
   }
}
if (.@g>=ENCHANTGRADE_D) {
   bonus bMatkRate,3;
   bonus bSpl,2;
   if (.@g>=ENCHANTGRADE_C) {
      bonus bSMatk,2;
      if (.@g>=ENCHANTGRADE_B) {
         bonus bSMatk,3;
         bonus bRes,20;
         if (.@g>=ENCHANTGRADE_A) {
            bonus bSpl,2*(readparam(bInt)/15);
         }
      }
   }
}