Veteran Sword
| Item ID | 21024 | Name | Veteran Sword |
|
A sword that only allows for its swordmaster to use it.
_______________________ STR +1 DEX +1 _______________________ When Bash is mastered: Increases damage of Bash by 50%. _______________________ When Bowling Bash is mastered: Increases damage of Bowling Bash by 50%. _______________________ When equipped with Heroic Shoes: For each Level of Enchant Blade and Aura Blade: Increases damage of Bash and Bowling Bash by 10%. _______________________ Type: Two-Handed Sword Attack: 180 Weight: 200 Weapon Level: 4 _______________________ Requirement: Base Level 80 Swordman classes |
|---|---|---|---|---|---|
| Weapon Level | 4 | Identifier | Veteran_Sword_ | ||
| Attack | 180 | Type | Weapon - Two-Handed Sword | ||
| MATK | 0 | Equip Locations | Two-Handed | ||
| Defense | 0 | Equippable Jobs | Swordman, Knight, Crusader | ||
| Range | 1 | Equip Gender | Both (Male and Female) | ||
| Slots | 3 | Equip Upper | None | ||
| Weight | 200 | Min Equip Level | 80 | ||
| NPC Buy | 0 | Max Equip Level | None | ||
| NPC Sell | 0 | Refineable | Yes | ||
| Credit Price | None | Trade restriction | None | ||
| Item Script |
if (getskilllv("SM_BASH") == 10) {
bonus2 bSkillAtk,"SM_BASH",50;
}
if (getskilllv("KN_BOWLINGBASH") == 10) {
bonus2 bSkillAtk,"KN_BOWLINGBASH",50;
}
bonus bStr,1;
bonus bDex,1;
|
||||
| Set | Script | ||||||
|---|---|---|---|---|---|---|---|
|
bonus2 bSkillAtk,"SM_BASH",10*getskilllv("RK_ENCHANTBLADE");
bonus2 bSkillAtk,"SM_BASH",10*getskilllv("LK_AURABLADE");
bonus2 bSkillAtk,"KN_BOWLINGBASH",10*getskilllv("RK_ENCHANTBLADE");
bonus2 bSkillAtk,"KN_BOWLINGBASH",10*getskilllv("LK_AURABLADE");
|
||||||
|
.@r = getequiprefinerycnt(EQI_HAND_R);
bonus2 bSkillUseSP,"SM_BASH",5;
bonus2 bSkillUseSP,"KN_BOWLINGBASH",10;
if (.@r >= 7) {
bonus2 bSkillAtk,"SM_BASH",100;
bonus2 bSkillAtk,"KN_BOWLINGBASH",100;
}
if (.@r >= 9) {
bonus2 bSkillAtk,"SM_BASH",200;
bonus2 bSkillAtk,"KN_BOWLINGBASH",200;
}
|