17 lines
336 B
C#
17 lines
336 B
C#
using ModernUO.Serialization;
|
|
|
|
namespace Server.Items
|
|
{
|
|
[Furniture]
|
|
[SerializationGenerator(0)]
|
|
[Flippable(0x2DDD, 0x2DDE)]
|
|
public partial class ElvenPodium : Item
|
|
{
|
|
[Constructible]
|
|
public ElvenPodium() : base(0x2DDD)
|
|
{
|
|
}
|
|
|
|
public override double DefaultWeight => 2.0;
|
|
}
|
|
}
|