ModernUO/Projects/UOContent/Items/Special/Rares/Stables/DecoHay2.cs
2023-03-11 19:25:48 -08:00

14 lines
251 B
C#

using ModernUO.Serialization;
namespace Server.Items;
[SerializationGenerator(0, false)]
public partial class DecoHay2 : Item
{
[Constructible]
public DecoHay2() : base(0xF34)
{
Movable = true;
Stackable = false;
}
}