43 lines
803 B
C#
43 lines
803 B
C#
using System;
|
|
using Server;
|
|
|
|
namespace Server.Items
|
|
{
|
|
public class EtherealWarriorCostume : BaseCostume
|
|
{
|
|
public override string CreatureName { get { return "ethereal warrior"; } }
|
|
|
|
[Constructable]
|
|
public EtherealWarriorCostume() : base( )
|
|
{
|
|
this.CostumeBody = 123;
|
|
}
|
|
|
|
public override int LabelNumber
|
|
{
|
|
get
|
|
{
|
|
return 1114243;
|
|
}
|
|
}// ethereal warrior costume
|
|
|
|
public EtherealWarriorCostume( Serial serial ) : base( serial )
|
|
{
|
|
}
|
|
|
|
public override void Serialize( GenericWriter writer )
|
|
{
|
|
base.Serialize( writer );
|
|
|
|
writer.Write( (int) 0 );
|
|
}
|
|
|
|
public override void Deserialize(GenericReader reader)
|
|
{
|
|
base.Deserialize( reader );
|
|
|
|
int version = reader.ReadInt();
|
|
}
|
|
}
|
|
}
|