Concentration of Varmundt Lv1

Item ID 310926 Name Concentration of Varmundt Lv1
Essence of Varmundt's Concentration.
_______________________
CON +1
_______________________
For each 20 base CON:
ATK +3, P.ATK +1
_______________________
[Enchanted Equipment's Grade]

For each 20 base CON:
[Grade D]: P.ATK +1
[Grade C]: P.ATK +1
[Grade B]: P.ATK +1
[Grade A]: P.ATK +1
Weapon Level 0 Identifier Barmund_Con1
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
.@param = (readparam(bCon)/20);
.@g = getenchantgrade();
bonus bCon,1;
bonus bPAtk,.@param;
bonus bBaseAtk,3*.@param;
if (.@g >= ENCHANTGRADE_D) {
   bonus bPAtk,.@param;
   if (.@g >= ENCHANTGRADE_C) {
      bonus bPAtk,.@param;
      if (.@g >= ENCHANTGRADE_B) {
         bonus bPAtk,.@param;
         if (.@g >= ENCHANTGRADE_A) {
            bonus bPAtk,.@param;
         }
      }
   }
}