ModernUO/Projects/UOContent/Items/Misc/TribalBerry.cs
2022-11-13 23:10:13 -08:00

18 lines
375 B
C#

using ModernUO.Serialization;
namespace Server.Items;
[SerializationGenerator(0, false)]
public partial class TribalBerry : Item
{
[Constructible]
public TribalBerry(int amount = 1) : base(0x9D0)
{
Weight = 1.0;
Stackable = true;
Amount = amount;
Hue = 6;
}
public override int LabelNumber => 1040001; // tribal berry
}