-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsimple adventure game python.py
More file actions
121 lines (114 loc) · 4.89 KB
/
simple adventure game python.py
File metadata and controls
121 lines (114 loc) · 4.89 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
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
print("-----------------welcome to the game!!!!------------")
print('''
)
( ( .^.
\) ) .'.^.'.
(/ .'.'---'.'.
_\)_ .'.'-------'.'.
(__)() .'.'-,=======.-'.'.
(_)__) .'.'---| | |---'.'.
(__)_),'.'-----| | |-----'.'.
()__.'.'-------|___|___|-------'.'.
(_.'.'---------------------------'.'.
.'.'-------------------------------'.'.
"""""|====..====.=======.====..====|"""""
()_)| || |.-----.| || |
(_)_| || || || || |
(...|____||____||_____||____||____|
(_)_(|----------| _____o|----------|
(_)(_|----------|| ||----------|
(__)(|----------||_____||----------|
(_)(_|---------|"""""""""|---------|
()()(|--------|"""""""""""|--------|
Zot-wWUwwuw|wwWWwuu|"""""""""""""|uwuwuuW|wuwwuuwu
This was you house but suddenly you woke up and see you are not there
-------------------------------------------------------------
''')
print("You woke up in the middle of an island")
print('''
(_ ( . ) )__ '. \ : / .'
'(___(_____) __ '. \ : / .'
/. _\ '. \ : / .'
.--.|/_/__ -----____ _ _____-----
_______________''.--o/___ \_______________(_)___________
~ /.'o|_o '.| ~ ~ ~
~ |/ |_| ~' ~
' ~ |_| ~ ~ ~ ~
~ ~ |_|O ~ ~
~ ___|_||_____ ~ ~ ~
~ ~ .'':. .|_|A:. ..::''.
/:. .:::|_|.\ .:. :.:\ ~
~ :..:. .:. .::..: .: ..:. ~ ~ ~
\.: .: :. .: ..:: .lcf/
~ ~ ~ ~ ~ ~
~ ~ ~ ~ ~
~ ~ ~ ~ ~
~ ~ ~ ~ ~
''')
print("----------------------------------------------------")
choice1 = input("Will you shout for help?? Enter yes or no : ")
if choice1 == "no":
print("Nice Decision, because there is no one who will listen")
print("-------------")
choice2 = input("Do you want to swim back home or make a boat \nType 'swim' to swim\nType 'boat' to make a boat : ")
if choice2 == "boat":
print("Nice, boat is ready!")
print("""
v ~. v
v /|
/ | v
v /__|__
\--------/
~~~~~~~~~~~~~~~~~~~`~~~~~~'~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
""")
print("----------------------------------------------------")
print('''
__________
/\____;;___\
| / /
`. ())oo() .
|\(%()*^^()^\
%| |-%-------|
% \ | % )) |
% \|%________|
ejm97 %%%%
''')
choice3 = input("You found a treasure chest while making the boat \nDo you want to open it press yess or no : ")
if choice3 == "no":
print("Nice Decision ! there was snakes in the chest nothing else")
print("----------------------------------------------------")
choice4 = input("while you was travelling with you boat you encountered a mermaid and she asked you a question \nHow much percent earth is covered with ocean? \nType values only : ")
if choice4 == 71:
print("Right answer! if you given the wrong answer she would have killed you!")
print("Congrats you have reached home safely!")
print('''
)
( ( .^.
\) ) .'.^.'.
(/ .'.'---'.'.
_\)_ .'.'-------'.'.
(__)() .'.'-,=======.-'.'.
(_)__) .'.'---| | |---'.'.
(__)_),'.'-----| | |-----'.'.
()__.'.'-------|___|___|-------'.'.
(_.'.'---------------------------'.'.
.'.'-------------------------------'.'.
"""""|====..====.=======.====..====|"""""
()_)| || |.-----.| || |
(_)_| || || || || |
(...|____||____||_____||____||____|
(_)_(|----------| _____o|----------|
(_)(_|----------|| ||----------|
(__)(|----------||_____||----------|
(_)(_|---------|"""""""""|---------|
()()(|--------|"""""""""""|--------|
Zot-wWUwwuw|wwWWwuu|"""""""""""""|uwuwuuW|wuwwuuwu
''')
else:
print("oops wrong answer, and she ate you 'Game Over'")
else:
print("Oops there were snakes in the chest nothing else and they bit you and 'Game Over'")
else:
print("oops, sharks ate you while you were swimming!")
else:
print("Game over, Sharks listened your voice and ate you!")