Time Gap Shadow Dagger (A)
| Item ID | 510165 | Name | Time Gap Shadow Dagger (A) |
|
A dagger imbued with the abyssal magic flowing from the gap of time.
It must be equipped with Time Gap Shadow Dagger (B) to fully utilize it's power. _______________________ Critical +5 Increases damage of Cross Slash by 15%. _______________________ When equipped with Time Gap Shadow Dagger (B) on the left hand: For each 3 Refine Levels of entire set: ATK +25 ATK +1% For each 4 Refine Levels of entire set: Increases damage of Cross Slash by additional 5%. Total Refine Level of entire set is at least +14: Increases Critical Damage by 20%. Total Refine Level of entire set is at least +17: Critical +15%, C.RATE +5. Total Refine Level of entire set is at least +21: Increases damage of Cross Slash by additional 15%. When equipped with Time Dimensions Rune Crown (Shadow Cross): Increases damage of Eternal Slash by 25%. Increases Melee Physical Damage by 15%. If the Weapons and Headgear's Grade are A or higher: Increases damage of Eternal Slash by additional (the sum of refine level)%. Critical +15 _______________________ [Bonus by Grade] [Grade D]: P.ATK +5 [Grade C]: Damage of Cross Slash +15%. [Grade B]: Melee 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 Shadow Cross |
|---|---|---|---|---|---|
| Weapon Level | 5 | Identifier | Time_Gap_SHC_Dagger1 | ||
| Attack | 210 | Type | Weapon - Dagger | ||
| MATK | 0 | Equip Locations | Main Hand | ||
| Defense | 0 | Equippable Jobs | Assassin | ||
| 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();
bonus bCritical,5;
bonus2 bSkillAtk,"SHC_CROSS_SLASH",15;
if (.@g>=ENCHANTGRADE_D) {
bonus bPAtk,5;
if (.@g>=ENCHANTGRADE_C) {
bonus2 bSkillAtk,"SHC_CROSS_SLASH",15;
if (.@g>=ENCHANTGRADE_B) {
bonus bShortAtkRate,10;
if (.@g>=ENCHANTGRADE_A) {
bonus bPAtk,3*(getrefine()/2);
}
}
}
}
|
||||
| Set | Script | ||||||
|---|---|---|---|---|---|---|---|
|
if (getequipid(EQI_HAND_L) == 510166) {
bonus bShortAtkRate,15;
bonus2 bSkillAtk,"SHC_ETERNAL_SLASH",25;
if (getenchantgrade(EQI_HAND_R)>=ENCHANTGRADE_A && getenchantgrade(EQI_HAND_L)>=ENCHANTGRADE_A && getenchantgrade(EQI_HEAD_TOP)>=ENCHANTGRADE_A) {
.@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_HAND_L)+getequiprefinerycnt(EQI_HEAD_TOP);
bonus2 bSkillAtk,"SHC_ETERNAL_SLASH",.@sum;
bonus bCritical,15;
}
}
|
||||||
|
if (getequipid(EQI_HAND_L) == 510166) {
.@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_HAND_L);
bonus bAtkRate,.@sum;
bonus bBaseAtk,25*.@sum;
bonus2 bSkillAtk,"SHC_CROSS_SLASH",5*(.@sum/4);
if (.@sum>=14) {
bonus bCritAtkRate,20;
if (.@sum>=17) {
bonus bCRate,5;
bonus bCritical,15;
if (.@sum>=21) {
bonus2 bSkillAtk,"SHC_CROSS_SLASH",15;
}
}
}
}
|