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

18 lines
372 B
C#

using Server.Spells.First;
namespace Server.Items
{
[Serializable(0, false)]
public partial class ClumsyWand : BaseWand
{
[Constructible]
public ClumsyWand() : base(WandEffect.Clumsiness, 5, 30)
{
}
public override void OnWandUse(Mobile from)
{
Cast(new ClumsySpell(from, this));
}
}
}