
RENEWAL / ITEMS
Dim Glacier Manteau [1]
#480283Armor
D_Glacier_Manteau
TypeArmor
Equipment positionGarment
GenderBoth
Weight160
Buy price0 z
Sell price0 z
DEF147
Slots1
Required level230
Armor level2
Description
Manteau that has lost its light after being consumed by toxic demonic magic.
------------------------
POW + 1, CON + 1.
------------------------
When refined to +7 or higher, reduces variable casting time by 10%.
------------------------
When refined to +9 or higher, increases melee and long ranged physical damage by 10%.
------------------------
When refined to +11 or higher, reduces after cast delay by 10%.
------------------------
[Grade Bonus]
[Grade D] ATK + 3%, POW + 5, CON + 5.
[Grade C] P.ATK + 2, melee and long ranged physical damage + 5%.
[Grade B] P.ATK + 1.
[Grade A] ATK + 2%.
------------------------
Type : Garment
Def : 147
Weight : 160
Armor Level : 2
Required Level : 230
Class : All Jobs
English Renewal client description · iRO. Numeric server data above takes precedence when the client text differs.
Item details
- Gender
- Both
- Equipment position
- Garment
- Jobs
- All
- Yes
- Classes
- All
- Yes
- Refineable
- Yes
- Trade
Item effect script
.@g = getenchantgrade();
.@r = getrefine();
bonus bPow,1;
bonus bCon,1;
if (.@r>=7) {
bonus bVariableCastrate,-10;
if (.@r>=9) {
bonus bLongAtkRate,10;
bonus bShortAtkRate,10;
if (.@r>=11) {
bonus bDelayrate,-10;
}
}
}
if (.@g>=ENCHANTGRADE_D) {
bonus bAtkRate,3;
bonus bPow,5;
bonus bCon,5;
if (.@g>=ENCHANTGRADE_C) {
bonus bLongAtkRate,5;
bonus bShortAtkRate,5;
bonus bPAtk,2;
if (.@g>=ENCHANTGRADE_B) {
bonus bPAtk,1;
if (.@g>=ENCHANTGRADE_A) {
bonus bAtkRate,2;
}
}
}
}