Skip to content

Instantly share code, notes, and snippets.

@ethanshine1234
Last active October 5, 2016 07:54
Show Gist options
  • Save ethanshine1234/80551455aa40cfabf7b5d24a4999d754 to your computer and use it in GitHub Desktop.
Save ethanshine1234/80551455aa40cfabf7b5d24a4999d754 to your computer and use it in GitHub Desktop.
STJLOL-ES-game
#you are invinceble
from time import sleep
terminate= ['human', 'terminator', 'human', 'human', 'terminator', 'terminator', 'human', 'terminator', 'spaceship', 'human', 'chopper', 'terminator', 'human', 'terminator', 'terminator', 'terminator', 'chopper' 'teminator', 'human', 'human', 'spaceship']
print(terminate)
side=input("choose you side: humans or terminators:") #are you secretly a terminator???
if side == "humans":
for item in terminate:
if item == "terminator":
print("rattattat")
sleep(1)
elif item == "spaceship":
print("beep...beep..beep..beep.beep.beep.beeeeeep.fwooooosh.....BOOOOOM!!!") #rocketlauncher
sleep(1)
else:
print("duck!")
sleep(1)
elif side == "terminators":
for item in terminate:
if item == "human":
print("pew pew")
sleep(1)
elif item == "chopper":
print("sssssszzzzzzzzzzzz........BEW!") #I don't even know what this is
sleep(1)
else:
print("get out de way!")
sleep(1)
else:
print("NEXT!!!!!")
print("YOU WIN!!!!!!")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment