Instructions:
In this exercise, you’ll design a role playing character class.
The Character class attributes should include the characters’s
name, gender, class* and race (can be human, elf or dwarf), and
additional integer attributes of Strength, Dexterity, Constitution,
Intelligence, Wisdom, Charisma.
Your class should have a constructor that receives this data.
For each attribute, provide setters and getters. The class should
include methods that calculate and return the user’s total
attributes (sums 6 attributes). Write a Java application that
prompts...