mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
Take away is a golf type game, and other organization fixes.
This commit is contained in:
parent
5b6496432c
commit
6d1b81d57b
3 changed files with 3 additions and 5 deletions
|
@ -18,7 +18,6 @@ builtins.n_ = lambda x: x
|
||||||
import pysollib.games # noqa: E402,F402,I100,I202
|
import pysollib.games # noqa: E402,F402,I100,I202
|
||||||
import pysollib.games.mahjongg # noqa: E402,F402
|
import pysollib.games.mahjongg # noqa: E402,F402
|
||||||
import pysollib.games.special # noqa: E402,F401,F402
|
import pysollib.games.special # noqa: E402,F401,F402
|
||||||
import pysollib.games.ultra # noqa: E402,F401,F402
|
|
||||||
|
|
||||||
try:
|
try:
|
||||||
os.mkdir('html')
|
os.mkdir('html')
|
||||||
|
|
|
@ -242,11 +242,11 @@ class TakeAway8(TakeAway):
|
||||||
|
|
||||||
# register the game
|
# register the game
|
||||||
registerGame(GameInfo(334, TakeAway, "Take Away",
|
registerGame(GameInfo(334, TakeAway, "Take Away",
|
||||||
GI.GT_1DECK_TYPE | GI.GT_OPEN, 1, 0, GI.SL_MOSTLY_SKILL,
|
GI.GT_GOLF | GI.GT_OPEN, 1, 0, GI.SL_MOSTLY_SKILL,
|
||||||
altnames=("Eliminator", "Wolfpack", "Strip")))
|
altnames=("Eliminator", "Wolfpack", "Strip")))
|
||||||
registerGame(GameInfo(335, FourStacks, "Four Stacks",
|
registerGame(GameInfo(335, FourStacks, "Four Stacks",
|
||||||
GI.GT_1DECK_TYPE | GI.GT_OPEN, 1, 0, GI.SL_MOSTLY_SKILL))
|
GI.GT_1DECK_TYPE | GI.GT_OPEN, 1, 0, GI.SL_MOSTLY_SKILL))
|
||||||
registerGame(GameInfo(654, Striptease, "Striptease",
|
registerGame(GameInfo(654, Striptease, "Striptease",
|
||||||
GI.GT_1DECK_TYPE, 1, 0, GI.SL_MOSTLY_SKILL))
|
GI.GT_GOLF, 1, 0, GI.SL_MOSTLY_SKILL))
|
||||||
registerGame(GameInfo(784, TakeAway8, "Take Away 8",
|
registerGame(GameInfo(784, TakeAway8, "Take Away 8",
|
||||||
GI.GT_1DECK_TYPE | GI.GT_OPEN, 1, 0, GI.SL_MOSTLY_SKILL))
|
GI.GT_GOLF | GI.GT_OPEN, 1, 0, GI.SL_MOSTLY_SKILL))
|
||||||
|
|
|
@ -10,7 +10,6 @@ import time
|
||||||
import pysollib.games
|
import pysollib.games
|
||||||
import pysollib.games.mahjongg # noqa: F401
|
import pysollib.games.mahjongg # noqa: F401
|
||||||
import pysollib.games.special
|
import pysollib.games.special
|
||||||
import pysollib.games.ultra # noqa: F401
|
|
||||||
from pysollib.gamedb import GAME_DB
|
from pysollib.gamedb import GAME_DB
|
||||||
from pysollib.gamedb import GI
|
from pysollib.gamedb import GI
|
||||||
from pysollib.mfxutil import latin1_normalize
|
from pysollib.mfxutil import latin1_normalize
|
||||||
|
|
Loading…
Add table
Reference in a new issue