ModernUO/Projects/UOContent/Items/Resources/Tailor/Bone.cs
2022-11-23 13:45:32 -08:00

18 lines
No EOL
384 B
C#

using ModernUO.Serialization;
namespace Server.Items;
[SerializationGenerator(0, false)]
public partial class Bone : Item, ICommodity
{
[Constructible]
public Bone(int amount = 1) : base(0xf7e)
{
Stackable = true;
Amount = amount;
Weight = 1.0;
}
int ICommodity.DescriptionNumber => LabelNumber;
bool ICommodity.IsDeedable => true;
}