Time Dimensions Rune Crown (Hyper Novice)

Item ID 400545 Name Time Dimensions Rune Crown (Hyper Novice)
A crown imbued with rune magic from the twists of time and dimension.
_______________________
For each 2 Refine Levels:
MaxHP +120
MaxSP +30
_______________________
For each 3 Refine Levels:
ATK +2%
MATK +2%
_______________________
For each 4 Refine Levels:
Increases damage of Mega Sonic Blow, Meteor Storm Buster and Hell's Drive by 5%.
_______________________
Refine Level +7:
Increases Melee Physical Damage by 10%.
Increases Magical Damage with every element by 10%.
_______________________
Refine Level +9:
P.ATK +5
S.MATK +5
_______________________
Refine Level +10:
Increases Physical and Magical Damage against enemies of every race, except Players, by 15%.
_______________________
Refine Level +11:
Critical +10
Decreases Fixed Casting Time by 0.5 seconds.
_______________________
[Bonus by Grade]
[Grade D]: P.ATK +3, S.MATK +3
[Grade C]: MaxHP, MaxSP +3%
[Grade B]: Melee Physical Damage +10%, Magical Damage with every element +10%.
[Grade A]: Damage against enemies of all size enemies +15%.
_______________________
Type: Headgear
Defense: 50
Weight: 0
Armor Level: 2
_______________________
Requirement:
Base Level 250
Hyper Novice
Weapon Level 0 Identifier Time_DM_R_Crown_HN
Attack 0 Type Armor
MATK 0 Equip Locations Upper Headgear
Defense 50 Equippable Jobs Super novice
Range 0 Equip Gender Both (Male and Female)
Slots 1 Equip Upper None
Weight 0 Min Equip Level 250
NPC Buy 0 Max Equip Level None
NPC Sell 0 Refineable Yes
Credit Price None Trade restriction Can't be dropped, Can't be traded with player, Can't be sold to NPC, Can't be put in Cart, Can't be put in Guild Storage, Can't be attached in Mail, Can't be auctioned
Item Script
.@g = getenchantgrade();
.@r = getrefine();
bonus bMaxHP,120*(.@r/2);
bonus bMaxSP,30*(.@r/2);
bonus bMatkRate,2*(.@r/3);
bonus bAtkRate,2*(.@r/3);
bonus2 bSkillAtk,"HN_METEOR_STORM_BUSTER",5*(.@r/4);
bonus2 bSkillAtk,"HN_MEGA_SONIC_BLOW",5*(.@r/4);
bonus2 bSkillAtk,"HN_HELLS_DRIVE",5*(.@r/4);
if (.@r>=7) {
   bonus2 bMagicAtkEle,Ele_All,10;
   bonus bShortAtkRate,10;
   if (.@r>=9) {
      bonus bPAtk,5;
      bonus bSMatk,5;
      if (.@r>=10) {
         bonus2 bMagicAddRace,RC_All,15;
         bonus2 bMagicAddRace,RC_Player_Human,-15;
         bonus2 bMagicAddRace,RC_Player_Doram,-15;
         bonus2 bAddRace,RC_All,15;
         bonus2 bAddRace,RC_Player_Human,-15;
         bonus2 bAddRace,RC_Player_Doram,-15;
         if (.@r>=11) {
            bonus bFixedCast,-500;
            bonus bCritical,10;
         }
      }
   }
}
if (.@g>=ENCHANTGRADE_D) {
   bonus bPAtk,3;
   bonus bSMatk,3;
   if (.@g>=ENCHANTGRADE_C) {
      bonus bMaxHPrate,3;
      bonus bMaxSPrate,3;
      if (.@g>=ENCHANTGRADE_B) {
         bonus2 bMagicAtkEle,Ele_All,10;
         bonus bShortAtkRate,10;
         if (.@g>=ENCHANTGRADE_A) {
            bonus2 bAddSize,Size_All,15;
            bonus2 bMagicAddSize,Size_All,15;
         }
      }
   }
}

Set Script
Dimensions Hyper Sword
Time Dimensions Rune Crown (Hyper Novice)
bonus bShortAtkRate,15;
bonus2 bSkillAtk,"HN_DOUBLEBOWLINGBASH",45;
if (getenchantgrade(EQI_HAND_R)>=ENCHANTGRADE_A && getenchantgrade(EQI_HEAD_TOP)>=ENCHANTGRADE_A) {
   .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_HEAD_TOP);
   skill "GC_CROSSIMPACT",5;
   bonus2 bSkillAtk,"HN_DOUBLEBOWLINGBASH",.@sum;
}
Dimensions Hyper Rod
Time Dimensions Rune Crown (Hyper Novice)
bonus2 bMagicAtkEle,Ele_Earth,10;
bonus2 bMagicAtkEle,Ele_Fire,10;
bonus2 bMagicAtkEle,Ele_Ghost,30;
bonus2 bSkillAtk,"HN_NAPALM_VULCAN_STRIKE",45;
if (getenchantgrade(EQI_HAND_R)>=ENCHANTGRADE_A && getenchantgrade(EQI_HEAD_TOP)>=ENCHANTGRADE_A) {
   .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_HEAD_TOP);
   bonus2 bSkillAtk,"HN_NAPALM_VULCAN_STRIKE",.@sum;
   bonus4 bAutoSpellOnSkill,"HN_NAPALM_VULCAN_STRIKE","AG_SOUL_VC_STRIKE",5,500;
}
Time Gap Hyper Staff
Time Dimensions Rune Crown (Hyper Novice)
bonus2 bMagicAddEle,Ele_All,10;
bonus2 bSkillAtk,"HN_NAPALM_VULCAN_STRIKE",45;
if (getenchantgrade(EQI_HAND_R)>=ENCHANTGRADE_A && getenchantgrade(EQI_HEAD_TOP)>=ENCHANTGRADE_A) {
   .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_HEAD_TOP);
   bonus2 bSkillAtk,"HN_NAPALM_VULCAN_STRIKE",.@sum;
   bonus2 bSkillAtk,"HN_JACK_FROST_NOVA",.@sum;
   bonus2 bSkillCooldown,"HN_JUPITEL_THUNDER_STORM",-300;
}