35 lines
635 B
C#
35 lines
635 B
C#
using System;
|
|
using Server;
|
|
|
|
namespace Server.Items
|
|
{
|
|
public class GervisSatchel : Backpack
|
|
{
|
|
[Constructable]
|
|
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();
|
|
}
|
|
}
|
|
}
|