Muqaddas Sasyiir

Item ID 500074 Name Muqaddas Sasyiir
A holy sword created by combining holy relics and magical powers.
_______________________
MATK +230
_______________________
MATK +5%
Increases damage of Cross Rain by 10%.
_______________________
Refine Level +7:
Decreases After Skill Delay of Genesis Ray by 1 second.
_______________________
Refine Level +9:
Increases damage of Cross Rain by additional 10%.
_______________________
Refine Level +11:
Increases damage of Cross Rain by additional 10%.
_______________________
[Bonus by Grade]
[Grade D]: Magical Damage against enemies of Small size +15%.
[Grade C]: Magical Damage against enemies of Medium size +15%.
[Grade B]: Magical Damage against enemies of Large size +15%.
[Grade A]: S.MATK +5, After Skill Delay of Genesis Ray -0.5 seconds.
_______________________
Type: One-Handed Sword
Attack: 100
Weight: 150
Weapon Level: 5
_______________________
Requirement:
Base Level 250
Imperial Guard
Weapon Level 5 Identifier Mocadas_G_Sword
Attack 100 Type Weapon - One-Handed Sword
MATK 230 Equip Locations Main Hand
Defense 0 Equippable Jobs Crusader
Range 1 Equip Gender Both (Male and Female)
Slots 2 Equip Upper None
Weight 150 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 bMatkRate,5;
bonus2 bSkillAtk,"IG_CROSS_RAIN",10;
if (.@r>=7) {
   bonus2 bSkillCooldown,"LG_RAYOFGENESIS",-1000;
   if (.@r>=9) {
      bonus2 bSkillAtk,"IG_CROSS_RAIN",10;
      if (.@r>=11) {
         bonus2 bSkillAtk,"IG_CROSS_RAIN",10;
      }
   }
}
if (.@g>=ENCHANTGRADE_D) {
   bonus2 bMagicAddSize,Size_Small,15;
   if (.@g>=ENCHANTGRADE_C) {
      bonus2 bMagicAddSize,Size_Medium,15;
      if (.@g>=ENCHANTGRADE_B) {
         bonus2 bMagicAddSize,Size_Large,15;
         if (.@g>=ENCHANTGRADE_A) {
            bonus2 bSkillCooldown,"LG_RAYOFGENESIS",-500;
            bonus bSMatk,5;
         }
      }
   }
}