Wisdom of Varmundt Lv3

Item ID 310935 Name Wisdom of Varmundt Lv3
Essence of Varmundt's Restoration.
_______________________
WIS +3
_______________________
For each 20 base WIS:
MaxSP +3%
Increases Healing skills effectiveness by 3%.
_______________________
[Enchanted Equipment's Grade]

For each 20 base WIS:
[Grade D]: MaxSP +1%, Healing effectiveness +1%
[Grade C]: MaxSP +1%, Healing effectiveness +2%
[Grade B]: MaxSP +1%, H.PLUS +1
[Grade A]: MaxSP +2%, H.PLUS +2
Weapon Level 0 Identifier Barmund_Wis3
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(bWis)/20);
.@g = getenchantgrade();
bonus bWis,3;
bonus bMaxSPrate,3*.@param;
bonus bHealPower,3*.@param;
if (.@g >= ENCHANTGRADE_D) {
   bonus bMaxSPrate,.@param;
   bonus bHealPower,.@param;
   if (.@g >= ENCHANTGRADE_C) {
      bonus bMaxSPrate,.@param;
      bonus bHealPower,2*.@param;
      if (.@g >= ENCHANTGRADE_B) {
         bonus bHPlus,.@param;
         bonus bMaxSPrate,.@param;
         if (.@g >= ENCHANTGRADE_A) {
            bonus bHPlus,2*.@param;
            bonus bMaxSPrate,2*.@param;
         }
      }
   }
}