18 lines
400 B
C#
18 lines
400 B
C#
using Server.Spells.First;
|
|
|
|
namespace Server.Items
|
|
{
|
|
[Serializable(0, false)]
|
|
public partial class MagicArrowWand : BaseWand
|
|
{
|
|
[Constructible]
|
|
public MagicArrowWand() : base(WandEffect.MagicArrow, 5, Core.ML ? 109 : 30)
|
|
{
|
|
}
|
|
|
|
public override void OnWandUse(Mobile from)
|
|
{
|
|
Cast(new MagicArrowSpell(from, this));
|
|
}
|
|
}
|
|
}
|