Star Cluster of Wisdom Lv3

Item ID 310691 Name Star Cluster of Wisdom Lv3
A stellar essence that strengthens the wearer.
_______________________
For each 15 base WIS:
MaxSP +2%
Increases Healing skills effectiveness by 5%.
_______________________
If enchanted Armor's Grade is D:
For each 15 base WIS:
MaxSP +1%
Increases Healing skills effectiveness by additional 2%.
_______________________
If enchanted Armor's Grade is C:
For each 15 base WIS:
MaxSP +1%
Increases Healing skills effectiveness by 2%.
Increases Natural SP Recovery Rate by 2%.
_______________________
If enchanted Armor's Grade is B:
For each 15 base WIS:
MaxSP +2%
H.PLUS +2
Increases Natural SP Recovery Rate by additional 3%.
_______________________
If enchanted Armor's Grade is A:
For each 15 base WIS:
MaxSP +2%
H.PLUS +3
Weapon Level 0 Identifier Star_Cluster_Of_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)/15);
.@g = getenchantgrade();
bonus bMaxSPrate,2*.@param;
bonus bHealPower,5*.@param;
if (.@g >= ENCHANTGRADE_D) {
   bonus bMaxSPrate,.@param;
   bonus bHealPower,2*.@param;
   if (.@g >= ENCHANTGRADE_C) {
      bonus bSPrecovRate,2*.@param;
      bonus bMaxSPrate,.@param;
      bonus bHealPower,2*.@param;
      if (.@g >= ENCHANTGRADE_B) {
         bonus bSPrecovRate,3*.@param;
         bonus bHPlus,2*.@param;
         bonus bMaxSPrate,2*.@param;
         if (.@g >= ENCHANTGRADE_A) {
            bonus bHPlus,3*.@param;
            bonus bMaxSPrate,2*.@param;
         }
      }
   }
}

Set Script
Signed of Wisdom 3Lv
Star Cluster of Wisdom Lv3
bonus bMaxSPrate,5;
Signed of Wisdom 4Lv
Star Cluster of Wisdom Lv3
bonus bMaxSPrate,7;
Signed of Wisdom 5Lv
Star Cluster of Wisdom Lv3
bonus bMaxSPrate,10;
Star Cluster of Wisdom Lv3
Asteria's Helm-LT
bonus2 bMagicSubSize,Size_All,15;
if (readparam(bWis)>=90) {
   bonus bLongAtkDef,-10;
   bonus bNearAtkDef,10;
}
Star Cluster of Wisdom Lv3
Astrologer's Dawn Boots
.@g = getenchantgrade(EQI_SHOES);
autobonus "{ bonus bMatkRate,35; }",30,10000,BF_MAGIC;
if (.@g>=ENCHANTGRADE_C) {
   bonus bVariableCastrate,-25;
   bonus bSMatk,10;
   if (.@g>=ENCHANTGRADE_A) {
       bonus bVariableCastrate,-45;
       bonus bSMatk,15;
       bonus2 bMagicAddSize,Size_All,30;
   }
}