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

adding level 2

parent d010e132
No related branches found
No related tags found
No related merge requests found
from itertools import count
from operator import truediv
from items import *
from player import *
from map import *
from game import time_taken
def drink_wine():
counter = 0
more = True
while True:
if counter < 2:
print('You drink a glass of the wine, but still cannot see the clue.')
print('Would you like to drink another glass?')
more = str(input())
if more == 'yes':
counter += 1
False
else:
print('You pass out from too much alchohol consumption.')
print('You wake up 5 minutes later on the floor.')
time_taken = time_taken - 360
False
def close_valve():
pass
def open_trapdoor():
pass
def hangman():
pass
def open_closet():
pass
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