Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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.

java netbeans please i will like and comment

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Temporal Databases Research And Practice Lncs 1399

Authors: Opher Etzion ,Sushil Jajodia ,Suryanarayana Sripada

1st Edition

3540645195, 978-3540645191

More Books

Students also viewed these Databases questions