Chessboard corrections

http://www.uodemise.com/forum/showthread.php?t=154224&page=2

Stealth has the wrong hiding requirement
http://www.uodemise.com/forum/showthread.php?t=155728

Players should be able to discord their own pet regardless of facet/guild, or lack thereof
http://www.uodemise.com/forum/showthread.php?t=148376

Disposition of released/gone wild pets' pack inventory
http://www.uodemise.com/forum/showthread.php?t=146385

Flagging mechanics regarding invisibility
http://www.uodemise.com/forum/showthread.php?t=137631
This commit is contained in:
xavier 2010-09-25 17:55:44 +00:00
parent cd2462621f
commit f90c09ef55
7 changed files with 115 additions and 19 deletions

View file

@ -16,38 +16,38 @@ namespace Server.Items
{
for ( int i = 0; i < 8; i++ )
{
CreatePiece( new PieceBlackPawn( this ), ( 25 * i ) + 43, 42 );
CreatePiece( new PieceWhitePawn( this ), ( 25 * i ) + 43, 167 );
CreatePiece( new PieceBlackPawn( this ), 67, ( 25 * i ) + 17 );
CreatePiece( new PieceWhitePawn( this ), 192, ( 25 * i ) + 17 );
}
// Rook
CreatePiece( new PieceBlackRook( this ), 42, 5 );
CreatePiece( new PieceBlackRook( this ), 216, 5 );
CreatePiece( new PieceBlackRook( this ), 42, 180 );
CreatePiece( new PieceWhiteRook( this ), 42, 180 );
CreatePiece( new PieceWhiteRook( this ), 216, 5 );
CreatePiece( new PieceWhiteRook( this ), 216, 180 );
// Knight
CreatePiece( new PieceBlackKnight( this ), 66, 7 );
CreatePiece( new PieceBlackKnight( this ), 190, 7 );
CreatePiece( new PieceBlackKnight( this ), 42, 30 );
CreatePiece( new PieceBlackKnight( this ), 42, 155 );
CreatePiece( new PieceWhiteKnight( this ), 66, 182 );
CreatePiece( new PieceWhiteKnight( this ), 190, 182 );
CreatePiece( new PieceWhiteKnight( this ), 216, 30 );
CreatePiece( new PieceWhiteKnight( this ), 216, 155 );
// Bishop
CreatePiece( new PieceBlackBishop( this ), 94, 7 );
CreatePiece( new PieceBlackBishop( this ), 168, 7 );
CreatePiece( new PieceBlackBishop( this ), 42, 55 );
CreatePiece( new PieceBlackBishop( this ), 42, 130 );
CreatePiece( new PieceWhiteBishop( this ), 94, 182 );
CreatePiece( new PieceWhiteBishop( this ), 168, 182 );
CreatePiece( new PieceWhiteBishop( this ), 216, 55 );
CreatePiece( new PieceWhiteBishop( this ), 216, 130 );
// Queen
CreatePiece( new PieceBlackQueen( this ), 142, 5 );
CreatePiece( new PieceWhiteQueen( this ), 142, 180 );
CreatePiece( new PieceBlackQueen( this ), 42, 105 );
CreatePiece( new PieceWhiteQueen( this ), 216, 105 );
// King
CreatePiece( new PieceBlackKing( this ), 117, 5 );
CreatePiece( new PieceWhiteKing( this ), 117, 180 );
CreatePiece( new PieceBlackKing( this ), 42, 80 );
CreatePiece( new PieceWhiteKing( this ), 216, 80 );
}
public Chessboard( Serial serial ) : base( serial )