Time Gap Kurojin (A)
| Item ID | 28789 | Name | Time Gap Kurojin (A) |
|
A dagger imbued with the abyssal magic flowing from the gap of time.
It must be equipped with Time Gap Kurojin (B) to fully utilize it's power. _______________________ Increases damage of Kunai - Rotation by 15%. _______________________ When equipped with Time Gap Kurojin (B) on the left hand: For each 2 Refine Levels: ATK +25 ATK +1% For each 3 Refine Levels: Increases damage of Kunai - Rotation by additional 5%. Total Refine Level of entire set is at least +14: Increases Ranged Physical Damage by 25%. Total Refine Level of entire set is at least +17: Decreases Variable Casting Time by 10%. P.ATK +7. Total Refine Level of entire set is at least +21: Increases damage of Kunai - Rotation by additional 15%. When equipped with Time Dimensions Rune Crown (Shinkiro & Shiranui): Increases damage of Kunai - Refraction by 25%. Increases Ranged Physical Damage by additional 15%. If the Weapons and Headgear's Grade are A or higher: Decreases Kunai - Rotation and Kunai - Refraction skill cooldown by 0.7 seconds. _______________________ [Bonus by Grade] [Grade D]: P.ATK +5 [Grade C]: Damage of Kunai - Rotation +15%. [Grade B]: Ranged Physical Damage +10%. [Grade A]: P.ATK +3 per 2 Refine Levels. _______________________ Type: Dagger Attack: 210 Weight: 150 Weapon Level: 5 _______________________ Requirement: Base Level 250 Shinkiro, Shiranui |
|---|---|---|---|---|---|
| Weapon Level | 5 | Identifier | Time_Gap_SS_Dagger1 | ||
| Attack | 210 | 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 | 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();
bonus2 bSkillAtk,"SS_KUNAIKAITEN",15;
if (.@g>=ENCHANTGRADE_D) {
bonus bPAtk,5;
if (.@g>=ENCHANTGRADE_C) {
bonus2 bSkillAtk,"SS_KUNAIKAITEN",15;
if (.@g>=ENCHANTGRADE_B) {
bonus bLongAtkRate,10;
if (.@g>=ENCHANTGRADE_A) {
bonus bPAtk,3*(getrefine()/2);
}
}
}
}
|
||||
| Set | Script | ||||||
|---|---|---|---|---|---|---|---|
|
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;
}
}
|
||||||
|
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;
}
}
}
}
|