51 lines
1.1 KiB
Python
51 lines
1.1 KiB
Python
STUDIO_NAME = "Untitled Randomness Studios" # Titled Randomness Studios
|
|
GAME_NAME = "Untitled Cat Game" # Titled Cat Game
|
|
|
|
SAVE_VERSION = 1
|
|
|
|
HUNGER_DECAY_PER_HOUR = 5
|
|
BASE_HAPPINESS_DECAY_PER_HOUR = 2
|
|
HUNGER_SADNESS_THRESHOLD = 30
|
|
HUNGER_SADNESS_PENALTY_PER_HOUR = 5
|
|
|
|
ITEMS = {"food": 3, "medicine": 5, "catnip": 5}
|
|
|
|
BASE_INVENTORY = {item: 0 for item in ITEMS}
|
|
|
|
WORK_START_LETTERS = 2
|
|
WORK_EARN_PER_ROUND = 3
|
|
|
|
FOOD_RESTORE = 30
|
|
|
|
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"]
|