52 lines
1.0 KiB
C#
52 lines
1.0 KiB
C#
using System;
|
|
|
|
namespace Server.Items
|
|
{
|
|
public class MandrakeRoot : BaseReagent, ICommodity
|
|
{
|
|
[Constructable]
|
|
public MandrakeRoot()
|
|
: this(1)
|
|
{
|
|
}
|
|
|
|
[Constructable]
|
|
public MandrakeRoot(int amount)
|
|
: base(0xF86, amount)
|
|
{
|
|
}
|
|
|
|
public MandrakeRoot(Serial serial)
|
|
: base(serial)
|
|
{
|
|
}
|
|
|
|
TextDefinition ICommodity.Description
|
|
{
|
|
get
|
|
{
|
|
return this.LabelNumber;
|
|
}
|
|
}
|
|
bool ICommodity.IsDeedable
|
|
{
|
|
get
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
public override void Serialize(GenericWriter writer)
|
|
{
|
|
base.Serialize(writer);
|
|
|
|
writer.Write((int)0); // version
|
|
}
|
|
|
|
public override void Deserialize(GenericReader reader)
|
|
{
|
|
base.Deserialize(reader);
|
|
|
|
int version = reader.ReadInt();
|
|
}
|
|
}
|
|
} |