├── .gitignore ├── README.md ├── data ├── texture_descriptions.json └── thing_types.json ├── requirements.txt └── wadzilla.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | output.zil 3 | *.wad 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottvr/wadzilla/HEAD/README.md -------------------------------------------------------------------------------- /data/texture_descriptions.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/thing_types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottvr/wadzilla/HEAD/data/thing_types.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | beautifulsoup4==4.11.1 2 | requests==2.31.0 3 | -------------------------------------------------------------------------------- /wadzilla.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottvr/wadzilla/HEAD/wadzilla.py --------------------------------------------------------------------------------