Page 1 of 1

Python Programming (Subject: Computer Science) Part 1 (Super Class): Write a Character class that represents characters

Posted: Fri May 20, 2022 6:14 pm
by answerhappygod
Python Programming (Subject: Computer Science)
Part 1 (Super Class): Write a Character class that represents
characters in a game. The character should have a name, which iPart
2 (Inheritance 1): Write a MajorCharacter subclass that inherits
the Character class. The Major Character subclass keepsPart 3
(Inheritance 2): * Add a Minion class which inherits all of the
features of the Character class. * Add a Boss class whPart 4 (Game
Program): Game Program: If you havent already, be sure to add a
print statement in your each of the action methExample 1: How many
players? 2 Player 1 Name: Python Player 2 Name: Java Boss spawned
Minion (HP 10, AT 25, DF ) 1. Attack 2.Example 2: How many players?
1 Player 1 Name: Python Boss spawned Minion (HP 5, AT 25, DF @) 1.
Attack 2. Charge 3. Shield PyExample 3: How many players? 2 Player
1 Name: Python Player 2 Name: Java Boss spawned Minion (HP 10, AT
25, DF 6) 1. Attack 2