Exotic Temporal Boots-LT
| Item ID | 470183 | Name | Exotic Temporal Boots-LT |
|
All Basic Stats +2, �MDEF +15.
MaxHP +15%, �MaxSP +5%. _______________________ Refine Level +10: Base STR at least 108: ATK +80 Base AGI at least 108: ASPD +2 Base VIT at least 108: MaxHP +10% Base INT at least 108: MATK +80 Base DEX at least 108: Decreases Fixed Casting Time by 0.5 seconds. Increases Ranged Physical Daamage by 10%. Base LUK at least 108: Increases Critical Damage by 35%. _______________________ Refine Level +13: Base POW at least 60: Increases Physical Damage against enemies of every size by 15%. Base STA at least 60: Decreases After Skill Delay by 5%. �P.ATK +15 Base WIS at least 60: Decreases After Skill Delay by 5%. �S.MATK +15 Base SPL at least 60: Increases Magical Damage against enemies of every size by 15%. Base CON at least 60: Increases Attack Speed (decreases After Attack Delay by 10%). Base CRT at least 60: Decreases Fixed Casting Time by additional 0.2 seconds. Increases Critical Damage by additional 10%. _______________________ [Bonus by Grade] [Grade D]: RES +30, MRES +30. [Grade C]: ATK +50, MATK +50. [Grade B]: Damage against enemies of every race +15%. [Grade A]: P.ATK +7, S.MATK +7. _______________________ Type: Shoes Defense: 20 Weight: 30 Armor Level: 2 _______________________ Requirement: Base Level 190 |
|---|---|---|---|---|---|
| Weapon Level | 0 | Identifier | Temporal_Boots_LT_TW | ||
| 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 | 30 | Min Equip Level | 190 | ||
| 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 bAllStats,2;
bonus bMdef,15;
bonus bMaxHPrate,15;
bonus bMaxSPrate,5;
if (.@r>=10) {
if (readparam(bStr)>=108)
bonus bBaseAtk,80;
if (readparam(bAgi)>=108)
bonus bAspd,2;
if (readparam(bVit)>=108)
bonus bMaxHPrate,10;
if (readparam(bInt)>=108)
bonus bMatk,80;
if (readparam(bDex)>=108) {
bonus bFixedCast,-500;
bonus bLongAtkRate,10;
}
if (readparam(bLuk)>=108)
bonus bCritAtkRate,35;
}
if (.@r>=13) {
if (readparam(bPow)>=60)
bonus2 bAddSize,Size_All,15;
if (readparam(bSta)>=60) {
bonus bDelayrate,-5;
bonus bPAtk,15;
}
if (readparam(bWis)>=60) {
bonus bDelayrate,-5;
bonus bSMatk,15;
}
if (readparam(bSpl)>=60)
bonus2 bMagicAddSize,Size_All,15;
if (readparam(bCon)>=60)
bonus bAspdRate,10;
if (readparam(bCrt)>=60) {
bonus bFixedCast,-200;
bonus bCritAtkRate,10;
}
}
if (.@g>=ENCHANTGRADE_D) {
bonus bRes,30;
bonus bMRes,30;
}
if (.@g>=ENCHANTGRADE_C) {
bonus bBaseAtk,50;
bonus bMatk,50;
}
if (.@g>=ENCHANTGRADE_B) {
bonus2 bAddRace,RC_All,15;
bonus2 bMagicAddRace,RC_All,15;
}
if (.@g>=ENCHANTGRADE_A) {
bonus bPAtk,7;
bonus bSMatk,7;
}
|
||||
| Set | Script | ||||||
|---|---|---|---|---|---|---|---|
|
.@r = getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_SHOES);
bonus bMdef,5;
bonus bFixedCast,-200;
if (.@r>=25) {
if (readparam(bStr)>=108)
bonus bBaseAtk,120;
if (readparam(bAgi)>=108)
bonus bAspd,1;
if (readparam(bVit)>=108)
bonus bDelayrate,-8;
if (readparam(bInt)>=108)
bonus bMatk,120;
if (readparam(bDex)>=108)
bonus bLongAtkRate,15;
if (readparam(bLuk)>=108)
bonus bCritAtkRate,20;
}
|
||||||
|
.@r = getequiprefinerycnt(EQI_SHOES);
bonus bPAtk,.@r;
bonus bSMatk,.@r;
bonus bMaxHPrate,2*.@r;
bonus bMaxSPrate,2*.@r;
if (getenchantgrade(EQI_SHOES) >= ENCHANTGRADE_A) {
bonus2 bAddEle,Ele_All,25;
bonus2 bMagicAddEle,Ele_All,25;
}
|
||||||
|
bonus bBaseAtk,80;
bonus bMatk,80;
if (getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_SHOES) >= 22) {
bonus2 bAddClass,Class_All,10;
bonus2 bMagicAddClass,Class_All,10;
}
|
||||||
|
if (getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT) >= 37)
bonus bDelayrate,-10;
if (getenchantgrade(EQI_SHOES) && getenchantgrade(EQI_GARMENT) >= ENCHANTGRADE_A) {
bonus bPAtk,10;
bonus bSMatk,10;
}
|