ModernUO/Projects/Scripts/Items/Wands/GreaterHealWand.cs
2019-08-02 18:16:11 -07:00

35 lines
No EOL
711 B
C#

using Server.Spells.Fourth;
namespace Server.Items
{
public class GreaterHealWand : BaseWand
{
[Constructible]
public GreaterHealWand() : base(WandEffect.GreaterHealing, 1, Core.ML ? 109 : 5)
{
}
public GreaterHealWand(Serial serial) : base(serial)
{
}
public override void Serialize(GenericWriter writer)
{
base.Serialize(writer);
writer.Write(0); // version
}
public override void Deserialize(GenericReader reader)
{
base.Deserialize(reader);
int version = reader.ReadInt();
}
public override void OnWandUse(Mobile from)
{
Cast(new GreaterHealSpell(from, this));
}
}
}