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

10 lines
236 B
C#

using ModernUO.Serialization;
namespace Server.Items;
[SerializationGenerator(0, false)]
public partial class BambooFlute : BaseInstrument
{
[Constructible]
public BambooFlute() : base(0x2805, 0x504, 0x503) => Weight = 2.0;
}