AvatarsConquest/Scripts/Spells/Scrolls/Sixth Circle/DispelScroll.cs

39 lines
No EOL
653 B
C#

using System;
using Server;
using Server.Items;
namespace Server.Items
{
public class DispelScroll : SpellScroll
{
[Constructable]
public DispelScroll() : this( 1 )
{
}
[Constructable]
public DispelScroll( int amount ) : base( 40, 0x1F55, amount )
{
}
public DispelScroll( 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();
}
}
}