32 lines
603 B
C#
32 lines
603 B
C#
namespace Server.Items
|
|
{
|
|
public class GervisSatchel : Backpack
|
|
{
|
|
[Constructible]
|
|
public GervisSatchel()
|
|
{
|
|
Hue = Utility.RandomBrightHue();
|
|
DropItem( new IronIngot( 10 ) );
|
|
DropItem( new SmithHammer() );
|
|
}
|
|
|
|
public GervisSatchel( 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();
|
|
}
|
|
}
|
|
}
|