Rune Manteau of Plain

Item ID 480231 Name Rune Manteau of Plain
A manteau engraved with Varmundt's Glade Rune magic.
The imprint is amplified with the essence of the glade.
_______________________
Refine Level +7:
MaxHP +3%
_______________________
Refine Level +9:
Decreases Variable Casting Time by 10%.
_______________________
Refine Level +11:
Increases Physical Damage against enemies of every race by 10%.
_______________________
When equipped with Glade Rune Armor and Glade Rune Boots:
For each 30 base VIT:
STA +1

MaxHP +20%
Decreases damage taken from enemies of Earth element by 10%.
_______________________
[Bonus by Grade]
[Grade D]: MaxHP +5%
[Grade C]: MaxHP +5%, RES +5, MRES +5.
[Grade B]: After Skill Delay -5%, RES +5, MRES +5.
[Grade A]: After Skill Delay -10%, P.ATK +2
_______________________
Type: Garment
Defense: 45
Weight: 100
Armor Level: 2
_______________________
Requirement:
Base Level 230
Weapon Level 0 Identifier Plain_Rune_Hood
Attack 0 Type Armor
MATK 0 Equip Locations Garment
Defense 45 Equippable Jobs None
Range 0 Equip Gender Both (Male and Female)
Slots 1 Equip Upper None
Weight 100 Min Equip Level 230
NPC Buy 0 Max Equip Level None
NPC Sell 0 Refineable Yes
Credit Price None Trade restriction None
Item Script
.@g = getenchantgrade();
.@r = getrefine();
if (.@r>=7) {
   bonus bMaxHPrate,3;
   if (.@r>=9) {
      bonus bVariableCastrate,-10;
      if (.@r>=11) {
         bonus2 bAddRace,RC_All,10;
      }
   }
}
if (.@g>=ENCHANTGRADE_D) {
   bonus bMaxHPrate,5;
   if (.@g>=ENCHANTGRADE_C) {
      bonus bMaxHPrate,5;
      bonus bMRes,5;
      bonus bRes,5;
      if (.@g>=ENCHANTGRADE_B) {
         bonus bDelayrate,-5;
         bonus bMRes,5;
         bonus bRes,5;
         if (.@g>=ENCHANTGRADE_A) {
            bonus bDelayrate,-10;
            bonus bPAtk,2;
         }
      }
   }
}

Set Script
Rune Manteau of Plain
Rune Armor of Plain
Rune Boots of Plain
bonus bSta,(readparam(bVit)/30);
bonus bMaxHPrate,20;
bonus2 bSubEle,Ele_Earth,10;