15 lines
353 B
C#
15 lines
353 B
C#
namespace Server.Items
|
|
{
|
|
[Serializable(0)]
|
|
public partial class FrozenLongbow : ElvenCompositeLongbow
|
|
{
|
|
[Constructible]
|
|
public FrozenLongbow()
|
|
{
|
|
Attributes.WeaponSpeed = -5;
|
|
Attributes.DefendChance = 10;
|
|
}
|
|
|
|
public override int LabelNumber => 1073507; // frozen longbow
|
|
}
|
|
}
|