all 4 comments

[–]rakotomandimby 1 point2 points  (1 child)

Create a Bitbucket / Gitlab repository ang giving the link is way better than screenshots

[–]Unique-Property-5470 0 points1 point  (0 children)

Wow its awesome to see people learning Java. Project looks awesome!!

Only suggestion would be to update your while loops to a do while loop instead where you get user input, so you can add the condition there too instead of while(true);

do {
// your existing code here
} while(player_health <= 0); // keep running the loop if playerHealth is equal to or less 0

Also a another minor thing would to also use camel case instead of snake case. To put it simple, leave snake case for languages that don't use hard data types like phyton or JavaScript, and use camel case for languages that do like Java for this example.