Muqaddas Sharman

Item ID 550118 Name Muqaddas Sharman
A foxtail created by combining holy relics and magical powers.
_______________________
Indestructible in battle
_______________________
MATK +340
ATK/MATK +5%
Increases damage of Chulho Sonic Claw and Hyunrok Cannon by 10%.
_______________________
Refine Level +7:
Increases Ranged Physical Damage by 10%.
Increases Magical Damage with every element by 10%.
_______________________
Refine Level +9:
Increases damage of Chulho Sonic Claw and Hyunrok Cannon by additional 10%.
_______________________
Refine Level +11:
Increases damage of Chulho Sonic Claw and Hyunrok Cannon by additional 10%.
_______________________
[Bonus by Grade]
[Grade D]: Damage against enemies of Small size +15%.
[Grade C]: Damage against enemies of Medium size +15%.
[Grade B]: Damage against enemies of Large size +15%.
[Grade A]: P.ATK +5, S.MATK +5.
_______________________
Type: One-Handed Staff
Attack: 290
Weight: 125
Weapon Level: 5
_______________________
Requirement:
Base Level 250
Spirit Handler
Weapon Level 5 Identifier Mocadas_Foxtail
Attack 290 Type Weapon - Staff
MATK 340 Equip Locations Main Hand
Defense 0 Equippable Jobs None
Range 1 Equip Gender Both (Male and Female)
Slots 2 Equip Upper None
Weight 125 Min Equip Level 250
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;
bonus bAtkRate,5;
bonus bMatkRate,5;
bonus2 bSkillAtk,"SH_CHUL_HO_SONIC_CLAW",10;
bonus2 bSkillAtk,"SH_HYUN_ROK_CANNON",10;
if (.@r>=7) {
   bonus2 bMagicAtkEle,Ele_All,10;
   bonus bLongAtkRate,10;
   if (.@r>=9) {
      bonus2 bSkillAtk,"SH_CHUL_HO_SONIC_CLAW",10;
      bonus2 bSkillAtk,"SH_HYUN_ROK_CANNON",10;
      if (.@r>=11) {
         bonus2 bSkillAtk,"SH_CHUL_HO_SONIC_CLAW",10;
         bonus2 bSkillAtk,"SH_HYUN_ROK_CANNON",10;
      }
   }
}
if (.@g>=ENCHANTGRADE_D) {
   bonus2 bAddSize,Size_Small,15;
   bonus2 bMagicAddSize,Size_Small,15;
   if (.@g>=ENCHANTGRADE_C) {
      bonus2 bAddSize,Size_Medium,15;
      bonus2 bMagicAddSize,Size_Medium,15;
      if (.@g>=ENCHANTGRADE_B) {
         bonus2 bAddSize,Size_Large,15;
         bonus2 bMagicAddSize,Size_Large,15;
         if (.@g>=ENCHANTGRADE_A) {
            bonus bPAtk,5;
            bonus bSMatk,5;
         }
      }
   }
}