ModernUO/Projects/UOContent/Engines/Plants/MiscItems/FertileDirt.cs

15 lines
293 B
C#

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