ModernUO/Projects/UOContent/Items/Misc/Beeswax.cs
2022-10-29 00:43:30 -07:00

15 lines
286 B
C#

using ModernUO.Serialization;
namespace Server.Items;
[SerializationGenerator(0, false)]
public partial class Beeswax : Item
{
[Constructible]
public Beeswax(int amount = 1) : base(0x1422)
{
Weight = 1.0;
Stackable = true;
Amount = amount;
}
}