Fenrir Chain
| Item ID | 32227 | Name | Fenrir Chain |
|
It imitates the chain that holds Fenrir together, which is said to swallow everything.
_______________________ Increases Attack Speed (decreases After Attack Delay by 5%). _______________________ Decreases After Skill Delay by 5%. _______________________ Enables the use of Level 1 Teleport. _______________________ When equipped with Vanargand Helm: Refine Level of Vanargand Helm is +6 or higher: Increases Attack Speed (decreases After Attack Delay by additional 5%). Decreases After Skill Delay by additional 5%. ATK +5% Ignores physical defense of all enemies by 25%. Refine Level of Vanargand Helm is +8 or higher: Increases Attack Speed (decreases After Attack Delay by additional 10%). Decreases After Skill Delay by additional 10%. ATK +5% Ignores physical defense of all enemies by additional 25%. _______________________ Type: Accessory Weight: 30 Armor Level: 1 _______________________ Requirement: Base Level 100 |
|---|---|---|---|---|---|
| Weapon Level | 0 | Identifier | Fenrir_Chain | ||
| Attack | 0 | Type | Armor | ||
| MATK | 0 | Equip Locations | Accessory Left/Right | ||
| Defense | 0 | Equippable Jobs | None | ||
| Range | 0 | Equip Gender | Both (Male and Female) | ||
| Slots | 1 | Equip Upper | None | ||
| Weight | 30 | Min Equip Level | 100 | ||
| NPC Buy | 20 | Max Equip Level | None | ||
| NPC Sell | 10 | Refineable | No | ||
| Credit Price | None | Trade restriction | None | ||
| Item Script |
bonus bAspdRate,5; bonus bDelayrate,-5; skill "AL_TELEPORT",1; |
||||
| Set | Script | ||||
|---|---|---|---|---|---|
|
.@r = getequiprefinerycnt(EQI_HEAD_TOP);
if (.@r >= 6) {
bonus bDelayrate,-5;
bonus bAspdRate,5;
bonus2 bAddClass,Class_All,5;
bonus2 bIgnoreDefClassRate,Class_All,25;
}
if (.@r >= 8) {
bonus bDelayrate,-10;
bonus bAspdRate,10;
bonus2 bAddClass,Class_All,5;
bonus2 bIgnoreDefClassRate,Class_All,25;
}
|