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

18 lines
No EOL
396 B
C#

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