40 lines
914 B
Python
40 lines
914 B
Python
import sys
|
|
import os
|
|
sys.path.append(f'{os.getcwd()}/src')
|
|
|
|
import domdiv.main
|
|
|
|
HELP = False
|
|
|
|
if HELP:
|
|
base_args = ["--help"]
|
|
else:
|
|
base_args = [
|
|
"--papersize", "A4",
|
|
"--language", "de",
|
|
"--size", "9.5x6.25",
|
|
"--types",
|
|
"--tab-side", "left-alternate",
|
|
"--tabwidth", "4.0",
|
|
"--tab-name-align", "center",
|
|
"--order", "cost",
|
|
"--expansion-dividers",
|
|
"--centre-expansion-dividers",
|
|
"--expansion-reset-tabs",
|
|
"--expansions", "base",
|
|
#"alchemy", "cornucopia", "dark ages", "dominion2ndEdition", "empires",
|
|
"prosperity", "promo",
|
|
|
|
"--no-trash",
|
|
"--group-kingdom",
|
|
"--group-special",
|
|
|
|
"--curse10",
|
|
"--start-decks",
|
|
"--victory8_4split",
|
|
"--only-promo", "Prince", "Sauna", "Courtier"
|
|
]
|
|
opts = domdiv.main.parse_opts(base_args)
|
|
opts = domdiv.main.clean_opts(opts)
|
|
domdiv.main.generate(opts)
|