Fire Thunder Great Boots
| Item ID | 22132 | Name | Fire Thunder Great Boots |
|
A pair of shoes that once wore by eastern god. It's flame protect it's wearer.
_______________________ For each Refine Level: MATK +5, Decreases Variable Casting Time by 1%. Increases Magical Damage against Earth, Ghost, Neutral and Undead elemental by 2%. _______________________ When equipped with Moonlight Flower Card: Enables the use of Level 10 Heal. Base Level is below 100: For each Refine Level of Lightning God's Shoes: MDEF +5, MATK +5. Base Level is below 100: For each Refine Level of Lightning God's Shoes: MDEF +10, MATK +15. _______________________ Type: Shoes Defense: 18 Weight: 100 Armor Level: 1 _______________________ Requirement: Base Level 99 |
|---|---|---|---|---|---|
| Weapon Level | 0 | Identifier | Nergal_Shoes | ||
| Attack | 0 | Type | Armor | ||
| MATK | 0 | Equip Locations | Footgear | ||
| Defense | 18 | Equippable Jobs | None | ||
| Range | 0 | Equip Gender | Both (Male and Female) | ||
| Slots | 1 | Equip Upper | None | ||
| Weight | 100 | Min Equip Level | 99 | ||
| NPC Buy | 0 | Max Equip Level | None | ||
| NPC Sell | 0 | Refineable | Yes | ||
| Credit Price | None | Trade restriction | None | ||
| Item Script |
.@r = getrefine(); bonus bMatk,5*.@r; bonus bVariableCastrate,-.@r; bonus2 bMagicAddEle,Ele_Earth,2*.@r; bonus2 bMagicAddEle,Ele_Ghost,2*.@r; bonus2 bMagicAddEle,Ele_Neutral,2*.@r; bonus2 bMagicAddEle,Ele_Undead,2*.@r; |
||||
| Set | Script | ||||
|---|---|---|---|---|---|
|
.@r = getequiprefinerycnt(EQI_SHOES);
skill "AL_HEAL",10;
if (BaseLevel >= 100) {
bonus bMatk,15*.@r;
bonus bMdef,10*.@r;
} else {
bonus bMatk,5*.@r;
bonus bMdef,5*.@r;
}
|
||||
|
.@r = getequiprefinerycnt(EQI_SHOES);
skill "AL_HEAL",10;
if (BaseLevel >= 100) {
bonus bMatk,10*.@r;
bonus bMdef,6*.@r;
} else {
bonus bMatk,3*.@r;
bonus bMdef,3*.@r;
}
|