ModernUO/Projects/UOContent/Items/Wands/HealWand.cs
2021-08-22 01:30:27 -07:00

18 lines
380 B
C#

using Server.Spells.First;
namespace Server.Items
{
[Serializable(0, false)]
public partial class HealWand : BaseWand
{
[Constructible]
public HealWand() : base(WandEffect.Healing, 10, Core.ML ? 109 : 25)
{
}
public override void OnWandUse(Mobile from)
{
Cast(new HealSpell(from, this));
}
}
}