Healing Shadow Shoes
| Item ID | 24367 | Name | Healing Shadow Shoes |
|
A pair of shoes worn on top of normal shoes for additional defense. Needs a complete set to have bonus effect.
_______________________ MATK +10 _______________________ Refine Level +7: Increases Healing skills effectiveness by 3%. _______________________ Refine Level +9: Increases Healing skills effectiveness by additional 5%. _______________________ When equipped with Healing Shadow Weapon and Healing Shadow Shield: Increases Healing skills effectiveness by additional 5%. _______________________ Total Refine Level of entire set at least +25: Increases Healing skills effectiveness by additional 15%. _______________________ Type: Shadow Shoes _______________________ Requirement: None |
|---|---|---|---|---|---|
| Weapon Level | 0 | Identifier | S_Healing_Shoes | ||
| Attack | 0 | Type | Shadow Equipment | ||
| MATK | 0 | Equip Locations | Shadow Shoes | ||
| Defense | 0 | Equippable Jobs | None | ||
| Range | 0 | Equip Gender | Both (Male and Female) | ||
| Slots | 0 | Equip Upper | None | ||
| Weight | 0 | Min Equip Level | 1 | ||
| NPC Buy | 0 | Max Equip Level | None | ||
| NPC Sell | 0 | Refineable | Yes | ||
| Credit Price | None | Trade restriction | None | ||
| Item Script |
.@r = getrefine();
bonus bMaxHP,.@r*10;
bonus bMatk,10;
if (.@r >= 7) {
.@val = 3;
if (.@r >= 9) {
.@val += 5;
}
bonus bHealPower,.@val;
}
|
||||
| Set | Script | ||||||
|---|---|---|---|---|---|---|---|
|
.@r = getequiprefinerycnt(EQI_SHADOW_WEAPON) + getequiprefinerycnt(EQI_SHADOW_SHIELD) + getequiprefinerycnt(EQI_SHADOW_SHOES);
.@val = 5;
if (.@r >= 25) {
.@val += 15;
}
bonus bHealPower,.@val;
|