43 lines
773 B
C#
43 lines
773 B
C#
using System;
|
|
using Server;
|
|
|
|
namespace Server.Items
|
|
{
|
|
public class GoreFiendCostume : BaseCostume
|
|
{
|
|
public override string CreatureName { get { return "gore fiend"; } }
|
|
|
|
[Constructable]
|
|
public GoreFiendCostume() : base( )
|
|
{
|
|
this.CostumeBody = 305;
|
|
}
|
|
|
|
public override int LabelNumber
|
|
{
|
|
get
|
|
{
|
|
return 1114227;
|
|
}
|
|
}// gore fiend costume
|
|
|
|
public GoreFiendCostume( 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();
|
|
}
|
|
}
|
|
}
|