Skip to content

Instantly share code, notes, and snippets.

@LinuxPhreak
Created October 8, 2018 21:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LinuxPhreak/e78dd1a9e9e18af7ecf4d8c025a4ca15 to your computer and use it in GitHub Desktop.
Save LinuxPhreak/e78dd1a9e9e18af7ecf4d8c025a4ca15 to your computer and use it in GitHub Desktop.
Beginning Of My Star Trek Fan Game
#!/usr/bin/env python3
import os
import time
#Intro here
print("\033[1;33;49m .dBBBBP dBBBBBBP dBBBBBb dBBBBBb dBBBBBBP dBBBBBb dBBBP dBP dBP");
print("\033[1;33;49m BP BB dBP dBP d8P.dBP");
print("\033[1;33;49m `BBBBb dBP dBP BB dBBBBK dBP dBBBBK dBBP dBBBBP ");
print("\033[1;33;49m dBP dBP dBP BB dBP BB dBP dBP BB dBP dBP BB ");
print("\033[1;33;49m dBBBBP' dBP dBBBBBBB dBP dB' dBP dBP dB' dBBBBP dBP dBP ");
print("");
print("\033[0;32;49m <------------------------------------------------------------------------->");
#pause screen for a few seconds then clear text
time.sleep(10);
os.system("printf '\033c'");
#Sub title to the game
print("\033[0;36;49m .:: :: .:: .:::::::: .:: .:: ");
print("\033[0;36;49m.:: .:: .:: .:: .:: .:: ");
print("\033[0;36;49m .:: .:.: .: .:: .: .::: .:: .:: .:: .:: .:.: .: ");
print("\033[0;36;49m .:: .:: .:: .:: .:: .:::::: .:: .: .:: .: .:: .:: ");
print("\033[0;36;49m .:: .:: .:: .:: .:: .:: .::.::::: .::.::::: .:: .:: ");
print("\033[0;36;49m.:: .:: .:: .:: .:: .:: .:: .::.: .: .:: ");
print("\033[0;36;49m .:: :: .:: .:: .:::.::: .:: .::: .:::: .:::: .:: ");
print("\033[1;33;49m .: .:: ");
print("\033[1;33;49m .: :: .:: ");
print("\033[1;33;49m .: .:: .::: .:: .:: .:: .::: .:: .:: .:: .::");
print("\033[1;33;49m .:: .:: .:: .:: .:: .:: .:: .: .:: .:: .: .:: .:: .:: ");
print("\033[1;33;49m .:::::: .:: .:: .:: .:: .: .::.::::: .:: .:: .: .:: .::: ");
print("\033[1;33;49m .:: .:: .:: .:: .:: .: .::.: .:: .: .:: .:: ");
print("\033[1;33;49m.:: .:: .::: .:: .::: .:: .:: .:::: .::: .: .:: .:: ");
print("\033[0;32;49m >----------------------------------------<");
print("\033[0;37;49m A Terminal Game Brought To You By Big Ben's Web Hosting");
print("\033[0;37;49m Created By Ben P. Dorsi-Todaro");
#pause screen for a few seconds then clear text
time.sleep(10);
os.system("printf '\033c'");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment