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

14 lines
260 B
C#

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