Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import time
- import os
- import random
- import sys
- steps = 0
- pokeball = 5
- moral = 0
- def delay_print(s):
- for c in s:
- sys.stdout.write(c)
- sys.stdout.flush()
- time.sleep(0.05)
- def clear():
- os.system("clear")
- chance = [0, 1, 2, 3]
- pokemons = ["Charmander", "Sqiurtle", "Arceus"]
- caught = []
- device = input("Whats Your Device\n1.Mobile\n2.PC\n")
- skip = input("Would you like to skip Proffesor Locks Monolouge\nY/N\n")
- clear()
- def menu():
- global moral
- global device
- global steps
- global pokeball
- if device == "2":
- print(
- " ,'\\\n _.----. ____ ,' _\ ___ ___ ____\n_,-' `. | | /`. \,-' | \ / | | \ |`.\n\ __ \ '-. | / `. ___ | \/ | '-. \ | |\n \. \ \ | __ | |/ ,','_ `. | | __ | \| |\n \ \/ /,' _`.| ,' / / / / | ,' _`.| | |\n \ ,-'/ / \ ,' | \/ / ,`.| / / \ | |\n \ \ | \_/ | `-. \ `' /| | || \_/ | |\ |\n \ \ \ / `-.`.___,-' | |\ /| \ / | | |\n \ \ `.__,'| |`-._ `| |__| \/ | `.__,'| | | |\n \_.-' |__| `-._ | '-.| '-.| | |\n `' '-._|"
- )
- else:
- pass
- print(
- "Welcome To Pokemon GO but for lazy people!\nNow with lasers °O°\nPokeballs:",
- pokeball , "\nMoral Value:" , moral)
- op1 = input("1.Walk\n2.Stats\n3.PC\n")
- if op1 == "1":
- clear()
- print("Took 1 Step")
- steps += 1
- pkc = random.choices(chance, weights=(50, 30, 15, 15), k=1)
- if pkc == [1]:
- time.sleep(0.5)
- menu()
- elif pkc == [0]:
- print("the grass russels")
- op2 = input("1.Search\n2.ignore\n")
- if op2 == "1":
- clear()
- poke = random.choices(pokemons, weights=(50, 30, 1), k=1)
- def wild():
- global pokeball
- print("A wild", *poke, "has appeared")
- print("Pokeballs:", pokeball)
- op3 = input("1.Throw Pokeball\n2.Pat head and leave\n")
- if op3 == "1":
- if pokeball >= 1:
- pokeball -= 1
- pkc = random.choices(chance, weights=(50, 25, 0, 0), k=1)
- if pkc == [0]:
- print("Click")
- time.sleep(0.3)
- print("Click")
- time.sleep(0.3)
- print("Click")
- time.sleep(0.3)
- print("Ding")
- print(*poke, " Caught!")
- caught.append(poke)
- time.sleep(1)
- clear()
- menu()
- else:
- print("click")
- time.sleep(0.3)
- print("click")
- time.sleep(0.3)
- print("poof!")
- print("pokemon broke free")
- time.sleep(1)
- clear()
- wild()
- else:
- print("you have no pokeballs the pokemon ran away")
- time.sleep(1)
- clear()
- menu()
- elif op3 == "2":
- pkc = random.choices(chance, weights=(10, 65, 0, 0), k=1)
- if pkc == [0]:
- print(
- "The pokemon bit you and gave you rabies you have collapased you wake up in a near by hospital you somehow survived :D"
- )
- menu()
- if pkc == [1]:
- clear()
- menu()
- wild()
- elif op2 == "2":
- clear()
- menu()
- else:
- clear()
- menu()
- elif pkc == [2]:
- print("You stumble upon a unused pokeball\n+1 pokeball")
- pokeball += 1
- time.sleep(1)
- clear()
- menu()
- elif pkc == [3]:
- print("You stumble upon a town")
- def town():
- global moral
- global pokeball
- global caught
- op6 = input(
- "1.Enter PokeStop\n2.Enter PokeMart\n3.break into some guys house\n4.Ignore\n"
- )
- clear()
- if op6 == "1":
- print("Coming Soon!")
- time.sleep(0.5)
- clear()
- town()
- if op6 == "2":
- print("Coming Soon!")
- time.sleep(0.5)
- clear()
- town()
- if op6 == "3":
- print(
- "you breake down the door to a house a family are eating dinner")
- op7 = input(
- "1.Brutely kill them using your pokemon\n2.Steal their stuff and run\n"
- )
- clear()
- if caught != []:
- if op7 == "1":
- moral -= 5
- delay_print("you send out ")
- delay_print(*caught[0])
- delay_print("\nYou shout 'kill them all' ")
- delay_print(*caught[0])
- print("\n")
- delay_print(*caught[0])
- delay_print(" Brutelly murders them all their screams sound like a buterfull sympthony")
- print("\n")
- delay_print(*caught[0])
- delay_print(" cries as it rips the farthers throat out")
- print("\n")
- delay_print("You steal the familys pokeballs")
- print("\n")
- delay_print("Pokeballs +5")
- pokeball += 5
- time.sleep(1)
- clear()
- menu()
- if op7 == "2":
- moral -= 3
- print(
- "You send out", *caught[0],
- "\nThe dad terrified says he will give you anything for him and his familys safty"
- )
- print("you demand pokeballs")
- print("the dad terrified gives you his pokeballs")
- print("pokeballs +3")
- pokeball += 3
- else:
- clear()
- town()
- else:
- delay_print("You throw a empty pokeball\n")
- delay_print("You look like a idiot\n")
- delay_print("The Wild player ran away\n")
- time.sleep(0.5)
- clear()
- menu()
- if op6 == "4":
- clear()
- menu()
- else:
- clear()
- town()
- town()
- elif op1 == "2":
- clear()
- print("Stats Menu!\nSteps:", steps)
- op4 = input("1.Back\n")
- if op4 == "1":
- clear()
- menu()
- else:
- clear()
- menu()
- elif op1 == "3":
- clear()
- print(*caught)
- op4 = input("1.Back\n")
- if op4 == "1":
- clear()
- menu()
- else:
- clear()
- menu()
- else:
- clear()
- menu()
- if skip == "n":
- delay_print(
- "Welcome to the world of pokemon I'm profesor Locked in my house please help me But you can just call me prefesor Lock."
- )
- delay_print(
- "This world is full of creatures called pokemon and its a humans right to capture, imprison and force them to follow your every command, my dream has always been to catch and document every pokemom but Im sad and lonely and cant be bothered to do it myself so you can do it for me heres 5 pokeballs bye!\n"
- )
- elif skip == "N":
- delay_print(
- "Welcome to the world of pokemon I'm profesor Locked in my house please help me But you can just call me prefesor Lock."
- )
- delay_print(
- "This world is full of creatures called pokemon and its a humans right to capture, imprison and force them to follow your every command, my dream has always been to catch and document every pokemom but Im sad and lonely and cant be bothered to do it myself so you can do it for me heres 5 pokeballs bye!\n"
- )
- op5 = input("1.begin adventure\n")
- else:
- clear()
- menu()
- if op5 == 1:
- clear()
- menu()
- else:
- clear()
- menu()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement