Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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)