diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3e221f8 --- /dev/null +++ b/.gitignore @@ -0,0 +1,219 @@ +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[codz] +*$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 + +# UV +# Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control. +# This is especially recommended for binary packages to ensure reproducibility, and is more +# commonly ignored for libraries. +# uv.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 +# poetry.toml + +# pdm +# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control. +# pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python. +# https://pdm-project.org/en/latest/usage/project/#working-with-version-control +# pdm.lock +# pdm.toml +.pdm-python +.pdm-build/ + +# pixi +# Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control. +# pixi.lock +# Pixi creates a virtual environment in the .pixi directory, just like venv module creates one +# in the .venv directory. It is recommended not to include this directory in version control. +.pixi + +# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm +__pypackages__/ + +# Celery stuff +celerybeat-schedule +celerybeat.pid + +# Redis +*.rdb +*.aof +*.pid + +# RabbitMQ +mnesia/ +rabbitmq/ +rabbitmq-data/ + +# ActiveMQ +activemq-data/ + +# SageMath parsed files +*.sage.py + +# Environments +.env +.envrc +.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/ + +# Abstra +# Abstra is an AI-powered process automation framework. +# Ignore directories containing user credentials, local state, and settings. +# Learn more at https://abstra.io/docs +.abstra/ + +# Visual Studio Code +# Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore +# that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore +# and can be added to the global gitignore or merged into this file. However, if you prefer, +# you could uncomment the following to ignore the entire vscode folder +# .vscode/ + +# Ruff stuff: +.ruff_cache/ + +# PyPI configuration file +.pypirc + +# Marimo +marimo/_static/ +marimo/_lsp/ +__marimo__/ + +# Streamlit +.streamlit/secrets.toml + +# Data +data/ \ No newline at end of file diff --git a/data/images/background.png b/data/images/background.png deleted file mode 100644 index f31f0a9..0000000 Binary files a/data/images/background.png and /dev/null differ diff --git a/data/images/clouds/cloud_1.png b/data/images/clouds/cloud_1.png deleted file mode 100644 index 5e0af72..0000000 Binary files a/data/images/clouds/cloud_1.png and /dev/null differ diff --git a/data/images/clouds/cloud_2.png b/data/images/clouds/cloud_2.png deleted file mode 100644 index 6d86f79..0000000 Binary files a/data/images/clouds/cloud_2.png and /dev/null differ diff --git a/data/images/entities/enemy/idle/00.png b/data/images/entities/enemy/idle/00.png deleted file mode 100644 index 26b3afc..0000000 Binary files a/data/images/entities/enemy/idle/00.png and /dev/null differ diff --git a/data/images/entities/enemy/idle/01.png b/data/images/entities/enemy/idle/01.png deleted file mode 100644 index 26b3afc..0000000 Binary files a/data/images/entities/enemy/idle/01.png and /dev/null differ diff --git a/data/images/entities/enemy/idle/02.png b/data/images/entities/enemy/idle/02.png deleted file mode 100644 index 4395a2b..0000000 Binary files a/data/images/entities/enemy/idle/02.png and /dev/null differ diff --git a/data/images/entities/enemy/idle/03.png b/data/images/entities/enemy/idle/03.png deleted file mode 100644 index 26b3afc..0000000 Binary files a/data/images/entities/enemy/idle/03.png and /dev/null differ diff --git a/data/images/entities/enemy/idle/04.png b/data/images/entities/enemy/idle/04.png deleted file mode 100644 index 26b3afc..0000000 Binary files a/data/images/entities/enemy/idle/04.png and /dev/null differ diff --git a/data/images/entities/enemy/idle/05.png b/data/images/entities/enemy/idle/05.png deleted file mode 100644 index 5f88abb..0000000 Binary files a/data/images/entities/enemy/idle/05.png and /dev/null differ diff --git a/data/images/entities/enemy/idle/06.png b/data/images/entities/enemy/idle/06.png deleted file mode 100644 index e3d9967..0000000 Binary files a/data/images/entities/enemy/idle/06.png and /dev/null differ diff --git a/data/images/entities/enemy/idle/07.png b/data/images/entities/enemy/idle/07.png deleted file mode 100644 index 26b3afc..0000000 Binary files a/data/images/entities/enemy/idle/07.png and /dev/null differ diff --git a/data/images/entities/enemy/idle/08.png b/data/images/entities/enemy/idle/08.png deleted file mode 100644 index 26b3afc..0000000 Binary files a/data/images/entities/enemy/idle/08.png and /dev/null differ diff --git a/data/images/entities/enemy/idle/09.png b/data/images/entities/enemy/idle/09.png deleted file mode 100644 index 26b3afc..0000000 Binary files a/data/images/entities/enemy/idle/09.png and /dev/null differ diff --git a/data/images/entities/enemy/idle/10.png b/data/images/entities/enemy/idle/10.png deleted file mode 100644 index 26b3afc..0000000 Binary files a/data/images/entities/enemy/idle/10.png and /dev/null differ diff --git a/data/images/entities/enemy/idle/11.png b/data/images/entities/enemy/idle/11.png deleted file mode 100644 index 26b3afc..0000000 Binary files a/data/images/entities/enemy/idle/11.png and /dev/null differ diff --git a/data/images/entities/enemy/idle/12.png b/data/images/entities/enemy/idle/12.png deleted file mode 100644 index 5f88abb..0000000 Binary files a/data/images/entities/enemy/idle/12.png and /dev/null differ diff --git a/data/images/entities/enemy/idle/13.png b/data/images/entities/enemy/idle/13.png deleted file mode 100644 index e3d9967..0000000 Binary files a/data/images/entities/enemy/idle/13.png and /dev/null differ diff --git a/data/images/entities/enemy/idle/14.png b/data/images/entities/enemy/idle/14.png deleted file mode 100644 index 26b3afc..0000000 Binary files a/data/images/entities/enemy/idle/14.png and /dev/null differ diff --git a/data/images/entities/enemy/idle/15.png b/data/images/entities/enemy/idle/15.png deleted file mode 100644 index 26b3afc..0000000 Binary files a/data/images/entities/enemy/idle/15.png and /dev/null differ diff --git a/data/images/entities/enemy/run/0.png b/data/images/entities/enemy/run/0.png deleted file mode 100644 index 99b54bb..0000000 Binary files a/data/images/entities/enemy/run/0.png and /dev/null differ diff --git a/data/images/entities/enemy/run/1.png b/data/images/entities/enemy/run/1.png deleted file mode 100644 index 47a8ca0..0000000 Binary files a/data/images/entities/enemy/run/1.png and /dev/null differ diff --git a/data/images/entities/enemy/run/2.png b/data/images/entities/enemy/run/2.png deleted file mode 100644 index 62369b0..0000000 Binary files a/data/images/entities/enemy/run/2.png and /dev/null differ diff --git a/data/images/entities/enemy/run/3.png b/data/images/entities/enemy/run/3.png deleted file mode 100644 index 74f84ea..0000000 Binary files a/data/images/entities/enemy/run/3.png and /dev/null differ diff --git a/data/images/entities/enemy/run/4.png b/data/images/entities/enemy/run/4.png deleted file mode 100644 index 8786a01..0000000 Binary files a/data/images/entities/enemy/run/4.png and /dev/null differ diff --git a/data/images/entities/enemy/run/5.png b/data/images/entities/enemy/run/5.png deleted file mode 100644 index c47d31d..0000000 Binary files a/data/images/entities/enemy/run/5.png and /dev/null differ diff --git a/data/images/entities/enemy/run/6.png b/data/images/entities/enemy/run/6.png deleted file mode 100644 index ce4f1ad..0000000 Binary files a/data/images/entities/enemy/run/6.png and /dev/null differ diff --git a/data/images/entities/enemy/run/7.png b/data/images/entities/enemy/run/7.png deleted file mode 100644 index 49249de..0000000 Binary files a/data/images/entities/enemy/run/7.png and /dev/null differ diff --git a/data/images/entities/player.png b/data/images/entities/player.png deleted file mode 100644 index c1cde8f..0000000 Binary files a/data/images/entities/player.png and /dev/null differ diff --git a/data/images/entities/player/idle/00.png b/data/images/entities/player/idle/00.png deleted file mode 100644 index f18fb1d..0000000 Binary files a/data/images/entities/player/idle/00.png and /dev/null differ diff --git a/data/images/entities/player/idle/01.png b/data/images/entities/player/idle/01.png deleted file mode 100644 index e90432a..0000000 Binary files a/data/images/entities/player/idle/01.png and /dev/null differ diff --git a/data/images/entities/player/idle/02.png b/data/images/entities/player/idle/02.png deleted file mode 100644 index e4348bc..0000000 Binary files a/data/images/entities/player/idle/02.png and /dev/null differ diff --git a/data/images/entities/player/idle/03.png b/data/images/entities/player/idle/03.png deleted file mode 100644 index f18fb1d..0000000 Binary files a/data/images/entities/player/idle/03.png and /dev/null differ diff --git a/data/images/entities/player/idle/04.png b/data/images/entities/player/idle/04.png deleted file mode 100644 index ebb6fcf..0000000 Binary files a/data/images/entities/player/idle/04.png and /dev/null differ diff --git a/data/images/entities/player/idle/05.png b/data/images/entities/player/idle/05.png deleted file mode 100644 index f18fb1d..0000000 Binary files a/data/images/entities/player/idle/05.png and /dev/null differ diff --git a/data/images/entities/player/idle/06.png b/data/images/entities/player/idle/06.png deleted file mode 100644 index 5e3a006..0000000 Binary files a/data/images/entities/player/idle/06.png and /dev/null differ diff --git a/data/images/entities/player/idle/07.png b/data/images/entities/player/idle/07.png deleted file mode 100644 index e90432a..0000000 Binary files a/data/images/entities/player/idle/07.png and /dev/null differ diff --git a/data/images/entities/player/idle/08.png b/data/images/entities/player/idle/08.png deleted file mode 100644 index 6d4b75a..0000000 Binary files a/data/images/entities/player/idle/08.png and /dev/null differ diff --git a/data/images/entities/player/idle/09.png b/data/images/entities/player/idle/09.png deleted file mode 100644 index 9a15060..0000000 Binary files a/data/images/entities/player/idle/09.png and /dev/null differ diff --git a/data/images/entities/player/idle/10.png b/data/images/entities/player/idle/10.png deleted file mode 100644 index ebb6fcf..0000000 Binary files a/data/images/entities/player/idle/10.png and /dev/null differ diff --git a/data/images/entities/player/idle/11.png b/data/images/entities/player/idle/11.png deleted file mode 100644 index f18fb1d..0000000 Binary files a/data/images/entities/player/idle/11.png and /dev/null differ diff --git a/data/images/entities/player/idle/12.png b/data/images/entities/player/idle/12.png deleted file mode 100644 index e90432a..0000000 Binary files a/data/images/entities/player/idle/12.png and /dev/null differ diff --git a/data/images/entities/player/idle/13.png b/data/images/entities/player/idle/13.png deleted file mode 100644 index 5e3a006..0000000 Binary files a/data/images/entities/player/idle/13.png and /dev/null differ diff --git a/data/images/entities/player/idle/14.png b/data/images/entities/player/idle/14.png deleted file mode 100644 index f18fb1d..0000000 Binary files a/data/images/entities/player/idle/14.png and /dev/null differ diff --git a/data/images/entities/player/idle/15.png b/data/images/entities/player/idle/15.png deleted file mode 100644 index ebb6fcf..0000000 Binary files a/data/images/entities/player/idle/15.png and /dev/null differ diff --git a/data/images/entities/player/idle/16.png b/data/images/entities/player/idle/16.png deleted file mode 100644 index f18fb1d..0000000 Binary files a/data/images/entities/player/idle/16.png and /dev/null differ diff --git a/data/images/entities/player/idle/17.png b/data/images/entities/player/idle/17.png deleted file mode 100644 index 5e3a006..0000000 Binary files a/data/images/entities/player/idle/17.png and /dev/null differ diff --git a/data/images/entities/player/idle/18.png b/data/images/entities/player/idle/18.png deleted file mode 100644 index e90432a..0000000 Binary files a/data/images/entities/player/idle/18.png and /dev/null differ diff --git a/data/images/entities/player/idle/19.png b/data/images/entities/player/idle/19.png deleted file mode 100644 index 6d4b75a..0000000 Binary files a/data/images/entities/player/idle/19.png and /dev/null differ diff --git a/data/images/entities/player/idle/20.png b/data/images/entities/player/idle/20.png deleted file mode 100644 index 9a15060..0000000 Binary files a/data/images/entities/player/idle/20.png and /dev/null differ diff --git a/data/images/entities/player/idle/21.png b/data/images/entities/player/idle/21.png deleted file mode 100644 index ebb6fcf..0000000 Binary files a/data/images/entities/player/idle/21.png and /dev/null differ diff --git a/data/images/entities/player/jump/0.png b/data/images/entities/player/jump/0.png deleted file mode 100644 index 5013f9b..0000000 Binary files a/data/images/entities/player/jump/0.png and /dev/null differ diff --git a/data/images/entities/player/run/0.png b/data/images/entities/player/run/0.png deleted file mode 100644 index a47a3ff..0000000 Binary files a/data/images/entities/player/run/0.png and /dev/null differ diff --git a/data/images/entities/player/run/1.png b/data/images/entities/player/run/1.png deleted file mode 100644 index 08e443b..0000000 Binary files a/data/images/entities/player/run/1.png and /dev/null differ diff --git a/data/images/entities/player/run/2.png b/data/images/entities/player/run/2.png deleted file mode 100644 index ed931bb..0000000 Binary files a/data/images/entities/player/run/2.png and /dev/null differ diff --git a/data/images/entities/player/run/3.png b/data/images/entities/player/run/3.png deleted file mode 100644 index 30b1a7c..0000000 Binary files a/data/images/entities/player/run/3.png and /dev/null differ diff --git a/data/images/entities/player/run/4.png b/data/images/entities/player/run/4.png deleted file mode 100644 index d27232d..0000000 Binary files a/data/images/entities/player/run/4.png and /dev/null differ diff --git a/data/images/entities/player/run/5.png b/data/images/entities/player/run/5.png deleted file mode 100644 index ac85b81..0000000 Binary files a/data/images/entities/player/run/5.png and /dev/null differ diff --git a/data/images/entities/player/run/6.png b/data/images/entities/player/run/6.png deleted file mode 100644 index 1a97f30..0000000 Binary files a/data/images/entities/player/run/6.png and /dev/null differ diff --git a/data/images/entities/player/run/7.png b/data/images/entities/player/run/7.png deleted file mode 100644 index 92fde47..0000000 Binary files a/data/images/entities/player/run/7.png and /dev/null differ diff --git a/data/images/entities/player/slide/0.png b/data/images/entities/player/slide/0.png deleted file mode 100644 index 20f4287..0000000 Binary files a/data/images/entities/player/slide/0.png and /dev/null differ diff --git a/data/images/entities/player/wall_slide/0.png b/data/images/entities/player/wall_slide/0.png deleted file mode 100644 index a9ec0c5..0000000 Binary files a/data/images/entities/player/wall_slide/0.png and /dev/null differ diff --git a/data/images/gun.png b/data/images/gun.png deleted file mode 100644 index 5365bbc..0000000 Binary files a/data/images/gun.png and /dev/null differ diff --git a/data/images/particles/leaf/00.png b/data/images/particles/leaf/00.png deleted file mode 100644 index 3f83440..0000000 Binary files a/data/images/particles/leaf/00.png and /dev/null differ diff --git a/data/images/particles/leaf/01.png b/data/images/particles/leaf/01.png deleted file mode 100644 index 91c4064..0000000 Binary files a/data/images/particles/leaf/01.png and /dev/null differ diff --git a/data/images/particles/leaf/02.png b/data/images/particles/leaf/02.png deleted file mode 100644 index 2d75af4..0000000 Binary files a/data/images/particles/leaf/02.png and /dev/null differ diff --git a/data/images/particles/leaf/03.png b/data/images/particles/leaf/03.png deleted file mode 100644 index f8ac4e8..0000000 Binary files a/data/images/particles/leaf/03.png and /dev/null differ diff --git a/data/images/particles/leaf/04.png b/data/images/particles/leaf/04.png deleted file mode 100644 index 0de7076..0000000 Binary files a/data/images/particles/leaf/04.png and /dev/null differ diff --git a/data/images/particles/leaf/05.png b/data/images/particles/leaf/05.png deleted file mode 100644 index 16bf760..0000000 Binary files a/data/images/particles/leaf/05.png and /dev/null differ diff --git a/data/images/particles/leaf/06.png b/data/images/particles/leaf/06.png deleted file mode 100644 index 9087337..0000000 Binary files a/data/images/particles/leaf/06.png and /dev/null differ diff --git a/data/images/particles/leaf/07.png b/data/images/particles/leaf/07.png deleted file mode 100644 index 62d726c..0000000 Binary files a/data/images/particles/leaf/07.png and /dev/null differ diff --git a/data/images/particles/leaf/08.png b/data/images/particles/leaf/08.png deleted file mode 100644 index 36b4f20..0000000 Binary files a/data/images/particles/leaf/08.png and /dev/null differ diff --git a/data/images/particles/leaf/09.png b/data/images/particles/leaf/09.png deleted file mode 100644 index 20ba32b..0000000 Binary files a/data/images/particles/leaf/09.png and /dev/null differ diff --git a/data/images/particles/leaf/10.png b/data/images/particles/leaf/10.png deleted file mode 100644 index edb3e91..0000000 Binary files a/data/images/particles/leaf/10.png and /dev/null differ diff --git a/data/images/particles/leaf/11.png b/data/images/particles/leaf/11.png deleted file mode 100644 index fa48b28..0000000 Binary files a/data/images/particles/leaf/11.png and /dev/null differ diff --git a/data/images/particles/leaf/12.png b/data/images/particles/leaf/12.png deleted file mode 100644 index a7168cc..0000000 Binary files a/data/images/particles/leaf/12.png and /dev/null differ diff --git a/data/images/particles/leaf/13.png b/data/images/particles/leaf/13.png deleted file mode 100644 index f6a3fb4..0000000 Binary files a/data/images/particles/leaf/13.png and /dev/null differ diff --git a/data/images/particles/leaf/14.png b/data/images/particles/leaf/14.png deleted file mode 100644 index f6a3fb4..0000000 Binary files a/data/images/particles/leaf/14.png and /dev/null differ diff --git a/data/images/particles/leaf/15.png b/data/images/particles/leaf/15.png deleted file mode 100644 index f6a3fb4..0000000 Binary files a/data/images/particles/leaf/15.png and /dev/null differ diff --git a/data/images/particles/leaf/16.png b/data/images/particles/leaf/16.png deleted file mode 100644 index f6a3fb4..0000000 Binary files a/data/images/particles/leaf/16.png and /dev/null differ diff --git a/data/images/particles/leaf/17.png b/data/images/particles/leaf/17.png deleted file mode 100644 index f6a3fb4..0000000 Binary files a/data/images/particles/leaf/17.png and /dev/null differ diff --git a/data/images/particles/particle/0.png b/data/images/particles/particle/0.png deleted file mode 100644 index f07f9e0..0000000 Binary files a/data/images/particles/particle/0.png and /dev/null differ diff --git a/data/images/particles/particle/1.png b/data/images/particles/particle/1.png deleted file mode 100644 index 4dee623..0000000 Binary files a/data/images/particles/particle/1.png and /dev/null differ diff --git a/data/images/particles/particle/2.png b/data/images/particles/particle/2.png deleted file mode 100644 index 20b6a00..0000000 Binary files a/data/images/particles/particle/2.png and /dev/null differ diff --git a/data/images/particles/particle/3.png b/data/images/particles/particle/3.png deleted file mode 100644 index b14a0f7..0000000 Binary files a/data/images/particles/particle/3.png and /dev/null differ diff --git a/data/images/projectile.png b/data/images/projectile.png deleted file mode 100644 index b49149a..0000000 Binary files a/data/images/projectile.png and /dev/null differ diff --git a/data/images/tiles/decor/0.png b/data/images/tiles/decor/0.png deleted file mode 100644 index d42df5a..0000000 Binary files a/data/images/tiles/decor/0.png and /dev/null differ diff --git a/data/images/tiles/decor/1.png b/data/images/tiles/decor/1.png deleted file mode 100644 index 9adb0d8..0000000 Binary files a/data/images/tiles/decor/1.png and /dev/null differ diff --git a/data/images/tiles/decor/2.png b/data/images/tiles/decor/2.png deleted file mode 100644 index d325cf4..0000000 Binary files a/data/images/tiles/decor/2.png and /dev/null differ diff --git a/data/images/tiles/decor/3.png b/data/images/tiles/decor/3.png deleted file mode 100644 index da11059..0000000 Binary files a/data/images/tiles/decor/3.png and /dev/null differ diff --git a/data/images/tiles/grass/0.png b/data/images/tiles/grass/0.png deleted file mode 100644 index 3713f0b..0000000 Binary files a/data/images/tiles/grass/0.png and /dev/null differ diff --git a/data/images/tiles/grass/1.png b/data/images/tiles/grass/1.png deleted file mode 100644 index b19b5ca..0000000 Binary files a/data/images/tiles/grass/1.png and /dev/null differ diff --git a/data/images/tiles/grass/2.png b/data/images/tiles/grass/2.png deleted file mode 100644 index 78cdab8..0000000 Binary files a/data/images/tiles/grass/2.png and /dev/null differ diff --git a/data/images/tiles/grass/3.png b/data/images/tiles/grass/3.png deleted file mode 100644 index f145bb5..0000000 Binary files a/data/images/tiles/grass/3.png and /dev/null differ diff --git a/data/images/tiles/grass/4.png b/data/images/tiles/grass/4.png deleted file mode 100644 index bd45f41..0000000 Binary files a/data/images/tiles/grass/4.png and /dev/null differ diff --git a/data/images/tiles/grass/5.png b/data/images/tiles/grass/5.png deleted file mode 100644 index 586d9c0..0000000 Binary files a/data/images/tiles/grass/5.png and /dev/null differ diff --git a/data/images/tiles/grass/6.png b/data/images/tiles/grass/6.png deleted file mode 100644 index 43ba3ee..0000000 Binary files a/data/images/tiles/grass/6.png and /dev/null differ diff --git a/data/images/tiles/grass/7.png b/data/images/tiles/grass/7.png deleted file mode 100644 index c648b30..0000000 Binary files a/data/images/tiles/grass/7.png and /dev/null differ diff --git a/data/images/tiles/grass/8.png b/data/images/tiles/grass/8.png deleted file mode 100644 index 586d9c0..0000000 Binary files a/data/images/tiles/grass/8.png and /dev/null differ diff --git a/data/images/tiles/large_decor/0.png b/data/images/tiles/large_decor/0.png deleted file mode 100644 index e3aa1f4..0000000 Binary files a/data/images/tiles/large_decor/0.png and /dev/null differ diff --git a/data/images/tiles/large_decor/1.png b/data/images/tiles/large_decor/1.png deleted file mode 100644 index 9c1b19c..0000000 Binary files a/data/images/tiles/large_decor/1.png and /dev/null differ diff --git a/data/images/tiles/large_decor/2.png b/data/images/tiles/large_decor/2.png deleted file mode 100644 index 9516535..0000000 Binary files a/data/images/tiles/large_decor/2.png and /dev/null differ diff --git a/data/images/tiles/spawners/0.png b/data/images/tiles/spawners/0.png deleted file mode 100644 index 9d4b9e2..0000000 Binary files a/data/images/tiles/spawners/0.png and /dev/null differ diff --git a/data/images/tiles/spawners/1.png b/data/images/tiles/spawners/1.png deleted file mode 100644 index bcda7a8..0000000 Binary files a/data/images/tiles/spawners/1.png and /dev/null differ diff --git a/data/images/tiles/stone/0.png b/data/images/tiles/stone/0.png deleted file mode 100644 index 10b426f..0000000 Binary files a/data/images/tiles/stone/0.png and /dev/null differ diff --git a/data/images/tiles/stone/1.png b/data/images/tiles/stone/1.png deleted file mode 100644 index ecc86bd..0000000 Binary files a/data/images/tiles/stone/1.png and /dev/null differ diff --git a/data/images/tiles/stone/2.png b/data/images/tiles/stone/2.png deleted file mode 100644 index 78ec73b..0000000 Binary files a/data/images/tiles/stone/2.png and /dev/null differ diff --git a/data/images/tiles/stone/3.png b/data/images/tiles/stone/3.png deleted file mode 100644 index 78239cb..0000000 Binary files a/data/images/tiles/stone/3.png and /dev/null differ diff --git a/data/images/tiles/stone/4.png b/data/images/tiles/stone/4.png deleted file mode 100644 index 9068b2e..0000000 Binary files a/data/images/tiles/stone/4.png and /dev/null differ diff --git a/data/images/tiles/stone/5.png b/data/images/tiles/stone/5.png deleted file mode 100644 index 736d6ce..0000000 Binary files a/data/images/tiles/stone/5.png and /dev/null differ diff --git a/data/images/tiles/stone/6.png b/data/images/tiles/stone/6.png deleted file mode 100644 index e4ec6b9..0000000 Binary files a/data/images/tiles/stone/6.png and /dev/null differ diff --git a/data/images/tiles/stone/7.png b/data/images/tiles/stone/7.png deleted file mode 100644 index 7380583..0000000 Binary files a/data/images/tiles/stone/7.png and /dev/null differ diff --git a/data/images/tiles/stone/8.png b/data/images/tiles/stone/8.png deleted file mode 100644 index 736d6ce..0000000 Binary files a/data/images/tiles/stone/8.png and /dev/null differ diff --git a/data/maps/0.json b/data/maps/0.json deleted file mode 100644 index 457a22d..0000000 --- a/data/maps/0.json +++ /dev/null @@ -1 +0,0 @@ -{"tilemap": {"9;12": {"type": "grass", "variant": 2, "pos": [9, 12]}, "9;13": {"type": "grass", "variant": 8, "pos": [9, 13]}, "10;13": {"type": "grass", "variant": 1, "pos": [10, 13]}, "11;13": {"type": "grass", "variant": 1, "pos": [11, 13]}, "12;13": {"type": "grass", "variant": 1, "pos": [12, 13]}, "13;13": {"type": "grass", "variant": 1, "pos": [13, 13]}, "14;13": {"type": "grass", "variant": 1, "pos": [14, 13]}, "15;13": {"type": "grass", "variant": 1, "pos": [15, 13]}, "15;14": {"type": "grass", "variant": 8, "pos": [15, 14]}, "14;14": {"type": "grass", "variant": 8, "pos": [14, 14]}, "13;14": {"type": "grass", "variant": 8, "pos": [13, 14]}, "12;14": {"type": "grass", "variant": 8, "pos": [12, 14]}, "11;14": {"type": "grass", "variant": 8, "pos": [11, 14]}, "10;14": {"type": "grass", "variant": 8, "pos": [10, 14]}, "9;14": {"type": "grass", "variant": 8, "pos": [9, 14]}, "8;14": {"type": "grass", "variant": 8, "pos": [8, 14]}, "7;14": {"type": "grass", "variant": 8, "pos": [7, 14]}, "8;15": {"type": "grass", "variant": 5, "pos": [8, 15]}, "9;15": {"type": "grass", "variant": 5, "pos": [9, 15]}, "10;15": {"type": "grass", "variant": 5, "pos": [10, 15]}, "11;15": {"type": "grass", "variant": 5, "pos": [11, 15]}, "12;15": {"type": "grass", "variant": 5, "pos": [12, 15]}, "13;15": {"type": "grass", "variant": 5, "pos": [13, 15]}, "14;15": {"type": "grass", "variant": 5, "pos": [14, 15]}, "15;15": {"type": "grass", "variant": 5, "pos": [15, 15]}, "7;15": {"type": "grass", "variant": 6, "pos": [7, 15]}, "8;13": {"type": "grass", "variant": 8, "pos": [8, 13]}, "7;13": {"type": "grass", "variant": 8, "pos": [7, 13]}, "7;12": {"type": "grass", "variant": 8, "pos": [7, 12]}, "8;12": {"type": "grass", "variant": 8, "pos": [8, 12]}, "7;11": {"type": "grass", "variant": 1, "pos": [7, 11]}, "8;11": {"type": "grass", "variant": 2, "pos": [8, 11]}, "6;11": {"type": "grass", "variant": 1, "pos": [6, 11]}, "5;11": {"type": "grass", "variant": 1, "pos": [5, 11]}, "4;11": {"type": "grass", "variant": 1, "pos": [4, 11]}, "3;11": {"type": "grass", "variant": 1, "pos": [3, 11]}, "2;11": {"type": "grass", "variant": 1, "pos": [2, 11]}, "1;11": {"type": "grass", "variant": 1, "pos": [1, 11]}, "1;12": {"type": "grass", "variant": 8, "pos": [1, 12]}, "2;12": {"type": "grass", "variant": 8, "pos": [2, 12]}, "2;13": {"type": "grass", "variant": 8, "pos": [2, 13]}, "3;13": {"type": "grass", "variant": 8, "pos": [3, 13]}, "4;13": {"type": "grass", "variant": 8, "pos": [4, 13]}, "4;14": {"type": "grass", "variant": 5, "pos": [4, 14]}, "5;14": {"type": "grass", "variant": 5, "pos": [5, 14]}, "6;14": {"type": "grass", "variant": 5, "pos": [6, 14]}, "3;14": {"type": "grass", "variant": 5, "pos": [3, 14]}, "2;14": {"type": "grass", "variant": 5, "pos": [2, 14]}, "1;14": {"type": "grass", "variant": 6, "pos": [1, 14]}, "1;13": {"type": "grass", "variant": 8, "pos": [1, 13]}, "3;12": {"type": "grass", "variant": 8, "pos": [3, 12]}, "4;12": {"type": "grass", "variant": 8, "pos": [4, 12]}, "5;12": {"type": "grass", "variant": 8, "pos": [5, 12]}, "6;12": {"type": "grass", "variant": 8, "pos": [6, 12]}, "6;13": {"type": "grass", "variant": 8, "pos": [6, 13]}, "5;13": {"type": "grass", "variant": 8, "pos": [5, 13]}, "0;13": {"type": "grass", "variant": 6, "pos": [0, 13]}, "0;12": {"type": "grass", "variant": 7, "pos": [0, 12]}, "0;11": {"type": "grass", "variant": 0, "pos": [0, 11]}, "16;13": {"type": "grass", "variant": 8, "pos": [16, 13]}, "16;12": {"type": "grass", "variant": 0, "pos": [16, 12]}, "17;12": {"type": "grass", "variant": 8, "pos": [17, 12]}, "17;11": {"type": "grass", "variant": 0, "pos": [17, 11]}, "18;11": {"type": "grass", "variant": 8, "pos": [18, 11]}, "18;10": {"type": "grass", "variant": 0, "pos": [18, 10]}, "19;10": {"type": "grass", "variant": 1, "pos": [19, 10]}, "20;10": {"type": "grass", "variant": 1, "pos": [20, 10]}, "16;15": {"type": "grass", "variant": 5, "pos": [16, 15]}, "17;15": {"type": "grass", "variant": 4, "pos": [17, 15]}, "18;14": {"type": "grass", "variant": 5, "pos": [18, 14]}, "19;14": {"type": "grass", "variant": 5, "pos": [19, 14]}, "20;14": {"type": "grass", "variant": 5, "pos": [20, 14]}, "21;14": {"type": "grass", "variant": 5, "pos": [21, 14]}, "22;14": {"type": "grass", "variant": 4, "pos": [22, 14]}, "22;13": {"type": "grass", "variant": 8, "pos": [22, 13]}, "23;13": {"type": "grass", "variant": 5, "pos": [23, 13]}, "24;13": {"type": "grass", "variant": 4, "pos": [24, 13]}, "24;12": {"type": "grass", "variant": 3, "pos": [24, 12]}, "24;11": {"type": "grass", "variant": 3, "pos": [24, 11]}, "24;10": {"type": "grass", "variant": 2, "pos": [24, 10]}, "23;10": {"type": "grass", "variant": 1, "pos": [23, 10]}, "22;10": {"type": "grass", "variant": 1, "pos": [22, 10]}, "21;10": {"type": "grass", "variant": 1, "pos": [21, 10]}, "23;11": {"type": "grass", "variant": 8, "pos": [23, 11]}, "23;12": {"type": "grass", "variant": 8, "pos": [23, 12]}, "22;12": {"type": "grass", "variant": 8, "pos": [22, 12]}, "21;12": {"type": "grass", "variant": 8, "pos": [21, 12]}, "21;11": {"type": "grass", "variant": 8, "pos": [21, 11]}, "20;11": {"type": "grass", "variant": 8, "pos": [20, 11]}, "19;11": {"type": "grass", "variant": 8, "pos": [19, 11]}, "18;12": {"type": "grass", "variant": 8, "pos": [18, 12]}, "17;13": {"type": "grass", "variant": 8, "pos": [17, 13]}, "16;14": {"type": "grass", "variant": 8, "pos": [16, 14]}, "18;13": {"type": "grass", "variant": 8, "pos": [18, 13]}, "19;13": {"type": "grass", "variant": 8, "pos": [19, 13]}, "19;12": {"type": "grass", "variant": 8, "pos": [19, 12]}, "20;12": {"type": "grass", "variant": 8, "pos": [20, 12]}, "22;11": {"type": "grass", "variant": 8, "pos": [22, 11]}, "21;13": {"type": "grass", "variant": 8, "pos": [21, 13]}, "20;13": {"type": "grass", "variant": 8, "pos": [20, 13]}, "17;14": {"type": "grass", "variant": 8, "pos": [17, 14]}, "19;4": {"type": "grass", "variant": 1, "pos": [19, 4]}, "18;4": {"type": "grass", "variant": 1, "pos": [18, 4]}, "17;4": {"type": "grass", "variant": 0, "pos": [17, 4]}, "17;5": {"type": "grass", "variant": 8, "pos": [17, 5]}, "16;5": {"type": "grass", "variant": 0, "pos": [16, 5]}, "16;6": {"type": "grass", "variant": 6, "pos": [16, 6]}, "17;6": {"type": "grass", "variant": 5, "pos": [17, 6]}, "18;6": {"type": "grass", "variant": 5, "pos": [18, 6]}, "19;6": {"type": "grass", "variant": 4, "pos": [19, 6]}, "19;5": {"type": "grass", "variant": 8, "pos": [19, 5]}, "20;5": {"type": "grass", "variant": 4, "pos": [20, 5]}, "20;4": {"type": "grass", "variant": 2, "pos": [20, 4]}, "18;5": {"type": "grass", "variant": 8, "pos": [18, 5]}, "8;5": {"type": "grass", "variant": 2, "pos": [8, 5]}, "7;5": {"type": "grass", "variant": 1, "pos": [7, 5]}, "6;5": {"type": "grass", "variant": 0, "pos": [6, 5]}, "6;6": {"type": "grass", "variant": 6, "pos": [6, 6]}, "7;6": {"type": "grass", "variant": 8, "pos": [7, 6]}, "7;7": {"type": "grass", "variant": 6, "pos": [7, 7]}, "8;7": {"type": "grass", "variant": 5, "pos": [8, 7]}, "9;7": {"type": "grass", "variant": 4, "pos": [9, 7]}, "9;6": {"type": "grass", "variant": 2, "pos": [9, 6]}, "8;6": {"type": "grass", "variant": 8, "pos": [8, 6]}, "26;8": {"type": "stone", "variant": 0, "pos": [26, 8]}, "26;9": {"type": "stone", "variant": 7, "pos": [26, 9]}, "26;10": {"type": "stone", "variant": 7, "pos": [26, 10]}, "26;11": {"type": "stone", "variant": 6, "pos": [26, 11]}, "27;12": {"type": "stone", "variant": 7, "pos": [27, 12]}, "27;13": {"type": "stone", "variant": 6, "pos": [27, 13]}, "28;13": {"type": "stone", "variant": 5, "pos": [28, 13]}, "29;13": {"type": "stone", "variant": 4, "pos": [29, 13]}, "29;12": {"type": "stone", "variant": 8, "pos": [29, 12]}, "30;12": {"type": "stone", "variant": 4, "pos": [30, 12]}, "30;11": {"type": "stone", "variant": 3, "pos": [30, 11]}, "30;10": {"type": "stone", "variant": 3, "pos": [30, 10]}, "30;9": {"type": "stone", "variant": 3, "pos": [30, 9]}, "30;8": {"type": "stone", "variant": 2, "pos": [30, 8]}, "27;8": {"type": "stone", "variant": 1, "pos": [27, 8]}, "28;9": {"type": "stone", "variant": 8, "pos": [28, 9]}, "28;10": {"type": "stone", "variant": 8, "pos": [28, 10]}, "28;11": {"type": "stone", "variant": 8, "pos": [28, 11]}, "28;8": {"type": "stone", "variant": 1, "pos": [28, 8]}, "29;9": {"type": "stone", "variant": 8, "pos": [29, 9]}, "29;8": {"type": "stone", "variant": 1, "pos": [29, 8]}, "29;10": {"type": "stone", "variant": 8, "pos": [29, 10]}, "29;11": {"type": "stone", "variant": 8, "pos": [29, 11]}, "28;12": {"type": "stone", "variant": 8, "pos": [28, 12]}, "27;11": {"type": "stone", "variant": 8, "pos": [27, 11]}, "27;10": {"type": "stone", "variant": 8, "pos": [27, 10]}, "27;9": {"type": "stone", "variant": 8, "pos": [27, 9]}, "23;9": {"type": "decor", "variant": 0, "pos": [23, 9]}, "20;9": {"type": "decor", "variant": 0, "pos": [20, 9]}, "13;12": {"type": "decor", "variant": 0, "pos": [13, 12]}, "7;10": {"type": "decor", "variant": 0, "pos": [7, 10]}, "5;10": {"type": "decor", "variant": 0, "pos": [5, 10]}, "2;10": {"type": "decor", "variant": 0, "pos": [2, 10]}, "7;4": {"type": "decor", "variant": 0, "pos": [7, 4]}, "18;3": {"type": "decor", "variant": 0, "pos": [18, 3]}, "8;4": {"type": "decor", "variant": 1, "pos": [8, 4]}, "17;3": {"type": "decor", "variant": 1, "pos": [17, 3]}, "22;9": {"type": "decor", "variant": 1, "pos": [22, 9]}, "15;12": {"type": "decor", "variant": 1, "pos": [15, 12]}, "10;12": {"type": "decor", "variant": 1, "pos": [10, 12]}, "8;10": {"type": "decor", "variant": 1, "pos": [8, 10]}, "3;10": {"type": "decor", "variant": 1, "pos": [3, 10]}, "1;10": {"type": "decor", "variant": 2, "pos": [1, 10]}, "6;10": {"type": "decor", "variant": 2, "pos": [6, 10]}, "12;12": {"type": "decor", "variant": 2, "pos": [12, 12]}, "9;5": {"type": "decor", "variant": 2, "pos": [9, 5]}, "19;3": {"type": "decor", "variant": 2, "pos": [19, 3]}, "21;9": {"type": "decor", "variant": 2, "pos": [21, 9]}, "19;9": {"type": "decor", "variant": 3, "pos": [19, 9]}, "6;4": {"type": "decor", "variant": 3, "pos": [6, 4]}, "27;7": {"type": "decor", "variant": 3, "pos": [27, 7]}}, "tile_size": 16, "offgrid": [{"type": "large_decor", "variant": 0, "pos": [457.0, 119.0]}, {"type": "large_decor", "variant": 0, "pos": [361.5, 151.0]}, {"type": "large_decor", "variant": 0, "pos": [70.0, 167.5]}, {"type": "large_decor", "variant": 0, "pos": [301.5, 55.0]}, {"type": "large_decor", "variant": 1, "pos": [278.5, 165.5]}, {"type": "large_decor", "variant": 1, "pos": [293.5, 149.0]}, {"type": "large_decor", "variant": 1, "pos": [133.0, 180.0]}, {"type": "large_decor", "variant": 1, "pos": [4.0, 165.5]}, {"type": "large_decor", "variant": 2, "pos": [25.0, 133.0]}, {"type": "large_decor", "variant": 2, "pos": [170.5, 166.0]}, {"type": "large_decor", "variant": 2, "pos": [239.0, 188.5]}, {"type": "large_decor", "variant": 2, "pos": [252.5, 37.0]}, {"type": "large_decor", "variant": 2, "pos": [118.0, 37.5]}, {"type": "large_decor", "variant": 2, "pos": [340.0, 117.0]}, {"type": "spawners", "variant": 0, "pos": [228.5, 192.5]}, {"type": "spawners", "variant": 1, "pos": [59.5, 159.5]}, {"type": "spawners", "variant": 1, "pos": [321.5, 142.0]}, {"type": "spawners", "variant": 1, "pos": [472.0, 111.0]}]} \ No newline at end of file diff --git a/data/maps/1.json b/data/maps/1.json deleted file mode 100644 index 4754cec..0000000 --- a/data/maps/1.json +++ /dev/null @@ -1 +0,0 @@ -{"tilemap": {"8;8": {"type": "grass", "variant": 0, "pos": [8, 8]}, "8;9": {"type": "grass", "variant": 7, "pos": [8, 9]}, "8;10": {"type": "grass", "variant": 7, "pos": [8, 10]}, "8;11": {"type": "grass", "variant": 7, "pos": [8, 11]}, "8;12": {"type": "grass", "variant": 7, "pos": [8, 12]}, "8;13": {"type": "grass", "variant": 7, "pos": [8, 13]}, "8;14": {"type": "grass", "variant": 7, "pos": [8, 14]}, "8;15": {"type": "grass", "variant": 6, "pos": [8, 15]}, "9;15": {"type": "grass", "variant": 8, "pos": [9, 15]}, "9;16": {"type": "grass", "variant": 6, "pos": [9, 16]}, "10;16": {"type": "grass", "variant": 5, "pos": [10, 16]}, "11;16": {"type": "grass", "variant": 5, "pos": [11, 16]}, "12;16": {"type": "grass", "variant": 4, "pos": [12, 16]}, "12;15": {"type": "grass", "variant": 8, "pos": [12, 15]}, "13;15": {"type": "grass", "variant": 4, "pos": [13, 15]}, "13;14": {"type": "grass", "variant": 3, "pos": [13, 14]}, "13;13": {"type": "grass", "variant": 3, "pos": [13, 13]}, "13;12": {"type": "grass", "variant": 3, "pos": [13, 12]}, "13;11": {"type": "grass", "variant": 3, "pos": [13, 11]}, "13;10": {"type": "grass", "variant": 3, "pos": [13, 10]}, "13;9": {"type": "grass", "variant": 3, "pos": [13, 9]}, "13;8": {"type": "grass", "variant": 3, "pos": [13, 8]}, "13;7": {"type": "grass", "variant": 2, "pos": [13, 7]}, "12;7": {"type": "grass", "variant": 1, "pos": [12, 7]}, "11;7": {"type": "grass", "variant": 1, "pos": [11, 7]}, "10;7": {"type": "grass", "variant": 1, "pos": [10, 7]}, "10;8": {"type": "grass", "variant": 8, "pos": [10, 8]}, "9;8": {"type": "grass", "variant": 8, "pos": [9, 8]}, "9;7": {"type": "grass", "variant": 0, "pos": [9, 7]}, "11;8": {"type": "grass", "variant": 8, "pos": [11, 8]}, "12;8": {"type": "grass", "variant": 8, "pos": [12, 8]}, "12;9": {"type": "grass", "variant": 8, "pos": [12, 9]}, "12;10": {"type": "grass", "variant": 8, "pos": [12, 10]}, "12;11": {"type": "grass", "variant": 8, "pos": [12, 11]}, "12;12": {"type": "grass", "variant": 8, "pos": [12, 12]}, "12;13": {"type": "grass", "variant": 8, "pos": [12, 13]}, "12;14": {"type": "grass", "variant": 8, "pos": [12, 14]}, "11;14": {"type": "grass", "variant": 8, "pos": [11, 14]}, "11;15": {"type": "grass", "variant": 8, "pos": [11, 15]}, "10;15": {"type": "grass", "variant": 8, "pos": [10, 15]}, "10;14": {"type": "grass", "variant": 8, "pos": [10, 14]}, "10;13": {"type": "grass", "variant": 8, "pos": [10, 13]}, "9;14": {"type": "grass", "variant": 8, "pos": [9, 14]}, "9;13": {"type": "grass", "variant": 8, "pos": [9, 13]}, "9;12": {"type": "grass", "variant": 8, "pos": [9, 12]}, "9;11": {"type": "grass", "variant": 8, "pos": [9, 11]}, "9;10": {"type": "grass", "variant": 8, "pos": [9, 10]}, "9;9": {"type": "grass", "variant": 8, "pos": [9, 9]}, "10;9": {"type": "grass", "variant": 8, "pos": [10, 9]}, "10;10": {"type": "grass", "variant": 8, "pos": [10, 10]}, "11;10": {"type": "grass", "variant": 8, "pos": [11, 10]}, "11;11": {"type": "grass", "variant": 8, "pos": [11, 11]}, "11;12": {"type": "grass", "variant": 8, "pos": [11, 12]}, "10;12": {"type": "grass", "variant": 8, "pos": [10, 12]}, "10;11": {"type": "grass", "variant": 8, "pos": [10, 11]}, "11;13": {"type": "grass", "variant": 8, "pos": [11, 13]}, "11;9": {"type": "grass", "variant": 8, "pos": [11, 9]}, "16;10": {"type": "grass", "variant": 0, "pos": [16, 10]}, "17;10": {"type": "grass", "variant": 1, "pos": [17, 10]}, "18;10": {"type": "grass", "variant": 1, "pos": [18, 10]}, "19;10": {"type": "grass", "variant": 1, "pos": [19, 10]}, "20;10": {"type": "grass", "variant": 1, "pos": [20, 10]}, "21;10": {"type": "grass", "variant": 1, "pos": [21, 10]}, "22;10": {"type": "grass", "variant": 1, "pos": [22, 10]}, "23;10": {"type": "grass", "variant": 1, "pos": [23, 10]}, "24;10": {"type": "grass", "variant": 1, "pos": [24, 10]}, "25;10": {"type": "grass", "variant": 1, "pos": [25, 10]}, "26;10": {"type": "grass", "variant": 2, "pos": [26, 10]}, "26;11": {"type": "grass", "variant": 8, "pos": [26, 11]}, "27;11": {"type": "grass", "variant": 2, "pos": [27, 11]}, "26;12": {"type": "grass", "variant": 8, "pos": [26, 12]}, "26;13": {"type": "grass", "variant": 8, "pos": [26, 13]}, "26;14": {"type": "grass", "variant": 4, "pos": [26, 14]}, "25;14": {"type": "grass", "variant": 6, "pos": [25, 14]}, "24;13": {"type": "grass", "variant": 5, "pos": [24, 13]}, "23;13": {"type": "grass", "variant": 5, "pos": [23, 13]}, "22;13": {"type": "grass", "variant": 5, "pos": [22, 13]}, "21;13": {"type": "grass", "variant": 5, "pos": [21, 13]}, "20;13": {"type": "grass", "variant": 5, "pos": [20, 13]}, "19;13": {"type": "grass", "variant": 5, "pos": [19, 13]}, "18;13": {"type": "grass", "variant": 5, "pos": [18, 13]}, "17;13": {"type": "grass", "variant": 6, "pos": [17, 13]}, "17;12": {"type": "grass", "variant": 8, "pos": [17, 12]}, "16;12": {"type": "grass", "variant": 6, "pos": [16, 12]}, "16;11": {"type": "grass", "variant": 7, "pos": [16, 11]}, "27;12": {"type": "grass", "variant": 3, "pos": [27, 12]}, "27;13": {"type": "grass", "variant": 4, "pos": [27, 13]}, "17;11": {"type": "grass", "variant": 8, "pos": [17, 11]}, "18;11": {"type": "grass", "variant": 8, "pos": [18, 11]}, "19;11": {"type": "grass", "variant": 8, "pos": [19, 11]}, "20;11": {"type": "grass", "variant": 8, "pos": [20, 11]}, "21;11": {"type": "grass", "variant": 8, "pos": [21, 11]}, "22;11": {"type": "grass", "variant": 8, "pos": [22, 11]}, "23;11": {"type": "grass", "variant": 8, "pos": [23, 11]}, "24;11": {"type": "grass", "variant": 8, "pos": [24, 11]}, "25;11": {"type": "grass", "variant": 8, "pos": [25, 11]}, "25;12": {"type": "grass", "variant": 8, "pos": [25, 12]}, "25;13": {"type": "grass", "variant": 8, "pos": [25, 13]}, "24;12": {"type": "grass", "variant": 8, "pos": [24, 12]}, "23;12": {"type": "grass", "variant": 8, "pos": [23, 12]}, "22;12": {"type": "grass", "variant": 8, "pos": [22, 12]}, "21;12": {"type": "grass", "variant": 8, "pos": [21, 12]}, "20;12": {"type": "grass", "variant": 8, "pos": [20, 12]}, "19;12": {"type": "grass", "variant": 8, "pos": [19, 12]}, "18;12": {"type": "grass", "variant": 8, "pos": [18, 12]}, "32;8": {"type": "stone", "variant": 2, "pos": [32, 8]}, "31;8": {"type": "stone", "variant": 1, "pos": [31, 8]}, "30;8": {"type": "stone", "variant": 0, "pos": [30, 8]}, "30;9": {"type": "stone", "variant": 7, "pos": [30, 9]}, "30;10": {"type": "stone", "variant": 7, "pos": [30, 10]}, "30;11": {"type": "stone", "variant": 7, "pos": [30, 11]}, "31;11": {"type": "stone", "variant": 8, "pos": [31, 11]}, "32;11": {"type": "stone", "variant": 4, "pos": [32, 11]}, "32;10": {"type": "stone", "variant": 3, "pos": [32, 10]}, "32;9": {"type": "stone", "variant": 3, "pos": [32, 9]}, "31;9": {"type": "stone", "variant": 8, "pos": [31, 9]}, "31;10": {"type": "stone", "variant": 8, "pos": [31, 10]}, "31;12": {"type": "stone", "variant": 4, "pos": [31, 12]}, "30;12": {"type": "stone", "variant": 6, "pos": [30, 12]}, "34;5": {"type": "stone", "variant": 7, "pos": [34, 5]}, "34;6": {"type": "stone", "variant": 7, "pos": [34, 6]}, "35;6": {"type": "stone", "variant": 3, "pos": [35, 6]}, "35;5": {"type": "stone", "variant": 3, "pos": [35, 5]}, "35;7": {"type": "stone", "variant": 4, "pos": [35, 7]}, "34;7": {"type": "stone", "variant": 6, "pos": [34, 7]}, "31;4": {"type": "stone", "variant": 4, "pos": [31, 4]}, "31;3": {"type": "stone", "variant": 3, "pos": [31, 3]}, "31;2": {"type": "stone", "variant": 2, "pos": [31, 2]}, "30;2": {"type": "stone", "variant": 0, "pos": [30, 2]}, "30;3": {"type": "stone", "variant": 7, "pos": [30, 3]}, "30;4": {"type": "stone", "variant": 6, "pos": [30, 4]}, "34;4": {"type": "stone", "variant": 7, "pos": [34, 4]}, "34;3": {"type": "stone", "variant": 7, "pos": [34, 3]}, "34;2": {"type": "stone", "variant": 7, "pos": [34, 2]}, "34;1": {"type": "stone", "variant": 7, "pos": [34, 1]}, "34;0": {"type": "stone", "variant": 0, "pos": [34, 0]}, "35;0": {"type": "stone", "variant": 2, "pos": [35, 0]}, "35;1": {"type": "stone", "variant": 3, "pos": [35, 1]}, "35;2": {"type": "stone", "variant": 3, "pos": [35, 2]}, "35;3": {"type": "stone", "variant": 3, "pos": [35, 3]}, "35;4": {"type": "stone", "variant": 3, "pos": [35, 4]}, "27;0": {"type": "stone", "variant": 2, "pos": [27, 0]}, "26;0": {"type": "stone", "variant": 1, "pos": [26, 0]}, "25;0": {"type": "stone", "variant": 1, "pos": [25, 0]}, "24;0": {"type": "stone", "variant": 1, "pos": [24, 0]}, "23;0": {"type": "stone", "variant": 1, "pos": [23, 0]}, "22;0": {"type": "stone", "variant": 1, "pos": [22, 0]}, "21;0": {"type": "stone", "variant": 1, "pos": [21, 0]}, "20;0": {"type": "stone", "variant": 8, "pos": [20, 0]}, "20;1": {"type": "stone", "variant": 8, "pos": [20, 1]}, "20;2": {"type": "stone", "variant": 6, "pos": [20, 2]}, "21;2": {"type": "stone", "variant": 5, "pos": [21, 2]}, "21;1": {"type": "stone", "variant": 8, "pos": [21, 1]}, "22;1": {"type": "stone", "variant": 8, "pos": [22, 1]}, "23;1": {"type": "stone", "variant": 8, "pos": [23, 1]}, "24;1": {"type": "stone", "variant": 8, "pos": [24, 1]}, "25;1": {"type": "stone", "variant": 8, "pos": [25, 1]}, "26;1": {"type": "stone", "variant": 8, "pos": [26, 1]}, "26;2": {"type": "stone", "variant": 4, "pos": [26, 2]}, "25;2": {"type": "stone", "variant": 5, "pos": [25, 2]}, "24;2": {"type": "stone", "variant": 5, "pos": [24, 2]}, "23;2": {"type": "stone", "variant": 5, "pos": [23, 2]}, "22;2": {"type": "stone", "variant": 5, "pos": [22, 2]}, "27;1": {"type": "stone", "variant": 4, "pos": [27, 1]}, "19;0": {"type": "stone", "variant": 7, "pos": [19, 0]}, "19;-1": {"type": "stone", "variant": 0, "pos": [19, -1]}, "19;1": {"type": "stone", "variant": 6, "pos": [19, 1]}, "20;-1": {"type": "stone", "variant": 2, "pos": [20, -1]}, "15;-3": {"type": "grass", "variant": 2, "pos": [15, -3]}, "14;-3": {"type": "grass", "variant": 1, "pos": [14, -3]}, "13;-3": {"type": "grass", "variant": 1, "pos": [13, -3]}, "12;-3": {"type": "grass", "variant": 1, "pos": [12, -3]}, "11;-3": {"type": "grass", "variant": 1, "pos": [11, -3]}, "10;-3": {"type": "grass", "variant": 1, "pos": [10, -3]}, "10;-2": {"type": "grass", "variant": 8, "pos": [10, -2]}, "10;-1": {"type": "grass", "variant": 6, "pos": [10, -1]}, "11;-1": {"type": "grass", "variant": 8, "pos": [11, -1]}, "12;-1": {"type": "grass", "variant": 8, "pos": [12, -1]}, "13;-1": {"type": "grass", "variant": 8, "pos": [13, -1]}, "14;-1": {"type": "grass", "variant": 8, "pos": [14, -1]}, "15;-1": {"type": "grass", "variant": 4, "pos": [15, -1]}, "15;-2": {"type": "grass", "variant": 3, "pos": [15, -2]}, "14;-2": {"type": "grass", "variant": 8, "pos": [14, -2]}, "13;-2": {"type": "grass", "variant": 8, "pos": [13, -2]}, "12;-2": {"type": "grass", "variant": 8, "pos": [12, -2]}, "11;-2": {"type": "grass", "variant": 8, "pos": [11, -2]}, "11;0": {"type": "grass", "variant": 6, "pos": [11, 0]}, "12;0": {"type": "grass", "variant": 5, "pos": [12, 0]}, "13;0": {"type": "grass", "variant": 5, "pos": [13, 0]}, "14;0": {"type": "grass", "variant": 4, "pos": [14, 0]}, "9;-2": {"type": "grass", "variant": 6, "pos": [9, -2]}, "9;-3": {"type": "grass", "variant": 0, "pos": [9, -3]}, "4;0": {"type": "grass", "variant": 1, "pos": [4, 0]}, "3;0": {"type": "grass", "variant": 0, "pos": [3, 0]}, "3;1": {"type": "grass", "variant": 6, "pos": [3, 1]}, "4;1": {"type": "grass", "variant": 8, "pos": [4, 1]}, "5;1": {"type": "grass", "variant": 8, "pos": [5, 1]}, "5;0": {"type": "grass", "variant": 1, "pos": [5, 0]}, "6;0": {"type": "grass", "variant": 2, "pos": [6, 0]}, "6;1": {"type": "grass", "variant": 4, "pos": [6, 1]}, "5;2": {"type": "grass", "variant": 4, "pos": [5, 2]}, "-2;4": {"type": "grass", "variant": 1, "pos": [-2, 4]}, "-3;4": {"type": "grass", "variant": 1, "pos": [-3, 4]}, "-4;4": {"type": "grass", "variant": 1, "pos": [-4, 4]}, "-5;4": {"type": "grass", "variant": 1, "pos": [-5, 4]}, "-6;4": {"type": "grass", "variant": 1, "pos": [-6, 4]}, "-7;4": {"type": "grass", "variant": 1, "pos": [-7, 4]}, "-8;4": {"type": "grass", "variant": 0, "pos": [-8, 4]}, "-8;5": {"type": "grass", "variant": 7, "pos": [-8, 5]}, "-8;6": {"type": "grass", "variant": 6, "pos": [-8, 6]}, "-7;6": {"type": "grass", "variant": 8, "pos": [-7, 6]}, "-6;6": {"type": "grass", "variant": 8, "pos": [-6, 6]}, "-5;6": {"type": "grass", "variant": 8, "pos": [-5, 6]}, "-4;6": {"type": "grass", "variant": 8, "pos": [-4, 6]}, "-3;6": {"type": "grass", "variant": 8, "pos": [-3, 6]}, "-2;6": {"type": "grass", "variant": 8, "pos": [-2, 6]}, "-1;6": {"type": "grass", "variant": 5, "pos": [-1, 6]}, "0;6": {"type": "grass", "variant": 4, "pos": [0, 6]}, "0;5": {"type": "grass", "variant": 3, "pos": [0, 5]}, "-1;4": {"type": "grass", "variant": 8, "pos": [-1, 4]}, "-2;5": {"type": "grass", "variant": 8, "pos": [-2, 5]}, "-3;5": {"type": "grass", "variant": 8, "pos": [-3, 5]}, "-4;5": {"type": "grass", "variant": 8, "pos": [-4, 5]}, "-5;5": {"type": "grass", "variant": 8, "pos": [-5, 5]}, "-7;5": {"type": "grass", "variant": 8, "pos": [-7, 5]}, "-6;5": {"type": "grass", "variant": 8, "pos": [-6, 5]}, "-1;5": {"type": "grass", "variant": 8, "pos": [-1, 5]}, "-2;7": {"type": "grass", "variant": 4, "pos": [-2, 7]}, "-3;7": {"type": "grass", "variant": 5, "pos": [-3, 7]}, "-4;7": {"type": "grass", "variant": 5, "pos": [-4, 7]}, "-5;7": {"type": "grass", "variant": 5, "pos": [-5, 7]}, "-6;7": {"type": "grass", "variant": 5, "pos": [-6, 7]}, "-7;7": {"type": "grass", "variant": 6, "pos": [-7, 7]}, "0;4": {"type": "grass", "variant": 8, "pos": [0, 4]}, "0;3": {"type": "grass", "variant": 1, "pos": [0, 3]}, "-1;3": {"type": "grass", "variant": 0, "pos": [-1, 3]}, "1;3": {"type": "grass", "variant": 2, "pos": [1, 3]}, "1;4": {"type": "grass", "variant": 4, "pos": [1, 4]}, "10;6": {"type": "decor", "variant": 0, "pos": [10, 6]}, "17;9": {"type": "decor", "variant": 0, "pos": [17, 9]}, "21;9": {"type": "decor", "variant": 0, "pos": [21, 9]}, "24;9": {"type": "decor", "variant": 0, "pos": [24, 9]}, "14;-4": {"type": "decor", "variant": 0, "pos": [14, -4]}, "5;-1": {"type": "decor", "variant": 0, "pos": [5, -1]}, "4;-1": {"type": "decor", "variant": 0, "pos": [4, -1]}, "0;2": {"type": "decor", "variant": 0, "pos": [0, 2]}, "-6;3": {"type": "decor", "variant": 0, "pos": [-6, 3]}, "-5;3": {"type": "decor", "variant": 1, "pos": [-5, 3]}, "-3;3": {"type": "decor", "variant": 1, "pos": [-3, 3]}, "6;-1": {"type": "decor", "variant": 1, "pos": [6, -1]}, "11;6": {"type": "decor", "variant": 1, "pos": [11, 6]}, "15;-4": {"type": "decor", "variant": 1, "pos": [15, -4]}, "13;6": {"type": "decor", "variant": 1, "pos": [13, 6]}, "18;9": {"type": "decor", "variant": 1, "pos": [18, 9]}, "25;9": {"type": "decor", "variant": 1, "pos": [25, 9]}, "23;9": {"type": "decor", "variant": 2, "pos": [23, 9]}, "20;9": {"type": "decor", "variant": 2, "pos": [20, 9]}, "9;6": {"type": "decor", "variant": 2, "pos": [9, 6]}, "13;-4": {"type": "decor", "variant": 2, "pos": [13, -4]}, "10;-4": {"type": "decor", "variant": 2, "pos": [10, -4]}, "1;2": {"type": "decor", "variant": 2, "pos": [1, 2]}, "-4;3": {"type": "decor", "variant": 2, "pos": [-4, 3]}, "-8;3": {"type": "decor", "variant": 2, "pos": [-8, 3]}, "12;6": {"type": "decor", "variant": 3, "pos": [12, 6]}, "9;-4": {"type": "decor", "variant": 3, "pos": [9, -4]}, "22;-1": {"type": "decor", "variant": 3, "pos": [22, -1]}, "26;-1": {"type": "decor", "variant": 3, "pos": [26, -1]}, "32;7": {"type": "decor", "variant": 3, "pos": [32, 7]}, "4;2": {"type": "grass", "variant": 6, "pos": [4, 2]}}, "tile_size": 16, "offgrid": [{"type": "large_decor", "variant": 0, "pos": [488.0, 119.0]}, {"type": "large_decor", "variant": 0, "pos": [381.0, -9.0]}, {"type": "large_decor", "variant": 0, "pos": [261.5, 151.5]}, {"type": "large_decor", "variant": 0, "pos": [51.5, -9.0]}, {"type": "large_decor", "variant": 0, "pos": [-111.5, 55.5]}, {"type": "large_decor", "variant": 1, "pos": [406.5, 150.0]}, {"type": "large_decor", "variant": 1, "pos": [424.5, 165.0]}, {"type": "large_decor", "variant": 1, "pos": [131.0, 117.0]}, {"type": "large_decor", "variant": 1, "pos": [-10.5, 36.5]}, {"type": "large_decor", "variant": 2, "pos": [-45.5, 20.5]}, {"type": "large_decor", "variant": 2, "pos": [10.5, 29.5]}, {"type": "large_decor", "variant": 2, "pos": [88.0, -42.5]}, {"type": "large_decor", "variant": 2, "pos": [224.5, -89.5]}, {"type": "large_decor", "variant": 2, "pos": [179.5, -60.5]}, {"type": "large_decor", "variant": 2, "pos": [200.0, 68.5]}, {"type": "large_decor", "variant": 2, "pos": [291.0, 117.0]}, {"type": "large_decor", "variant": 2, "pos": [348.0, 136.5]}, {"type": "spawners", "variant": 0, "pos": [332.5, 142.5]}, {"type": "spawners", "variant": 1, "pos": [490.0, 111.5]}, {"type": "spawners", "variant": 1, "pos": [343.0, -16.5]}, {"type": "spawners", "variant": 1, "pos": [379.5, -17.0]}, {"type": "spawners", "variant": 1, "pos": [409.5, -15.5]}, {"type": "spawners", "variant": 1, "pos": [218.5, -64.0]}, {"type": "spawners", "variant": 1, "pos": [164.0, -64.0]}, {"type": "spawners", "variant": 1, "pos": [85.0, -16.5]}, {"type": "spawners", "variant": 1, "pos": [4.0, 31.0]}, {"type": "spawners", "variant": 1, "pos": [-114.0, 48.0]}, {"type": "spawners", "variant": 1, "pos": [-74.0, 46.5]}, {"type": "spawners", "variant": 1, "pos": [-44.0, 47.0]}, {"type": "spawners", "variant": 1, "pos": [156.5, 93.5]}]} \ No newline at end of file diff --git a/data/maps/2.json b/data/maps/2.json deleted file mode 100644 index 10f5ef4..0000000 --- a/data/maps/2.json +++ /dev/null @@ -1 +0,0 @@ -{"tilemap": {"9;9": {"type": "grass", "variant": 0, "pos": [9, 9]}, "9;10": {"type": "grass", "variant": 8, "pos": [9, 10]}, "9;11": {"type": "grass", "variant": 8, "pos": [9, 11]}, "9;12": {"type": "grass", "variant": 8, "pos": [9, 12]}, "10;12": {"type": "grass", "variant": 8, "pos": [10, 12]}, "11;12": {"type": "grass", "variant": 3, "pos": [11, 12]}, "11;11": {"type": "grass", "variant": 8, "pos": [11, 11]}, "12;11": {"type": "grass", "variant": 4, "pos": [12, 11]}, "12;10": {"type": "grass", "variant": 2, "pos": [12, 10]}, "11;10": {"type": "grass", "variant": 8, "pos": [11, 10]}, "11;9": {"type": "grass", "variant": 2, "pos": [11, 9]}, "10;9": {"type": "grass", "variant": 1, "pos": [10, 9]}, "10;10": {"type": "grass", "variant": 8, "pos": [10, 10]}, "10;11": {"type": "grass", "variant": 8, "pos": [10, 11]}, "8;10": {"type": "grass", "variant": 0, "pos": [8, 10]}, "8;11": {"type": "grass", "variant": 7, "pos": [8, 11]}, "8;12": {"type": "grass", "variant": 7, "pos": [8, 12]}, "8;13": {"type": "grass", "variant": 7, "pos": [8, 13]}, "8;14": {"type": "grass", "variant": 7, "pos": [8, 14]}, "8;15": {"type": "grass", "variant": 6, "pos": [8, 15]}, "9;15": {"type": "grass", "variant": 5, "pos": [9, 15]}, "10;15": {"type": "grass", "variant": 4, "pos": [10, 15]}, "10;14": {"type": "grass", "variant": 3, "pos": [10, 14]}, "10;13": {"type": "grass", "variant": 8, "pos": [10, 13]}, "11;13": {"type": "grass", "variant": 4, "pos": [11, 13]}, "9;13": {"type": "grass", "variant": 8, "pos": [9, 13]}, "9;14": {"type": "grass", "variant": 8, "pos": [9, 14]}, "12;5": {"type": "grass", "variant": 6, "pos": [12, 5]}, "12;4": {"type": "grass", "variant": 7, "pos": [12, 4]}, "12;3": {"type": "grass", "variant": 7, "pos": [12, 3]}, "12;2": {"type": "grass", "variant": 7, "pos": [12, 2]}, "12;1": {"type": "grass", "variant": 7, "pos": [12, 1]}, "13;1": {"type": "grass", "variant": 8, "pos": [13, 1]}, "13;0": {"type": "grass", "variant": 8, "pos": [13, 0]}, "14;0": {"type": "grass", "variant": 8, "pos": [14, 0]}, "14;1": {"type": "grass", "variant": 8, "pos": [14, 1]}, "15;1": {"type": "grass", "variant": 8, "pos": [15, 1]}, "16;2": {"type": "grass", "variant": 8, "pos": [16, 2]}, "16;3": {"type": "grass", "variant": 8, "pos": [16, 3]}, "15;4": {"type": "grass", "variant": 8, "pos": [15, 4]}, "15;5": {"type": "grass", "variant": 8, "pos": [15, 5]}, "14;6": {"type": "grass", "variant": 5, "pos": [14, 6]}, "13;6": {"type": "grass", "variant": 6, "pos": [13, 6]}, "13;5": {"type": "grass", "variant": 8, "pos": [13, 5]}, "13;4": {"type": "grass", "variant": 8, "pos": [13, 4]}, "13;3": {"type": "grass", "variant": 8, "pos": [13, 3]}, "13;2": {"type": "grass", "variant": 8, "pos": [13, 2]}, "14;2": {"type": "grass", "variant": 8, "pos": [14, 2]}, "14;3": {"type": "grass", "variant": 8, "pos": [14, 3]}, "14;4": {"type": "grass", "variant": 8, "pos": [14, 4]}, "14;5": {"type": "grass", "variant": 8, "pos": [14, 5]}, "15;3": {"type": "grass", "variant": 8, "pos": [15, 3]}, "15;2": {"type": "grass", "variant": 8, "pos": [15, 2]}, "9;4": {"type": "stone", "variant": 3, "pos": [9, 4]}, "9;3": {"type": "stone", "variant": 3, "pos": [9, 3]}, "9;2": {"type": "stone", "variant": 3, "pos": [9, 2]}, "9;1": {"type": "stone", "variant": 3, "pos": [9, 1]}, "8;1": {"type": "stone", "variant": 8, "pos": [8, 1]}, "8;0": {"type": "stone", "variant": 8, "pos": [8, 0]}, "7;0": {"type": "stone", "variant": 8, "pos": [7, 0]}, "7;-1": {"type": "stone", "variant": 1, "pos": [7, -1]}, "6;-1": {"type": "stone", "variant": 1, "pos": [6, -1]}, "5;-1": {"type": "stone", "variant": 1, "pos": [5, -1]}, "4;-1": {"type": "stone", "variant": 1, "pos": [4, -1]}, "3;-1": {"type": "stone", "variant": 0, "pos": [3, -1]}, "3;0": {"type": "stone", "variant": 7, "pos": [3, 0]}, "3;1": {"type": "stone", "variant": 6, "pos": [3, 1]}, "4;2": {"type": "stone", "variant": 7, "pos": [4, 2]}, "4;3": {"type": "stone", "variant": 7, "pos": [4, 3]}, "4;4": {"type": "stone", "variant": 6, "pos": [4, 4]}, "5;4": {"type": "stone", "variant": 8, "pos": [5, 4]}, "5;5": {"type": "stone", "variant": 6, "pos": [5, 5]}, "8;5": {"type": "stone", "variant": 5, "pos": [8, 5]}, "9;5": {"type": "stone", "variant": 4, "pos": [9, 5]}, "7;5": {"type": "stone", "variant": 5, "pos": [7, 5]}, "6;5": {"type": "stone", "variant": 5, "pos": [6, 5]}, "9;0": {"type": "stone", "variant": 3, "pos": [9, 0]}, "8;-1": {"type": "stone", "variant": 1, "pos": [8, -1]}, "4;0": {"type": "stone", "variant": 8, "pos": [4, 0]}, "4;1": {"type": "stone", "variant": 8, "pos": [4, 1]}, "5;1": {"type": "stone", "variant": 8, "pos": [5, 1]}, "6;2": {"type": "stone", "variant": 8, "pos": [6, 2]}, "7;2": {"type": "stone", "variant": 8, "pos": [7, 2]}, "8;2": {"type": "stone", "variant": 8, "pos": [8, 2]}, "8;3": {"type": "stone", "variant": 8, "pos": [8, 3]}, "8;4": {"type": "stone", "variant": 8, "pos": [8, 4]}, "7;4": {"type": "stone", "variant": 8, "pos": [7, 4]}, "6;4": {"type": "stone", "variant": 8, "pos": [6, 4]}, "6;3": {"type": "stone", "variant": 8, "pos": [6, 3]}, "5;3": {"type": "stone", "variant": 8, "pos": [5, 3]}, "5;2": {"type": "stone", "variant": 8, "pos": [5, 2]}, "7;3": {"type": "stone", "variant": 8, "pos": [7, 3]}, "7;1": {"type": "stone", "variant": 8, "pos": [7, 1]}, "6;1": {"type": "stone", "variant": 8, "pos": [6, 1]}, "6;0": {"type": "stone", "variant": 8, "pos": [6, 0]}, "5;0": {"type": "stone", "variant": 8, "pos": [5, 0]}, "12;0": {"type": "grass", "variant": 7, "pos": [12, 0]}, "13;-1": {"type": "grass", "variant": 1, "pos": [13, -1]}, "14;-1": {"type": "grass", "variant": 1, "pos": [14, -1]}, "15;0": {"type": "grass", "variant": 8, "pos": [15, 0]}, "15;-1": {"type": "grass", "variant": 1, "pos": [15, -1]}, "12;-1": {"type": "grass", "variant": 0, "pos": [12, -1]}, "9;-1": {"type": "stone", "variant": 2, "pos": [9, -1]}, "16;1": {"type": "grass", "variant": 8, "pos": [16, 1]}, "16;0": {"type": "grass", "variant": 8, "pos": [16, 0]}, "16;-1": {"type": "grass", "variant": 8, "pos": [16, -1]}, "17;-1": {"type": "grass", "variant": 3, "pos": [17, -1]}, "17;-2": {"type": "grass", "variant": 3, "pos": [17, -2]}, "17;-3": {"type": "grass", "variant": 2, "pos": [17, -3]}, "16;-3": {"type": "grass", "variant": 0, "pos": [16, -3]}, "16;-2": {"type": "grass", "variant": 7, "pos": [16, -2]}, "17;0": {"type": "grass", "variant": 8, "pos": [17, 0]}, "17;1": {"type": "grass", "variant": 8, "pos": [17, 1]}, "17;2": {"type": "grass", "variant": 8, "pos": [17, 2]}, "17;3": {"type": "grass", "variant": 8, "pos": [17, 3]}, "17;4": {"type": "grass", "variant": 3, "pos": [17, 4]}, "17;5": {"type": "grass", "variant": 4, "pos": [17, 5]}, "16;5": {"type": "grass", "variant": 5, "pos": [16, 5]}, "15;6": {"type": "grass", "variant": 4, "pos": [15, 6]}, "16;4": {"type": "grass", "variant": 8, "pos": [16, 4]}, "18;0": {"type": "grass", "variant": 1, "pos": [18, 0]}, "19;0": {"type": "grass", "variant": 1, "pos": [19, 0]}, "20;0": {"type": "grass", "variant": 1, "pos": [20, 0]}, "21;0": {"type": "grass", "variant": 1, "pos": [21, 0]}, "22;0": {"type": "grass", "variant": 1, "pos": [22, 0]}, "23;0": {"type": "grass", "variant": 1, "pos": [23, 0]}, "24;0": {"type": "grass", "variant": 1, "pos": [24, 0]}, "25;0": {"type": "grass", "variant": 1, "pos": [25, 0]}, "26;0": {"type": "grass", "variant": 2, "pos": [26, 0]}, "26;1": {"type": "grass", "variant": 4, "pos": [26, 1]}, "25;2": {"type": "grass", "variant": 3, "pos": [25, 2]}, "25;3": {"type": "grass", "variant": 4, "pos": [25, 3]}, "24;3": {"type": "grass", "variant": 5, "pos": [24, 3]}, "23;3": {"type": "grass", "variant": 8, "pos": [23, 3]}, "23;4": {"type": "grass", "variant": 4, "pos": [23, 4]}, "22;4": {"type": "grass", "variant": 5, "pos": [22, 4]}, "21;4": {"type": "grass", "variant": 6, "pos": [21, 4]}, "20;3": {"type": "grass", "variant": 5, "pos": [20, 3]}, "19;3": {"type": "grass", "variant": 5, "pos": [19, 3]}, "18;3": {"type": "grass", "variant": 5, "pos": [18, 3]}, "18;2": {"type": "grass", "variant": 8, "pos": [18, 2]}, "18;1": {"type": "grass", "variant": 8, "pos": [18, 1]}, "19;1": {"type": "grass", "variant": 8, "pos": [19, 1]}, "20;1": {"type": "grass", "variant": 8, "pos": [20, 1]}, "21;1": {"type": "grass", "variant": 8, "pos": [21, 1]}, "22;1": {"type": "grass", "variant": 8, "pos": [22, 1]}, "23;1": {"type": "grass", "variant": 8, "pos": [23, 1]}, "24;1": {"type": "grass", "variant": 8, "pos": [24, 1]}, "25;1": {"type": "grass", "variant": 8, "pos": [25, 1]}, "23;2": {"type": "grass", "variant": 8, "pos": [23, 2]}, "22;2": {"type": "grass", "variant": 8, "pos": [22, 2]}, "24;2": {"type": "grass", "variant": 8, "pos": [24, 2]}, "22;3": {"type": "grass", "variant": 8, "pos": [22, 3]}, "21;3": {"type": "grass", "variant": 8, "pos": [21, 3]}, "20;2": {"type": "grass", "variant": 8, "pos": [20, 2]}, "21;2": {"type": "grass", "variant": 8, "pos": [21, 2]}, "19;2": {"type": "grass", "variant": 8, "pos": [19, 2]}, "33;0": {"type": "grass", "variant": 0, "pos": [33, 0]}, "34;0": {"type": "grass", "variant": 1, "pos": [34, 0]}, "35;0": {"type": "grass", "variant": 1, "pos": [35, 0]}, "36;0": {"type": "grass", "variant": 1, "pos": [36, 0]}, "36;1": {"type": "grass", "variant": 8, "pos": [36, 1]}, "37;1": {"type": "grass", "variant": 8, "pos": [37, 1]}, "37;2": {"type": "grass", "variant": 8, "pos": [37, 2]}, "38;2": {"type": "grass", "variant": 4, "pos": [38, 2]}, "36;2": {"type": "grass", "variant": 8, "pos": [36, 2]}, "35;2": {"type": "grass", "variant": 8, "pos": [35, 2]}, "34;2": {"type": "grass", "variant": 8, "pos": [34, 2]}, "33;2": {"type": "grass", "variant": 8, "pos": [33, 2]}, "33;1": {"type": "grass", "variant": 8, "pos": [33, 1]}, "34;1": {"type": "grass", "variant": 8, "pos": [34, 1]}, "32;1": {"type": "grass", "variant": 0, "pos": [32, 1]}, "35;1": {"type": "grass", "variant": 8, "pos": [35, 1]}, "32;2": {"type": "grass", "variant": 6, "pos": [32, 2]}, "33;3": {"type": "grass", "variant": 6, "pos": [33, 3]}, "34;3": {"type": "grass", "variant": 5, "pos": [34, 3]}, "35;3": {"type": "grass", "variant": 5, "pos": [35, 3]}, "36;3": {"type": "grass", "variant": 5, "pos": [36, 3]}, "37;3": {"type": "grass", "variant": 4, "pos": [37, 3]}, "38;1": {"type": "grass", "variant": 3, "pos": [38, 1]}, "37;0": {"type": "grass", "variant": 1, "pos": [37, 0]}, "38;0": {"type": "grass", "variant": 2, "pos": [38, 0]}, "-1;-1": {"type": "stone", "variant": 2, "pos": [-1, -1]}, "-2;-1": {"type": "stone", "variant": 1, "pos": [-2, -1]}, "-3;-1": {"type": "stone", "variant": 1, "pos": [-3, -1]}, "-4;-1": {"type": "stone", "variant": 1, "pos": [-4, -1]}, "-5;-1": {"type": "stone", "variant": 1, "pos": [-5, -1]}, "-6;-1": {"type": "stone", "variant": 1, "pos": [-6, -1]}, "-7;-1": {"type": "stone", "variant": 1, "pos": [-7, -1]}, "-1;0": {"type": "stone", "variant": 4, "pos": [-1, 0]}, "-2;0": {"type": "stone", "variant": 8, "pos": [-2, 0]}, "-2;1": {"type": "stone", "variant": 4, "pos": [-2, 1]}, "-3;1": {"type": "stone", "variant": 8, "pos": [-3, 1]}, "-3;2": {"type": "stone", "variant": 4, "pos": [-3, 2]}, "-4;2": {"type": "stone", "variant": 5, "pos": [-4, 2]}, "-5;2": {"type": "stone", "variant": 5, "pos": [-5, 2]}, "-6;2": {"type": "stone", "variant": 5, "pos": [-6, 2]}, "-7;2": {"type": "stone", "variant": 6, "pos": [-7, 2]}, "-7;1": {"type": "stone", "variant": 8, "pos": [-7, 1]}, "-8;1": {"type": "stone", "variant": 6, "pos": [-8, 1]}, "-8;0": {"type": "stone", "variant": 7, "pos": [-8, 0]}, "-8;-1": {"type": "stone", "variant": 0, "pos": [-8, -1]}, "-6;0": {"type": "stone", "variant": 8, "pos": [-6, 0]}, "-7;0": {"type": "stone", "variant": 8, "pos": [-7, 0]}, "-5;0": {"type": "stone", "variant": 8, "pos": [-5, 0]}, "-4;0": {"type": "stone", "variant": 8, "pos": [-4, 0]}, "-3;0": {"type": "stone", "variant": 8, "pos": [-3, 0]}, "-6;1": {"type": "stone", "variant": 8, "pos": [-6, 1]}, "-5;1": {"type": "stone", "variant": 8, "pos": [-5, 1]}, "-4;1": {"type": "stone", "variant": 8, "pos": [-4, 1]}, "14;-8": {"type": "stone", "variant": 1, "pos": [14, -8]}, "13;-8": {"type": "stone", "variant": 0, "pos": [13, -8]}, "13;-7": {"type": "stone", "variant": 7, "pos": [13, -7]}, "13;-6": {"type": "stone", "variant": 6, "pos": [13, -6]}, "14;-6": {"type": "stone", "variant": 5, "pos": [14, -6]}, "15;-6": {"type": "stone", "variant": 4, "pos": [15, -6]}, "15;-7": {"type": "stone", "variant": 3, "pos": [15, -7]}, "15;-8": {"type": "stone", "variant": 2, "pos": [15, -8]}, "14;-7": {"type": "stone", "variant": 8, "pos": [14, -7]}, "27;-5": {"type": "stone", "variant": 2, "pos": [27, -5]}, "26;-5": {"type": "stone", "variant": 1, "pos": [26, -5]}, "25;-5": {"type": "stone", "variant": 1, "pos": [25, -5]}, "24;-5": {"type": "stone", "variant": 0, "pos": [24, -5]}, "25;-4": {"type": "stone", "variant": 5, "pos": [25, -4]}, "26;-4": {"type": "stone", "variant": 5, "pos": [26, -4]}, "27;-4": {"type": "stone", "variant": 4, "pos": [27, -4]}, "24;-4": {"type": "stone", "variant": 6, "pos": [24, -4]}, "18;-7": {"type": "stone", "variant": 6, "pos": [18, -7]}, "18;-8": {"type": "stone", "variant": 7, "pos": [18, -8]}, "19;-8": {"type": "stone", "variant": 8, "pos": [19, -8]}, "19;-9": {"type": "stone", "variant": 8, "pos": [19, -9]}, "20;-9": {"type": "stone", "variant": 8, "pos": [20, -9]}, "21;-8": {"type": "stone", "variant": 8, "pos": [21, -8]}, "20;-8": {"type": "stone", "variant": 8, "pos": [20, -8]}, "20;-7": {"type": "stone", "variant": 5, "pos": [20, -7]}, "19;-7": {"type": "stone", "variant": 5, "pos": [19, -7]}, "21;-7": {"type": "stone", "variant": 4, "pos": [21, -7]}, "18;-9": {"type": "stone", "variant": 0, "pos": [18, -9]}, "19;-10": {"type": "stone", "variant": 0, "pos": [19, -10]}, "20;-10": {"type": "stone", "variant": 1, "pos": [20, -10]}, "21;-9": {"type": "stone", "variant": 8, "pos": [21, -9]}, "21;-10": {"type": "stone", "variant": 1, "pos": [21, -10]}, "22;-8": {"type": "stone", "variant": 4, "pos": [22, -8]}, "22;-9": {"type": "stone", "variant": 3, "pos": [22, -9]}, "22;-10": {"type": "stone", "variant": 2, "pos": [22, -10]}, "29;-12": {"type": "grass", "variant": 1, "pos": [29, -12]}, "28;-12": {"type": "grass", "variant": 1, "pos": [28, -12]}, "27;-12": {"type": "grass", "variant": 1, "pos": [27, -12]}, "26;-12": {"type": "grass", "variant": 0, "pos": [26, -12]}, "26;-11": {"type": "grass", "variant": 7, "pos": [26, -11]}, "26;-10": {"type": "grass", "variant": 6, "pos": [26, -10]}, "27;-10": {"type": "grass", "variant": 8, "pos": [27, -10]}, "28;-10": {"type": "grass", "variant": 8, "pos": [28, -10]}, "29;-10": {"type": "grass", "variant": 8, "pos": [29, -10]}, "30;-10": {"type": "grass", "variant": 8, "pos": [30, -10]}, "31;-10": {"type": "grass", "variant": 8, "pos": [31, -10]}, "32;-10": {"type": "grass", "variant": 4, "pos": [32, -10]}, "32;-11": {"type": "grass", "variant": 8, "pos": [32, -11]}, "32;-12": {"type": "grass", "variant": 8, "pos": [32, -12]}, "31;-12": {"type": "grass", "variant": 8, "pos": [31, -12]}, "30;-12": {"type": "grass", "variant": 1, "pos": [30, -12]}, "29;-11": {"type": "grass", "variant": 8, "pos": [29, -11]}, "28;-11": {"type": "grass", "variant": 8, "pos": [28, -11]}, "27;-11": {"type": "grass", "variant": 8, "pos": [27, -11]}, "30;-11": {"type": "grass", "variant": 8, "pos": [30, -11]}, "31;-11": {"type": "grass", "variant": 8, "pos": [31, -11]}, "31;-9": {"type": "grass", "variant": 4, "pos": [31, -9]}, "30;-9": {"type": "grass", "variant": 5, "pos": [30, -9]}, "29;-9": {"type": "grass", "variant": 5, "pos": [29, -9]}, "28;-9": {"type": "grass", "variant": 5, "pos": [28, -9]}, "27;-9": {"type": "grass", "variant": 6, "pos": [27, -9]}, "33;-12": {"type": "grass", "variant": 3, "pos": [33, -12]}, "33;-13": {"type": "grass", "variant": 2, "pos": [33, -13]}, "32;-13": {"type": "grass", "variant": 1, "pos": [32, -13]}, "31;-13": {"type": "grass", "variant": 0, "pos": [31, -13]}, "33;-11": {"type": "grass", "variant": 4, "pos": [33, -11]}, "12;-2": {"type": "decor", "variant": 0, "pos": [12, -2]}, "19;-1": {"type": "decor", "variant": 0, "pos": [19, -1]}, "23;-1": {"type": "decor", "variant": 0, "pos": [23, -1]}, "10;8": {"type": "decor", "variant": 0, "pos": [10, 8]}, "34;-1": {"type": "decor", "variant": 0, "pos": [34, -1]}, "37;-1": {"type": "decor", "variant": 0, "pos": [37, -1]}, "22;-1": {"type": "decor", "variant": 1, "pos": [22, -1]}, "26;-1": {"type": "decor", "variant": 1, "pos": [26, -1]}, "33;-1": {"type": "decor", "variant": 1, "pos": [33, -1]}, "17;-4": {"type": "decor", "variant": 1, "pos": [17, -4]}, "13;-2": {"type": "decor", "variant": 1, "pos": [13, -2]}, "9;8": {"type": "decor", "variant": 1, "pos": [9, 8]}, "14;-2": {"type": "decor", "variant": 2, "pos": [14, -2]}, "20;-1": {"type": "decor", "variant": 2, "pos": [20, -1]}, "12;9": {"type": "decor", "variant": 2, "pos": [12, 9]}, "24;-1": {"type": "decor", "variant": 2, "pos": [24, -1]}, "32;0": {"type": "decor", "variant": 2, "pos": [32, 0]}, "36;-1": {"type": "decor", "variant": 2, "pos": [36, -1]}, "30;-13": {"type": "decor", "variant": 2, "pos": [30, -13]}, "29;-13": {"type": "decor", "variant": 1, "pos": [29, -13]}, "27;-13": {"type": "decor", "variant": 1, "pos": [27, -13]}, "32;-14": {"type": "decor", "variant": 0, "pos": [32, -14]}, "26;-13": {"type": "decor", "variant": 0, "pos": [26, -13]}, "26;-6": {"type": "decor", "variant": 3, "pos": [26, -6]}, "21;-11": {"type": "decor", "variant": 3, "pos": [21, -11]}, "8;-2": {"type": "decor", "variant": 3, "pos": [8, -2]}, "4;-2": {"type": "decor", "variant": 3, "pos": [4, -2]}, "38;-1": {"type": "decor", "variant": 3, "pos": [38, -1]}, "11;8": {"type": "decor", "variant": 3, "pos": [11, 8]}}, "tile_size": 16, "offgrid": [{"type": "large_decor", "variant": 0, "pos": [224.5, -23.0]}, {"type": "large_decor", "variant": 0, "pos": [222.5, -134.5]}, {"type": "large_decor", "variant": 0, "pos": [549.5, -8.5]}, {"type": "large_decor", "variant": 0, "pos": [497.5, -215.0]}, {"type": "large_decor", "variant": 0, "pos": [50.5, -23.5]}, {"type": "large_decor", "variant": 0, "pos": [-121.0, -23.0]}, {"type": "large_decor", "variant": 0, "pos": [-79.0, -23.0]}, {"type": "large_decor", "variant": 0, "pos": [-96.5, -21.5]}, {"type": "large_decor", "variant": 0, "pos": [-95.5, -26.5]}, {"type": "large_decor", "variant": 0, "pos": [-113.0, -28.0]}, {"type": "large_decor", "variant": 2, "pos": [338.5, -38.5]}, {"type": "large_decor", "variant": 2, "pos": [414.0, -18.5]}, {"type": "large_decor", "variant": 2, "pos": [526.5, -42.5]}, {"type": "large_decor", "variant": 2, "pos": [587.5, -35.5]}, {"type": "large_decor", "variant": 2, "pos": [466.0, -233.5]}, {"type": "large_decor", "variant": 2, "pos": [520.0, -252.0]}, {"type": "large_decor", "variant": 2, "pos": [184.0, -46.5]}, {"type": "large_decor", "variant": 1, "pos": [258.5, -58.0]}, {"type": "large_decor", "variant": 1, "pos": [327.0, -11.5]}, {"type": "large_decor", "variant": 1, "pos": [399.0, -9.5]}, {"type": "large_decor", "variant": 1, "pos": [516.5, 6.5]}, {"type": "large_decor", "variant": 1, "pos": [132.0, 149.0]}, {"type": "large_decor", "variant": 1, "pos": [486.0, -201.5]}, {"type": "large_decor", "variant": 1, "pos": [433.5, -203.0]}, {"type": "large_decor", "variant": 1, "pos": [279.5, -11.0]}, {"type": "spawners", "variant": 0, "pos": [166.5, 126.0]}, {"type": "spawners", "variant": 1, "pos": [85.5, -33.0]}, {"type": "spawners", "variant": 1, "pos": [104.5, -32.5]}, {"type": "spawners", "variant": 1, "pos": [120.0, -32.0]}, {"type": "spawners", "variant": 1, "pos": [-116.0, -31.5]}, {"type": "spawners", "variant": 1, "pos": [-93.5, -32.5]}, {"type": "spawners", "variant": 1, "pos": [-78.0, -32.5]}, {"type": "spawners", "variant": 1, "pos": [-53.5, -31.5]}, {"type": "spawners", "variant": 1, "pos": [206.5, -32.5]}, {"type": "spawners", "variant": 1, "pos": [234.5, -32.5]}, {"type": "spawners", "variant": 1, "pos": [307.0, -16.5]}, {"type": "spawners", "variant": 1, "pos": [349.5, -15.0]}, {"type": "spawners", "variant": 1, "pos": [380.5, -17.5]}, {"type": "spawners", "variant": 1, "pos": [404.0, -16.0]}, {"type": "spawners", "variant": 1, "pos": [393.5, -97.0]}, {"type": "spawners", "variant": 1, "pos": [408.5, -99.0]}, {"type": "spawners", "variant": 1, "pos": [428.5, -96.0]}, {"type": "spawners", "variant": 1, "pos": [217.0, -147.0]}, {"type": "spawners", "variant": 1, "pos": [317.5, -176.0]}, {"type": "spawners", "variant": 1, "pos": [354.5, -177.0]}, {"type": "spawners", "variant": 1, "pos": [440.5, -210.5]}, {"type": "spawners", "variant": 1, "pos": [458.0, -211.5]}, {"type": "spawners", "variant": 1, "pos": [474.5, -209.5]}, {"type": "spawners", "variant": 1, "pos": [515.0, -227.0]}, {"type": "spawners", "variant": 1, "pos": [551.5, -16.5]}, {"type": "spawners", "variant": 1, "pos": [586.0, -16.0]}, {"type": "spawners", "variant": 1, "pos": [567.5, -18.0]}, {"type": "spawners", "variant": 1, "pos": [538.0, -17.0]}]} \ No newline at end of file diff --git a/data/music.wav b/data/music.wav deleted file mode 100644 index a75693b..0000000 Binary files a/data/music.wav and /dev/null differ diff --git a/data/sfx/ambience.wav b/data/sfx/ambience.wav deleted file mode 100644 index 5324170..0000000 Binary files a/data/sfx/ambience.wav and /dev/null differ diff --git a/data/sfx/dash.wav b/data/sfx/dash.wav deleted file mode 100644 index cdb1bf2..0000000 Binary files a/data/sfx/dash.wav and /dev/null differ diff --git a/data/sfx/hit.wav b/data/sfx/hit.wav deleted file mode 100644 index f8e056a..0000000 Binary files a/data/sfx/hit.wav and /dev/null differ diff --git a/data/sfx/jump.wav b/data/sfx/jump.wav deleted file mode 100644 index 6dfcfd2..0000000 Binary files a/data/sfx/jump.wav and /dev/null differ diff --git a/data/sfx/shoot.wav b/data/sfx/shoot.wav deleted file mode 100644 index 7870d61..0000000 Binary files a/data/sfx/shoot.wav and /dev/null differ diff --git a/scripts/__pycache__/clouds.cpython-312.pyc b/scripts/__pycache__/clouds.cpython-312.pyc deleted file mode 100644 index dd70b5d..0000000 Binary files a/scripts/__pycache__/clouds.cpython-312.pyc and /dev/null differ diff --git a/scripts/__pycache__/entities.cpython-312.pyc b/scripts/__pycache__/entities.cpython-312.pyc deleted file mode 100644 index 5ba9b82..0000000 Binary files a/scripts/__pycache__/entities.cpython-312.pyc and /dev/null differ diff --git a/scripts/__pycache__/tilemap.cpython-312.pyc b/scripts/__pycache__/tilemap.cpython-312.pyc deleted file mode 100644 index 39161fa..0000000 Binary files a/scripts/__pycache__/tilemap.cpython-312.pyc and /dev/null differ diff --git a/scripts/__pycache__/utils.cpython-312.pyc b/scripts/__pycache__/utils.cpython-312.pyc deleted file mode 100644 index d97e23d..0000000 Binary files a/scripts/__pycache__/utils.cpython-312.pyc and /dev/null differ