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

18 lines
No EOL
363 B
C#

using ModernUO.Serialization;
using Server.Spells.First;
namespace Server.Items;
[SerializationGenerator(0, false)]
public partial class WeaknessWand : BaseWand
{
[Constructible]
public WeaknessWand() : base(WandEffect.Weakness, 5, 30)
{
}
public override void OnWandUse(Mobile from)
{
Cast(new WeakenSpell(from, this));
}
}