
RENEWAL / ITEMS
Arabian Manteau [1]
#480023Armor
Arabian_Manteau
TypeArmor
Equipment positionGarment
GenderBoth
Weight30
Buy price0 z
Sell price0 z
DEF10
Slots1
Required level100
Armor level1
Description
MaxHP + 10%
Increase critical damage by 5%.
When refined to +8 or higher
CRIT + 5
Increase critical damage by an additional 5%.
When refined to +9
CRIT + 10
Increase critical damage by an additional 20%.
When refined to +10
CRIT + 20
Increase critical damage by an additional 30%.
When refined to +11
CRIT + 30
Increase critical damage by an additional 50%.
Set Bonus
When equipped with Ifrit Card
Increase resistance to fire property attacks by 100%
Reduce incoming damage of Critical Slash by 100%.
Type: Garment Defense: 10
Weight: 30
Required level: 100
Class: All
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
.@r = getrefine();
.@cri = 0;
.@criatk = 5;
bonus bMaxHPrate,10;
if (.@r >= 7) {
.@cri += 5;
.@criatk += 5;
}
if (.@r >= 8) {
.@cri += 10;
.@criatk += 20;
}
if (.@r >= 9) {
.@cri += 20;
.@criatk += 30;
}
if (.@r >= 10) {
.@cri += 30;
.@criatk += 50;
}
bonus bCritical,.@cri;
bonus bCritAtkRate,.@criatk;