Dame (Queen): - Moves 1-2 cells in all 8 directions (orthogonal + diagonal) - Social status 7 (highest — priority over all other pieces) - Deep burgundy color, letter "D" - Rare and powerful, forces strategic placement choices Levels: - Level 7 "La Dame Blanche": 10x10, walled arena with central fortress, 1 queen available as a logistics superweapon - Level 8 "Le Grand Reseau": 12x10, 4 productions + 4 demands, two vertical wall corridors, 2 queens, full network challenge GDD updated with Dame section and status hierarchy. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
10 lines
117 B
C#
10 lines
117 B
C#
namespace Chessistics.Engine.Model;
|
|
|
|
public enum PieceKind
|
|
{
|
|
Pawn,
|
|
Rook,
|
|
Bishop,
|
|
Knight,
|
|
Queen
|
|
}
|