ModernUO/Projects/UOContent/Items/Skill Items/Tinkering/Axle.cs

17 lines
336 B
C#

using ModernUO.Serialization;
namespace Server.Items;
[Flippable(0x105B, 0x105C)]
[SerializationGenerator(0, false)]
public partial class Axle : Item
{
[Constructible]
public Axle(int amount = 1) : base(0x105B)
{
Stackable = true;
Amount = amount;
}
public override double DefaultWeight => 1.0;
}