Glacier Flower Meow Power (Intelligence), (Renewal)

Glacier Flower Meow Power (Intelligence) (ICE_C_ORB_INTEL) – карта.

Glacier Flower Meow Power (Intelligence), (Renewal)

P.Atk / S.Matk + 1.
If refine rate is 7 or higher, increases physical and magical damage against all property enemies by 3%.
If refine rate is 9 or higher, increases physical and magical damage against all size enemies by 3%.
If refine rate is 11 or higher, increases physical and magical damage against all race monsters (except players) by 3%.
If grade of enchanted equipment is D or higher, increases physical and magical damage against normal enemies and boss monsters by 2%.
If grade of enchanted equipment is C or higher, increases physical and magical damage against normal enemies and boss monsters by additional 1%.

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

  • ID: 18617
  • Код: ICE_C_ORB_INTEL
  • Тип: карта
  • Подтип:
  •  
  • Вес: 1

Скрипт

.@g = getenchantgrade();
.@r = getrefine();
bonus bSMatk,1;
if (.@r>=7) {
   bonus2 bMagicAddEle,Ele_All,3;
   bonus2 bAddEle,Ele_All,3;
   if (.@r>=9) {
      bonus2 bAddSize,Size_All,3;
      bonus2 bMagicAddSize,Size_All,3;
      if (.@r>=11) {
         bonus2 bMagicAddRace,RC_All,3;
         bonus2 bMagicAddRace,RC_Player_Human,-3;
         bonus2 bMagicAddRace,RC_Player_Doram,-3;
         bonus2 bAddRace,RC_All,3;
         bonus2 bAddRace,RC_Player_Human,-3;
         bonus2 bAddRace,RC_Player_Doram,-3;
      }
   }
}
if (.@g>=ENCHANTGRADE_D) {
   bonus2 bAddClass,Class_Normal,2;
   bonus2 bMagicAddClass,Class_Normal,2;
   bonus2 bAddClass,Class_Boss,2;
   bonus2 bMagicAddClass,Class_Boss,2;
   if (.@g>=ENCHANTGRADE_C) {
      bonus2 bAddClass,Class_Normal,1;
      bonus2 bMagicAddClass,Class_Normal,1;
      bonus2 bAddClass,Class_Boss,1;
      bonus2 bMagicAddClass,Class_Boss,1;
   }
}