home *** CD-ROM | disk | FTP | other *** search
/ PC Plus 31 / GAMES / CRIB6.DOC next >
Encoding:
Text File  |  1989-01-01  |  4.9 KB  |  127 lines

  1.                          Six Card Cribbage
  2.  
  3. The game divides  into 4 stages:
  4.          The deal
  5.          The discard
  6.          The play
  7.          The count up.
  8.  
  9. THE DEAL
  10.         Before the first hand in each game is dealt players cut for dealer,
  11.  the player drawing the lowest card deals. The deal then alternates
  12.  between players. Six cards are dealt to each player face down.
  13.  
  14. THE DISCARD
  15.         Each player evaluates the cards in his hand and discards two
  16. cards face down into another pile called the 'crib' or 'box'. The
  17. player who's deal it is will add the score of these cards to his score
  18. during the count up stage. After the discards have been made the top card
  19. of the pack is turned face up. If it is a Jack then the dealer scores
  20. '2 for his heels'.
  21.  
  22. THE PLAY
  23.         The turn up card is not included in the scoring in this stage of
  24. the game. In turn starting with the non-dealer, each player places a card
  25. on the table scoring if possible until the players either have no cards
  26. left to play or cannot table a card which will make the total pip count
  27. of the cards played less than or equal to 31. In this case the player who
  28. tabled the last card scores '1 for last' unless playing the last card
  29. makes the pip count exactly 31 in which case he scores '31 for 2'
  30. ( 2 points). The table is then cleared of cards and play starts again
  31. until both players have no cards left.
  32.  
  33. THE COUNT UP
  34.         The non-dealer places his cards on the table face up and scores
  35. his hand making use of the turn up card. Then the dealer scores his hand
  36. and then his crib.
  37.  
  38. WINNING THE GAME
  39.         The game is won by the first player to reach a score of 121 ( or
  40. more). This may occur at any point in the game and in a close game when
  41. each player only requires a few points to win who scores points in the
  42. play or who counts up his hand first is crucial.
  43.  
  44. SCORING
  45.         The challenge and fun of crib is in the scoring of the cards. A
  46. card may be counted more than once if it forms part of a different scoring
  47. combination of cards. Making the best use of the  cards dealt to you is
  48. where the skill lies.
  49.  
  50. PIP COUNT
  51.         Ace counts 1, 2 to 10 as they are, Jack, Queen and King 10.
  52.  
  53. FIFTEENS
  54.         If the pip count of two or more cards adds up to 15 then score
  55. 2 points ('fifteen 2').
  56. e.g. 5+Jack scores 2. 2+6+7 scores 2. 5+Jack+Queen scores 4 (two fifteens).
  57.  
  58. PAIRS
  59.         Two of a kind scores 2 (2 for a pair).
  60. e.g. 3 Hearts + 3 Clubs scores 2.
  61. Note  that 3 of a kind will give 3 different pairs and will score
  62. 3 x 2 = 6 points. 4 of a kind scores 12 points.
  63.  
  64. RUNS
  65.         A run is a sequence of 3 or more cards in ascending value and
  66. scores 1 point for each card in the run.
  67. e.g. 8 Hearts 9 Clubs 10 Spades Jack Clubs scores 4 points.
  68. Note that in the playing stage of the game the cards do not have to be
  69. tabled in ascending or descending order.
  70. e.g. 9 Clubs then 10 Spades then 8 hearts still scores 3.
  71.  
  72. FLUSH
  73.         If all the cards in the hand are of the same suit then 4 for a
  74. flush is scored. If the turn up card is of the same suit then the score
  75. is 5. Note that a flush in the crib must include the turn up card.
  76. A flush cannot be scored in the play stage of the game.
  77.  
  78. HIS KNOB
  79.         If a player holds the Jack which is of the same suit as the
  80. turn up card he scores '1 for his knob'.
  81.  
  82.  
  83.         Scoring may seem a bit complicated at first but play a few hands
  84. and observe how the score is counted up and it will become clear.
  85.  
  86. IMPLEMENTATION
  87.         The screen display is divided into the following areas:-
  88.  
  89.         A playing area for the card table.
  90.  
  91.         A score chart which shows how the score of each hand is made up
  92.         and keeps a tally of the total pip count of the cards on the table.
  93.  
  94.         A message area where directions for playing appear.
  95.  
  96.         An area at the bottom of the screen where help messages appear
  97.         when the F1 key is pressed.
  98.  
  99.         At the top of the  screen is a peg board. Pegs move along the
  100.         outside row of holes and up the centre to the winning hole.
  101.  
  102.         Function key F2 will display the computers hand, the turn up card
  103.         and the crib. This is provided instead of different levels of  play
  104.         and should be of help to beginners determined to win by fair or
  105.         foul means.
  106.  
  107.         Beeps may be toggled on and off with the F3 key.
  108.  
  109. CARD ENTRY
  110.         The programme will accept card entry from the keyboard or selection
  111. by using the mouse.
  112.  
  113.         To enter a card from the keyboard enter the number first A,2..9,T,
  114. J,Q,K then the suit H,D,C,S. If no card can be played enter 'GO'. The input
  115. is not case sensitive.
  116.  
  117.         To select a card by using the mouse, move the cursor to the desired
  118. card and press the right hand mouse button. Pressing the left hand button
  119. has the same effect as pressing the space bar on the keyboard.
  120.  
  121. Play and enjoy.
  122.  
  123. MRP 1988.
  124.  
  125.  
  126.  
  127.