Skip to content

Instantly share code, notes, and snippets.

@svenstaro
Created May 14, 2010 20:01
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 svenstaro/401586 to your computer and use it in GitHub Desktop.
Save svenstaro/401586 to your computer and use it in GitHub Desktop.
#!/usr/bin/python
#
# Awesome random theme chooser for Reddit Game Jam 01
#
import random
themes = ["pairs", "repeating cycle", "stamina", "paralysis", "paranoia",
"tunneling", "multi-dimension", "hunger", "flight", "season", "time", "love",
"storm", "beauty/ugliness", "metamorphosis", "evolution", "distance", "empathy",
"space", "speed", "aliens"]
print random.choice(themes)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment