{"id":19989170,"url":"https://github.com/clamytoe/roguelike","last_synced_at":"2025-08-17T13:40:06.833Z","repository":{"id":84639625,"uuid":"191398035","full_name":"clamytoe/roguelike","owner":"clamytoe","description":"My journey into creating a roguelike game based off TCOD Roguelike Tutorial","archived":false,"fork":false,"pushed_at":"2019-06-29T00:26:56.000Z","size":161,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-06T13:07:01.525Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/clamytoe.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-06-11T15:17:08.000Z","updated_at":"2019-06-29T00:26:57.000Z","dependencies_parsed_at":"2023-07-20T21:25:39.027Z","dependency_job_id":null,"html_url":"https://github.com/clamytoe/roguelike","commit_stats":null,"previous_names":[],"tags_count":14,"template":false,"template_full_name":null,"purl":"pkg:github/clamytoe/roguelike","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/clamytoe%2Froguelike","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/clamytoe%2Froguelike/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/clamytoe%2Froguelike/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/clamytoe%2Froguelike/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/clamytoe","download_url":"https://codeload.github.com/clamytoe/roguelike/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/clamytoe%2Froguelike/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270856564,"owners_count":24657688,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-17T02:00:09.016Z","response_time":129,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-13T04:45:43.114Z","updated_at":"2025-08-17T13:40:06.795Z","avatar_url":"https://github.com/clamytoe.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Roguelike Game (*roguelike*)\n\u003e *My journey into creating a roguelike game based off TCOD Roguelike Tutorial*\n\n![Python version][python-version]\n![Latest version][latest-version]\n[![GitHub issues][issues-image]][issues-url]\n[![GitHub forks][fork-image]][fork-url]\n[![GitHub Stars][stars-image]][stars-url]\n[![License][license-image]][license-url]\n\nNOTE: This app was generated with [Cookiecutter](https://github.com/audreyr/cookiecutter) along with [@clamytoe's](https://github.com/clamytoe) [toepack](https://github.com/clamytoe/toepack) project template.\n\n![logo](roguelike/resources/logo.png)\n\nThis repo will be used to track my progress as I code the Roguelike Game at: [rogueliketutorials.com](http://rogueliketutorials.com/tutorials/tcod/)\n\n### Initial setup\n```zsh\ncd Projects\ngit clone https://github.com/clamytoe/roguelike.git\ncd roguelike\n```\n\n#### Anaconda setup\nIf you are an Anaconda user, this command will get you up to speed with the base installation.\n```zsh\nconda env create\nconda activate roguelike\n```\n\n#### Regular Python setup\nIf you are just using normal Python, this will get you ready, but I highly recommend that you do this in a virtual environment. There are many ways to do this, the simplest using *venv*.\n```zsh\npython3 -m venv venv\nsource venv/bin/activate\npip install -r requirements.txt\n```\n\n#### Final setup\n```zsh\npip install -e .\n```\n\n## Usage\n```zsh\nroguelike\n```\n\n## Contributing\nContributions are very welcome. Tests can be run with with `pytest -v`, please ensure that all tests are passing and that you've checked your code with the following packages before submitting a pull request:\n* black\n* isort\n* mypy\n* pytest-cov\n\nI am not adhering to them strictly, but try to clean up what's reasonable.\n\n## License\nDistributed under the terms of the [MIT](https://opensource.org/licenses/MIT) license, \"roguelike\" is free and open source software.\n\n## Issues\nIf you encounter any problems, please [file an issue](https://github.com/clamytoe/toepack/issues) along with a detailed description.\n\n## Changelog\n* **v0.1.13** Part 13 - Gearing up\n* **v0.1.12** Part 12 - Increasing Difficulty\n* **v0.1.11** Part 11 - Delving into the Dungeon\n* **v0.1.10** Part 10 - Saving and loading\n* **v0.1.9** Part 9 - Ranged Scrolls and Targeting\n* **v0.1.8** Part 8 - Items and Inventory\n* **v0.1.7** Part 7 - Creating the Interface\n* **v0.1.6** Part 6 - Doing (and taking) some damage\n* **v0.1.5** Part 5 - Placing enemies and kicking them (harmlessly) \n* **v0.1.4** Part 4 - Field of view\n* **v0.1.3** Part 3 - Generating a dungeon\n* **v0.1.2** Part 2 - The generic Entity, the render functions, and the map\n* **v0.1.1** Part 1 - Drawing the ‘@’ symbol and moving it around\n* **v0.1.0** Part 0 - Setting up.\n\n[python-version]:https://img.shields.io/badge/python-3.7.3-brightgreen.svg\n[latest-version]:https://img.shields.io/badge/version-0.1.0-blue.svg\n[issues-image]:https://img.shields.io/github/issues/clamytoe/roguelike.svg\n[issues-url]:https://github.com/clamytoe/roguelike/issues\n[fork-image]:https://img.shields.io/github/forks/clamytoe/roguelike.svg\n[fork-url]:https://github.com/clamytoe/roguelike/network\n[stars-image]:https://img.shields.io/github/stars/clamytoe/roguelike.svg\n[stars-url]:https://github.com/clamytoe/roguelike/stargazers\n[license-image]:https://img.shields.io/github/license/clamytoe/roguelike.svg\n[license-url]:https://github.com/clamytoe/roguelike/blob/master/LICENSE\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fclamytoe%2Froguelike","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fclamytoe%2Froguelike","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fclamytoe%2Froguelike/lists"}