35 lines
No EOL
689 B
C#
35 lines
No EOL
689 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( (int) 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 ) );
|
|
}
|
|
}
|
|
} |