-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprogram.py
78 lines (59 loc) · 2.01 KB
/
program.py
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
import actors
import random
import time
from actors import Wizard, Creatures, SmallAnimal, Dragon
def main():
print_header()
game_loop()
def print_header():
print('--------------------------------')
print(''' _ _
(_) | |
__ ___ ______ _ _ __ __| |
\ \ /\ / / |_ / _` | '__/ _` |
\ V V /| |/ / (_| | | | (_| |
\_/\_/ |_/___\__,_|_| \__,_|
''')
print(' Wizard Game \o/ ')
print('--------------------------------')
print()
def game_loop():
creatures = [
SmallAnimal('Toad', 1),
Creatures('Tiger', 12),
SmallAnimal('Bat', 3),
Dragon('Dragon', 50, 50, True),
Creatures('Evil Wizard', 99)
]
hero = Wizard('Gandolf', 75)
while True:
active_creature = random.choice(creatures)
print("A {} of level {} has appear from a dark and foggy forest ... .. .".format(
active_creature.name, active_creature.level))
print()
cmd = input('Do you [a]ttack, [r]unaway, or [l]ook round?')
if cmd == 'a':
if hero.attack(active_creature):
creatures.remove(active_creature)
else:
print("The Wizard has been knock out !!!")
# print('Game Over !!!')
time.sleep(5)
print("Wizard woke up and ready again")
elif cmd == 'r':
print('run away')
elif cmd == 'l':
print('the hero {} looks around and see others creatures to attack'.format(
hero.name
))
for c in creatures:
print(' * A {} of level {}'.format(c.name, c.level))
else:
print('OK, we are exiting the game... bye bye')
break
if not creatures:
print("The wizard has defeated all the creatures")
break
print()
if __name__ == '__main__':
main()