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

18 lines
380 B
C#

using Server.Spells.Second;
namespace Server.Items
{
[Serializable(0, false)]
public partial class HarmWand : BaseWand
{
[Constructible]
public HarmWand() : base(WandEffect.Harming, 5, Core.ML ? 109 : 30)
{
}
public override void OnWandUse(Mobile from)
{
Cast(new HarmSpell(from, this));
}
}
}