Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/HalfPixelStudios/hectic_dungeon
turn based dungeon crawler
https://github.com/HalfPixelStudios/hectic_dungeon
bevy dunegon rust turn-based
Last synced: 3 months ago
JSON representation
turn based dungeon crawler
- Host: GitHub
- URL: https://github.com/HalfPixelStudios/hectic_dungeon
- Owner: HalfPixelStudios
- License: other
- Created: 2022-07-18T23:32:59.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-09-26T17:38:12.000Z (over 2 years ago)
- Last Synced: 2024-07-30T20:56:47.777Z (5 months ago)
- Topics: bevy, dunegon, rust, turn-based
- Language: Rust
- Homepage:
- Size: 645 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# hectic dungeon
**hectic dungeon** is a turn-based tiled dungeon crawler game. It's a reboot
and bevy rewrite of the original
[Hectic-Dungeon](https://github.com/HalfPixelStudios/Hectic-Dungeon) that was
entered for a game jam.## DEV SETUP
Some features of the nightly build of `rustfmt` are required. Ensure that you
have ran:
```
$ rustup install nightly
```Next install some git hooks:
```
$ just devsetup
```Finally to run the game:
```
$ just
```## TODO
- [x] basic player and enemy movement
- [x] enemy pathfinding
- [x] player attacking
- [x] enemy attacking
- [x] map loading
- [x] traps / environemntal hazards
- [ ] item pickup
- [ ] animation / tweening system
- [ ] map generation (room system)
- [ ] ui (might be blocked by 0.8)