Galaxy.txt (64.8 KB)
I just finished making my first, large project on Python - I decided to make a game instead of the suggested final project in the Python course. I figured I’d post it here!
A couple things:
It’s all text-based (this probably goes without saying)
The user interface is not as intuitive as it could be, but at a certain point I just decided to keep it the way it was (It’s just a learning project, afterall)
You need the “termcolor” module for it to run
It works on Mac Terminal. It works so far in Ubuntu, but the “blink” feature doesn’t work, so that makes it a bit more difficult to see your ships
Try it out, let me know any advice / comments / what you think!
impressive indeed! It is such a detailed, lengthy, and well thought out code! Great job! I really like the game idea too. Reminds me of the concept from the strategy game Stellaris was built on by my favorite game company Paradox Interactive.
Great idea to use .format()! I could have formatted things much more easily that way, instead of using if-statements to see if strings were longer than a certain amount… next time, definitely. Thanks for the tip!