ModernUO/Projects/UOContent/Items/PlantsFlowers/Potted/EmptyPots.cs
2022-11-23 13:04:30 -08:00

17 lines
375 B
C#

using ModernUO.Serialization;
namespace Server.Items;
[SerializationGenerator(0, false)]
public partial class SmallEmptyPot : Item
{
[Constructible]
public SmallEmptyPot() : base(0x11C6) => Weight = 100;
}
[SerializationGenerator(0, false)]
public partial class LargeEmptyPot : Item
{
[Constructible]
public LargeEmptyPot() : base(0x11C7) => Weight = 6;
}