18 lines
No EOL
396 B
C#
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));
|
|
}
|
|
} |