#W# Initial Commit: Avatars Conquest
This commit is contained in:
commit
5df497787a
7510 changed files with 416048 additions and 0 deletions
64
Scripts/Items/Construction/Walls/ThickGrayStoneWall.cs
Normal file
64
Scripts/Items/Construction/Walls/ThickGrayStoneWall.cs
Normal 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();
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue