Convertible Magical Armor
| Item ID | 450406 | Name | Convertible Magical Armor |
|
A multi-purpose armor that has been further improved for high efficiency and high output purposes.
A magical processor is installed. _______________________ MATK +100 _______________________ For each 2 Refine Levels: MATK +10. _______________________ Refine Level +7: Decreases Variable Casting Time by 15%. _______________________ Refine Level +9: Increases Magical Damage with every element by 10%. _______________________ Refine Level +11: Decreases After Skill Delay by 10%. _______________________ When equipped with Convertible Magical Wing: Decreases After Skill Delay by additional 5%. Total Refine Level of entire set is at least +18: Increases Magical Damage against enemies of every element by 10%. Total Refine Level of entire set is at least +23: Increases Magical Damage by additional (the sum of refine level)%. _______________________ Type: Armor Defense: 130 Weight: 100 Armor Level: 1 _______________________ Requirement: Base Level 150 |
|---|---|---|---|---|---|
| Weapon Level | 0 | Identifier | aegis_450406 | ||
| Attack | 0 | Type | Armor | ||
| MATK | 0 | Equip Locations | Armor | ||
| Defense | 130 | Equippable Jobs | None | ||
| Range | 0 | Equip Gender | Both (Male and Female) | ||
| Slots | 1 | Equip Upper | None | ||
| Weight | 100 | Min Equip Level | 150 | ||
| NPC Buy | 0 | Max Equip Level | None | ||
| NPC Sell | 0 | Refineable | Yes | ||
| Credit Price | None | Trade restriction | None | ||
| Item Script |
.@r = getrefine();
bonus bMatk,100+10*(.@r/2);
if (.@r>=7) {
bonus bVariableCastrate,-15;
if (.@r>=9) {
bonus2 bMagicAtkEle,Ele_All,10;
if (.@r>=11) {
bonus bDelayrate,-10;
}
}
}
|
||||
| Set | Script | ||||
|---|---|---|---|---|---|
|
.@sum = getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT);
bonus bDelayrate,-5;
if (.@sum>=18) {
bonus2 bMagicAddEle,Ele_All,10;
if (.@sum>=23) {
bonus2 bMagicAtkEle,Ele_All,.@sum;
}
}
|