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

18 lines
No EOL
386 B
C#

using ModernUO.Serialization;
using Server.Spells.Fourth;
namespace Server.Items;
[SerializationGenerator(0, false)]
public partial class LightningWand : BaseWand
{
[Constructible]
public LightningWand() : base(WandEffect.Lightning, 5, Core.ML ? 109 : 20)
{
}
public override void OnWandUse(Mobile from)
{
Cast(new LightningSpell(from, this));
}
}