A command line Role Playing Game. CLI-RPG
This is an assignment project in Java based on Maven with unit testing to be done in JUnit (Currently no test coverage).
The game takes place in the land of Marghor which is ruled by the evil magician Zoram. Do you have what it takes to defeat him?
Player is represented by an '@' and the evil sorcerer by a 'Z'. Every other monster in the game has its own marking. A typical turn-based rpg with a simplistic approach to combat.
Since the project is based on Maven, it can be built using the following command on the root of the project
mvn clean package
The built project resides in the /target directory.
To run the built project, use the following command in the /target directory
java -jar rpg-cli-1.0.jar
Run the main method in the com.rpg.app.App class.
To run the tests made for the project, use the following command in the root directory of the project
mvn test
Franc Bruzja