This is a fork of Watabou's Pixel Dungeon by mdsimmo's which was then forked by me. This repo was made for a college project, The additional features added includes...
- Extra levels (Done)
- Weapons/Armours (Done)
- An almanac for mob/items etc (75% Done)
- A more visually pleasing display for hunger. (work in progress)
- A stat comparison pup-up for items. (work in progress)
To setup Pixel Dungeon:
- Fork this repo
- Clone the forked repo (note the "--recursive" part):
git clone --recursive https://github.com/your-name/pixel-dungeon
- Start Intellij/Android Studio
- Go to File->Open and select the cloned repo
- You're done :)
Note that the PD-classes library is included as a submodule in the 'game-engine' directory. If you want to make changes to that library, you'll need to fork the PD-classes library found here: https://github.com/ConnahGriffin/PD-classes
Primarily, this repo has all the gradle build files included so you can easily start using the project with an IDE.
This project also fixes several small compile issues and several oddities in the code.
That's probably because you cloned the repo without the '--recursive' part. To fix it, run the following from the projects root directory:
git submodule init
git submodule update
cd game-engine
git checkout master