18 lines
383 B
C#
18 lines
383 B
C#
namespace Server.Items
|
|
{
|
|
[Furniture]
|
|
[Serializable(0, false)]
|
|
public partial class Stool : Item
|
|
{
|
|
[Constructible]
|
|
public Stool() : base(0xA2A) => Weight = 10.0;
|
|
}
|
|
|
|
[Furniture]
|
|
[Serializable(0, false)]
|
|
public partial class FootStool : Item
|
|
{
|
|
[Constructible]
|
|
public FootStool() : base(0xB5E) => Weight = 6.0;
|
|
}
|
|
}
|