Files
Untitled-Cat-Game/untitled/content.py
2026-06-22 19:51:04 -04:00

35 lines
792 B
Python

STUDIO_NAME = "Untitled Randomness Studios" # Titled Randomness Studios
GAME_NAME = "Untitled Cat Game" # Titled Cat Game
CAT_COLORS = [
"orange tabby",
"black",
"white",
"gray",
"tuxedo",
"calico",
"tortoiseshell",
"siamese",
"brown tabby",
"ginger",
]
CAT_SIZES = [
"tiny",
"small",
"average sized",
"big",
"chonky",
]
CAT_PERSONALITIES = [ # TODO: start at different happiness levels based on personality
"looks like trouble",
"judges you silently",
"won't stop meowing",
"seems half asleep",
"is staring at the wall",
"purrs endlessly",
"already knocked everything over",
"needs food right now",
"just wants to be somewhere else",
]
CAT_EYE_COLORS = ["green", "yellow", "blue", "orange"]