Dimension World Crystal (Fighting Spirit)

Item ID 313908 Name Dimension World Crystal (Fighting Spirit)
Increases Physical Damage against monsters of Boss class by 5%.
Increases Physical Damage against enemies of every size by 15%.
Increases Physical Damage against monsters in Devoured Geffenia by 25%.
_______________________
[Bonus by Equipment's Grade]
[Grade D]: P.ATK +7, POW +5.
[Grade C]: Physical Damage +12%.
[Grade B]: POW +5, ATK +9 per 3 Refine Levels.
[Grade A]: POW +6 per 2 Refine Levels.
Weapon Level 0 Identifier Ch01_S_E_Fighting06
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();
bonus2 bAddClass,Class_Boss,5;
bonus2 bAddSize,Size_All,15;
if (.@g>=ENCHANTGRADE_D) {
   bonus bPAtk,7;
   bonus bPow,5;
   if (.@g>=ENCHANTGRADE_C) {
      bonus bLongAtkRate,12;
      bonus bShortAtkRate,12;
      if (.@g>=ENCHANTGRADE_B) {
         bonus bPow,5;
         bonus bBaseAtk,9*(.@r/3);
         if (.@g>=ENCHANTGRADE_A) {
            bonus bPow,6*(.@r/2);
         }
      }
   }
}