18 lines
437 B
C#
18 lines
437 B
C#
using ModernUO.Serialization;
|
|
|
|
namespace Server.Items;
|
|
|
|
[SerializationGenerator(0, false)]
|
|
public abstract partial class BaseReagent : Item, ICommodity
|
|
{
|
|
public BaseReagent(int itemID, int amount = 1) : base(itemID)
|
|
{
|
|
Stackable = true;
|
|
Amount = amount;
|
|
}
|
|
|
|
public override double DefaultWeight => 0.1;
|
|
|
|
public virtual int DescriptionNumber => LabelNumber;
|
|
public virtual bool IsDeedable => true;
|
|
}
|