32 lines
601 B
Python
32 lines
601 B
Python
CAT_COLORS = [
|
|
"orange tabby",
|
|
"black",
|
|
"white",
|
|
"gray",
|
|
"tuxedo",
|
|
"calico",
|
|
"tortoiseshell",
|
|
"siamese",
|
|
"brown tabby",
|
|
"ginger",
|
|
]
|
|
CAT_SIZES = [
|
|
"tiny",
|
|
"small",
|
|
"average sized",
|
|
"big",
|
|
"chonky",
|
|
]
|
|
CAT_PERSONALITIES = [
|
|
"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"]
|