Temporal Circlet (Guillotine Cross)
| Item ID | 19478 | Name | Temporal Circlet (Guillotine Cross) |
|
A special energy was given to the circlet, which was
made of ores and gemstones from the gaps of time by Hugin. _______________________ For each 2 Refine Levels: ATK +15 _______________________ For each 3 Refine Levels: Increases Attack Speed (decreases After Attack Delay by 2%). Increases damage of Rolling Cutter and Counter Slash by 20%. _______________________ For each 4 Refine Levels: ATK +2% _______________________ Refine Level +11: Decreases After Skill Delay by 5%. _______________________ Type: Headgear Defense: 10 Position: Upper Weight: 0 Armor Level: 1 _______________________ Requirement: Base Level 170 Guillotine Cross |
|---|---|---|---|---|---|
| Weapon Level | 0 | Identifier | S_Circlet_Of_Time_GC | ||
| Attack | 0 | Type | Armor | ||
| MATK | 0 | Equip Locations | Upper Headgear | ||
| Defense | 10 | Equippable Jobs | Assassin | ||
| Range | 0 | Equip Gender | Both (Male and Female) | ||
| Slots | 1 | Equip Upper | Third, Third Upper, Third Baby | ||
| Weight | 0 | Min Equip Level | 170 | ||
| NPC Buy | 0 | Max Equip Level | None | ||
| NPC Sell | 0 | Refineable | Yes | ||
| Credit Price | None | Trade restriction | Can't be dropped, Can't be traded with player, Can't be put in Cart, Can't be put in Guild Storage, Can't be attached in Mail, Can't be auctioned | ||
| Item Script |
.@r = getrefine();
bonus bBaseAtk,15*(.@r/2);
bonus bAspdRate,2*(.@r/3);
bonus2 bSkillAtk,"GC_COUNTERSLASH",20*(.@r/3);
bonus2 bSkillAtk,"GC_ROLLINGCUTTER",20*(.@r/3);
bonus bAtkRate,2*(.@r/4);
if (.@r>=11) {
bonus bDelayrate,-5;
}
|
||||
| Set | Script | ||||
|---|---|---|---|---|---|
|
.@r = getequiprefinerycnt(EQI_HEAD_TOP); bonus2 bSkillAtk,"SHC_IMPACT_CRATER",4*(.@r/2); bonus2 bSkillAtk,"SHC_DANCING_KNIFE",4*(.@r/2); bonus2 bSkillAtk,"GC_ROLLINGCUTTER",10*(.@r/3); bonus2 bSkillAtk,"GC_COUNTERSLASH",10*(.@r/3); |
||||
|
skill "AL_BLESSING",10; bonus bDelayrate,-20; bonus2 bSkillAtk,"SHC_DANCING_KNIFE",BaseLevel/10; bonus2 bSkillAtk,"SHC_SHADOW_STAB",BaseLevel/10; bonus2 bSkillAtk,"SHC_ETERNAL_SLASH",BaseLevel/10; |
||||
|
if ((getequiprefinerycnt(EQI_HEAD_TOP) + getequiprefinerycnt(EQI_GARMENT)) >= 21) {
bonus2 bSkillAtk,"GC_ROLLINGCUTTER",50;
bonus2 bSkillAtk,"GC_COUNTERSLASH",50;
}
|