java code in Eclipse.
. In this assignment, you will be creating a program to create a valid game character. This character must follow the rules supplied below. The first step is to determine the character class. Possible values are Magic User, Fighter, Thief or Druid. You must validate the user’s class choice. You should require a valid character class before allowing them to proceed. Following this, the user must choose the armor for their character. The options are Steel Plate, Chain Mail, Leather or Robe. Magic Users are only allowed to wear Robes. Druids can wear Chain Mail, Leather or Robes. A Thief can wear Leather or Robes. A Fighter can wear any armor. After we armor our character, we need to arm them. Valid weapon choices are Sword, Short Sword, Scimitar, and Dagger. Magic Users are only allowed to use Daggers. Rubric: 1. 2 points for following coding standards 2. 3 points for pseudo code 3. 4 points for proper validation 4. 6 points for code quality and output 5. 5 points for correctness of logic Sample Output: Please enter your name Fred Fred please select the character you wish to play 1. Magic User 2. Fighter 3. Thief 4. Druid 1 Fred please select the armor for your character 1. Steel Plate 2. Chain Mail 3. Leather 4. Robe 1 Fred please select the armor for your character 1. Steel Plate 2. Chain Mail 3. Leather 4. Robe 2 Fred please select the armor for your character 1. Steel Plate 2. Chain Mail 3. Leather 4. Robe 4 Fred please select the weapon for your character 1. Sword 2. Short Sword 3. Scimitar 4. Dagger 3 Fred please select the weapon for your character 1. Sword 2. Short Sword 3. Scimitar 4. Dagger 4 Fred, thank you for using our character creator. You have chosen to play as a Magic User You will be wearing Robe armor and using a Dagger Another Sample Please enter your name Sally Sally please select the character you wish to play 1. Magic User 2. Fighter 3. Thief 4. Druid 2 Sally please select the armor for your character 1. Steel Plate 2. Chain Mail 3. Leather 4. Robe 1 Sally please select the weapon for your character 1. Sword 2. Short Sword 3. Scimitar 4. Dagger 1 Sally, thank you for using our character creator. You have chosen to play as a Fighter You will be wearing Steel Plate armor and using a Sword
Leave a Reply
Want to join the discussion?Feel free to contribute!