15 lines
286 B
C#
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;
|
|
}
|
|
}
|