Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
This commit is contained in:
47
Scripts/Items/Functional/FarmableWheat.cs
Normal file
47
Scripts/Items/Functional/FarmableWheat.cs
Normal file
@@ -0,0 +1,47 @@
|
||||
using System;
|
||||
|
||||
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();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user