home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / lisp / interpre / xlispplu / fun / pangki.txt < prev    next >
Text File  |  1987-06-02  |  1KB  |  20 lines

  1. Pangki is a board-game for two players (named after the pieces they play
  2. with: O and *). On his turn, a player moves one piece to an adjacent field,
  3. up, down, left or right, NOT diagonally).
  4. The notation of the moves is like the chess-notation (e.g. a2b2 or d4d3).
  5. You can capture opponent's pieces by a move that results in two of your
  6. pieces being next to an opponent's piece while the remaining field in that
  7. row or column is empty.
  8. In the next example, two opponent's pieces are captured by one move (a2b2):
  9.  
  10. 4 * . * *      4 * . * *  It was also possible to capture only one piece
  11. 3 . * * .      3 . . * .  (by c2b2).
  12. 2 O . O *  ---->  2 . O O .  The game is lost by the player who has only one
  13. 1 O O O O      1 O O O O  piece left (because he can not capture his oppo-
  14.   a b c d        a b c d  nents pieces any more).
  15.  
  16. A player has also the possibility not to move; in that case he types PASS.
  17. However, if the same situation occurs 3 times (with the same player that
  18. has to move) the game is a draw (like in chess).
  19.  
  20.