Question: You have been hired as a programmer by a company that develops video games. You are required to create classes and objects that will represent

You have been hired as a programmer by a company that develops video games. You are required to create classes and objects that will represent the elements of the game. You are also required to use object composition to create complex objects.

Create a class called Character that has the following attributes: name (String), id (int), strength (int), speed (int), intelligence (int), and item (gameItem). strength, speed and intelligence cannot be less than 0 and cannot exceed 100. Implement appropriate getters and setters for all attributes. The class must have methods to implement the following actions:

List comparison in strength, speed and intelligence between two Characters. Remember to integrate the strength, speed and intelligence of gameItem to the character. The total of strength, speed or intelligence cannot exceed 100.

Find if two Characters are equal. The Characters are equal if they have the same strength, speed and intelligence.

Find if two Characters are duplicates. The Characters are equal if they have the same name, id, strength, speed and intelligence.

Find the expected winner between two Characters. The winner is the one with highest value in the comparison between the average of strength, speed and intelligence. Remember to integrate the strength, speed and intelligence of gameItem to the character.

o Copy a Character.

Create a class called GameItem that has the following attributes: name (String), id (int), strengthModifier (int), speedModifier (int), and intelligenceModifier (int). Implement appropriate getters and

o List comparison in strength, speed and intelligence between two gameItem.

o Find if two GameItems are equal. The GameItems are equal if they have the same strength, speed and intelligence

o Find if two GameItems are duplicates. The GameItems are equal if they have the same name, id, strength, speed and intelligence.

o Copy a GameItem.

game items: sword / magic staff

java netbeans please i will like and comment

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!