ModernUO/Projects/UOContent/Items/Wands/MagicArrowWand.cs
2023-08-25 20:44:37 -07:00

18 lines
No EOL
389 B
C#

using ModernUO.Serialization;
using Server.Spells.First;
namespace Server.Items;
[SerializationGenerator(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));
}
}