39 lines
965 B
Python
39 lines
965 B
Python
GAME_NAME = "Whiskerbound"
|
|
|
|
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"]
|
|
|
|
|
|
SHOP_ITEMS = {"Food": 5, "Medicine": 15, "Catnip": 15}
|
|
|
|
BYPASS_TAMPER_CHECK_MESSAGE = "I truly understand that this is cheating and that it is ONLY for development and nothing else. I understand that it is mean to mess with my cat savefile and I apologize to my cat."
|