http://www.uodemise.com/forum/showthread.php?t=147193 Smith/Tailor PS should not be cursed http://www.uodemise.com/forum/showthread.php?t=148415 Large crafting system overhaul http://www.uodemise.com/forum/showthread.php?t=119342
33 lines
622 B
C#
33 lines
622 B
C#
using System;
|
|
|
|
namespace Server.Items
|
|
{
|
|
[Furniture]
|
|
[Flipable( false, 0x2DDD, 0x2DDE )]
|
|
public class ElvenBookStand : BaseCraftableItem
|
|
{
|
|
[Constructable]
|
|
public ElvenBookStand() : base( 0x2DDD )
|
|
{
|
|
Weight = 20.0;
|
|
}
|
|
|
|
public ElvenBookStand(Serial serial) : base(serial)
|
|
{
|
|
}
|
|
|
|
public override void Serialize(GenericWriter writer)
|
|
{
|
|
base.Serialize(writer);
|
|
|
|
writer.Write((int) 0);
|
|
}
|
|
|
|
public override void Deserialize(GenericReader reader)
|
|
{
|
|
base.Deserialize(reader);
|
|
|
|
int version = reader.ReadInt(); //Required for BaseCraftableItem insertion
|
|
}
|
|
}
|
|
}
|