Anti Magic Manteau
| Item ID | 20944 | Name | Anti Magic Manteau |
|
It seems to have been one of the products of the Geffen Magical Tournament, but it seems to be hidden in Kachua's secret box for some reason.
It seems to be matched with the equipment and sets that were given in the past GefFen Magic Competition. _______________________ MaxHP +300 _______________________ For each 2 Refine Levels: MaxHP +100 _______________________ For each 3 Refine Levels: MaxHP +2% _______________________ Refine Level +7: ATK +7% _______________________ Refine Level +9: MaxHP +10% _______________________ When equipped with Anti-Magic Suit: ATK +30 Refine Level of Anti-Magic Suit is +11 or higher: ATK +40 Decreases After Skill Delay by 10%. _______________________ When equipped with Physical Enhancer Ring: Decreases After Skill Delay by additional 5%. _______________________ Type: Garment Defense: 23 Weight: 75 Armor Level: 1 _______________________ Requirement: Base Level 99 |
|---|---|---|---|---|---|
| Weapon Level | 0 | Identifier | Anti_Magic_Manteau | ||
| Attack | 0 | Type | Armor | ||
| MATK | 0 | Equip Locations | Garment | ||
| Defense | 23 | Equippable Jobs | None | ||
| Range | 0 | Equip Gender | Both (Male and Female) | ||
| Slots | 1 | Equip Upper | None | ||
| Weight | 75 | Min Equip Level | 99 | ||
| NPC Buy | 20 | Max Equip Level | None | ||
| NPC Sell | 10 | Refineable | Yes | ||
| Credit Price | None | Trade restriction | None | ||
| Item Script |
.@r = getrefine();
bonus bMaxHP,(300+(100*(.@r/2)));
bonus bMaxHPrate,(2*(.@r/3));
if (.@r >= 7) {
bonus bAtkRate,7;
}
if (.@r >= 9) {
bonus bMaxHPrate,10;
}
|
||||
| Set | Script | ||||
|---|---|---|---|---|---|
|
bonus bDelayrate,-5; |
||||
|
.@val = 30;
.@eq = getequiprefinerycnt(EQI_ARMOR);
if (.@eq >= 11) {
.@val += 40;
bonus bDelayrate,-10;
}
bonus bBaseAtk,.@val;
|