#W# Initial Commit: Avatars Conquest

This commit is contained in:
WarrentyExpired 2026-07-04 10:35:30 -04:00
commit 5df497787a
7510 changed files with 416048 additions and 0 deletions

View file

@ -0,0 +1,47 @@
using System;
using Server;
namespace Server.Items
{
[FlipableAttribute( 0xFF0, 0x22BE )]
public class TanBook : BaseBook
{
[Constructable]
public TanBook() : base( 0xFF0 )
{
}
[Constructable]
public TanBook( int pageCount, bool writable ) : base( 0xFF0, pageCount, writable )
{
}
[Constructable]
public TanBook( string title, string author, int pageCount, bool writable ) : base( 0xFF0, title, author, pageCount, writable )
{
}
// Intended for defined books only
public TanBook( bool writable ) : base( 0xFF0, writable )
{
}
public TanBook( Serial serial ) : base( serial )
{
}
public override void Deserialize( GenericReader reader )
{
base.Deserialize( reader );
int version = reader.ReadInt();
}
public override void Serialize( GenericWriter writer )
{
base.Serialize( writer );
writer.Write( (int)0 ); // version
}
}
}