41 lines
936 B
Python
41 lines
936 B
Python
STUDIO_NAME = "Untitled Randomness Studios" # Titled Randomness Studios
|
|
GAME_NAME = "Untitled Cat Game" # Titled Cat Game
|
|
|
|
SAVE_VERSION = 2
|
|
|
|
HUNGER_DECAY_PER_HOUR = 5
|
|
BASE_HAPPINESS_DECAY_PER_HOUR = 2
|
|
HUNGER_SADNESS_THRESHOLD = 30
|
|
HUNGER_SADNESS_PENALTY_PER_HOUR = 5
|
|
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"]
|