38 lines
825 B
C#
38 lines
825 B
C#
using System;
|
|
using Server.Spells.Fourth;
|
|
|
|
namespace Server.Items
|
|
{
|
|
public class GreaterHealWand : BaseWand
|
|
{
|
|
[Constructable]
|
|
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((int)0); // version
|
|
}
|
|
|
|
public override void Deserialize(GenericReader reader)
|
|
{
|
|
base.Deserialize(reader);
|
|
|
|
int version = reader.ReadInt();
|
|
}
|
|
|
|
public override void OnWandUse(Mobile from)
|
|
{
|
|
this.Cast(new GreaterHealSpell(from, this));
|
|
}
|
|
}
|
|
} |