This is an old revision of the document!
When playing Chess4 with two or more players, the chess pieces are placed on the game board with all the Kings at the left of their Queens. The chess pieces must be placed on the first two rows of the outer edge of the game board.
The coordinates below are based on the following assuptions:
| Pawns | King | Queen | |
|---|---|---|---|
| White | Rank M | N7 | N8 |
| Silver | File 2 | G1 | H1 |
| Black | Rank B | A7 | A8 |
| Gold | File 13 | H14 | G14 |
The colors always play in specific order: White plays first, then clockwise to Silver, followed by Black, and finally Gold.
Players can only move their Chess pieces on their turn. If a player is placed in check, when three or more players are playing, that player must wait until their designated turn before that player can respond to the threat. In the event a player is placed in check, and a player following moves into a position causing the player in check to be checkmated, the King is awarded to the last player (who actually checkmated the King). If Method 2 of play is being used, a player who has captured another player's King can only play those pieces on the turn of the player who has been checkmated and must continue to move those pieces on that player's turn only.
Pawns move forward only, unless attacking in a diagonal-forward manner. Pawns cannot attack diagonal in a backward manner. In the event a Pawn reaches King's row to the left, right, or directly across, that Pawn shall receive all the privileges of a Pawn reaching King's row during a traditional Chess game.
The traditional rules of Chess apply when playing Chess4. However, there are two methods in which Chess4 can be played:
Players can choose partners for team play. Each partner can sit across from the other. For a more challenging game, players should not inform their partners as to what pieces to move or alert their partners when pieces are in danger. Two players can also play with two sets of Chess pieces each for a more challenging game.
As we play through our first full Chess4 game, I'm trying to work up a Chess4-specific PGN sub-format. It won't be directly usable by current PGN parsers of course, but any human reading the file (who's familiar with Chess4 and PGN files) should immediately understand what's going on. My goals with the format are to maintain that familiarity while requiring the smallest adjustment possible if a piece of software ever did want to support the format. The example below just goes through the fourth turn, so I'm not constantly filling this wiki page's edit history up by adding moves; once the game finishes I'll update the whole thing at once and until then you can see the current PGN for the game in progress.
[ White "Blinky" ]
[ Silver "Pinky" ]
[ Black "Inky" ]
[ Gold "Clyde" ]
[ Date "2013.09.18" ]
[ Date-Started "2013.09.18" ]
[ Date-Ended "" ]
[ White-Eliminated-By "" ]
[ Silver-Eliminated-By "" ]
[ Black-Eliminated-By "" ]
[ Gold-Eliminated-By "" ]
[ Result "1/4-1/4-1/4-1/4" ]
1. k7 { M7 > K7 } { White }
Nk3 { J1 > K3 } { Silver }
d8 { B8 > D8 } { Black }
h11 { H13 > H11 } { Gold }
2. Bk9 { N6 > K9 }
Nd3 { E1 > D3 }
Nc6 { A5 > C6 }
Nf12 { E14 > F12 }
3. k10 { M10 > K10 }
e4 { E2 > E4 }
c4 { B4 > C4 }
Qxk10 { G14 > K10 }
4. l9 { M9 > L9 }
Nf4 { D3 > F4 }
d4 { C4 > D4 }
Qxk9 { K10 > K9 }
{ -----------------------------------------------------------------------------
Deviations from standard PGN:
- The "Result" header is in a different format (specifics TBD)
- The '#' and '##' notations for check and checkmate are now followed by
one or more of the letters "wsbg" to denote which color(s) has been
checked or checkmated
- The 'o-o' and 'o-o-o' castling notations have been extended to include
the color of pieces used (in case a player is castling another eliminated
player's pieces)
- A new notation to specify an untaken turn (by an eliminated player)
Example move notations (Chess4 extensions marked with '[*]'):
k7 - Pawn moves are specified with just the destination square
gxk7 - Pawn capture with disambiguating origination file
8xk7 - Pawn capture with disambiguating origination rank
g8xk7 - Pawn capture with disambiguating origination rank and file
Nl13 - Knight move
o-o-w - King-side castle using White's pieces [*]
o-o-o-s - Queen-side castle using Silver's pieces [*]
Nji12#g - Knight (on file J) moves to I12, checking Gold [*]
Qf3xb7#g##bw - Queen on F3 captures on B7, checking Gold and checkmating
Black and White [*]
Qxb9### - Queen captures on b9 and checkmates all remaining players [*]
0 - Placeholder for a turn not taken due to player elimination [*]
----------------------------------------------------------------------------- }
{ EOF }