Skip to content

Instantly share code, notes, and snippets.

@shorinji
Created May 18, 2020 12:45
Show Gist options
  • Save shorinji/aa986eb9eb790245e45af445ce4f7e69 to your computer and use it in GitHub Desktop.
Save shorinji/aa986eb9eb790245e45af445ce4f7e69 to your computer and use it in GitHub Desktop.
To help you get (great?) ideas for a game to develop
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