moss-n-puddles/utils/scoring.py
Howard Abrams 43a1aefb49 Add a Scoring system to character
As character do things, they can now get a "score" for everything I
think could be interesting/challenging.
2025-08-24 22:34:11 -07:00

25 lines
461 B
Python
Executable file

#!/usr/bin/env python
from enum import Enum
class Scores(Enum):
"""
Keep track of the scores we can do.
"""
jump = 2**0
throw_stick = 2**1
catch_fish = 2**2
feed_bhb = 2**3
blow_horn = 2**4
make_tea = 2**5
read_a_book = 2**6
eat_candy = 2**7
get_pipe = 2**8
get_blue_medal = 2**9
get_cocktail = 2**10
finish_cocktail = 2**11
make_potion = 2**12
sign_guest_book = 2**13
moss_sit = 2**14