Skip to content

Instantly share code, notes, and snippets.

@LinuxPhreak
Created October 8, 2018 21:29
Show Gist options
  • Select an option

  • Save LinuxPhreak/e78dd1a9e9e18af7ecf4d8c025a4ca15 to your computer and use it in GitHub Desktop.

Select an option

Save LinuxPhreak/e78dd1a9e9e18af7ecf4d8c025a4ca15 to your computer and use it in GitHub Desktop.

Revisions

  1. LinuxPhreak created this gist Oct 8, 2018.
    41 changes: 41 additions & 0 deletions star-trek-game-credits.py
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,41 @@
    #!/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'");