Knight's Boots of Midgard
| Item ID | 470247 | Name | Knight's Boots of Midgard |
|
For each 2 Refine Levels:
ATK, MATK +10 _______________________ For each 3 Refine Levels: SPL, POW, CON +1 _______________________ Refine Level +7: ATK, MATK +7% _______________________ Refine Level +9: Decreases Fixed Casting Time by 0.3 seconds. _______________________ Refine Level +11: Increases Physical Damage by 10%. Increases Magical Damage with every element by 10%. _______________________ Refine Level +11: Increases Damage against enemies of every size by 10%. _______________________ When equipped with Cursed Knight's Shield [1] or Bloody Knight's Shield [1]: Increases Damage against monsters of Boss class by 15%. Refine Level of Shoes is +13 or higher: There's a 5% chance to increase STR, INT, DEX by 150 for 10 seconds. _______________________ When equipped with Purified Knight's Shield [1]: Increases physical and magic damage against Boss monsters by 30%. Refine Level of Shoes is +13 or higher: There's a 5% chance to increase STR, INT, DEX by 200 for 10 seconds. _______________________ [Grade Bonus] [Grade D]: RES +50, MRES +50. [Grade C]: Damage against monsters of every element +8%. [Grade B]: P.ATK, S.MATK +7. [Grade A]: Refine Level +13: Fixed Casting Time -0.7 seconds. _______________________ Type: Shoes Defense: 20 Weight: 100 Armor Level: 2 _______________________ Requirement: Base Level 130 |
|---|---|---|---|---|---|
| Weapon Level | 0 | Identifier | Mid_Knight_Shoes | ||
| Attack | 0 | Type | Armor | ||
| MATK | 0 | Equip Locations | Footgear | ||
| Defense | 20 | Equippable Jobs | None | ||
| Range | 0 | Equip Gender | Both (Male and Female) | ||
| Slots | 1 | Equip Upper | None | ||
| Weight | 100 | Min Equip Level | 130 | ||
| NPC Buy | 0 | Max Equip Level | None | ||
| NPC Sell | 0 | Refineable | Yes | ||
| Credit Price | None | Trade restriction | None | ||
| Item Script |
.@r = getrefine();
.@g = getenchantgrade();
bonus bBaseAtk,10*(.@r/2);
bonus bMatk,10*(.@r/2);
bonus bSpl,.@r/3;
bonus bPow,.@r/3;
bonus bCon,.@r/3;
if (.@r>=7) {
bonus bAtkRate,7;
bonus bMatkRate,7;
if (.@r>=9) {
bonus bFixedCast,-300;
if (.@r>=11) {
bonus bShortAtkRate,10;
bonus bLongAtkRate,10;
bonus2 bMagicAtkEle,Ele_All,10;
if (.@r>=13) {
bonus2 bAddSize,Size_All,10;
bonus2 bMagicAddSize,Size_All,10;
}
}
}
}
if (.@g >= ENCHANTGRADE_D) {
bonus bRes,50;
bonus bMRes,50;
}
if (.@g >= ENCHANTGRADE_C) {
bonus2 bAddEle,Ele_All,8;
bonus2 bMagicAddEle,Ele_All,8;
}
if (.@g >= ENCHANTGRADE_B) {
bonus bPAtk,7;
bonus bSMatk,7;
}
if (.@g >= ENCHANTGRADE_A) {
if (.@r>=13) {
bonus bFixedCast,-700;
}
}
|
||||
| Set | Script | ||||
|---|---|---|---|---|---|
|
bonus2 bAddClass,Class_Boss,15;
bonus2 bMagicAddClass,Class_Boss,15;
if (getequiprefinerycnt(EQI_SHOES)>=13)
autobonus "{ bonus bStr,150; bonus bInt,150; bonus bDex,150; }",50,10000,BF_WEAPON|BF_MAGIC;
|
||||
|
bonus2 bAddClass,Class_Boss,15;
bonus2 bMagicAddClass,Class_Boss,15;
if (getequiprefinerycnt(EQI_SHOES)>=13)
autobonus "{ bonus bStr,150; bonus bInt,150; bonus bDex,150; }",50,10000,BF_WEAPON|BF_MAGIC;
|
||||
|
bonus2 bAddClass,Class_Boss,30;
bonus2 bMagicAddClass,Class_Boss,30;
if (getequiprefinerycnt(EQI_SHOES)>=13)
autobonus "{ bonus bStr,200; bonus bInt,200; bonus bDex,200; }",50,10000,BF_WEAPON|BF_MAGIC;
|