Time Gap Kurojin (B)

Item ID 510172 Name Time Gap Kurojin (B)
A dagger made together with Time Gap Kurojin (A).
_______________________
Refine Level +7:
Increases damage of Kunai - Refraction by 10%.
_______________________
Refine Level +9:
Increases damage of Kunai - Rotation by 10%.
_______________________
Refine Level +12:
P.ATK +10
Increases damage of Kunai - Refraction by additional 15%.
_______________________
[Bonus by Grade]
[Grade D]: ATK +2%
[Grade C]: Damage of Kunai - Rotation +5%.
[Grade B]: P.ATK +5.
[Grade A]: ATK +5%, Damage of Kunai - Refraction +10%.
_______________________
Time Gap series enchantment can't be applied to Time Gap Kurojin (B).
_______________________
Type: Dagger
Attack: 160
Weight: 100
Weapon Level: 5
_______________________
Requirement:
Base Level 250
Shinkiro, Shiranui
Weapon Level 5 Identifier Time_Gap_SS_Dagger2
Attack 160 Type Weapon - Dagger
MATK 0 Equip Locations Main Hand
Defense 0 Equippable Jobs Kagerou / Oboro
Range 1 Equip Gender Both (Male and Female)
Slots 2 Equip Upper None
Weight 100 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();
if (.@r>=7) {
   bonus2 bSkillAtk,"SS_KUNAIKUSSETSU",10;
   if (.@r>=9) {
      bonus2 bSkillAtk,"SS_KUNAIKAITEN",10;
      if (.@r>=12) {
         bonus bPAtk,7;
         bonus2 bSkillAtk,"SS_KUNAIKUSSETSU",15;
      }
   }
}
if (.@g>=ENCHANTGRADE_D) {
   bonus bAtkRate,2;
   if (.@g>=ENCHANTGRADE_C) {
      bonus2 bSkillAtk,"SS_KUNAIKAITEN",10;
      if (.@g>=ENCHANTGRADE_B) {
         bonus bPAtk,5;
         if (.@g>=ENCHANTGRADE_A) {
            bonus bAtkRate,5;
            bonus2 bSkillAtk,"SS_KUNAIKUSSETSU",10;
         }
      }
   }
}

Set Script
Time Gap Kurojin (A)
Time Dimensions Rune Crown (Shinkiro & Shiranui)
Time Gap Kurojin (B)
if (getequipid(EQI_HAND_L) == 510172) {
   bonus2 bSkillAtk,"SS_KUNAIKUSSETSU",25;
   bonus bLongAtkRate,15;
   if (getenchantgrade(EQI_HAND_R)>=ENCHANTGRADE_A && getenchantgrade(EQI_HAND_L)>=ENCHANTGRADE_A && getenchantgrade(EQI_HEAD_TOP)>=ENCHANTGRADE_A) {
      bonus2 bSkillCooldown,"SS_KUNAIKAITEN",-700;
      bonus2 bSkillCooldown,"SS_KUNAIKUSSETSU",-700;
   }
}
Time Gap Kurojin (A)
Time Gap Kurojin (B)
if (getequipid(EQI_HAND_L) == 510172) {
   .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_HAND_L);
   bonus bAtkRate,.@sum/3;
   bonus bBaseAtk,25*(.@sum/3);
   bonus2 bSkillAtk,"SS_KUNAIKAITEN",5*(.@sum/4);
   if (.@sum>=14) {
      bonus bLongAtkRate,25;
      if (.@sum>=17) {
         bonus bVariableCastrate,-10;
         bonus bPAtk,7;
         if (.@sum>=21) {
            bonus2 bSkillAtk,"SS_KUNAIKAITEN",15;
         }
      }
   }
}