ModernUO/Projects/UOContent/Items/Construction/Chairs/Stools.cs
2021-09-26 20:02:16 -07:00

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;
}
}