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

10 lines
237 B
C#

using ModernUO.Serialization;
namespace Server.Items;
[SerializationGenerator(0, false)]
public partial class TormentedChains : Item
{
[Constructible]
public TormentedChains() : base(Utility.Random(6663, 2)) => Weight = 1.0;
}