Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Create a class called Dragon in a file named Dragon.java that extends Monster and does the following: Declare an integer constant called BASE _ STRENGTH
Create a class called "Dragon" in a file named Dragon.java that extends Monster and does the following:
Declare an integer constant called BASESTRENGTH which is set to
Create an override method of calcSTR which returns an integer that determines the strength of the Dragon as the value of BASESTRENGTH plus of the size times the level.
Has a constructor for Dragon that requires three parameters: a String for name, an integer for level, and an integer for size. Uses the parent Monster's overload constructor along with parameter values as passed and uses the value of "Dragon" as the type.
Set size to
Uses the Dragon class calcSTR override method to determine and set the Dragon's strength. Sets hitPoints based on calcHP from the parent class
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started