Dimensions Shadow Chakram

Item ID 610065 Name Dimensions Shadow Chakram
A katar imbued with rune magic.
_______________________
Critical +5
Increases damage of Eternal Slash by 15%.
_______________________
For each 2 Refine Levels:
ATK +25
ATK +1%
_______________________
For each 3 Refine Levels:
Increases damage of Eternal Slash by additional 5%.
_______________________
Refine Level +7:
Increases Critical Damage by 20%.
_______________________
Refine Level +9:
Critical +15
C.RATE +5
_______________________
Refine Level +11:
Increases damage of Eternal Slash by additional 15%.
_______________________
When equipped with Time Dimensions Rune Crown (Shadow Cross):
Increases damage of Impact Crater by 45%.
Increases Melee Physical Damage by 15%.

If the Weapon and Headgear's Grade are A or higher:
Increases damage of Eternal Slash by additional (the sum of refine level)%.
Increases Phantom Menace skill cooldown by 5 seconds.
Increases Rolling Cutter skill cooldown by 2 seconds.

Casting Phantom Menace has a chance to auto cast the higher Level learned Rolling Cutter.

Casting Rolling Cutter has a chance to auto cast Level 1 Impact Crater.
(If you learned a higher Level, it will auto cast that Level instead.)
_______________________
[Bonus by Grade]
[Grade D]: P.ATK +5
[Grade C]: Damage of Eternal Slash +15%
[Grade B]: Melee Physical Damage +10%.
[Grade A]: P.ATK +3 per 2 Refine Levels.
_______________________
Type: Katar
Attack: 320
Weight: 220
Weapon Level: 5
_______________________
Requirement:
Base Level 250
Shadow Cross
Weapon Level 5 Identifier Dimen_SHC_Cakram
Attack 320 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 220 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 bCritical,5;
bonus2 bSkillAtk,"SHC_ETERNAL_SLASH",15+5*(.@r/3);
bonus bAtkRate,(.@r/2);
bonus bBaseAtk,25*(.@r/2);
if (.@r>=7) {
   bonus bCritAtkRate,20;
   if (.@r>=9) {
      bonus bCRate,5;
      bonus bCritical,15;
      if (.@r>=11) {
         bonus2 bSkillAtk,"SHC_ETERNAL_SLASH",15;
      }
   }
}
if (.@g>=ENCHANTGRADE_D) {
   bonus bPAtk,5;
   if (.@g>=ENCHANTGRADE_C) {
      bonus2 bSkillAtk,"SHC_ETERNAL_SLASH",15;
      if (.@g>=ENCHANTGRADE_B) {
         bonus bShortAtkRate,10;
         if (.@g>=ENCHANTGRADE_A) {
            bonus bPAtk,3*(.@r/2);
         }
      }
   }
}

Set Script
Dimensions Shadow Chakram
Time Dimensions Rune Crown (Shadow Cross)
bonus bShortAtkRate,15;
bonus2 bSkillAtk,"SHC_IMPACT_CRATER",45;
if (getenchantgrade(EQI_HAND_R)>=ENCHANTGRADE_A && getenchantgrade(EQI_HEAD_TOP)>=ENCHANTGRADE_A) {
   .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_HEAD_TOP);
   bonus2 bSkillCooldown,"GC_PHANTOMMENACE",5000;
   bonus2 bSkillCooldown,"GC_ROLLINGCUTTER",2000;
   bonus2 bSkillAtk,"SHC_ETERNAL_SLASH",.@sum;
   if (getskilllv("GC_ROLLINGCUTTER") > 0) {
      bonus4 bAutoSpellOnSkill,"GC_PHANTOMMENACE","GC_ROLLINGCUTTER",getskilllv("GC_ROLLINGCUTTER"),1000;
      if (getskilllv("SHC_IMPACT_CRATER") > 0) {
         bonus4 bAutoSpellOnSkill,"GC_ROLLINGCUTTER","SHC_IMPACT_CRATER",getskilllv("SHC_IMPACT_CRATER"),1000;
      }
   }
}