Skip to content
Snippets Groups Projects
Commit 0268f5cd authored by Morgan Diment's avatar Morgan Diment
Browse files

very minor changes

parent 1ce302bd
No related branches found
No related tags found
No related merge requests found
...@@ -13,31 +13,38 @@ def drink_wine(): ...@@ -13,31 +13,38 @@ def drink_wine():
counter = 0 counter = 0
while counter < 3: while counter < 3:
if counter < 1: if counter < 1:
time.sleep(1)
print('You drink a glass of the wine, but have not got much closer the clue.') print('You drink a glass of the wine, but have not got much closer the clue.')
print('Would you like to drink another glass?') print('Would you like to drink another glass?')
print('YES or NO') print('YES or NO')
more = str(input()) more = str(input('> '))
if more == 'yes': if more == 'yes':
counter += 1 counter += 1
else: else:
counter = 3 counter = 3
elif counter == 1: elif counter == 1:
time.sleep(1)
print() print()
print('You enjoy a second glass of wine, but can not see the bottom yet.') print('You enjoy a second glass of wine, but can not see the bottom yet.')
print('Would you like to drink another glass?') print('Would you like to drink another glass?')
print('YES or NO') print('YES or NO')
more = str(input()) more = str(input('> '))
if more == 'yes': if more == 'yes':
counter += 1 counter += 1
else: else:
counter = 3 counter = 3
else: else:
time.sleep(1)
print() print()
print('You pass out from too much alchohol consumption.') print('You pass out from too much alchohol consumption.')
print('You wake up 5 minutes later on the floor.') print('You wake up 5 minutes later on the floor of the wine cellar.')
time.sleep(1)
print('...')
counter += 1 counter += 1
time.sleep(5) time.sleep(4)
# time_taken = time_taken - 360 # time_taken = time_taken - 360
# remove wine from inventory
def close_valve(): def close_valve():
......
...@@ -66,7 +66,7 @@ location_door = { ...@@ -66,7 +66,7 @@ location_door = {
location_entrance = { location_entrance = {
"name": "level 2 Entrance", "name": "level 2 Entrance",
"description": "you find yourself in another level of the basement." "description": "You find yourself in another level of the basement. "
"It takes a minute for your eyes to adjust to this new, brighter room. In this room there is a trap door with stairs leading to it with a desk underneath the stairs. There are multiple different rooms leading away. Once again you have 20 minutes, be careful and good luck.", "It takes a minute for your eyes to adjust to this new, brighter room. In this room there is a trap door with stairs leading to it with a desk underneath the stairs. There are multiple different rooms leading away. Once again you have 20 minutes, be careful and good luck.",
"exits": {"north": "wine cellar", "west": "storage room", "south": "boiler room", "east": "trap door", "south-east": "desk", "downstairs": "door"}, "exits": {"north": "wine cellar", "west": "storage room", "south": "boiler room", "east": "trap door", "south-east": "desk", "downstairs": "door"},
...@@ -80,7 +80,7 @@ location_winecellar = { ...@@ -80,7 +80,7 @@ location_winecellar = {
"exits": {"south": "entrance"}, "exits": {"south": "entrance"},
"items": [] "items": [item_winebottle]
} }
location_storage = { location_storage = {
"name": "Storage Room", "name": "Storage Room",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment