ModernUO/Projects/UOContent/Items/Skill Items/Musical Instruments/Tambourine.cs

10 lines
231 B
C#

using ModernUO.Serialization;
namespace Server.Items;
[SerializationGenerator(0, false)]
public partial class Tambourine : BaseInstrument
{
[Constructible]
public Tambourine() : base(0xE9D, 0x52, 0x53) => Weight = 1.0;
}