ModernUO/Projects/UOContent/Items/Skill Items/Magical/Misc/Bottle.cs
2022-12-07 20:46:41 -08:00

18 lines
392 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;
Weight = 1.0;
Amount = amount;
}
int ICommodity.DescriptionNumber => LabelNumber;
bool ICommodity.IsDeedable => Core.ML;
}