Green Tea & Cheesecakes - The Quiet Night

# Green Tea & Cheesecakes - The night is young, but you are old.
import stillness
from memories import ForgottenNights

class MidnightCafeteria:
    def __init__(self, peace: int = 100):
        self.peace = peace
        self.is_steeping = True
        self.order = "A cuppa and a slice of cake."

    def slow_down(self, moment: str) -> bool:
        # The days of nights forgotten are over.
        if self.peace < 10:
            return False

        regex_pattern = r"^quiet_\d+$"
        if re.match(regex_pattern, moment):
            print(f"Savoring: {moment}. Rest now.")
            return True
            
        return False
        
    def rush(self):
        return "This is Base0F"