#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,45 @@
using System;
using Server;
namespace Server.Items
{
[FlipableAttribute( 0x07DE, 0x0819 )]
public class Lexicon : BaseBook
{
[Constructable]
public Lexicon() : base( 0x07DE, 40, true )
{
Hue = Utility.RandomHue();
}
[Constructable]
public Lexicon( int pageCount, bool writable ) : base( 0x07DE, pageCount, writable )
{
}
[Constructable]
public Lexicon( string title, string author, int pageCount, bool writable ) : base( 0x07DE, title, author, pageCount, writable )
{
}
public Lexicon( bool writable ) : base( 0x07DE, writable )
{
}
public Lexicon( 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
}
}
}