19 lines
512 B
C#
19 lines
512 B
C#
using ModernUO.Serialization;
|
|
using Server.Engines.Craft;
|
|
|
|
namespace Server.Items;
|
|
|
|
[Flippable(0x13E3, 0x13E4)]
|
|
[SerializationGenerator(0, false)]
|
|
public partial class SmithHammer : BaseTool
|
|
{
|
|
[Constructible]
|
|
public SmithHammer() : base(0x13E3) => Layer = Layer.OneHanded;
|
|
|
|
[Constructible]
|
|
public SmithHammer(int uses) : base(uses, 0x13E3) => Layer = Layer.OneHanded;
|
|
|
|
public override double DefaultWeight => 8.0;
|
|
|
|
public override CraftSystem CraftSystem => DefBlacksmithy.CraftSystem;
|
|
}
|