ModernUO/Projects/UOContent/Items/Skill Items/Magical/Misc/Bottle.cs

19 lines
420 B
C#

using ModernUO.Serialization;
namespace Server.Items;
[SerializationGenerator(0, false)]
public partial class Bottle : Item, ICommodity
{
[Constructible]
public Bottle(int amount = 1) : base(0xF0E)
{
Stackable = true;
Amount = amount;
}
public override double DefaultWeight => 1.0;
int ICommodity.DescriptionNumber => LabelNumber;
bool ICommodity.IsDeedable => Core.ML;
}