Glacier Flower Meow Power (Intelligence)

Item ID 312095 Name Glacier Flower Meow Power (Intelligence)
P.ATK/S.MATK +1
_______________________
Refine Level +7:
Increases Physical and Magical Damage against enemies of every element by 3%.
_______________________
Refine Level +9:
Increases Physical and Magical Damage against enemies of every size by 3%.
_______________________
Refine Level +11:
Increases Physical and Magical Damage against enemies of every race, except Players, by 3%.
_______________________
[Bonus by Equipment's Grade]
[Grade D]: Physical and Magical Damage against enemies of Normal and Boss class +2%
[Grade C]: Physical and Magical Damage against enemies of Normal and Boss class +1%
Weapon Level 0 Identifier Ice_C_Orb_Intel
Attack 0 Type Card - Enchant
MATK 0 Equip Locations None
Defense 0 Equippable Jobs None
Range 0 Equip Gender Both (Male and Female)
Slots 0 Equip Upper None
Weight 0 Min Equip Level None
NPC Buy 0 Max Equip Level None
NPC Sell 0 Refineable No
Credit Price None Trade restriction None
Item Script
.@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;
   }
}