17 lines
No EOL
391 B
C#
17 lines
No EOL
391 B
C#
using ModernUO.Serialization;
|
|
|
|
namespace Server.Items;
|
|
|
|
[SerializationGenerator(0, false)]
|
|
public partial class DaemonBone : BaseReagent, ICommodity
|
|
{
|
|
[Constructible]
|
|
public DaemonBone(int amount = 1) : base(0xF80, amount)
|
|
{
|
|
}
|
|
|
|
public override double DefaultWeight => 1.0;
|
|
|
|
int ICommodity.DescriptionNumber => LabelNumber;
|
|
bool ICommodity.IsDeedable => Core.ML;
|
|
} |