11 lines
257 B
C#
11 lines
257 B
C#
namespace Server.Items
|
|
{
|
|
[Serializable(0)]
|
|
public partial class RubyMace : DiamondMace
|
|
{
|
|
[Constructible]
|
|
public RubyMace() => Attributes.WeaponDamage = 5;
|
|
|
|
public override int LabelNumber => 1073529; // ruby mace
|
|
}
|
|
}
|