Type |
Weapon |
Subtype |
2haxe |
Attack |
250 |
Defense |
0 |
Weight |
300.0 |
Weapon Level |
3 |
Buy |
10,000z |
Sell |
5,000z |
Required Level |
80 |
Slots |
2 |
Applicable Jobs:
job_alchemist,
job_blacksmith,
job_crusader,
job_knight,
job_merchant,
job_swordman
Description:
An axe made out of the metal which the Ancient God of Blacksmiths gave to humans.
Vit +2
Adds 5% chance of autocasting Level 3 Magnum Break when using Hammer Fall skill.
When forging skill is mastered:
Forging Dagger: ATK +10
Forging Sword: ATK +10
Forging Two-Handed Sword: ATK +10
Forging Knuckle: ATK +10
Forging Spear: ATK +10
Forging Axe: ATK +10
Forging Mace: ATK +10
Class: Two-Handed Axe
Attack: 250
Weight: 300
Weapon Level: 3
Level Requirement: 80
Jobs: Merchant Classes
Item Script:
if (getskilllv('BS_DAGGER') == 3) {
bonus bBaseAtk,10;
}
if (getskilllv('BS_SWORD') == 3) {
bonus bBaseAtk,10;
}
if (getskilllv('BS_TWOHANDSWORD') == 3) {
bonus bBaseAtk,10;
}
if (getskilllv('BS_KNUCKLE') == 3) {
bonus bBaseAtk,10;
}
if (getskilllv('BS_SPEAR') == 3) {
bonus bBaseAtk,10;
}
if (getskilllv('BS_AXE') == 3) {
bonus bBaseAtk,10;
}
if (getskilllv('BS_MACE') == 3) {
bonus bBaseAtk,10;
}
bonus bVit,2;