Glacier Guard
| Item ID | 460040 | Name | Glacier Guard |
|
A shield forged by imbuing the power of a Divine Cat Whiskers with Issgard's Glacier.
You can add abilities by granting a legend with special magical powers. _______________________ RES +15, MRES +15 _______________________ For each 2 Refine Levels: DEF +10, MDEF +2 _______________________ Refine Level +7: Increases Attack Speed (decreases After Attack Delay by 15%). _______________________ Refine Level +9: Decreases Variable Casting Time by 10%. _______________________ Refine Level +10: DEF +50, MDEF +10 _______________________ [Bonus by Grade] [Grade D]: RES +10, MRES +10. [Grade C]: P.ATK +2, S.MATK +2. _______________________ Type: Shield Defense: 220 Weight: 350 Armor Level: 2 _______________________ Requirement: Base Level 230 |
|---|---|---|---|---|---|
| Weapon Level | 0 | Identifier | Glacier_Guard | ||
| Attack | 0 | Type | Armor | ||
| MATK | 0 | Equip Locations | Off Hand | ||
| Defense | 220 | Equippable Jobs | None | ||
| Range | 0 | Equip Gender | Both (Male and Female) | ||
| Slots | 1 | Equip Upper | None | ||
| Weight | 350 | Min Equip Level | 230 | ||
| NPC Buy | 0 | Max Equip Level | None | ||
| NPC Sell | 0 | Refineable | Yes | ||
| Credit Price | None | Trade restriction | None | ||
| Item Script |
.@g = getenchantgrade();
.@r = getrefine();
bonus bMRes,15;
bonus bRes,15;
bonus bMdef,2*(.@r/2);
bonus bDef,10*(.@r/2);
if (.@r>=7) {
bonus bAspdRate,15;
if (.@r>=9) {
bonus bVariableCastrate,-10;
if (.@r>=10) {
bonus bMdef,10;
bonus bDef,50;
}
}
}
if (.@g>=ENCHANTGRADE_D) {
bonus bMRes,10;
bonus bRes,10;
if (.@g>=ENCHANTGRADE_C) {
bonus bPAtk,2;
bonus bSMatk,2;
}
}
|
||||