diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..27417bc --- /dev/null +++ b/.gitignore @@ -0,0 +1,164 @@ +# ---> Python +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +share/python-wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.nox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +*.py,cover +.hypothesis/ +.pytest_cache/ +cover/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log +local_settings.py +db.sqlite3 +db.sqlite3-journal + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +.pybuilder/ +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# IPython +profile_default/ +ipython_config.py + +# pyenv +# For a library or package, you might want to ignore these files since the code is +# intended to run in multiple environments; otherwise, check them in: +# .python-version + +# pipenv +# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. +# However, in case of collaboration, if having platform-specific dependencies or dependencies +# having no cross-platform support, pipenv may install dependencies that don't work, or not +# install all needed dependencies. +#Pipfile.lock + +# poetry +# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. +# This is especially recommended for binary packages to ensure reproducibility, and is more +# commonly ignored for libraries. +# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control +#poetry.lock + +# pdm +# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control. +#pdm.lock +# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it +# in version control. +# https://pdm.fming.dev/#use-with-ide +.pdm.toml + +# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm +__pypackages__/ + +# Celery stuff +celerybeat-schedule +celerybeat.pid + +# SageMath parsed files +*.sage.py + +# Environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mkdocs documentation +/site + +# mypy +.mypy_cache/ +.dmypy.json +dmypy.json + +# Pyre type checker +.pyre/ + +# pytype static type analyzer +.pytype/ + +# Cython debug symbols +cython_debug/ + +# PyCharm +# JetBrains specific template is maintained in a separate JetBrains.gitignore that can +# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore +# and can be added to the global gitignore or merged into this file. For a more nuclear +# option (not recommended) you can uncomment the following to ignore the entire idea folder. +#.idea/ + +typings/* +output \ No newline at end of file diff --git a/icon/card.png b/img/icon/card.png similarity index 100% rename from icon/card.png rename to img/icon/card.png diff --git a/icon/chest.png b/img/icon/chest.png similarity index 100% rename from icon/chest.png rename to img/icon/chest.png diff --git a/icon/discard.png b/img/icon/discard.png similarity index 100% rename from icon/discard.png rename to img/icon/discard.png diff --git a/icon/fire.png b/img/icon/fire.png similarity index 100% rename from icon/fire.png rename to img/icon/fire.png diff --git a/icon/hand.png b/img/icon/hand.png similarity index 100% rename from icon/hand.png rename to img/icon/hand.png diff --git a/icon/lock.png b/img/icon/lock.png similarity index 100% rename from icon/lock.png rename to img/icon/lock.png diff --git a/icon/shrug.png b/img/icon/shrug.png similarity index 100% rename from icon/shrug.png rename to img/icon/shrug.png diff --git a/icon/skull.png b/img/icon/skull.png similarity index 100% rename from icon/skull.png rename to img/icon/skull.png diff --git a/icon/trashcan.png b/img/icon/trashcan.png similarity index 100% rename from icon/trashcan.png rename to img/icon/trashcan.png diff --git a/icon/zombie_hand.png b/img/icon/zombie_hand.png similarity index 100% rename from icon/zombie_hand.png rename to img/icon/zombie_hand.png diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..c4cb883 --- /dev/null +++ b/requirements.txt @@ -0,0 +1 @@ +drawsvg==2.4.0 \ No newline at end of file diff --git a/src/generate_tokens_mvp.py b/src/generate_tokens_mvp.py new file mode 100644 index 0000000..49e1011 --- /dev/null +++ b/src/generate_tokens_mvp.py @@ -0,0 +1,44 @@ +import drawsvg as dw +import json +import os + +from typing import cast +from pathlib import Path + +from drawsvg.drawing import Drawing + +tokens: dict[str, list[str]] = {} + +with open("tokens.json", encoding="utf-8") as f: + tokens = json.load(f) + +for token_data in tokens: + + # Create a new SVG drawing + output_dir = "output/heron" + os.makedirs(output_dir, exist_ok=True) + d = Drawing( + 100, + 50, + id_prefix=token_data + "_", + **{ + "class": "card", + "xmlns:v-bind": "https://vuejs.org/guide/essentials/class-and-style.html", + "xmlns:v-on": "https://vuejs.org/guide/essentials/event-handling.html", + }, + ) + # d.append(shadowFilter) + + for index, img in enumerate(tokens[token_data]): + d.append( + dw.Image( + x=index * 50, + y=0, + width=50, + height=50, + path=f"../../img/icon/{img}", + ) + ) + + # Save the SVG file + d.save_svg(f"output/heron/{token_data}.svg") diff --git a/tokens.json b/tokens.json new file mode 100644 index 0000000..1c8d15b --- /dev/null +++ b/tokens.json @@ -0,0 +1,6 @@ +{ + "prepare":[], + "stun":[], + "sacrifice":["card.png","trashcan.png"], + "discard":["discard.png"] +} \ No newline at end of file