Files
abysmal-isle/Scripts/SubSystem/ACC/Complete Spell System/-=+ 02 Changing/Reagents/DestroyingAngel.cs
Unstable Kitsune b918192e4e Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
2023-11-28 23:20:26 -05:00

40 lines
788 B
C#

using System;
using Server;
namespace Server.Items
{
public class DestroyingAngel : BaseReagent//, ICommodity
{
// int ICommodity.DescriptionNumber { get { return LabelNumber; } }
// bool ICommodity.IsDeedable { get { return (Core.ML); } }
[Constructable]
public DestroyingAngel() : this( 1 )
{
}
[Constructable]
public DestroyingAngel( int amount ) : base( 0xE1F, amount )
{
Hue = 0x290;
Name = "destroying angel";
}
public DestroyingAngel( Serial serial ) : base( serial )
{
}
public override void Serialize( GenericWriter writer )
{
base.Serialize( writer );
writer.Write( (int) 1 ); // version
}
public override void Deserialize( GenericReader reader )
{
base.Deserialize( reader );
int version = reader.ReadInt();
}
}
}