1<?xml version="1.0" encoding="utf-8" ?>
2<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
3                   "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
4]>
5<sect1 id="Bakers_Game"><!--<sect1info>
6	  <copyright>
7	   <year>2001</year>
8	   <holder>Rosanna Yuen</holder>
9	  </copyright>
10	  <author>
11	   <firstname>Rosanna</firstname>
12	   <surname>Yuen</surname>
13	  </author>
14	  <address><email>zana@webwynk.net</email></address>
15	</sect1info>-->
16
17	<title>Bakers Game</title>
18
19  <para>Written by Rosanna Yuen</para>
20
21          <sect2><title>Setup</title>
22
23
24  <informaltable>
25    <tgroup cols="2">
26      <tbody>
27	<row>
28	  <entry>Type of Deck</entry>
29	  <entry>Standard Deck</entry>
30	</row>
31	<row>
32	  <entry>Foundation</entry>
33	  <entry>
34	  	Four piles top right.  Built from Ace to King in suit.
35	  </entry>
36	</row>
37	<row>
38	  <entry>Reserves</entry>
39	  <entry>
40	  	Four piles at top left.  Each reserve can only
41	  	hold one card.
42	  </entry>
43	</row>
44	<row>
45	  <entry>Tableau</entry>
46	  <entry>
47	  	Eight piles underneath the Foundation and Reserves.
48	  	The cards are dealt face up on to the Tableau, with seven
49	  	cards each in the first four slots and six cards each in the
50	  	last four slots.
51	  </entry>
52	</row>
53      </tbody>
54    </tgroup>
55  </informaltable>
56
57          </sect2>
58        <sect2><title>Goal</title>
59
60  <para>
61    Move all cards to the Foundation piles.
62  </para>
63
64          </sect2>
65        <sect2><title>Rules</title>
66
67  <para>
68    The Tableau is built down by suit.  Only the top card or build of
69    cards can be moved.  A build of cards can only be moved if the
70    number of cards in the build is equal or less than one more than the
71    number of Reserve slots free.  Empty spaces in the Tableau can only
72    be filled with a King or a build starting with a King.
73  </para>
74  <para>
75    Foundations are built up by suit from Ace to King.  Although cards
76    in the Foundations are technically still in play, there really is no
77    need as playing these cards are not in any way helpful.
78  </para>
79  <para>
80    Any top card in the Tableau can be placed in an empty Reserve slot.
81    These cards are available for play back into the Tableau or on to a
82    Foundation pile.
83  </para>
84
85          </sect2>
86        <sect2><title>Scoring</title>
87
88  <para>
89    Each card placed on to the Foundation piles scores one point.
90  </para>
91  <para>
92    Maximum possible score:  52
93  </para>
94
95          </sect2>
96        <sect2><title>Strategy</title>
97
98  <para>
99    Move any card you can on to the Foundations as soon as possible.
100    Leaving them around can only hinder your movement.
101  </para>
102        </sect2>
103</sect1>
104