Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
This commit is contained in:
51
Scripts/Items/Functional/FarmableTurnip.cs
Normal file
51
Scripts/Items/Functional/FarmableTurnip.cs
Normal file
@@ -0,0 +1,51 @@
|
||||
using System;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class FarmableTurnip : FarmableCrop
|
||||
{
|
||||
[Constructable]
|
||||
public FarmableTurnip()
|
||||
: base(GetCropID())
|
||||
{
|
||||
}
|
||||
|
||||
public FarmableTurnip(Serial serial)
|
||||
: base(serial)
|
||||
{
|
||||
}
|
||||
|
||||
public static int GetCropID()
|
||||
{
|
||||
return Utility.Random(3169, 3);
|
||||
}
|
||||
|
||||
public override Item GetCropObject()
|
||||
{
|
||||
Turnip turnip = new Turnip();
|
||||
|
||||
turnip.ItemID = Utility.Random(3385, 2);
|
||||
|
||||
return turnip;
|
||||
}
|
||||
|
||||
public override int GetPickedID()
|
||||
{
|
||||
return 3254;
|
||||
}
|
||||
|
||||
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