Files
abysmal-isle/Scripts/Items/Functional/FarmableCarrot.cs
Unstable Kitsune b918192e4e Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
2023-11-28 23:20:26 -05:00

51 lines
1006 B
C#

using System;
namespace Server.Items
{
public class FarmableCarrot : FarmableCrop
{
[Constructable]
public FarmableCarrot()
: base(GetCropID())
{
}
public FarmableCarrot(Serial serial)
: base(serial)
{
}
public static int GetCropID()
{
return 3190;
}
public override Item GetCropObject()
{
Carrot carrot = new Carrot();
carrot.ItemID = Utility.Random(3191, 2);
return carrot;
}
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();
}
}
}