ModernUO/Projects/UOContent/Items/Misc/Blighted Grove/EternallyCorruptTree.cs
2022-10-28 20:44:08 -07:00

12 lines
333 B
C#

using ModernUO.Serialization;
namespace Server.Items;
[SerializationGenerator(0, false)]
public partial class EternallyCorruptTree : Item
{
[Constructible]
public EternallyCorruptTree() : base(0x20FA) => Hue = Utility.RandomMinMax(0x899, 0x8B0);
public override int LabelNumber => 1072093; // Eternally Corrupt Tree
}