Furious Sharp Sword

Item ID 500102 Name Furious Sharp Sword
A sharp sword imbued with the power of rage.
_______________________
Increases damage of Mayhemic Thorns by 5%.
_______________________
Base Level at least 210:
ATK +4%, ATK +40.
_______________________
Base Level at least 220:
Increases damage of Mayhemic Thorns by additional 5%.
_______________________
Base Level at least 230:
Increases Physical Damage against enemies of every size by 10%.
_______________________
Refine Level +7:
Increases Critical Damage by 10%.
_______________________
Refine Level +9:
Increases damage of Mayhemic Thorns by additional 10%.
_______________________
Refine Level +10:
Critical +10
_______________________
Refine Level +11:
Increases damage of Mayhemic Thorns by additional 10%.
_______________________
When equipped with Furious Boots:
Critical +5
Increases Critical Damage by 15%.

If the Furious Boots's Grade is B or higher:
Increases damage of Mayhemic Thorns by additional 15%.
_______________________
[Bonus by Grade]
[Grade D]: Critical Physical Damage +10%
[Grade C]: Damage of Mayhemic Thorns +5%.
[Grade B]: Damage of Mayhemic Thorns +10%.
[Grade A]: ATK +3%, P.ATK +3 per 2 Refine Levels.
_______________________
Type: One-Handed Sword
Attack: 205
Weight: 140
Weapon Level: 5
_______________________
Requirement:
Base Level 205
Biolo
Weapon Level 5 Identifier SharpSword_Furious
Attack 205 Type Weapon - One-Handed Sword
MATK 0 Equip Locations Main Hand
Defense 0 Equippable Jobs Alchemist
Range 1 Equip Gender Both (Male and Female)
Slots 2 Equip Upper None
Weight 140 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();
bonus2 bSkillAtk,"BO_MAYHEMIC_THORNS",5;
if (BaseLevel>=210) {
   bonus bAtkRate,4;
   bonus bBaseAtk,40;
}
if (BaseLevel>=220) {
   bonus2 bSkillAtk,"BO_MAYHEMIC_THORNS",5;
}
if (BaseLevel>=230) {
   bonus2 bAddSize,Size_All,10;
}
if (.@r>=7) {
   bonus bCritAtkRate,10;
   if (.@r>=9) {
      bonus2 bSkillAtk,"BO_MAYHEMIC_THORNS",10;
      if (.@r>=10) {
         bonus bCritical,10;
         if (.@r>=11) {
            bonus2 bSkillAtk,"BO_MAYHEMIC_THORNS",10;
         }
      }
   }
}
if (.@g>=ENCHANTGRADE_D) {
   bonus bCritAtkRate,10;
   if (.@g>=ENCHANTGRADE_C) {
      bonus2 bSkillAtk,"BO_MAYHEMIC_THORNS",5;
      if (.@g>=ENCHANTGRADE_B) {
         bonus2 bSkillAtk,"BO_MAYHEMIC_THORNS",10;
         if (.@g>=ENCHANTGRADE_A) {
            bonus bPAtk,3*(.@r/2);
            bonus bAtkRate,3*(.@r/2);
         }
      }
   }
}

Set Script
Furious Crown (Biolo)
Furious Sharp Sword
bonus2 bSkillCooldown,"BO_MAYHEMIC_THORNS",-120;
Furious Sharp Sword
Furious Boots
bonus bCritAtkRate,15;
bonus bCritical,5;
if (getenchantgrade()>=ENCHANTGRADE_B) {
   bonus2 bSkillAtk,"BO_MAYHEMIC_THORNS",15;
}