11 lines
274 B
C#
11 lines
274 B
C#
namespace Server.Items
|
|
{
|
|
[Serializable(0)]
|
|
public partial class HeavyOrnateAxe : OrnateAxe
|
|
{
|
|
[Constructible]
|
|
public HeavyOrnateAxe() => Attributes.WeaponDamage = 8;
|
|
|
|
public override int LabelNumber => 1073548; // heavy ornate axe
|
|
}
|
|
}
|