ModernUO/Projects/UOContent/Items/Gems/Amethyst.cs
2022-06-13 17:38:46 -07:00

16 lines
315 B
C#

using ModernUO.Serialization;
namespace Server.Items;
[SerializationGenerator(0, false)]
public partial class Amethyst : Item
{
[Constructible]
public Amethyst(int amount = 1) : base(0xF16)
{
Stackable = true;
Amount = amount;
}
public override double DefaultWeight => 0.1;
}