43 lines
781 B
C#
43 lines
781 B
C#
using System;
|
|
using Server;
|
|
|
|
namespace Server.Items
|
|
{
|
|
public class BloodwormCostume : BaseCostume
|
|
{
|
|
public override string CreatureName { get { return "bloodworm"; } }
|
|
|
|
[Constructable]
|
|
public BloodwormCostume() : base( )
|
|
{
|
|
this.CostumeBody = 287;
|
|
}
|
|
|
|
public override int LabelNumber
|
|
{
|
|
get
|
|
{
|
|
return 1114006;
|
|
}
|
|
}// bloodworm halloween costume
|
|
|
|
public BloodwormCostume( 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();
|
|
}
|
|
}
|
|
}
|