-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIvanhoe_army.py
More file actions
30 lines (28 loc) · 1.1 KB
/
Ivanhoe_army.py
File metadata and controls
30 lines (28 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
from ArmyGenerator.GenerateOrden import orden
from Battle.army import Army
from Heroes.HeroCatalog.Orden.Ivanhoe import Knight
Ivanhoe_army = orden()
Ivanhoe_army.first_creature.add_count(Ivanhoe_army.first_creature, 130)
Ivanhoe_army.second_creature_upgraded.add_count(
Ivanhoe_army.second_creature_upgraded, 111)
Ivanhoe_army.third_creature_upgraded.add_count(
Ivanhoe_army.third_creature_upgraded, 65)
Ivanhoe_army.fourth_creature_upgraded.add_count(
Ivanhoe_army.fourth_creature_upgraded, 33)
Ivanhoe_army.fifth_creature_upgraded.add_count(
Ivanhoe_army.fifth_creature_upgraded, 16)
Ivanhoe_army.sixth_creature.add_count(Ivanhoe_army.sixth_creature, 4)
Ivanhoe_army.seventh_creature_upgraded.add_count(
Ivanhoe_army.seventh_creature_upgraded, 1)
Ivanhoe_army = Army(
Knight(),
[
Ivanhoe_army.first_creature,
Ivanhoe_army.second_creature_upgraded,
Ivanhoe_army.third_creature_upgraded,
Ivanhoe_army.fourth_creature_upgraded,
Ivanhoe_army.fifth_creature_upgraded,
Ivanhoe_army.sixth_creature,
Ivanhoe_army.seventh_creature_upgraded
]
)