Advertisement
Guest User

Untitled

a guest
Jan 31st, 2019
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.46 KB | None | 0 0
  1. f choice  == "take honey":
  2.             dead("The bear looks at you then slaps your face off.")
  3.         elif choice == "taunt bear" and not bear_moved:
  4.             print("The bear has moved from the door.")
  5.             print("You can go through it now.")
  6.             bear_moved = True
  7.         elif choice == "taunt bear" and bear_moved:
  8.             dead("The bear gets pissed off and chews your leg off.")
  9.         elif choice == "open door" and bear_moved:
  10.             gold_room()
  11.         else:
  12.             print("I got no idea what that means.")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement