Spell of Varmundt Lv1

Item ID 310923 Name Spell of Varmundt Lv1
Essence of Varmundt's Wisdom.
_______________________
SPL +1
_______________________
For each 20 base SPL:
MATK +3, S.MATK +1
_______________________
[Enchanted Equipment's Grade]

For each 20 base SPL:
[Grade D]: S.MATK +1
[Grade C]: S.MATK +1
[Grade B]: S.MATK +1
[Grade A]: S.MATK +1
Weapon Level 0 Identifier Barmund_Spl1
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(bSpl)/20);
.@g = getenchantgrade();
bonus bSpl,1;
bonus bSMatk,.@param;
bonus bMatk,3*.@param;
if (.@g >= ENCHANTGRADE_D) {
   bonus bSMatk,.@param;
   if (.@g >= ENCHANTGRADE_C) {
      bonus bSMatk,.@param;
      if (.@g >= ENCHANTGRADE_B) {
         bonus bSMatk,.@param;
         if (.@g >= ENCHANTGRADE_A) {
            bonus bSMatk,.@param;
         }
      }
   }
}