#W# Initial Commit: Avatars Conquest

This commit is contained in:
WarrentyExpired 2026-07-03 20:19:48 -04:00
commit 8eae46895e
7512 changed files with 416187 additions and 0 deletions

View file

@ -0,0 +1,64 @@
/****************************************
* NAME : Thick Gray Stone Wall *
* SCRIPT : ThickGrayStoneWall.cs *
* VERSION : v1.00 *
* CREATOR : Mans Sjoberg (Allmight) *
* CREATED : 10-07.2002 *
* **************************************/
using System;
namespace Server.Items
{
public enum ThickGrayStoneWallTypes
{
WestArch,
NorthArch,
SouthArchTop,
EastArchTop,
EastArch,
SouthArch,
Wall1,
Wall2,
Wall3,
SouthWindow,
Wall4,
EastWindow,
WestArch2,
NorthArch2,
SouthArchTop2,
EastArchTop2,
EastArch2,
SouthArch2,
SWArchEdge2,
SouthWindow2,
NEArchEdge2,
EastWindow2
}
public class ThickGrayStoneWall : BaseWall
{
[Constructable]
public ThickGrayStoneWall( ThickGrayStoneWallTypes type) : base( 0x007A + (int)type )
{
}
public ThickGrayStoneWall( 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();
}
}
}