README
Escape the Island of Java
//////////////////////////////////////////////////////////////////////////////// This Program encapsulates a text based Java Adventure / Boss Game where the player will have to answer java questions in order to progress and survive. The questions asked are generally simple, multiple choice or true/false questions about the topics taught in Java 1 CS&141. The premise of the game is based off "The Forest", a survival horror video game developed by Endnight Games. In "The Forest", a player crash lands by plane on a remote island that is forested. In the process of the crash, a "cannibalistic mosnter" takes his son, and the main character sets out to search for his son and leave the island. The game functionality works by taking correct and incorrect answers from the player, with correct answers progressing the game and incorrect answers summoning monsters that the player has to defeat, by answering simpler true false questions. The story questions are in the file "questions.txt" and the monster encounter questions are in the file "monsterquestions.txt". The game keeps track of a health bar and also encounters random events in the story. Nearing the end of the Game, a Boss is summoned with much more health and also takes less damage. The Boss remembers all the questions that the player got wrong and reiterates them. This is helpful for flashcard like practice with Java, and is the program becomes effectively a useful study tool. //////////////////////////////////////////////////////////////////////////////// HOW TO RUN (make sure questions.txt and monster.txt is in the same directory with all the java files)
1: The code is already compiled, but to make sure, compile the following program files with: javac Monster.java javac BossMonster.java javac EasyMonster.java javac Score.java javac Player.java javac Introduction.java javac JavaGame.java
2: Run the program with the following: java JavaGame
/