The Warlords
It looks like this time the outcome of the battle will be decided once and for all.
In this mission you should add a new class Warlord(), which should be the subclass of the Warrior class and have the next characteristics:
health = 100
attack = 4
defense = 2
Also, when the Warlord is included in any of the armies, that particular army gets the new move_units() method which allows to rearrange the units of that army for the better battle result. The rearrangement is done not only before the battle, but during the battle too, each time the allied units die. The rules for the rearrangement are as follow:
- If there are Lancers in the army, they should be placed in front of everyone else.
- If there is a Healer in the army, he should be placed right after the first soldier to heal him during the fight. If the number of Healers is > 1, all of them should be placed right behind the first Healer.
- If there are no more Lancers in the army, but there are other soldiers who can deal damage, they also should be placed in first position, and the Healer should stay in the 2nd row (if army still has Healers).
- Warlord should always stay way in the back to look over the battle and rearrange the soldiers when it's needed.
- Every army can have no more than 1 Warlord.
- If the army doesn’t have a Warlord, it can’t use the move_units() method.
Example:
ronald = Warlord() heimdall = Knight() assert fight(heimdall, ronald) == False my_army = Army() my_army.add_units(Warlord, 1) my_army.add_units(Warrior, 2) my_army.add_units(Lancer, 2) my_army.add_units(Healer, 2) enemy_army = Army() enemy_army.add_units(Warlord, 3) enemy_army.add_units(Vampire, 1) enemy_army.add_units(Healer, 2) enemy_army.add_units(Knight, 2) my_army.move_units() enemy_army.move_units() assert type(my_army.units[0]) == Lancer assert type(my_army.units[1]) == Healer assert type(my_army.units[-1]) == Warlord assert type(enemy_army.units[0]) == Vampire assert type(enemy_army.units[-1]) == Warlord assert type(enemy_army.units[-2]) == Knight #6, not 8, because only 1 Warlord per army could be assert len(enemy_army.units) == 6 battle = Battle() assert battle.fight(my_army, enemy_army) == True
Input: The warriors, armies and weapons.
Output: The result of the battle (True or False).
How it is used: For computer games development.
Precondition: 6 types of units, 2 types of battles
CheckiO Extensions allow you to use local files to solve missions. More info in a blog post.
In order to install CheckiO client you'll need installed Python (version at least 3.8)
Install CheckiO Client first:
pip3 install checkio_client
Configure your tool
checkio --domain=py config --key=
Sync solutions into your local folder
checkio sync
(in beta testing) Launch local server so your browser can use it and sync solution between local file end extension on the fly. (doesn't work for safari)
checkio serv -d
Alternatevly, you can install Chrome extension or FF addon
checkio install-plugin
checkio install-plugin --ff
checkio install-plugin --chromium
Read more here about other functionality that the checkio client provides. Feel free to submit an issue in case of any difficulties.
Welcome to Pair Programming! Engage in real-time collaboration on coding projects by starting a session and sharing the provided unique URL with friends or colleagues. This feature is perfect for joint project development, debugging, or learning new skills together. Simply click 'Start Session' to begin your collaborative coding journey!
You are trying to join a pair programming session that has not started yet.
Please wait for the session creator to join.
It looks like the creator of the pair programming session closed the editor window.
It might happen accidentally, so that you can wait for reconnection.