diff --git a/html-src/rules/precedence.html b/html-src/rules/precedence.html new file mode 100644 index 00000000..affd58de --- /dev/null +++ b/html-src/rules/precedence.html @@ -0,0 +1,26 @@ +
+Two-Deck game type. 2 decks. 2 redeals. + +
+Move all the cards to the foundations. + +
+At the start of the game, one king is moved to the leftmost +of eight foundations. +
+Deal cards from the stock one at a time. Cards from the waste +pile may be moved to foundations, which are built down by rank, +wrapping down from ace to king as necessary. A card cannot be +placed in a foundation unless the foundation to the left of it +has cards in it. +
+The leftmost foundation starts with a king, and each foundation +starts with one rank lower than the one to the left of it. Therefore, +the foundations begin with K-Q-J-10-9-8-7-6 from left to right, and +are built to A-K-Q-J-10-9-8-7 respectively. +
+You can go through the talon three times. The game is won if +all cards are moved to the foundations. diff --git a/html-src/rules/precedencenoking.html b/html-src/rules/precedencenoking.html new file mode 100644 index 00000000..1100127c --- /dev/null +++ b/html-src/rules/precedencenoking.html @@ -0,0 +1,12 @@ +
+Two-Deck game type. 2 decks. 2 redeals. + +
+Move all the cards to the foundations. + +
+Like Precedence,
+but a king is not dealt to the foundation at the start.
diff --git a/pysollib/games/__init__.py b/pysollib/games/__init__.py
index be7ab71d..1eaba4c6 100644
--- a/pysollib/games/__init__.py
+++ b/pysollib/games/__init__.py
@@ -68,6 +68,7 @@ from . import parallels # noqa: F401
from . import pasdedeux # noqa: F401
from . import picturegallery # noqa: F401
from . import pileon # noqa: F401
+from . import precedence # noqa: F401
from . import pushpin # noqa: F401
from . import pyramid # noqa: F401
from . import royalcotillion # noqa: F401
diff --git a/pysollib/games/precedence.py b/pysollib/games/precedence.py
new file mode 100644
index 00000000..ac125cba
--- /dev/null
+++ b/pysollib/games/precedence.py
@@ -0,0 +1,104 @@
+#!/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