Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/usr/bin/env python3
- # -*- coding: utf-8 -*-
- from sys import exit
- raw_input = input
- def bye():
- print("GOODBYE")
- exit(0)
- def code253():
- print("SO YOU WANT CLOSURE?, OK...")
- print("YOU DIED, GAME OVER, THE END!")
- bye()
- def dead():
- print("GAME OVER!")
- print("TRY AGAIN?")
- print("TYPE: YES OR NO")
- while True:
- do_again = raw_input("> ")
- if "yes" in do_again or "YES" in do_again:
- intro()
- if "no" in do_again or "NO" in do_again:
- bye()
- def win():
- print("YOU WIN!")
- print("IT SHOULD FEEL GREAT, BUT IT DOESN'T!")
- print("TYPE: 253 NEXT TIME YOU PLAY.")
- print("TRY AGAIN?")
- print("TYPE: YES OR NO")
- while True:
- do_again = raw_input("> ")
- if "yes" in do_again or "YES" in do_again:
- intro()
- if "no" in do_again or "NO" in do_again:
- bye()
- def error():
- print("ERROR: TRY AGAIN")
- intro()
- def start():
- print("LET'S GO!")
- print("DECIDE: 1 OR 0?")
- while True:
- do_back = raw_input("> ")
- if "zero" in do_back or "0" in do_back:
- print("IN THIS WORLD THERE ARE TWO TYPES OF PEOPLE")
- print("ONE'S AND ZEROS.")
- print("YOU CHOSE WRONG! AND DIE.")
- dead()
- if "one" in do_back or "1" in do_back:
- print("IN THIS WORLD THERE ARE TWO TYPES OF PEOPLE")
- print("ONE'S AND ZEROS.")
- print("YOU CHOSE CORRECT! AND STILL DIE.")
- win()
- if "253" in do_back:
- print("")
- print("OH! YOU HAD A CODE THINGIE!")
- print("LET ME PULL UP YOUR INFORMATION...")
- print("BEEP BEEP BOOP!")
- print("")
- code253()
- else:
- error()
- else:
- error()
- def intro():
- print("")
- print(" .----------------------------------------.")
- print(" | _____________________________________ |")
- print(" | | ................................... | |")
- print(" | | ▄ ▄▌ ▄ ▄▌ | |")
- print(" | | █ ██▌ █ ██▌ | |")
- print(" | | ▐█▌▐█ ▄█▀▄ █▌ ▐█▌ | |")
- print(" | | ▀█▀ ▐█▌ ▐▌ ▐█▄█▌ | |")
- print(" | | ▀ ▀█▄▀ ▀▀▀ | |")
- print(" | | ▄▄▌ ▐ ▄▌ ▄▄▌ ▄▄▌ | |")
- print(" | | ██ █▌ ▐█ ██ ██ ██ | |")
- print(" | | ██ ▐█ ▐▌ ▐█ ██ ██ | |")
- print(" | | ▐█▌██▐█▌ ▐█▌ ▐█▌▐▌ ▐█▌▐▌ | |")
- print(" | | ▀▀▀▀ ▀ ▀▀▀ ▀▀▀ ▀▀▀ | |")
- print(" | | ▄▄▄▄ ▄▄▄ | |")
- print(" | | ██ ██ ██ ▀▄ ▀ | |")
- print(" | | ▐█ ▐█▌ ▐█ ▐▀▀ ▄ | |")
- print(" | | ██ ██ ▐█▌ ▐█▄▄▌ | |")
- print(" | | ▀▀▀▀▀ ▀▀▀ ▀▀▀ [2019]| |")
- print(" | | ................................... | |")
- print(" | \___________________________________/ |")
- print(" |_________________________________________|")
- print(" .---\_____ [] _______/------,")
- print(" / /______________\ /|")
- print(" /___________________________________ / |")
- print(" | | |")
- print(" | _ _ _ [-------] | |")
- print(" | o o o [-------] | /")
- print(" |__________________________________ |/")
- print(" /-------------------------------------/|")
- print(" /-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/ /")
- print(" /-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/ /")
- print(" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~'")
- print("")
- print("READY?")
- start()
- intro()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement