diff --git a/html-src/rules/moojub.html b/html-src/rules/moojub.html new file mode 100644 index 00000000..dff805a3 --- /dev/null +++ b/html-src/rules/moojub.html @@ -0,0 +1,37 @@ +
+One-Deck game type. 1 deck. No redeals. + +
+Move all cards to foundations. + +
+Four cards are dealt to reserves from the talon at the start of the +game. Cards from the reserves may be moved to foundations. +
+The foundations in Moojub are unique in that there are four rows of +foundations, containing a number of different columns. If a foundation +has been started (at least one card in it), it is built up by suit, +turning the corner from king to ace as necessary. An empty foundation +can be started by playing a card to it, following these rules: +
+When there are no moves left, you can deal one card from the talon
+to each of the four reserve piles. The game is won if all cards have
+been moved to foundations (it doesn't matter which foundations are
+empty, and how many cards are in each).
diff --git a/pysollib/gamedb.py b/pysollib/gamedb.py
index 0e67f9a2..fa311f8d 100644
--- a/pysollib/gamedb.py
+++ b/pysollib/gamedb.py
@@ -397,7 +397,8 @@ class GI:
("Michael Keller", (592,)),
("Fred Lunde", (459,)),
("Albert Morehead and Geoffrey Mott-Smith", (25, 42, 48, 173, 282,
- 303, 362, 547, 738)),
+ 303, 362, 547, 738,
+ 845)),
("Toby Ord", (788,)),
("David Parlett", (64, 98, 294, 338, 654, 796, 812)),
("Randy Rasa", (187, 190, 191, 192,)),
@@ -485,7 +486,7 @@ class GI:
('fc-2.12', tuple(range(774, 811)) + (16681,) +
tuple(range(22217, 22219))),
('fc-2.14', tuple(range(811, 827))),
- ('fc-2.16', tuple(range(827, 845)))
+ ('fc-2.16', tuple(range(827, 846)))
)
# deprecated - the correct way is to or a GI.GT_XXX flag
diff --git a/pysollib/games/__init__.py b/pysollib/games/__init__.py
index 53b303d6..f9d2d120 100644
--- a/pysollib/games/__init__.py
+++ b/pysollib/games/__init__.py
@@ -61,6 +61,7 @@ from . import larasgame # noqa: F401
from . import matriarchy # noqa: F401
from . import montana # noqa: F401
from . import montecarlo # noqa: F401
+from . import moojub # noqa: F401
from . import napoleon # noqa: F401
from . import needle # noqa: F401
from . import numerica # noqa: F401
diff --git a/pysollib/games/moojub.py b/pysollib/games/moojub.py
new file mode 100644
index 00000000..4f581001
--- /dev/null
+++ b/pysollib/games/moojub.py
@@ -0,0 +1,112 @@
+#!/usr/bin/env python
+# -*- mode: python; coding: utf-8; -*-
+# ---------------------------------------------------------------------------
+#
+# Copyright (C) 1998-2003 Markus Franz Xaver Johannes Oberhumer
+# Copyright (C) 2003 Mt. Hood Playing Card Co.
+# Copyright (C) 2005-2009 Skomoroh
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see