Veteran Axe

Veteran Axe

ID 1384Arma2 slotsrefinable

Descripción

An axe made out of the metal which the Ancient God of Blacksmiths gave to humans.


VIT +2


Random chance to auto-cast Level 3 Magnum Break when using Hammer Fall.


ATK +10 for each mastered Forging skill.

(Smith Dagger, Smith Sword, Smith Two-Handed Sword, Smith Axe, Smith Mace, Smith Brass Knuckle and Smith Spear)


Type: Two-Handed Axe

Attack: 250

Weight: 300

Weapon Level: 3


Requirement:

Base Level 80

Merchant

Quién lo deja caer

Propiedades básicas

Identificador
Veteran_Axe
Peso
300.0
Compra NPC
10.000z
Venta NPC
5.000z
Slots
2

Estadísticas de combate

Ataque
250
Rango
1
Nivel de arma
3

Requisitos

Nivel mínimo
80
Profesiones
Merchant, Blacksmith, Alchemist
Tipo de personaje
Todos
Posición
Mano derecha, Mano izquierda
Script del item
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;
bonus4 bAutoSpellOnSkill,"BS_HAMMERFALL","SM_MAGNUM",3,50;