2013-10-28 07:09:42 +00:00
|
|
|
namespace Server.Items
|
|
|
|
|
{
|
|
|
|
|
[Flipable(0x104D, 0x104E)]
|
|
|
|
|
public class ClockFrame : Item
|
|
|
|
|
{
|
|
|
|
|
[Constructable]
|
|
|
|
|
public ClockFrame()
|
|
|
|
|
: this(1)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Constructable]
|
|
|
|
|
public ClockFrame(int amount)
|
|
|
|
|
: base(0x104D)
|
|
|
|
|
{
|
2020-04-16 21:29:55 -04:00
|
|
|
Stackable = true;
|
|
|
|
|
Amount = amount;
|
|
|
|
|
Weight = 2.0;
|
2013-10-28 07:09:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public ClockFrame(Serial serial)
|
|
|
|
|
: base(serial)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override void Serialize(GenericWriter writer)
|
|
|
|
|
{
|
|
|
|
|
base.Serialize(writer);
|
|
|
|
|
|
2020-04-16 05:04:29 -04:00
|
|
|
writer.Write(0); // version
|
2013-10-28 07:09:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override void Deserialize(GenericReader reader)
|
|
|
|
|
{
|
|
|
|
|
base.Deserialize(reader);
|
|
|
|
|
|
|
|
|
|
int version = reader.ReadInt();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|