Created
May 18, 2020 12:45
-
-
Save shorinji/aa986eb9eb790245e45af445ce4f7e69 to your computer and use it in GitHub Desktop.
To help you get (great?) ideas for a game to develop
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import random | |
prefixes = ['',\ | |
'Laser-shooting',\ | |
'Kitten-filled',\ | |
'Smooth-scrolling',\ | |
'Action-packed',\ | |
'Addictive'\ | |
] | |
types = ['chess game',\ | |
'space shooter',\ | |
'3d shooter',\ | |
'platformer',\ | |
'tic-tac-toe',\ | |
'card game',\ | |
'aquarium simulator',\ | |
'beat\'em up',\ | |
'racing game',\ | |
'gardening simulator'\ | |
] | |
settings = ['',\ | |
'in space',\ | |
'in a cave',\ | |
'in a dungeon',\ | |
'on a map',\ | |
'in a maze',\ | |
'in the matrix',\ | |
'in the city',\ | |
'on the internet'\ | |
] | |
suffixes = [\ | |
'',\ | |
'with cute ponies',\ | |
'with rotating graphics',\ | |
'with great looking water',\ | |
'with lava everywhere',\ | |
'with sweet parallax scroll',\ | |
'with 3d effects',\ | |
'with huge explosions'\ | |
] | |
print(random.choice(prefixes),\ | |
random.choice(types),\ | |
random.choice(settings),\ | |
random.choice(suffixes)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment