Furious Stick

Item ID 550148 Name Furious Stick
A stick imbued with the power of rage.
_______________________
Indestructible in battle
_______________________
MATK +195
_______________________
Increases damage of Hell's Drive by 10%.
_______________________
Base Level at least 210:
MATK +4%, MATK +40.
_______________________
Base Level at least 220:
Increases damage of Jupitel Thunderstorm by 10%.
_______________________
Base Level at least 230:
Increases Magical Damage against enemies of every size by 10%.
_______________________
Refine Level +7:
Increases Magical Damage with Earth and Wind element by 10%.
_______________________
Refine Level +9:
Increases damage of Hell's Drive by additional 10%.
_______________________
Refine Level +10:
Decreases After Skill Delay by 10%.
_______________________
Refine Level +11:
Increases damage of Hell's Drive and Jupitel Thunderstorm by additional 15%.
_______________________
When equipped with Furious Boots:
Increases damage of Hell's Drive by 20%.

If the Furious Boots's Grade is B or higher:
When using Hell's Drive, auto-cast Level 4 Terra Drive.
_______________________
[Bonus by Grade]
[Grade D]: Magical Damage with Earth and Wind element +10%.
[Grade C]: Damage of Hell's Drive +10%.
[Grade B]: Damage of Jupitel Thunderstorm +10%.
[Grade A]: MATK +3%, S.MATK +3 per 2 Refine Levels.
_______________________
Type: One-Handed Staff
Attack: 100
Weight: 110
Weapon Level: 5
_______________________
Requirement:
Base Level 205
Hyper Novice
Weapon Level 5 Identifier Stick_Furious
Attack 100 Type Weapon - Staff
MATK 195 Equip Locations Main Hand
Defense 0 Equippable Jobs Super novice
Range 1 Equip Gender Both (Male and Female)
Slots 2 Equip Upper None
Weight 110 Min Equip Level 205
NPC Buy 0 Max Equip Level None
NPC Sell 0 Refineable Yes
Credit Price None Trade restriction None
Item Script
.@g = getenchantgrade();
.@r = getrefine();
bonus bUnbreakableWeapon;
bonus2 bSkillAtk,"HN_HELLS_DRIVE",10;
if (BaseLevel>=210) {
   bonus bMatkRate,4;
   bonus bMatk,40;
}
if (BaseLevel>=220) {
   bonus2 bSkillAtk,"HN_JUPITEL_THUNDER_STORM",10;
}
if (BaseLevel>=230) {
   bonus2 bMagicAddSize,Size_All,10;
}
if (.@r>=7) {
   bonus2 bMagicAtkEle,Ele_Wind,10;
   bonus2 bMagicAtkEle,Ele_Earth,10;
   if (.@r>=9) {
      bonus2 bSkillAtk,"HN_HELLS_DRIVE",10;
      if (.@r>=10) {
         bonus bDelayrate,-10;
         if (.@r>=11) {
            bonus2 bSkillAtk,"HN_JUPITEL_THUNDER_STORM",15;
            bonus2 bSkillAtk,"HN_HELLS_DRIVE",15;
         }
      }
   }
}
if (.@g>=ENCHANTGRADE_D) {
   bonus2 bMagicAtkEle,Ele_Wind,10;
   bonus2 bMagicAtkEle,Ele_Earth,10;
   if (.@g>=ENCHANTGRADE_C) {
      bonus2 bSkillAtk,"HN_HELLS_DRIVE",10;
      if (.@g>=ENCHANTGRADE_B) {
         bonus2 bSkillAtk,"HN_JUPITEL_THUNDER_STORM",10;
         if (.@g>=ENCHANTGRADE_A) {
            bonus bSMatk,3*(.@r/2);
            bonus bMatkRate,3*(.@r/2);
         }
      }
   }
}

Set Script
Furious Crown (Hyper Novice)
Furious Stick
bonus2 bSkillCooldown,"HN_JUPITEL_THUNDER_STORM",-250;
Furious Stick
Furious Boots
bonus2 bSkillAtk,"HN_HELLS_DRIVE",20;
if (getenchantgrade()>=ENCHANTGRADE_B) {
   bonus4 bAutoSpellOnSkill,"HN_HELLS_DRIVE","EM_TERRA_DRIVE",4,1000;
}