14 lines
282 B
C#
14 lines
282 B
C#
using ModernUO.Serialization;
|
|
|
|
namespace Server.Items;
|
|
|
|
[SerializationGenerator(0, false)]
|
|
public partial class TormentedChains : Item
|
|
{
|
|
[Constructible]
|
|
public TormentedChains() : base(Utility.Random(6663, 2))
|
|
{
|
|
}
|
|
|
|
public override double DefaultWeight => 1.0;
|
|
}
|