16 lines
338 B
C#
16 lines
338 B
C#
namespace Server.Items
|
|
{
|
|
[Serializable(0, false)]
|
|
public partial class CrimsonCincture : HalfApron
|
|
{
|
|
[Constructible]
|
|
public CrimsonCincture()
|
|
{
|
|
Hue = 0x485;
|
|
|
|
Attributes.BonusDex = 5;
|
|
Attributes.BonusHits = 10;
|
|
Attributes.RegenHits = 2;
|
|
}
|
|
}
|
|
}
|