Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
This commit is contained in:
48
Scripts/Items/Artifacts/Decorative/GrapeVine.cs
Normal file
48
Scripts/Items/Artifacts/Decorative/GrapeVine.cs
Normal file
@@ -0,0 +1,48 @@
|
||||
using Server;
|
||||
using System;
|
||||
using Server.Mobiles;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class GrapeVine : Item
|
||||
{
|
||||
public override bool IsArtifact { get { return true; } }
|
||||
private DateTime m_NextHarvest;
|
||||
private readonly double HarvestWait = 4;
|
||||
|
||||
public override int LabelNumber { get { return 1149954; } }
|
||||
|
||||
[Constructable]
|
||||
public GrapeVine() : base(Utility.Random(3355, 10))
|
||||
{
|
||||
m_NextHarvest = DateTime.UtcNow;
|
||||
}
|
||||
|
||||
public override void OnDoubleClick(Mobile from)
|
||||
{
|
||||
if((ItemID == 3358 || ItemID == 3363) && Movable == false && m_NextHarvest < DateTime.UtcNow)
|
||||
{
|
||||
from.AddToBackpack(new GrapeBunch());
|
||||
m_NextHarvest = DateTime.UtcNow + TimeSpan.FromHours(HarvestWait);
|
||||
}
|
||||
}
|
||||
|
||||
public GrapeVine(Serial serial) : base(serial)
|
||||
{
|
||||
}
|
||||
|
||||
public override void Serialize(GenericWriter writer)
|
||||
{
|
||||
base.Serialize(writer);
|
||||
writer.Write((int)0);
|
||||
writer.Write(m_NextHarvest);
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
int version = reader.ReadInt();
|
||||
m_NextHarvest = reader.ReadDateTime();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user