ModernUO/Projects/UOContent/Items/Resources/Arrows/Feather.cs
2022-11-23 13:45:32 -08:00

18 lines
412 B
C#

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