diff --git a/html-src/rules/clearthedungeon.html b/html-src/rules/clearthedungeon.html new file mode 100644 index 00000000..248905bf --- /dev/null +++ b/html-src/rules/clearthedungeon.html @@ -0,0 +1,44 @@ +
+One-Deck game type. 1 joker deck. No redeal. + +
+Clear the dungeon by removing all the "monster cards" (face cards) +from the tableau. + +
+The face cards are dealt in four rows of three cards each, with only the top +card of each pile face-up. These represent the dungeon monsters. The remaining +cards are set aside in the talon, called the "power deck". +
+Cards are dealt from the talon three at a time. These cards can be moved to +the monsters on the tableau, or moved to a single reserve pile. The top card +of this reserve pile can also be moved to the tableau. Once all three cards +have been moved to either the tableau or the reserve, three additional cards +are dealt. +
+To slay a monster and remove it from the tableau, three additional cards must +be placed on it. +
+Jokers are wild. They are treated as having a value of 10, and can be of any +suit. +
+Once all three cards have been played correctly, the monster is slain, and all +four cards are immediately removed (to the foundation). Cards in the tableau +cannot be moved or removed otherwise. +
+The game is won if you're able to discard all the monster cards in the tableau. + +
+Clear the Dungeon was invented by Mark S. Ball. More details can be found
+on his website.
diff --git a/pysollib/gamedb.py b/pysollib/gamedb.py
index 9073bb9f..ab6da867 100644
--- a/pysollib/gamedb.py
+++ b/pysollib/gamedb.py
@@ -451,6 +451,7 @@ class GI:
GAMES_BY_INVENTORS = (
("Paul Alfille", (8,)),
("C.L. Baker", (45,)),
+ ("Mark S. Ball", (909,)),
("David Bernazzani", (314, 830,)),
("Gordon Bower", (763, 783, 852,)),
("Art Cabral", (9,)),
@@ -565,7 +566,7 @@ class GI:
('fc-2.20', tuple(range(855, 897))),
('fc-2.21', tuple(range(897, 900)) + tuple(range(11014, 11017)) +
tuple(range(13160, 13163)) + (16682,)),
- ('dev', tuple(range(906, 909)) + tuple(range(11017, 11020))),
+ ('dev', tuple(range(906, 910)) + tuple(range(11017, 11020))),
)
# 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 59d01490..ae65163a 100644
--- a/pysollib/games/__init__.py
+++ b/pysollib/games/__init__.py
@@ -36,6 +36,7 @@ from . import calculation # noqa: F401
from . import camelot # noqa: F401
from . import canfield # noqa: F401
from . import capricieuse # noqa: F401
+from . import clearthedungeon # noqa: F401
from . import crossword # noqa: F401
from . import curdsandwhey # noqa: F401
from . import daddylonglegs # noqa: F401
diff --git a/pysollib/games/clearthedungeon.py b/pysollib/games/clearthedungeon.py
new file mode 100644
index 00000000..08b944a0
--- /dev/null
+++ b/pysollib/games/clearthedungeon.py
@@ -0,0 +1,164 @@
+#!/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