15 lines
328 B
C#
15 lines
328 B
C#
namespace Server.Items
|
|
{
|
|
[Serializable(0)]
|
|
public partial class GuardianAxe : OrnateAxe
|
|
{
|
|
[Constructible]
|
|
public GuardianAxe()
|
|
{
|
|
Attributes.BonusHits = 4;
|
|
Attributes.RegenHits = 1;
|
|
}
|
|
|
|
public override int LabelNumber => 1073545; // guardian axe
|
|
}
|
|
}
|