Commit | Line | Data |
---|---|---|
e9b736ee BA |
1 | p.boxed |
2 | | If a piece is attacked and cannot move out of attack, it is captured. | |
3 | ||
4 | p. | |
5 | Any piece that is attacked, but which cannot escape capture by moving away, | |
6 | capturing the attacking piece, or interposing the attacking piece is | |
7 | considered to be mated, and is removed from the board. | |
8 | Note that such a move does not need to be played: if a piece is attacked | |
9 | but not mated, it is not removed. | |
10 | Thus, kings and other pieces may remain under check. | |
11 | ||
12 | p. | |
13 | Pieces cannot be taken in the normal way, only by the "mate-capture" | |
14 | described above. | |
15 | ||
16 | figure.diagram-container | |
17 | .diagram | |
18 | | fen:rnbqkbnr/p1pppppp/8/8/1P6/2N5/P1PPPPPP/RNBQKBNR: | |
19 | figcaption After 1.b4 b5 2.Nc3X the b5 pawn is "mate-captured" | |
20 | ||
21 | p. | |
22 | Note about moves notation: since captures do not occur on final squares, | |
23 | an "X" mark is appended to the move to indicate a capture. | |
24 | To keep notation short the potential list of captured squares is not written. | |
25 | ||
8cc27acf BA |
26 | h3 "Suicide" note |
27 | ||
28 | p. | |
29 | In the current implementation, all pieces except kings can "commit suicide", | |
30 | that is to say move or be left on a square where they are mated. | |
31 | ||
e9b736ee BA |
32 | h3 End of the game |
33 | ||
34 | p The game ends when a king is "mate-captured". | |
35 | ||
36 | h3 Source | |
37 | ||
38 | p | |
39 | a(href="https://www.chessvariants.com/difftaking.dir/allmate.html") Allmate chess | |
40 | | on chessvariants.com. |