ModernUO/Projects/UOContent/Items/Gems/Sapphire.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 Sapphire : Item
{
[Constructible]
public Sapphire(int amount = 1) : base(0xF19)
{
Stackable = true;
Amount = amount;
}
public override double DefaultWeight => 0.1;
}