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

14 lines
270 B
C#

using ModernUO.Serialization;
namespace Server.Items;
[SerializationGenerator(0, false)]
public partial class ToolKit : Item
{
[Constructible]
public ToolKit() : base(Utility.Random(2) + 0x1EBA)
{
Movable = true;
Stackable = false;
}
}