Shining Light Katar

Item ID 610045 Name Shining Light Katar
A katar infused with the power of radiant light to fight the devil.
_______________________
ATK +5%, POW +2.
Increases damage of Eternal Slash by 5%.
_______________________
Refine Level +5:
Increases damage of Eternal Slash by additional 10%.
_______________________
Refine Level +7:
Increases Melee Physical Damage by 5%.
_______________________
Refine Level +9:
Increases damage of Eternal Slash by additional 10%.
_______________________
Refine Level +10:
Increases Attack Speed (decreases After Attack Delay by 10%).
_______________________
Refine Level +11:
Increases damage of Eternal Slash by additional 5%.
Increases damage of Savage Impact by 15%.
_______________________
[Bonus by Grade]
[Grade D]: Melee Physical Damage +10%.
[Grade C]: Physical Damage against enemies of every size +10%.
[Grade B]: Physical Damage against enemies of every race +10%.
[Grade A]: Physical Damage against enemies of every element +10%.
_______________________
Type: Katar
Attack: 290
Weight: 100
Weapon Level: 5
_______________________
Requirement:
Base Level 215
Shadow Cross
Weapon Level 5 Identifier Shining_Light_Katar
Attack 290 Type Weapon - Katar
MATK 0 Equip Locations Two-Handed
Defense 0 Equippable Jobs Assassin
Range 1 Equip Gender Both (Male and Female)
Slots 2 Equip Upper None
Weight 100 Min Equip Level 215
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 bAtkRate,5;
bonus bPow,2;
bonus2 bSkillAtk,"SHC_ETERNAL_SLASH",5;
if (.@r>=5) {
   bonus2 bSkillAtk,"SHC_ETERNAL_SLASH",10;
   if (.@r>=7) {
      bonus bShortAtkRate,5;
      if (.@r>=9) {
         bonus2 bSkillAtk,"SHC_ETERNAL_SLASH",10;
         if (.@r>=10) {
            bonus bAspdRate,10;
            if (.@r>=11) {
               bonus2 bSkillAtk,"SHC_SAVAGE_IMPACT",15;
               bonus2 bSkillAtk,"SHC_ETERNAL_SLASH",5;
            }
         }
      }
   }
}
if (.@g>=ENCHANTGRADE_D) {
   bonus bShortAtkRate,10;
   if (.@g>=ENCHANTGRADE_C) {
      bonus2 bAddSize,Size_All,10;
      if (.@g>=ENCHANTGRADE_B) {
         bonus2 bAddRace,RC_All,10;
         if (.@g>=ENCHANTGRADE_A) {
            bonus2 bAddEle,Ele_All,10;
         }
      }
   }
}

Set Script
Crown of Good and Evil (Shadow Cross)
Good Spell
Shining Light Katar
bonus2 bSkillAtk,"SHC_ETERNAL_SLASH",15;
bonus2 bSkillAtk,"SHC_SAVAGE_IMPACT",20;
Crown of Good and Evil (Shadow Cross)
Shining Light Katar
.@r = getequiprefinerycnt(EQI_HAND_R)/3;
bonus2 bSkillAtk,"SHC_ETERNAL_SLASH",4*.@r;
bonus2 bSkillAtk,"SHC_SAVAGE_IMPACT",5*.@r;
if (getenchantgrade(EQI_HAND_R)>=ENCHANTGRADE_B) {
   bonus2 bSkillAtk,"SHC_ETERNAL_SLASH",10;
}