mirror of
https://github.com/ServUO/ServUO
synced 2026-08-11 20:23:04 -04:00
* Services Folder Cleanup * using and VS cleanup of the Mobile folder. * using VS cleanup of Items
45 lines
No EOL
939 B
C#
45 lines
No EOL
939 B
C#
namespace Server.Items
|
|
{
|
|
public class FarmableWheat : FarmableCrop
|
|
{
|
|
[Constructable]
|
|
public FarmableWheat()
|
|
: base(GetCropID())
|
|
{
|
|
}
|
|
|
|
public FarmableWheat(Serial serial)
|
|
: base(serial)
|
|
{
|
|
}
|
|
|
|
public static int GetCropID()
|
|
{
|
|
return Utility.Random(3157, 4);
|
|
}
|
|
|
|
public override Item GetCropObject()
|
|
{
|
|
return new WheatSheaf();
|
|
}
|
|
|
|
public override int GetPickedID()
|
|
{
|
|
return Utility.Random(3502, 2);
|
|
}
|
|
|
|
public override void Serialize(GenericWriter writer)
|
|
{
|
|
base.Serialize(writer);
|
|
|
|
writer.WriteEncodedInt(0); // version
|
|
}
|
|
|
|
public override void Deserialize(GenericReader reader)
|
|
{
|
|
base.Deserialize(reader);
|
|
|
|
int version = reader.ReadEncodedInt();
|
|
}
|
|
}
|
|
} |