ModernUO/Projects/UOContent/Items/Special/ML/MinotaurHedge.cs
2023-03-11 17:33:31 -08:00

12 lines
294 B
C#

using ModernUO.Serialization;
namespace Server.Items;
[SerializationGenerator(0, false)]
public partial class MinotaurHedge : Item
{
[Constructible]
public MinotaurHedge() : base(Utility.Random(3215, 4)) => Weight = 1.0;
public override string DefaultName => "minotaur hedge";
}