Sniping Shoes
| Item ID | 470006 | Name | Sniping Shoes |
|
Shoes said to have been worn by a noble thief known as the guardian of the forest.
Shortens the time between attacks. _______________________ MDEF +10 MaxHP +3%, MaxSP +3%. _______________________ Enables the use of Level 1 Gloria. _______________________ For each level of Unlimit skill: Decreases After Skill Delay by 8%. _______________________ For each level of Warg Rider skill: Increases Physical Damage against monsters of every size by 5%. _______________________ When Level 10 Aimed Bolt is learned: Increases Critical Damage by 25%. Nullifies Weapon Size Penalty. _______________________ When Level 5 Electric Shocker is learned: All Basic Stats +10 Decreases SP Consumption of Camouflage by 20. _______________________ Refine Level +5: MaxHP +7%, MaxSP +7%. Increases Ranged Physical Damage by 5%. _______________________ Refine Level +7: MaxHP +10%, MaxSP +10%. Increases Ranged Physical Damage by additional 5%. _______________________ Type: Shoes Defense: 12 Weight: 20 Armor Level: 1 _______________________ Requirement: Base Level 100 |
|---|---|---|---|---|---|
| Weapon Level | 0 | Identifier | Sniping_Shoes_J | ||
| Attack | 0 | Type | Armor | ||
| MATK | 0 | Equip Locations | Footgear | ||
| Defense | 0 | Equippable Jobs | None | ||
| Range | 0 | Equip Gender | Both (Male and Female) | ||
| Slots | 0 | Equip Upper | None | ||
| Weight | 20 | Min Equip Level | 100 | ||
| NPC Buy | 0 | Max Equip Level | None | ||
| NPC Sell | 0 | Refineable | Yes | ||
| Credit Price | None | Trade restriction | None | ||
| Item Script |
.@r = getrefine();
bonus bUnbreakableShoes;
bonus bMdef,10;
bonus bMaxHPrate,3;
bonus bMaxSPrate,3;
skill "PR_GLORIA",1;
bonus bDelayrate,-8*getskilllv("RA_UNLIMIT");
bonus2 bAddSize,Size_All,5*getskilllv("RA_WUGRIDER");
if (getskilllv("RA_AIMEDBOLT") == 10) {
bonus bCritAtkRate,25;
bonus bNoSizeFix;
}
if (getskilllv("RA_ELECTRICSHOCKER") == 5) {
bonus bAllStats,10;
bonus2 bSkillUseSP,"RA_CAMOUFLAGE",20;
}
if (.@r>=5) {
bonus bMaxHPrate,7;
bonus bMaxSPrate,7;
bonus bLongAtkRate,5;
}
if (.@r>=7) {
bonus bMaxHPrate,10;
bonus bMaxSPrate,10;
bonus bLongAtkRate,5;
}
|
||||